From egmont at uhulinux.hu Wed Jun 14 09:16:21 2006 From: egmont at uhulinux.hu (Egmont Koblinger) Date: Wed, 14 Jun 2006 15:16:21 +0200 Subject: utf8 patch for mc, slang 2 version In-Reply-To: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <20060612083045.GA22700@cs.bme.hu> Message-ID: <20060614131621.GE29389@cs.bme.hu> On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: > BTW: anyone is working on UFT-8 support for ncurses(w) backend ? I don't think so, and I don't think it is worth it. Maintaining two backends IMHO just causes headaches while it doesn't make mc better. I still can't see why developers do not decide which one to use and drop the other one. With Unicode support maintaining the two will be much harder since AFAIK slang works with UTF-8 while ncurses uses UCS-4. Hence a completely different patch would be required for the two cases. > BTW2: few monts ago was on this list about converting in source > tree alle po/*.po files to UTF-8 .. still not done. Any reasons ? > > It can be performed by: > > [mc]$ for i in po/*.po; do msgconv -t UTF-8 $i -o $i; done Are you sure it is safe to use the same output file? I'd rather use a tmp file. It depends on msgconv's internal implementation, but I can easily imagine a situation where the writing file descriptor's position exceeds the reading position (since UTF-8 is longer than the 8-bit version) and this may cause invalid results. Due to buffered read and write requests I guess it needs larger files (with approx. 4096 -- 8192 accented characters) for this bug to occur. I'm not sure, though, just reasonably paranoid :-) -- Egmont From nadvornik at suse.cz Wed Jun 14 10:22:49 2006 From: nadvornik at suse.cz (Vladimir Nadvornik) Date: Wed, 14 Jun 2006 16:22:49 +0200 Subject: utf8 patch for mc, slang 2 version In-Reply-To: <1150102528.2242.17.camel@localhost.localdomain> References: <200509191419.01556.arekm@pld-linux.org> <1150024126.2478.14.camel@athlon> <1150102528.2242.17.camel@localhost.localdomain> Message-ID: <200606141622.50049.nadvornik@suse.cz> On Monday 12 June 2006 10:55, Jindrich Novy wrote: > > > Please take notice. It would probably be good if Vladimir and you could > > keep your UTF-8 patch sets in sync. It just seems wasted effort to do > > this in two places independently. Some inter-distro communication is not > > going to hurt. Maybe these patches should be centrally maintained in a > > contribs tree. > > The problem is that Vladimir and me use different versions of mc. My > approach is to be more in sync with upstream so that there's a more > recent CVS snapshot in Fedora for now because of a very rare release > period of mc. This helps me to do only minimal changes when I want to > send a patch to upstream. SuSE uses the stable mc-4.6.1, AFAIK. > It would not be a problem to have a more recent mc snapshot in openSUSE Factory. Even better, if it is synced 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 From bartoldeman at users.sourceforge.net Wed Jun 14 17:45:26 2006 From: bartoldeman at users.sourceforge.net (Bart Oldeman) Date: Thu, 15 Jun 2006 09:45:26 +1200 (NZST) Subject: utf8 patch for mc, slang 2 version In-Reply-To: <20060614131621.GE29389@cs.bme.hu> References: <200509191419.01556.arekm@pld-linux.org><200606071218.32428.nadv ornik@suse.cz><1149685131.2269.10.camel@localhost.localdomain><200606081202 .51002.nadvornik@suse.cz><20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon><20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> Message-ID: On Wed, 14 Jun 2006, Egmont Koblinger wrote: > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > I don't think so, and I don't think it is worth it. Maintaining two backends > IMHO just causes headaches while it doesn't make mc better. I still can't > see why developers do not decide which one to use and drop the other one. Maybe compatibility with older UN*Xes with curses but no slang? > With Unicode support maintaining the two will be much harder since AFAIK > slang works with UTF-8 while ncurses uses UCS-4. Hence a completely > different patch would be required for the two cases. Last time I played with it ncursesw (but not plain ncurses) handled UTF-8 just fine. e.g. you can pass a UTF-8 encoded string to addstr(), and provided the locale is set correctly, ncursesw will compute its width correctly. It is *also* possible to use addwstr() with UCS-4, but not compulsory. Bart From proski at gnu.org Wed Jun 14 18:11:37 2006 From: proski at gnu.org (Pavel Roskin) Date: Wed, 14 Jun 2006 18:11:37 -0400 Subject: utf8 patch for mc, slang 2 version In-Reply-To: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadv ornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202 .51002.nadvornik@suse.cz><20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon><20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> Message-ID: <1150323097.23144.2.camel@dv> Hello! On Thu, 2006-06-15 at 09:45 +1200, Bart Oldeman wrote: > On Wed, 14 Jun 2006, Egmont Koblinger wrote: > > > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: > > > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > > > I don't think so, and I don't think it is worth it. Maintaining two backends > > IMHO just causes headaches while it doesn't make mc better. I still can't > > see why developers do not decide which one to use and drop the other one. > > Maybe compatibility with older UN*Xes with curses but no slang? It's a bogus argument. UNIX curses was removed long ago, and it had never worked well anyway. I don't remember a single person complaining. Besides, S-Lang is included with mc and it's quite portable. -- Regards, Pavel Roskin From ossi at kde.org Wed Jun 14 18:22:34 2006 From: ossi at kde.org (Oswald Buddenhagen) Date: Thu, 15 Jun 2006 00:22:34 +0200 Subject: utf8 patch for mc, slang 2 version In-Reply-To: References: <20060614131621.GE29389@cs.bme.hu> Message-ID: <20060614222234.GA9122@ugly.local> On Thu, Jun 15, 2006 at 09:45:26AM +1200, Bart Oldeman wrote: > On Wed, 14 Jun 2006, Egmont Koblinger wrote: > > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > > > I don't think so, and I don't think it is worth it. Maintaining two backends > > IMHO just causes headaches while it doesn't make mc better. I still can't > > see why developers do not decide which one to use and drop the other one. > > Maybe compatibility with older UN*Xes with curses but no slang? > that doesn't sound too convincing. > > With Unicode support maintaining the two will be much harder since AFAIK > > slang works with UTF-8 while ncurses uses UCS-4. Hence a completely > > different patch would be required for the two cases. > > Last time I played with it ncursesw (but not plain ncurses) handled UTF-8 > just fine. > good. i'm all for killing slang support. why that one? libslang is twice as big as libncursesw. probably because it was meant to be much more than just a display lib. -- Hi! I'm a .signature virus! Copy me into your ~/.signature, please! -- Chaos, panic, and disorder - my work here is done. From kloczek at rudy.mif.pg.gda.pl Thu Jun 15 00:20:42 2006 From: kloczek at rudy.mif.pg.gda.pl (=?ISO-8859-2?Q?Tomasz_K=B3oczko?=) Date: Thu, 15 Jun 2006 06:20:42 +0200 (CEST) Subject: utf8 patch for mc, slang 2 version In-Reply-To: <20060614131621.GE29389@cs.bme.hu> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> Message-ID: On Wed, 14 Jun 2006, Egmont Koblinger wrote: > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > I don't think so, and I don't think it is worth it. Maintaining two backends > IMHO just causes headaches while it doesn't make mc better. I still can't > see why developers do not decide which one to use and drop the other one. If someone want ask which backend is more importand and will be better keep as major IMO answer tn this kind question is very simple: # rpm -q --whatrequires libslang.so.2 | grep -v slang | wc -l 4 # rpm -q --whatrequires libncurses.so.5 libncursesw.so.5 | grep -v ncurses |wc -l 55 Above slang list contain only packages which do not have now ncurses backend and are not importand as mc :) Also current state have other sick points on Linux. In case using mc with gpm it causes runtime linking with more than one term toolkit library (slang or internal slang and ncurses used by libgpm). [..] >> [mc]$ for i in po/*.po; do msgconv -t UTF-8 $i -o $i; done > > Are you sure it is safe to use the same output file? I'd rather use a tmp > file. I'm sure. msgconv cumulates output in memory and aftewr finish conversion writes output to file name passed in -o parameter in single step. kloczek -- ----------------------------------------------------------- *Ludzie nie maj? problem?w, tylko sobie sami je stwarzaj?* ----------------------------------------------------------- Tomasz K?oczko, sys adm @zie.pg.gda.pl|*e-mail: kloczek at rudy.mif.pg.gda.pl* From ptsekov at gmx.net Thu Jun 15 00:33:12 2006 From: ptsekov at gmx.net (Pavel Tsekov) Date: Thu, 15 Jun 2006 07:33:12 +0300 (EEST) Subject: utf8 patch for mc, slang 2 version In-Reply-To: <1150323097.23144.2.camel@dv> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadv ornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202 .51002.nadvornik@suse.cz><20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon><20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> <1150323097.23144.2.camel@dv> Message-ID: On Wed, 14 Jun 2006, Pavel Roskin wrote: > Hello! > > On Thu, 2006-06-15 at 09:45 +1200, Bart Oldeman wrote: >> On Wed, 14 Jun 2006, Egmont Koblinger wrote: >> >>> On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: >>> >>>> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? >>> >>> I don't think so, and I don't think it is worth it. Maintaining two backends >>> IMHO just causes headaches while it doesn't make mc better. I still can't >>> see why developers do not decide which one to use and drop the other one. >> >> Maybe compatibility with older UN*Xes with curses but no slang? > > It's a bogus argument. UNIX curses was removed long ago, and it had > never worked well anyway. I don't remember a single person complaining. > Besides, S-Lang is included with mc and it's quite portable. We had that argument once already. curses is not that old and it is standard. And it has unicode support. Its just a matter of using it. From egmont at uhulinux.hu Thu Jun 15 06:33:14 2006 From: egmont at uhulinux.hu (Egmont Koblinger) Date: Thu, 15 Jun 2006 12:33:14 +0200 Subject: utf8 patch for mc, slang 2 version In-Reply-To: References: <20060614131621.GE29389@cs.bme.hu> Message-ID: <20060615103314.GA14523@cs.bme.hu> Hi, > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > > > I don't think so, and I don't think it is worth it. Maintaining two backends > > IMHO just causes headaches while it doesn't make mc better. I still can't > > see why developers do not decide which one to use and drop the other one. > > Maybe compatibility with older UN*Xes with curses but no slang? Asking these sysadmins to install slang (or compile mc to its bundled slang) is IMHO easier than to do double work in mc. > Last time I played with it ncursesw (but not plain ncurses) handled UTF-8 > just fine. > > e.g. you can pass a UTF-8 encoded string to addstr(), and provided the > locale is set correctly, ncursesw will compute its width correctly. It is > *also* possible to use addwstr() with UCS-4, but not compulsory. It's clear now, thanks! Anyway, there are plenty of apps (e.g. vim, joe) that perfectly support UTF-8 and use ncurses (not the w version). I wonder how it is possible... -- Egmont From INVALID.NOREPLY at gnu.org Wed Jun 14 15:02:13 2006 From: INVALID.NOREPLY at gnu.org (purportex) Date: Wed, 14 Jun 2006 19:02:13 +0000 Subject: [bug #16762] Cannot compile mc-2006-06-05-20 In-Reply-To: <20060613-172130.sv36205.64124@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> Message-ID: <20060614-190212.sv50251.32349@savannah.gnu.org> Follow-up Comment #18, bug #16762 (project mc): Hi, when I compiling current cvs version, I have such problem.. $ ./autogen ; make ... mountlist.c: In function 'fstype_to_string': mountlist.c:176: error: 'MOUNT_UFS' undeclared (first use in this function) mountlist.c:176: error: (Each undeclared identifier is reported only once mountlist.c:176: error: for each function it appears in.) mountlist.c:178: error: 'MOUNT_NFS' undeclared (first use in this function) $ uname -a Darwin MacBookPro.local 8.6.1 Darwin Kernel Version 8.6.1: Tue Mar 7 16:55:45 PST 2006; root:xnu-792.9.22.obj~1/RELEASE_I386 i386 i386 _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY at gnu.org Thu Jun 15 00:37:16 2006 From: INVALID.NOREPLY at gnu.org (Pavel Tsekov) Date: Thu, 15 Jun 2006 07:37:16 +0300 Subject: [bug #16762] Cannot compile mc-2006-06-05-20 In-Reply-To: <20060614-190212.sv50251.32349@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> Message-ID: <20060615-073715.sv36205.52677@savannah.gnu.org> Follow-up Comment #19, bug #16762 (project mc): purportex, have you tried to fix the problem by applying the suggested patch ? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From bartoldeman at users.sourceforge.net Thu Jun 15 17:08:04 2006 From: bartoldeman at users.sourceforge.net (Bart Oldeman) Date: Fri, 16 Jun 2006 09:08:04 +1200 (NZST) Subject: utf8 patch for mc, slang 2 version In-Reply-To: <20060615103314.GA14523@cs.bme.hu> References: <20060614131621.GE29389@cs.bme.hu> <20060615103314.GA14523@cs.bme.hu> Message-ID: On Thu, 15 Jun 2006, Egmont Koblinger wrote: > Anyway, there are plenty of apps (e.g. vim, joe) that perfectly support > UTF-8 and use ncurses (not the w version). I wonder how it is possible... Because they only use the terminfo (low-level) parts of ncurses, see "man 3ncurses terminfo". Those parts do not care about UTF-8. MC uses a higher level part of ncurses (the display routines), but restricted to "stdscr". There's an even higher level part of ncurses that supports managing (overlapping) windows, but MC does not use it. SLang (without the newt library) does not support that. So one advantage of using ncurses over slang is that MC could make use of ncurses' windowing code, thereby simplifying its own code. In the way that MC uses SLang and ncurses right now there is very little difference between the two libraries. If you google (groups) for it (Miguel's posts) you'll find that around '95/'96 SLang was preferred over ncurses because it was faster, smaller, and less buggy. But that is no longer the case, there is not much difference now. Bart From leonard at den.ottolander.nl Thu Jun 15 19:53:56 2006 From: leonard at den.ottolander.nl (Leonard den Ottolander) Date: Fri, 16 Jun 2006 01:53:56 +0200 Subject: Symlink attack in file.c? Message-ID: <1150415636.2615.24.camel@athlon> Hi, Something I came across a couple of times this week, just now in relation to an RFE regarding file permissions on copying fat files in RHs bugzilla (https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=195614): http://cvs.savannah.gnu.org/viewcvs/mc/src/file.c?root=mc&r1=1.28&r2=1.29 A commit by "pavel" (Machek?) who added the remark "FIXME: You have security hole here, btw. Imagine copying to /tmp and symlink attack :-(" Is there anybody that can explain to me what he's concerned about and if that is still an issue? If so this is a rather long standing hole... If not, let's get rid of that warning. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY at gnu.org Thu Jun 15 18:27:30 2006 From: INVALID.NOREPLY at gnu.org (purportex) Date: Thu, 15 Jun 2006 22:27:30 +0000 Subject: [bug #16762] Cannot compile mc-2006-06-05-20 In-Reply-To: <20060615-073715.sv36205.52677@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > Message-ID: <20060615-222730.sv50251.60290@savannah.gnu.org> Follow-up Comment #20, bug #16762 (project mc): Yeah, great! I can't compile it with tuesday's version, but with yesterday's I can, thanx :] _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY at gnu.org Fri Jun 16 09:43:02 2006 From: INVALID.NOREPLY at gnu.org (Leonard den Ottolander) Date: Fri, 16 Jun 2006 15:43:02 +0200 Subject: [bug #16829] Crash when formatting paragraph In-Reply-To: <20060613-145453.sv26390.71423@savannah.gnu.org> References: <20060612-123140.sv25628.90055@savannah.gnu.org> <20060612-123314.sv25628.73913@savannah.gnu.org> <20060613-145453.sv26390.71423@savannah.gnu.org> Message-ID: <20060616-154301.sv26390.44190@savannah.gnu.org> Update of bug #16829 (project mc): Status: Invalid => None Assigned to: None => leonardjo Open/Closed: Closed => Open Operating System: GNU/Hurd => All _______________________________________________________ Follow-up Comment #3: Turns out to be a general mc issue after all: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=194562 Jindrich Novy proposes the following solution: https://bugzilla.redhat.com/bugzilla/attachment.cgi?id=131038 _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From jnovy at redhat.com Fri Jun 16 08:30:29 2006 From: jnovy at redhat.com (Jindrich Novy) Date: Fri, 16 Jun 2006 14:30:29 +0200 Subject: [PATCH] segfault fix while formatting paragraph (alt-p) Message-ID: <1150461029.2294.6.camel@localhost.localdomain> Hi, there's a segfault while formatting a paragraph with alt-p. The next_word_start() in wordproc.c misses the upper boundary check. The attached patch fixes it. References/Reproducer: http://bugzilla.redhat.com/194562 Jindrich -------------- next part -------------- A non-text attachment was scrubbed... Name: mc-segfault.patch Type: text/x-patch Size: 1098 bytes Desc: not available Url : http://mail.gnome.org/archives/mc-devel/attachments/20060616/771bdb36/attachment.bin From ptsekov at gmx.net Fri Jun 16 11:57:18 2006 From: ptsekov at gmx.net (Pavel Tsekov) Date: Fri, 16 Jun 2006 18:57:18 +0300 (EEST) Subject: Problems with the mailing list ? Message-ID: Hello, Does anyone miss messages from the mc-devel list ? It seems like some messages do not reach the mailing list at all while others don't reach the mailing list subcsribers. Can anyone confirm or deny this ? Thanks! From jnovy at redhat.com Fri Jun 16 12:54:23 2006 From: jnovy at redhat.com (Jindrich Novy) Date: Fri, 16 Jun 2006 18:54:23 +0200 Subject: better [PATCH] segfault fix while formatting paragraph (alt-p) Message-ID: <1150476863.19192.3.camel@localhost.localdomain> Hi, after some refinement I'm sending a better patch that rewrites next_word_start() and fixes the segfault. Jindrich -------------- next part -------------- A non-text attachment was scrubbed... Name: mc-segfault.patch Type: text/x-patch Size: 1336 bytes Desc: not available Url : http://mail.gnome.org/archives/mc-devel/attachments/20060616/d8f1a8f5/attachment.bin From INVALID.NOREPLY at gnu.org Fri Jun 16 16:20:52 2006 From: INVALID.NOREPLY at gnu.org (Leonard den Ottolander) Date: Fri, 16 Jun 2006 22:20:52 +0200 Subject: [bug #16829] Crash when formatting paragraph In-Reply-To: <20060616-154301.sv26390.44190@savannah.gnu.org> References: <20060612-123140.sv25628.90055@savannah.gnu.org> <20060612-123314.sv25628.73913@savannah.gnu.org> <20060613-145453.sv26390.71423@savannah.gnu.org> <20060616-154301.sv26390.44190@savannah.gnu.org> Message-ID: <20060616-222051.sv26390.93326@savannah.gnu.org> Update of bug #16829 (project mc): Status: None => Fixed Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #4: Pavel Tsekov committed patches to fix this issue. Closing. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From proski at gnu.org Fri Jun 16 23:16:19 2006 From: proski at gnu.org (Pavel Roskin) Date: Fri, 16 Jun 2006 23:16:19 -0400 Subject: Problems with the mailing list ? In-Reply-To: References: Message-ID: <1150514179.29738.20.camel@dv> Hello! On Fri, 2006-06-16 at 18:57 +0300, Pavel Tsekov wrote: > Hello, > > Does anyone miss messages from the mc-devel list ? It seems like some > messages do not reach the mailing list at all while others don't reach > the mailing list subcsribers. Can anyone confirm or deny this ? I have sent an email to the GNOME mailing list administrator. I don't see any delays or mail loss, but let's see what would happen to this message. -- Regards, Pavel Roskin From proski at gnu.org Fri Jun 16 23:27:22 2006 From: proski at gnu.org (Pavel Roskin) Date: Fri, 16 Jun 2006 23:27:22 -0400 Subject: Symlink attack in file.c? In-Reply-To: <1150415636.2615.24.camel@athlon> References: <1150415636.2615.24.camel@athlon> Message-ID: <1150514842.29738.32.camel@dv> Hello, Leonard! On Fri, 2006-06-16 at 01:53 +0200, Leonard den Ottolander wrote: > Something I came across a couple of times this week, just now in > relation to an RFE regarding file permissions on copying fat files in > RHs bugzilla > (https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=195614): > http://cvs.savannah.gnu.org/viewcvs/mc/src/file.c?root=mc&r1=1.28&r2=1.29 > > A commit by "pavel" (Machek?) who added the remark > "FIXME: You have security hole here, btw. Imagine copying to /tmp and > symlink attack :-(" > > Is there anybody that can explain to me what he's concerned about and if > that is still an issue? If so this is a rather long standing hole... If > not, let's get rid of that warning. I think it's still an issue. Suppose the target doesn't exist. Then mc decides that it's OK to create the file and creates it. In the meantime, somebody could have created a symlink, so mc truncates the file pointed to by the symlink. It is a hole indeed, but it needs a good timing to be exploited. The attacker should know which file is about to be overwritten and the symlink should be created after mc has checked that the target doesn't exist, but before mc opens the file for writing. Since mc needs to be interactive, it's hard to avoid accessing the target file more than once. The simplest fix would be to use O_EXCL is there was no target file initially. If it fails for the reason that the file exists, there should be a huge warning that no user should be able to ignore. -- Regards, Pavel Roskin From niko_2501 at yahoo.co.jp Wed Jun 14 02:50:59 2006 From: niko_2501 at yahoo.co.jp (sipieter nicolas) Date: Wed, 14 Jun 2006 15:50:59 +0900 (JST) Subject: mc bugs Message-ID: <20060614065059.50745.qmail@web3704.mail.tnz.yahoo.co.jp> hi there, i would like to say i use a lot mc, it's just great. lately i've been updating my website, and i discovered i could edit my document remotely with mc. (cd /#ftp:bleh:pass at some.ftp.net then push f4 key on the document i wish to edit....) it's really nice but, i've been experiencing problems, at least with the ftp server i use: when i edit documents it take some time, enough to be disconnected from ftp server. in that case mc just re-log me in and properly save the document .. so far so good, but, after a while working like that, mc seems unable from time to time to connect to the ftp server. i even get seg fault, or it just fail to connect randomly.. when this happen, the only choice left is to quit mc and re-launch it .. i would say, i spend between 1 and 10minutes on a document, and i do lots of em per day (maybe 100 or 200minimum) and i have to restart mc at least 20times... i would say something is wrong in the ftp code inside mc. thanks for your time and efforts, mc is really cool to use. -------------------------------------- Let's start Yahoo! Auction - Free Campaign Now! http://pr.mail.yahoo.co.jp/auction/ From ptsekov at gmx.net Sat Jun 17 02:57:06 2006 From: ptsekov at gmx.net (Pavel Tsekov) Date: Sat, 17 Jun 2006 09:57:06 +0300 (EEST) Subject: Problems with the mailing list ? In-Reply-To: <1150514179.29738.20.camel@dv> References: <1150514179.29738.20.camel@dv> Message-ID: Hello Pavel, On Fri, 16 Jun 2006, Pavel Roskin wrote: > On Fri, 2006-06-16 at 18:57 +0300, Pavel Tsekov wrote: >> Hello, >> >> Does anyone miss messages from the mc-devel list ? It seems like some >> messages do not reach the mailing list at all while others don't reach >> the mailing list subcsribers. Can anyone confirm or deny this ? > > I have sent an email to the GNOME mailing list administrator. > > I don't see any delays or mail loss, but let's see what would happen to > this message. I got a copy of your reply which you CC-ed directly to me. The message destined to the mailing list is still not here though. I see that the mailing list software at mail.gnome.org has been changed - maybe the administrators are doing some kind of upgrade... From leonard at den.ottolander.nl Sat Jun 17 08:46:33 2006 From: leonard at den.ottolander.nl (Leonard den Ottolander) Date: Sat, 17 Jun 2006 14:46:33 +0200 Subject: mc bugs In-Reply-To: <20060614065059.50745.qmail@web3704.mail.tnz.yahoo.co.jp> References: <20060614065059.50745.qmail@web3704.mail.tnz.yahoo.co.jp> Message-ID: <1150548393.2528.12.camel@athlon> Hello Sipieter, On Wed, 2006-06-14 at 15:50 +0900, sipieter nicolas wrote: > but, after a while working like that, mc seems unable from > time to time to connect to the ftp server. i even get seg > fault, or it just fail to connect randomly.. Connection failures are not necessarily a problem with mc (not saying the ftp code is perfect though ;) ). However, if you do see segmentation faults please open a bug report at http://savannah.gnu.org/bugs/?group=mc and attach a backtrace. Don't forget to mention system information and please do *not* report bugs against mc versions before 4.6.1. (Use ulimit -c 99999 to enable core dumps on your system. Use gdb and the bt command to get a backtrace.) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard at den.ottolander.nl Sat Jun 17 08:52:38 2006 From: leonard at den.ottolander.nl (Leonard den Ottolander) Date: Sat, 17 Jun 2006 14:52:38 +0200 Subject: Bugzilla submits only against >= 4.6.1 Message-ID: <1150548759.2528.20.camel@athlon> Hello Pavel, IMO it doesn't make much sense for people to be able to report bugs against mc versions older than 4.6.1. I presume most developers will agree with me (please protest if not). Could you please update the Savannah bugs "Release" drop down menu to only contain the following elements? older than 4.6.1 (upgrade first!) 4.6.1 current (CVS or snapshot) I don't think we need the entries "All versions" and "None" but these might be hard coded default entries. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY at gnu.org Sat Jun 17 08:59:39 2006 From: INVALID.NOREPLY at gnu.org (Leonard den Ottolander) Date: Sat, 17 Jun 2006 14:59:39 +0200 Subject: [bug #16762] Cannot compile mc-2006-06-05-20 In-Reply-To: <20060615-222730.sv50251.60290@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > <20060615-222730.sv50251.60290@savannah.gnu.org> Message-ID: <20060617-145938.sv26390.15283@savannah.gnu.org> Follow-up Comment #21, bug #16762 (project mc): If Roland doesn't feel the need to add any remarks to this approach I suppose this patch can be submitted and this report closed. (I did not verify the code other than glancing over it, but I trust it to be ok ;) .) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY at gnu.org Sat Jun 17 11:51:25 2006 From: INVALID.NOREPLY at gnu.org (Pavel Tsekov) Date: Sat, 17 Jun 2006 18:51:25 +0300 Subject: [bug #16762] Cannot compile mc-2006-06-05-20 In-Reply-To: <20060617-145938.sv26390.15283@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > <20060615-222730.sv50251.60290@savannah.gnu.org> <20060617-145938.sv26390.15283@savannah.gnu.org> Message-ID: <20060617-185125.sv36205.47362@savannah.gnu.org> Update of bug #16762 (project mc): Status: None => Fixed Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #22: I've just commited the patch. It should be OK. It was tested and reported to work by Pavel Shirshov, purportex and yaroslav. If coreutils configure tests are modified to include tests for: 1) the presence of field f_fstypename in struct statvfs 2) the type of the first argument ot getmntinfo() we will remove the homebrew tests from AC_GET_FS_INFO and use those provided by coreutils. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY at gnu.org Sat Jun 17 15:26:40 2006 From: INVALID.NOREPLY at gnu.org (Leonard den Ottolander) Date: Sat, 17 Jun 2006 21:26:40 +0200 Subject: [bug #16762] Cannot compile mc-2006-06-05-20 In-Reply-To: <20060617-185125.sv36205.47362@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > <20060615-222730.sv50251.60290@savannah.gnu.org> <20060617-145938.sv26390.15283@savannah.gnu.org> <20060617-185125.sv36205.47362@savannah.gnu.org> Message-ID: <20060617-212640.sv26390.65809@savannah.gnu.org> Follow-up Comment #23, bug #16762 (project mc): > If coreutils configure tests are modified to include tests for: > > 1) the presence of field f_fstypename in struct statvfs > > 2) the type of the first argument ot getmntinfo() > > we will remove the homebrew tests from AC_GET_FS_INFO and use > those provided by coreutils. Have you contacted the coreutils maintainers about this? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY at gnu.org Sat Jun 17 15:34:36 2006 From: INVALID.NOREPLY at gnu.org (Pavel Tsekov) Date: Sat, 17 Jun 2006 22:34:36 +0300 Subject: [bug #16762] Cannot compile mc-2006-06-05-20 In-Reply-To: <20060617-212640.sv26390.65809@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > <20060615-222730.sv50251.60290@savannah.gnu.org> <20060617-145938.sv26390.15283@savannah.gnu.org> <20060617-185125.sv36205.47362@savannah.gnu.org> <20060617-212640.sv26390.65809@savannah.gnu.org> Message-ID: <20060617-223436.sv36205.11011@savannah.gnu.org> Follow-up Comment #24, bug #16762 (project mc): No. Maybe you can drop them a message ? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY at gnu.org Sun Jun 18 10:55:15 2006 From: INVALID.NOREPLY at gnu.org (hajma) Date: Sun, 18 Jun 2006 14:55:15 +0000 Subject: [bug #16871] czech translation - description overlaps in the chmod dialogue Message-ID: <20060618-145515.sv50336.41107@savannah.gnu.org> URL: Summary: czech translation - description overlaps in the chmod dialogue Project: GNU Midnight Commander Submitted by: tropikhajma Submitted on: Sunday 06/18/2006 at 14:55 Category: None Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Linux _______________________________________________________ Details: see screenshot: ftp://tropikhajma.vserver.cz/bugs/mc.png the first two lines of the "File" rectangle get overwritten by text from the "mode" rectangle. IMHO replacing ??slo u?ivatele with UID would make it. Side note: caron is missing above the second e in "zm?ne" and the word "nastaven?" should follow the word "zm?n?" _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY at gnu.org Sun Jun 18 11:01:50 2006 From: INVALID.NOREPLY at gnu.org (Istvan Kispal) Date: Sun, 18 Jun 2006 15:01:50 +0000 Subject: [bug #16872] ftpfs lists directories begining with '2006 ' incorrectly Message-ID: <20060618-150150.sv50338.79195@savannah.gnu.org> URL: Summary: ftpfs lists directories begining with '2006 ' incorrectly Project: GNU Midnight Commander Submitted by: kispaljr Submitted on: Sunday 06/18/2006 at 15:01 Category: VFS Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Linux _______________________________________________________ Details: if a directory on an ftp server has the following subdirectories: 1990 06 19 hetfo 2005 06 23 akarmi 2006 06 23 akarmi then they are listed in mc (console mode version, using ftpfs) incorrectly as: 06 19 hetfo 06 23 akarmi 06 23 akarmi if you type cd 2006 06 19 hetfo manually then you can cd into the subdir, but not with taping enter on the (incorrectly listed) directory name. it's rather uncomofortable. _______________________________________________________ Carbon-Copy List: CC Address | Comment ------------------------------------+----------------------------- kispaljr | _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY at gnu.org Sun Jun 18 11:33:07 2006 From: INVALID.NOREPLY at gnu.org (Leonard den Ottolander) Date: Sun, 18 Jun 2006 17:33:07 +0200 Subject: [bug #16871] czech translation - description overlaps in the chmod dialogue In-Reply-To: <20060618-145515.sv50336.41107@savannah.gnu.org> References: <20060618-145515.sv50336.41107@savannah.gnu.org> Message-ID: <20060618-173307.sv26390.76425@savannah.gnu.org> Update of bug #16871 (project mc): Status: None => Need Info Assigned to: None => leonardjo _______________________________________________________ Follow-up Comment #1: Please provide a patch. Mske sure you use the correct character set in the file. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY at gnu.org Sun Jun 18 12:08:05 2006 From: INVALID.NOREPLY at gnu.org (Leonard den Ottolander) Date: Sun, 18 Jun 2006 18:08:05 +0200 Subject: [bug #16872] ftpfs lists directories begining with '2006 ' incorrectly In-Reply-To: <20060618-150150.sv50338.79195@savannah.gnu.org> References: <20060618-150150.sv50338.79195@savannah.gnu.org> Message-ID: <20060618-180805.sv26390.79688@savannah.gnu.org> Update of bug #16872 (project mc): Status: None => Duplicate Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #1: Be so kind to check for exisiting reports before submitting new reports. This is a duplicate of 10645 and 4327. This issue has been fixed in CVS. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY at gnu.org Sun Jun 18 12:09:17 2006 From: INVALID.NOREPLY at gnu.org (hajma) Date: Sun, 18 Jun 2006 16:09:17 +0000 Subject: [bug #16871] czech translation - description overlaps in the chmod dialogue In-Reply-To: <20060618-173307.sv26390.76425@savannah.gnu.org> References: <20060618-145515.sv50336.41107@savannah.gnu.org> <20060618-173307.sv26390.76425@savannah.gnu.org> Message-ID: <20060618-160916.sv50336.88803@savannah.gnu.org> Follow-up Comment #2, bug #16871 (project mc): I found out that the bug was fixed in revision 1.67 of cs.po, it just didn't make it into mc-4.6.1 in Mandriva Cooker I'm using. as regards the side note I attach corrected cs.po that fixes it. _______________________________________________________ Additional Item Attachment: File name: cs.po Size:73 KB cs.po _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY at gnu.org Sun Jun 18 12:11:42 2006 From: INVALID.NOREPLY at gnu.org (Leonard den Ottolander) Date: Sun, 18 Jun 2006 18:11:42 +0200 Subject: [bug #16871] czech translation - description overlaps in the chmod dialogue In-Reply-To: <20060618-160916.sv50336.88803@savannah.gnu.org> References: <20060618-145515.sv50336.41107@savannah.gnu.org> <20060618-173307.sv26390.76425@savannah.gnu.org> <20060618-160916.sv50336.88803@savannah.gnu.org> Message-ID: <20060618-181142.sv26390.23707@savannah.gnu.org> Update of bug #16871 (project mc): Status: Need Info => Invalid Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #3: Ok. Closing "invalid" as the issue didn't exist anymore when the issue was reported. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From proski at gnu.org Mon Jun 19 17:49:30 2006 From: proski at gnu.org (Pavel Roskin) Date: Mon, 19 Jun 2006 17:49:30 -0400 Subject: Bugzilla submits only against >= 4.6.1 In-Reply-To: <1150548759.2528.20.camel@athlon> References: <1150548759.2528.20.camel@athlon> Message-ID: <1150753770.12841.19.camel@dv> Hello! On Sat, 2006-06-17 at 14:52 +0200, Leonard den Ottolander wrote: > Hello Pavel, > > IMO it doesn't make much sense for people to be able to report bugs > against mc versions older than 4.6.1. I presume most developers will > agree with me (please protest if not). > > Could you please update the Savannah bugs "Release" drop down menu to > only contain the following elements? > > older than 4.6.1 (upgrade first!) > 4.6.1 > current (CVS or snapshot) I think that would be solving a social problem using technical means. If you check Red Hat's Bugzilla you'll see that it's possible to enter a bug e.g. for Fedora Core 1. Some bugs can be more long-lived than you may think. I believe the quality of the bug report should be judged not only by the version. Bugs against old versions should be discouraged, but not outright forbidden. Besides, there is only one bug filed for "older than 4.5.55". > I don't think we need the entries "All versions" and "None" but these > might be hard coded default entries. "None" is hardcoded, "All versions" is not. I think "all version" is a valid value in some cases. -- Regards, Pavel Roskin From leonard at den.ottolander.nl Mon Jun 19 19:02:49 2006 From: leonard at den.ottolander.nl (Leonard den Ottolander) Date: Tue, 20 Jun 2006 01:02:49 +0200 Subject: Bugzilla submits only against >= 4.6.1 In-Reply-To: <1150753770.12841.19.camel@dv> References: <1150548759.2528.20.camel@athlon> <1150753770.12841.19.camel@dv> Message-ID: <1150758169.2571.7.camel@athlon> Hello Pavel, On Mon, 2006-06-19 at 17:49 -0400, Pavel Roskin wrote: > Some bugs can be more long-lived than you may think. I believe the > quality of the bug report should be judged not only by the version. > Bugs against old versions should be discouraged, but not outright > forbidden. > > Besides, there is only one bug filed for "older than 4.5.55". I didn't mean old bugs should be removed from the bug list. I just feel it doesn't make much sense for people to file new bugs against anything older than 4.6.1. There is no added value to let people add bugs against older versions. If the issue no longer exists it's just wasted time, and if it does still exist the reporter should make the effort to verify the issue indeed still exists in 4.6.1 or later. > "None" is hardcoded, "All versions" is not. I think "all version" is a > valid value in some cases. Yes, but only if you keep all the other versions as valid options. If we'd drop anything but latest stable and CVS there's not much use leaving "all versions" around. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From proski at gnu.org Tue Jun 20 14:07:39 2006 From: proski at gnu.org (Pavel Roskin) Date: Tue, 20 Jun 2006 14:07:39 -0400 Subject: Bugzilla submits only against >= 4.6.1 In-Reply-To: <1150758169.2571.7.camel@athlon> References: <1150548759.2528.20.camel@athlon> <1150753770.12841.19.camel@dv> <1150758169.2571.7.camel@athlon> Message-ID: <1150826859.1969.7.camel@dv> On Tue, 2006-06-20 at 01:02 +0200, Leonard den Ottolander wrote: > I didn't mean old bugs should be removed from the bug list. I just feel > it doesn't make much sense for people to file new bugs against anything > older than 4.6.1. > > There is no added value to let people add bugs against older versions. Anyone who takes time to file a new bug is adding some value to the project. It may be more or less valuable, but we shouldn't give the impression that we don't want to hear about the problem. > If the issue no longer exists it's just wasted time, and if it does > still exist the reporter should make the effort to verify the issue > indeed still exists in 4.6.1 or later. Ideally, yes. But not everyone can do it. It's better to have 10 reports for already fixed bugs and one for a bug that still exists than to have neither of them. If you have an example where time was wasted as a result of the availability of the older versions in the bug tracker, I may reconsider. > > "None" is hardcoded, "All versions" is not. I think "all version" is a > > valid value in some cases. > > Yes, but only if you keep all the other versions as valid options. If > we'd drop anything but latest stable and CVS there's not much use > leaving "all versions" around. I generally assume the bug reporters to be intelligent persons who can make there own judgment how to file a bug. -- Regards, Pavel Roskin From ptsekov at gmx.net Tue Jun 20 14:27:19 2006 From: ptsekov at gmx.net (Pavel Tsekov) Date: Tue, 20 Jun 2006 21:27:19 +0300 (EEST) Subject: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <20060620060123.GD99474@inode.hvn> References: <20060620060123.GD99474@inode.hvn> Message-ID: Hello Stan, On Tue, 20 Jun 2006, Stan. S. Krupoderov wrote: > This Midnight Commander build is modified to use Colorer-take5 as a syntax highlighting engine in standard mc editor. > http://colorer.sourceforge.net/mc.html That's just great! > Maybe it can be useful for someone. Any opinions? Sure it will! Some time ago I tried myself to get colorer to work with MC. Unfortunately due to time constraints I abandoned the idea - I just didn't have enough time to study how colorer works properly. I've downloaded MC-Colorer's source tarball today and I took a look at the code. Though I haven't studied the code in depth I can say that it seems pretty high quality. After all it is written by the colorer's author himself - who could understand better how colorer works :) I'll try to contact him and see what he thinks about integrating his work into MC's source tree. It would be also very useful if we could use the work done on MC-Colorer to get syntax highlighting in the viewer too - this was one of the tasks I was trying to achieve when I started investigating colorer. Thanks! From ptsekov@gmx.net Thu Jun 1 08:53:31 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E31023B01AD for ; Thu, 1 Jun 2006 08:53:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03324-10 for ; Thu, 1 Jun 2006 08:53:29 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by menubar.gnome.org (Postfix) with SMTP id D77263B017F for ; Thu, 1 Jun 2006 08:53:28 -0400 (EDT) Received: (qmail invoked by alias); 01 Jun 2006 12:53:27 -0000 Received: from 87-126-39-234.btc-net.bg (EHLO sole) [87.126.39.234] by mail.gmx.net (mp040) with SMTP; 01 Jun 2006 14:53:27 +0200 X-Authenticated: #14308112 Date: Thu, 1 Jun 2006 15:52:18 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: mc@rigacci.org In-Reply-To: Message-ID: References: <20060529075733.GD12204@rigacci.org> <20060530085432.GB15022@rigacci.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.555 tagged_above=-999 required=2 tests=[AWL=0.045, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.555 X-Spam-Level: Cc: MC dev Subject: Re: Blocking DNS lookup on MC startup X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Jun 2006 12:53:31 -0000 On Wed, 31 May 2006, Pavel Tsekov wrote: > There are more calls to gethostbyname() after the get_myname () call. > load_interfaces() is doing gethostbyname() for every single value of the > "interfaces" parameter of smb.conf. If interfaces doesn't contain an > ip_address/netmask pair load_interfaces() tries to resolve the value > via gethostbyname() :( Another solution would be to delay the samba lib initialization until the first samba request. This way it will be clearly visible for the user that the hang is due to a samba request. Of course the initialization must be made interruptable. Opinions ? From ptsekov@gmx.net Fri Jun 2 09:09:02 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 74C403B01DB for ; Fri, 2 Jun 2006 09:09:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27932-10 for ; Fri, 2 Jun 2006 09:09:01 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by menubar.gnome.org (Postfix) with SMTP id 8AF793B000C for ; Fri, 2 Jun 2006 09:09:00 -0400 (EDT) Received: (qmail invoked by alias); 02 Jun 2006 13:08:58 -0000 Received: from 87-126-39-234.btc-net.bg (EHLO sole) [87.126.39.234] by mail.gmx.net (mp032) with SMTP; 02 Jun 2006 15:08:58 +0200 X-Authenticated: #14308112 Date: Fri, 2 Jun 2006 16:07:49 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: vadim In-Reply-To: <200605051503.27061.vadim-lvv@yandex.ru> Message-ID: References: <200605051503.27061.vadim-lvv@yandex.ru> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: [patch] for gnome & kde trash X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 13:09:02 -0000 Hello Vadim, On Fri, 5 May 2006, vadim wrote: > This patch being proposed is created for support of the trash in gnome or in kde. > The files get into the trash only from /home directory and while mc is run in gnome or kde. > I think that root does not need the trash but users must not delete files outside home directory > and not work without GUI. This patch is not acceptable as is. I suppose both GNOME and KDE provide means for moving a file to the trash. I'd be happy to review patches which delete a file to the trash with the appropriate interfaces. Btw note that both GNOME and KDE are supported on systems other than Linux. Next time when you submit a patch for review, please, remove any debugging output that you've used while developing the patch. Patches should be stripped off any information which is not related to the patch. Also avoid whitespace changes, formating changes, etc - they make the patch harder to read. Thanks! From leonard@den.ottolander.nl Fri Jun 2 12:38:53 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 04A363B045F for ; Fri, 2 Jun 2006 12:38:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08517-02 for ; Fri, 2 Jun 2006 12:38:52 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 6EB3C3B00A5 for ; Fri, 2 Jun 2006 12:38:50 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id ECE05402A for ; Fri, 2 Jun 2006 18:38:48 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id agae4SbZ5JJN for ; Fri, 2 Jun 2006 18:38:44 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 5E80C4023 for ; Fri, 2 Jun 2006 18:38:44 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <20060601184743.E643513D16@server8.alinet.sk> References: <20060601184743.E643513D16@server8.alinet.sk> Content-Type: text/plain Date: Fri, 02 Jun 2006 18:40:21 +0200 Message-Id: <1149266421.2605.17.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.306 tagged_above=-999 required=2 tests=[AWL=-0.150, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_RW=0.077, TW_SR=0.077, TW_WX=0.077, TW_XR=0.077] X-Spam-Score: -2.306 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 16:38:53 -0000 Hello Dusan, You are slightly overdoing it with the info. Not sure what the ps, mount and dmesg output are needed for for example... Plus the use of multipart html mail causes quite some waste of disk space and bandwidth. Please be a bit more considerate next time you ask a question. O, and please ask user questions on the user list. On Thu, 2006-06-01 at 20:47 +0200, rekcah wrote: > # ls -l /usr/lib/mc/cons.saver > -rwsrwxrwx 1 root root 5696 May 5 2005 /usr/lib/mc/cons.saver Well that binary is suid root which should work - although suid vcsa is preferred, assuming the /dev/vcsa devices are owned by a user vcsa. Please take a look just below the header of src/cons.saver.c -, but I am wondering if you are actually looking at the correct binary. The latest FC4 mc rpm I checked has cons.saver located in /usr/libexec/mc/. By the way, you do *not* want suid binaries world writable!!! Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Fri Jun 2 12:40:25 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4F39A3B012E for ; Fri, 2 Jun 2006 12:40:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08459-09 for ; Fri, 2 Jun 2006 12:40:24 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 441803B00C8 for ; Fri, 2 Jun 2006 12:40:24 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 6374C4023 for ; Fri, 2 Jun 2006 18:40:23 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id Sv8OzhsaaR-J for ; Fri, 2 Jun 2006 18:40:23 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 0150A4021 for ; Fri, 2 Jun 2006 18:40:22 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <1149266421.2605.17.camel@athlon> References: <20060601184743.E643513D16@server8.alinet.sk> <1149266421.2605.17.camel@athlon> Content-Type: text/plain Date: Fri, 02 Jun 2006 18:42:00 +0200 Message-Id: <1149266520.2605.18.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.714 tagged_above=-999 required=2 tests=[AWL=-0.739, BAYES_05=-1.11, FORGED_RCVD_HELO=0.135] X-Spam-Score: -1.714 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 16:40:25 -0000 On Fri, 2006-06-02 at 18:40 +0200, Leonard den Ottolander wrote: > O, and please ask user questions on the user list. Duh! It was not sent to this list in the first place. Scuze me ;) . Leonard. -- mount -t life -o ro /dev/dna /genetic/research From egmont@uhulinux.hu Fri Jun 2 12:43:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 32D323B0135 for ; Fri, 2 Jun 2006 12:43:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08798-05 for ; Fri, 2 Jun 2006 12:43:33 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id E8D213B0507 for ; Fri, 2 Jun 2006 12:43:32 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id 4CE6B7FA5 for ; Fri, 2 Jun 2006 18:43:31 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25536-07 for ; Fri, 2 Jun 2006 18:43:27 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id 99CA67F4E for ; Fri, 2 Jun 2006 18:43:27 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Fri, 2 Jun 2006 18:43:27 +0200 Date: Fri, 2 Jun 2006 18:43:27 +0200 From: Egmont Koblinger To: mc-devel@gnome.org Message-ID: <20060602164326.GB5134@cs.bme.hu> References: <20060601184743.E643513D16@server8.alinet.sk> <1149266421.2605.17.camel@athlon> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1149266421.2605.17.camel@athlon> User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.855 tagged_above=-999 required=2 tests=[AWL=-0.745, BAYES_05=-1.11] X-Spam-Score: -1.855 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 16:43:36 -0000 On Fri, Jun 02, 2006 at 06:40:21PM +0200, Leonard den Ottolander wrote: > By the way, you do *not* want suid binaries world writable!!! OT: The linux kernel removes the set[ug]id bit as soon as you modify the file. However, other systems may not do so. -- Egmont From leonard@den.ottolander.nl Fri Jun 2 12:50:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1FBE63B0325 for ; Fri, 2 Jun 2006 12:50:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09252-02 for ; Fri, 2 Jun 2006 12:50:26 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 174AD3B0135 for ; Fri, 2 Jun 2006 12:50:26 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 1F6824023 for ; Fri, 2 Jun 2006 18:50:25 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 9HbEI4Iozrqp for ; Fri, 2 Jun 2006 18:50:23 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 3AD194021 for ; Fri, 2 Jun 2006 18:50:23 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <20060602164326.GB5134@cs.bme.hu> References: <20060601184743.E643513D16@server8.alinet.sk> <1149266421.2605.17.camel@athlon> <20060602164326.GB5134@cs.bme.hu> Content-Type: text/plain Date: Fri, 02 Jun 2006 18:52:00 +0200 Message-Id: <1149267120.2605.23.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 16:50:27 -0000 Hello Egmont, On Fri, 2006-06-02 at 18:43 +0200, Egmont Koblinger wrote: > OT: > The linux kernel removes the set[ug]id bit as soon as you modify the file. > However, other systems may not do so. Ok. I didn't know that. Does this only happen with 2.6 kernels or also with 2.4 kernels? Leonard. -- mount -t life -o ro /dev/dna /genetic/research From egmont@uhulinux.hu Fri Jun 2 13:03:12 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3E6D63B00A5 for ; Fri, 2 Jun 2006 13:03:12 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09674-09 for ; Fri, 2 Jun 2006 13:03:09 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id A4DE33B026C for ; Fri, 2 Jun 2006 13:03:09 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id 88C9E803E for ; Fri, 2 Jun 2006 19:03:08 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25507-04 for ; Fri, 2 Jun 2006 19:03:04 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id C51957F4E for ; Fri, 2 Jun 2006 19:03:04 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Fri, 2 Jun 2006 19:03:04 +0200 Date: Fri, 2 Jun 2006 19:03:04 +0200 From: Egmont Koblinger To: mc-devel@gnome.org Message-ID: <20060602170304.GC5134@cs.bme.hu> References: <20060601184743.E643513D16@server8.alinet.sk> <1149266421.2605.17.camel@athlon> <20060602164326.GB5134@cs.bme.hu> <1149267120.2605.23.camel@athlon> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1149267120.2605.23.camel@athlon> User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.58 tagged_above=-999 required=2 tests=[AWL=0.019, BAYES_00=-2.599] X-Spam-Score: -2.58 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 17:03:12 -0000 On Fri, Jun 02, 2006 at 06:52:00PM +0200, Leonard den Ottolander wrote: > Ok. I didn't know that. Does this only happen with 2.6 kernels or also > with 2.4 kernels? I think it's a really very old feature. BTW a world-writable binary (even without a setuid bit) that is likely to be executed by many different users _is_ a big security hole. Anyone can easily replace it with a binary that removes your files or similar... -- Egmont From ossi@kde.org Fri Jun 2 14:51:49 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A82423B0B87 for ; Fri, 2 Jun 2006 14:51:49 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15831-06 for ; Fri, 2 Jun 2006 14:51:45 -0400 (EDT) Received: from ktown.kde.org (ktown.kde.org [131.246.120.250]) by menubar.gnome.org (Postfix) with SMTP id 90FC63B0414 for ; Fri, 2 Jun 2006 14:51:44 -0400 (EDT) Received: (qmail 27395 invoked from network); 2 Jun 2006 18:51:43 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 2 Jun 2006 18:51:43 -0000 Received: from ossi by ugly.local with local (masqmail 0.2.21) id 1FmEhZ-0yc-00 for ; Fri, 02 Jun 2006 20:48:53 +0200 Date: Fri, 2 Jun 2006 20:48:53 +0200 From: Oswald Buddenhagen To: mc-devel@gnome.org Message-ID: <20060602184853.GB3439@ugly.local> Mail-Followup-To: mc-devel@gnome.org References: <200605051503.27061.vadim-lvv@yandex.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.585 tagged_above=-999 required=2 tests=[AWL=0.014, BAYES_00=-2.599] X-Spam-Score: -2.585 X-Spam-Level: Subject: Re: [patch] for gnome & kde trash X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 18:51:49 -0000 On Fri, Jun 02, 2006 at 04:07:49PM +0300, Pavel Tsekov wrote: > This patch is not acceptable as is. > indeed. > I suppose both GNOME and KDE provide means for moving a file to the > trash. > who cares? the authoritative reference is http://www.ramendik.ru/docs/trashspec.html -- Hi! I'm a .signature virus! Copy me into your ~/.signature, please! -- Chaos, panic, and disorder - my work here is done. From nerijus@users.sourceforge.net Sun Jun 4 14:45:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4D6763B02F2 for ; Sun, 4 Jun 2006 14:45:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03996-07 for ; Sun, 4 Jun 2006 14:45:14 -0400 (EDT) Received: from mx.dtiltas.lt (mx.dt.lt [84.32.38.8]) by menubar.gnome.org (Postfix) with ESMTP id 4BE163B02D7 for ; Sun, 4 Jun 2006 14:45:14 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by mx.dtiltas.lt (UAB "Duomenu Tiltas" Mail service) with ESMTP id E3E8BC6D5 for ; Sun, 4 Jun 2006 21:45:11 +0300 (EEST) Received: from mx.dtiltas.lt ([84.32.38.8]) by localhost (mx.dt.lt [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05781-01-4 for ; Sun, 4 Jun 2006 21:45:10 +0300 (EEST) Received: from nerijus.sat.lt (clt-84-32-63-24.dtiltas.lt [84.32.63.24]) by mx.dtiltas.lt (UAB "Duomenu Tiltas" Mail service) with ESMTP id 6D96FCEAC for ; Sun, 4 Jun 2006 21:20:11 +0300 (EEST) Received: (qmail 25458 invoked from network); 4 Jun 2006 18:18:56 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 4 Jun 2006 18:18:56 -0000 Date: Sun, 4 Jun 2006 21:18:56 +0300 From: Nerijus Baliunas To: Leonard den Ottolander MIME-Version: 1.0 Content-Type: TEXT/PLAIN; CHARSET=US-ASCII Content-Disposition: INLINE X-Mailer: Mahogany 0.66.0 'Clio', compiled for Linux 2.6.16-1.2080_3.rhfc5.cubbi_suspend2 i686 Message-Id: <20060604182011.6D96FCEAC@mx.dtiltas.lt> X-Virus-Scanned: amavisd-new at dt.lt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.49 tagged_above=-999 required=2 tests=[AWL=-0.885, BAYES_20=-0.74, FORGED_RCVD_HELO=0.135] X-Spam-Score: -1.49 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Open mailboxes with mailfs X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jun 2006 18:45:16 -0000 Hello, I see you added it to mc.ext.in (very nice btw!): +# Mailboxes +type/^ASCII\ mail\ text$ + Open=%cd %p#mailfs But 'file' on some of my mailboxes gives: ASCII mail text, with very long lines So I suggest removing "$" from the end. Regards, Nerijus From leonard@den.ottolander.nl Mon Jun 5 06:25:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 71A173B0152 for ; Mon, 5 Jun 2006 06:25:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21866-05 for ; Mon, 5 Jun 2006 06:25:20 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 1F2F03B002C for ; Mon, 5 Jun 2006 06:25:19 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 5F3184023 for ; Mon, 5 Jun 2006 12:25:14 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id lf2l-E6+Tgqm for ; Mon, 5 Jun 2006 12:25:13 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id DE0E34021 for ; Mon, 5 Jun 2006 12:25:12 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <20060604182011.6D96FCEAC@mx.dtiltas.lt> References: <20060604182011.6D96FCEAC@mx.dtiltas.lt> Content-Type: text/plain Date: Mon, 05 Jun 2006 12:26:51 +0200 Message-Id: <1149503211.2473.5.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.526 tagged_above=-999 required=2 tests=[AWL=-0.921, BAYES_20=-0.74, FORGED_RCVD_HELO=0.135] X-Spam-Score: -1.526 X-Spam-Level: Subject: Re: Open mailboxes with mailfs X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 10:25:21 -0000 Hi Nerijus, On Sun, 2006-06-04 at 21:18 +0300, Nerijus Baliunas wrote: > So I suggest removing "$" from the end. Sure. Done. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Mon Jun 5 07:06:58 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 89C683B0382 for ; Mon, 5 Jun 2006 07:06:58 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24348-01 for ; Mon, 5 Jun 2006 07:06:57 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 35A883B00CC for ; Mon, 5 Jun 2006 07:06:57 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id E530E4023 for ; Mon, 5 Jun 2006 13:06:55 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id hdr8SfqyTbj0 for ; Mon, 5 Jun 2006 13:06:54 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 55EE44021 for ; Mon, 5 Jun 2006 13:06:54 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: References: <20060529075733.GD12204@rigacci.org> <20060530085432.GB15022@rigacci.org> Content-Type: text/plain Date: Mon, 05 Jun 2006 13:08:29 +0200 Message-Id: <1149505709.2473.19.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.454 tagged_above=-999 required=2 tests=[AWL=0.010, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.454 X-Spam-Level: Subject: Re: Blocking DNS lookup on MC startup X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 11:06:58 -0000 Hello Pavel, On Thu, 2006-06-01 at 15:52 +0300, Pavel Tsekov wrote: > On Wed, 31 May 2006, Pavel Tsekov wrote: > > load_interfaces() is doing gethostbyname() for every single value of the > > "interfaces" parameter of smb.conf. If interfaces doesn't contain an > > ip_address/netmask pair load_interfaces() tries to resolve the value > > via gethostbyname() :( Are you referring to interpret_addr()? I'd say the case where the interface is identified by a name is a bit of a corner case. > Another solution would be to delay the samba lib initialization until the > first samba request. This way it will be clearly visible for the user that > the hang is due to a samba request. Of course the initialization must be > made interruptable. > > Opinions ? I don't have any fundamental objections against delaying the initialization of smbfs, but is it really worth the effort? Don't you think we catch most cases with making the call to Get_Hostbyname() in get_myname() conditional? Leonard. -- mount -t life -o ro /dev/dna /genetic/research From ptsekov@gmx.net Mon Jun 5 07:42:54 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id DF5603B027B for ; Mon, 5 Jun 2006 07:42:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26687-06 for ; Mon, 5 Jun 2006 07:42:52 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.20]) by menubar.gnome.org (Postfix) with SMTP id A04B23B0704 for ; Mon, 5 Jun 2006 07:42:51 -0400 (EDT) Received: (qmail invoked by alias); 05 Jun 2006 11:42:49 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp039) with SMTP; 05 Jun 2006 13:42:49 +0200 X-Authenticated: #14308112 Date: Mon, 5 Jun 2006 14:41:39 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander In-Reply-To: <1149505709.2473.19.camel@athlon> Message-ID: References: <20060529075733.GD12204@rigacci.org> <20060530085432.GB15022@rigacci.org> <1149505709.2473.19.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.489 tagged_above=-999 required=2 tests=[AWL=-0.024, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.489 X-Spam-Level: Cc: MC development Subject: Re: Blocking DNS lookup on MC startup X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 11:42:54 -0000 On Mon, 5 Jun 2006, Leonard den Ottolander wrote: >>> load_interfaces() is doing gethostbyname() for every single value of the >>> "interfaces" parameter of smb.conf. If interfaces doesn't contain an >>> ip_address/netmask pair load_interfaces() tries to resolve the value >>> via gethostbyname() :( > > Are you referring to interpret_addr()? Yes. > I'd say the case where the interface is identified by a name is a bit of > a corner case. Not really. Please, look here: http://mail.gnome.org/archives/mc-devel/2006-April/msg00036.html http://mail.gnome.org/archives/mc/2006-May/msg00005.html It seems historic samba didn't allow interface names in the "interfaces" directive. However newer samba versions allow the use of interface names and it is used by people. If you think about it - it makes a lot of sense. >> Another solution would be to delay the samba lib initialization until the >> first samba request. This way it will be clearly visible for the user that >> the hang is due to a samba request. Of course the initialization must be >> made interruptable. >> >> Opinions ? > > I don't have any fundamental objections against delaying the > initialization of smbfs, but is it really worth the effort? Don't you > think we catch most cases with making the call to Get_Hostbyname() in > get_myname() conditional? Unfortunately not. Switching to a newer samba lib is another option. It has been discussed in the past - at least in bugzilla there is an entry discussing a switch to newer samba. Of course we can hack the intree samba lib but I think it is not worth doing it. From INVALID.NOREPLY@gnu.org Tue Jun 6 02:43:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 153953B00E1 for ; Tue, 6 Jun 2006 02:43:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28705-10 for ; Tue, 6 Jun 2006 02:43:35 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id EA2AB3B0750 for ; Tue, 6 Jun 2006 02:43:34 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnVHn-0005rO-00; Tue, 06 Jun 2006 02:43:31 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 6 Jun 2006 10:43:31 +0400 Date: Tue, 6 Jun 2006 10:43:31 +0400 To: Oleg Broytmann , mc-devel@gnome.org From: Oleg Broytmann X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16757 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060516 SeaMonkey/1.0.2 X-Apparently-From: 80.252.150.251 (Savane authenticated user phd) Message-Id: <20060606-104330.sv47300.22684@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.591 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.591 X-Spam-Level: Cc: Subject: [bug #16757] Environment variables in a subshell X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 06:43:39 -0000 URL: Summary: Environment variables in a subshell Project: GNU Midnight Commander Submitted by: phd Submitted on: Вторник 06.06.2006 at 10:43 Category: Subshell Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Linux _______________________________________________________ Details: I have a lot of different environments (Python, Java, Postgres and so on), and I source a config file when I want to change the environment; for example running "include svn" runs . $HOME/lib/config/svn that adds SVN directories to PATH, LD_LIBRARY_PATH and MANPATH. When I do this under Midnight Commander I have a minor problem with subshell (at least I think the problem is in the subshell). When I run a program in the mc command line (type "./a_script", press [Enter]) mc (subshell?) passes the modified env vars to the program. But if I just press [Enter] on the program mc passes an old environment as if I didn't source any config file; it seems after pressing [Enter] on a program mc passes its own original environment, not the subshell's environment. I think that's a bug; I'd like mc to pass the modified environment to all programs regardless of the way I start them. Debian GNU/Linux 3.1, mc 4.6.1-pre3. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 6 10:18:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 67F1F3B0189 for ; Tue, 6 Jun 2006 10:18:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27630-03 for ; Tue, 6 Jun 2006 10:18:38 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id BBD723B0184 for ; Tue, 6 Jun 2006 10:18:37 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FncO9-0007M9-00; Tue, 06 Jun 2006 10:18:33 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 6 Jun 2006 14:18:33 +0000 Date: Tue, 6 Jun 2006 14:18:33 +0000 To: yaroslav , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060606-141833.sv47365.36914@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.591 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.591 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:18:39 -0000 URL: Summary: Cannot compile mc-2006-06-05-20 Project: GNU Midnight Commander Submitted by: s68 Submitted on: Вторник 06.06.2006 at 14:18 Category: Core Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: current (CVS or snapshot) Operating System: FreeBSD _______________________________________________________ Details: mountlist.c: In function 'fstype_to_string': mountlist.c:186: error: 'MOUNT_UFS' undeclared (first use in this function) Operating systems are: Darwin Kernel Version 8.4.1: Tue Jan 3 18:23:53 PST 2006; root:xnu-792.7.90.obj~1/RELEASE_I386 i386 i386 and FreeBSD 4.10-RELEASE Configure options are "--with-subshell=optional" _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 6 15:46:07 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BEA503B0AE1 for ; Tue, 6 Jun 2006 15:46:07 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17438-06 for ; Tue, 6 Jun 2006 15:46:06 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 5191C3B0B37 for ; Tue, 6 Jun 2006 15:46:06 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnhUx-00034K-00; Tue, 06 Jun 2006 15:45:55 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 6 Jun 2006 21:45:55 +0200 Date: Tue, 6 Jun 2006 21:45:55 +0200 To: yaroslav , Leonard den Ottolander , mc-devel@gnome.org From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060606-214555.sv26390.24839@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> In-Reply-To: <20060606-141833.sv47365.36914@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 19:46:07 -0000 Follow-up Comment #1, bug #16762 (project mc): Does this fix your issue? _______________________________________________________ Additional Item Attachment: File name: mountlist.c.patch Size:0 KB Define HAVE_F_FSTYPE if HAVE_STRUCT_STATFS_F_FSTYPENAME is defined (regardless of HAVE_STATVFS) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Tue Jun 6 16:12:49 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7DD663B0B94 for ; Tue, 6 Jun 2006 16:12:49 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19120-04 for ; Tue, 6 Jun 2006 16:12:47 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 3125D3B0236 for ; Tue, 6 Jun 2006 16:12:47 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 55F6A4023 for ; Tue, 6 Jun 2006 22:12:45 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 8yy9hanIHWkZ for ; Tue, 6 Jun 2006 22:12:44 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id DCC014021 for ; Tue, 6 Jun 2006 22:12:43 +0200 (CEST) From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Tue, 06 Jun 2006 22:14:23 +0200 Message-Id: <1149624863.2506.3.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Subject: FTP: Cannot change to write-only directory X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 20:12:49 -0000 >From Red Hat's bugzilla: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=194277 Leonard. -- mount -t life -o ro /dev/dna /genetic/research From niccolo@rigacci.org Tue Jun 6 19:21:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 015E33B032C for ; Tue, 6 Jun 2006 19:21:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28814-10 for ; Tue, 6 Jun 2006 19:21:38 -0400 (EDT) Received: from paros.rigacci.org (host50-109.pool8838.interbusiness.it [88.38.109.50]) by menubar.gnome.org (Postfix) with ESMTP id 0704C3B012A for ; Tue, 6 Jun 2006 19:21:37 -0400 (EDT) Received: from niccolo by paros.rigacci.org with local (Exim 4.61) (envelope-from ) id 1Fnkrg-0000eR-Pe for mc-devel@gnome.org; Wed, 07 Jun 2006 01:21:36 +0200 Date: Wed, 7 Jun 2006 01:21:36 +0200 From: mc@rigacci.org To: MC dev Message-ID: <20060606232136.GB2405@rigacci.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11+cvs20060403 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.516 tagged_above=-999 required=2 tests=[AWL=-0.872, BAYES_20=-0.74, FORGED_RCVD_HELO=0.135, NO_REAL_NAME=0.961] X-Spam-Score: -0.516 X-Spam-Level: Subject: Re: Blocking DNS lookup on MC startup X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 23:21:39 -0000 > Another solution would be to delay the samba lib initialization until the > first samba request. This way it will be clearly visible for the user that > the hang is due to a samba request. Is the problem related only to smbfs support? If so, my preference will be an option (or a config file parameter) to start mc with smbfs disabled. Delaying samba lib initialization can be a good solution too, but I think more hard to implement. -- Niccolo Rigacci Firenze - Italy Iraq, missione di pace: 38254 morti - www.iraqbodycount.net From INVALID.NOREPLY@gnu.org Wed Jun 7 04:08:31 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 922DF3B02FF for ; Wed, 7 Jun 2006 04:08:31 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25660-03 for ; Wed, 7 Jun 2006 04:08:28 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 8C01F3B0164 for ; Wed, 7 Jun 2006 04:08:28 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fnt5M-0005Iz-00; Wed, 07 Jun 2006 04:08:16 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 08:08:16 +0000 Date: Wed, 7 Jun 2006 08:08:16 +0000 To: yaroslav , Leonard den Ottolander , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060607-080816.sv47365.26756@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> In-Reply-To: <20060606-214555.sv26390.24839@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 08:08:31 -0000 Follow-up Comment #2, bug #16762 (project mc): > Does this fix your issue? No :( _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 7 05:36:46 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E80643B00A8 for ; Wed, 7 Jun 2006 05:36:45 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31652-05 for ; Wed, 7 Jun 2006 05:36:43 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id D094D3B0BBC for ; Wed, 7 Jun 2006 05:36:42 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnuSs-0001hc-00; Wed, 07 Jun 2006 05:36:38 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 12:36:37 +0300 Date: Wed, 7 Jun 2006 12:36:37 +0300 To: yaroslav , Leonard den Ottolander , Pavel Tsekov , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060607-123637.sv36205.98656@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> In-Reply-To: <20060607-080816.sv47365.26756@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001, UPPERCASE_25_50=0] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 09:36:46 -0000 Follow-up Comment #3, bug #16762 (project mc): The real problem here is that noone sets HAVE_STRUCT_STATFS_F_FSTYPENAME. I.e. there is no test at configure time which sets this. Before Leonard's changes to configure there was a test which used to set HAVE_F_FSTYPENAME. #if defined(HAVE_STATVFS) # if defined(HAVE_STRUCT_STATVFS_F_FSTYPENAME) # define HAVE_F_FSTYPENAME # endif #else # if defined(HAVE_STRUCT_STATFS_F_FSTYPENAME) # define HAVE_F_FSTYPENAME # endif #endif So what happens is that on FreeBSD we take the second branch and since HAVE_F_FSTYPENAME is not set the fstype_to_string() routine is compiled in. Apparently MOUNT_UFS is not available on FreeBSD and the build fails. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 7 05:46:33 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 935FB3B0AE7 for ; Wed, 7 Jun 2006 05:46:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32285-09 for ; Wed, 7 Jun 2006 05:46:32 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3B1893B00A8 for ; Wed, 7 Jun 2006 05:46:32 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnuXU-0001tO-00; Wed, 07 Jun 2006 05:41:24 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 12:41:24 +0300 Date: Wed, 7 Jun 2006 12:41:24 +0300 To: yaroslav , Leonard den Ottolander , Pavel Tsekov , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060607-124124.sv36205.81804@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> In-Reply-To: <20060607-123637.sv36205.98656@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.593 tagged_above=-999 required=2 tests=[AWL=0.007, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.593 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 09:46:33 -0000 Follow-up Comment #4, bug #16762 (project mc): In fact in the past the code used to check whether MOUNT_UFS was defined but the check was removed later and the code assumed the availability of MOUNT_UFS for granted: http://cvs.savannah.gnu.org/viewcvs/mc/mc/src/mountlist.c?sortby=date&r2=1.5&r1=1.4&diff_format=u In my opinion this issue should be handled carefully. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From nadvornik@suse.cz Wed Jun 7 06:18:40 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CEC4B3B08CC for ; Wed, 7 Jun 2006 06:18:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02299-01 for ; Wed, 7 Jun 2006 06:18:37 -0400 (EDT) Received: from mail.suse.cz (styx.suse.cz [82.119.242.94]) by menubar.gnome.org (Postfix) with ESMTP id B22FA3B0B10 for ; Wed, 7 Jun 2006 06:18:36 -0400 (EDT) Received: from sphinx.suse.cz (sphinx.suse.cz [10.20.1.5]) by mail.suse.cz (SUSE CR ESMTP Mailer) with ESMTP id A60356283DB for ; Wed, 7 Jun 2006 12:18:33 +0200 (CEST) From: Vladimir Nadvornik To: mc-devel@gnome.org Date: Wed, 7 Jun 2006 12:18:31 +0200 User-Agent: KMail/1.9.1 References: <200509191419.01556.arekm@pld-linux.org> <1131825589.2735.24.camel@athlon> In-Reply-To: <1131825589.2735.24.camel@athlon> MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_4fqhE9aq8TcWQqY" Message-Id: <200606071218.32428.nadvornik@suse.cz> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 10:18:40 -0000 --Boundary-00=_4fqhE9aq8TcWQqY Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline On Saturday 12 November 2005 20:59, Leonard den Ottolander wrote: > Hi Bart, list, > > On Tue, 2005-09-20 at 08:14 +1200, Bart Oldeman wrote: > > Basically you'd need to apply Fedora's patch, and then (sorry no proper > > patch here but it's not a big deal) > > Attached you'll find a proper patch. I've moved the hunk from global.h > to myslang.h (and dropped the inclusion of slang.h as it is redundant). > > Jindrich, please merge this patch with the UTF8 patch. You might even > consider to build the next mc for FC --with-screen=mcslang, as I see the > FC development tree does not yet feature slang-2. > Hi all, In non-UTF-8 mode slang2 behaves a bit different than the patched slang1. As a result, mc does work with 8bit encodings, like 8859-2 or KOI8. The attached patch fixes the SLsmg_write_nwchars() function to 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. e-mail: nadvornik@suse.cz Drahobejlova 27 tel:+420 2 9654 2373 190 00 Praha 9 fax:+420 2 9654 2374 Ceska republika http://www.suse.cz --Boundary-00=_4fqhE9aq8TcWQqY Content-Type: text/x-diff; charset="iso-8859-6"; name="mc-slang2-fix.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="mc-slang2-fix.patch" diff -ruN mc-4.6.1.orig/edit/editdraw.c mc-4.6.1/edit/editdraw.c --- mc-4.6.1.orig/edit/editdraw.c 2006-06-07 11:57:19.000000000 +0200 +++ mc-4.6.1/edit/editdraw.c 2006-06-07 11:56:30.000000000 +0200 @@ -234,7 +234,7 @@ lowlevel_set_color (color); } #ifdef UTF8 - SLsmg_write_char(textchar); + SLsmg_write_nwchars(&textchar, 1); #else addch (textchar); #endif diff -ruN mc-4.6.1.orig/src/help.c mc-4.6.1/src/help.c --- mc-4.6.1.orig/src/help.c 2006-06-07 11:57:19.000000000 +0200 +++ mc-4.6.1/src/help.c 2006-06-07 11:56:30.000000000 +0200 @@ -461,7 +461,7 @@ len = mbrtowc(&wc, p, MB_CUR_MAX, &mbs); if (len <= 0) len = 1; /* skip broken multibyte chars */ - SLsmg_write_char(wc); + SLsmg_write_nwchars(&wc, 1); p += len - 1; } else #endif diff -ruN mc-4.6.1.orig/src/util.c mc-4.6.1/src/util.c --- mc-4.6.1.orig/src/util.c 2006-06-07 11:57:19.000000000 +0200 +++ mc-4.6.1/src/util.c 2006-06-07 11:56:30.000000000 +0200 @@ -58,8 +58,26 @@ #if SLANG_VERSION >= 20000 void SLsmg_write_nwchars(wchar_t *s, size_t n) { - while(n--) - SLsmg_write_char(*s++); + if (SLsmg_is_utf8_mode()) { /* slang can handle it directly */ + while(n-- && *s) + SLsmg_write_char(*s++); + } + else { /* convert wchars back to 8bit encoding */ + mbstate_t mbs; + memset (&mbs, 0, sizeof (mbs)); + while (n-- && *s) { + char buf[MB_LEN_MAX + 1]; /* should use 1 char, but to be sure */ + if (*s < 0x80) { + SLsmg_write_char(*s++); /* ASCII */ + } + else { + if (wcrtomb(buf, *s++, &mbs) == 1) + SLsmg_write_char((wchar_t)(buf[0])); + else + SLsmg_write_char('?'); /* should not happen */ + } + } + } } #endif diff -ruN mc-4.6.1.orig/src/view.c mc-4.6.1/src/view.c --- mc-4.6.1.orig/src/view.c 2006-06-07 11:57:19.000000000 +0200 +++ mc-4.6.1/src/view.c 2006-06-07 11:56:30.000000000 +0200 @@ -852,7 +852,7 @@ #ifndef UTF8 #define view_add_character(view,c) addch (c) #else /* UTF8 */ -#define view_add_character(view,c) SLsmg_write_char(c) +#define view_add_character(view,c) {wchar_t tmp=c; SLsmg_write_nwchars(&tmp, 1);} #endif /* UTF8 */ #define view_add_one_vline() one_vline() #define view_add_string(view,s) addstr (s) --Boundary-00=_4fqhE9aq8TcWQqY-- From INVALID.NOREPLY@gnu.org Wed Jun 7 07:11:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CBAC03B02C0 for ; Wed, 7 Jun 2006 07:11:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05334-02 for ; Wed, 7 Jun 2006 07:11:24 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id A80AC3B01EA for ; Wed, 7 Jun 2006 07:11:24 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnvwN-0004SN-00; Wed, 07 Jun 2006 07:11:11 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 14:11:10 +0300 Date: Wed, 7 Jun 2006 14:11:10 +0300 To: yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060607-141110.sv36205.29236@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> In-Reply-To: <20060607-124124.sv36205.81804@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.593 tagged_above=-999 required=2 tests=[AWL=0.007, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.593 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 11:11:28 -0000 Update of bug #16762 (project mc): Assigned to: None => ptsekov _______________________________________________________ Follow-up Comment #5: I'll fix this. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From adel@uaemet.gov.ae Tue Jun 6 10:12:04 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6DE6E3B0151 for ; Tue, 6 Jun 2006 10:12:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27387-02 for ; Tue, 6 Jun 2006 10:12:02 -0400 (EDT) Received: from www.uaemet.gov.ae (unknown [213.42.139.195]) by menubar.gnome.org (Postfix) with ESMTP id 90B9A3B00A1 for ; Tue, 6 Jun 2006 10:12:00 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by www.uaemet.gov.ae (Postfix) with ESMTP id A68531DF170 for ; Tue, 6 Jun 2006 18:11:57 +0400 (GST) Received: from uaemet.gov.ae (localhost.localdomain [127.0.0.1]) by www.uaemet.gov.ae (Postfix) with ESMTP id 8116B1DF16F for ; Tue, 6 Jun 2006 10:11:55 -0400 (EDT) From: "Adel Gabr" To: mc-devel@gnome.org Date: Tue, 6 Jun 2006 18:11:55 +0400 Message-Id: <20060606140640.M23835@uaemet.gov.ae> X-Mailer: Open WebMail 1.90 20030212 X-OriginatingIP: 213.42.139.195 (adel) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 X-Virus-Scanned: by AMaViS perl-11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.36 tagged_above=-999 required=2 tests=[BAYES_20=-0.74, DEAR_SOMETHING=2.1] X-Spam-Score: 1.36 X-Spam-Level: * X-Mailman-Approved-At: Wed, 07 Jun 2006 08:10:53 -0400 Subject: mc bug X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: adel@uaemet.gov.ae List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:12:04 -0000 Dear Sir, I have installed Suse in my machine,when I try to use Midnight Commander 4.6.0 using the command 'mc' is not working.But if I use mc -x it is working. The output of `mc -V'is :- master:/rhome> mc -V GNU Midnight Commander 4.6.0 Virtual File System: tarfs, extfs, cpiofs, ftpfs, fish With builtin Editor Using system-installed S-Lang library with terminfo database With subshell support as default With support for background operations With mouse support on xterm and Linux console With support for X11 events With internationalization support With multiple codepages support Please advise and send me the good way to reinstall th mc again. Best regards Adel -- Open WebMail Project (http://openwebmail.org) From jnovy@redhat.com Wed Jun 7 08:58:57 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C33CB3B0599 for ; Wed, 7 Jun 2006 08:58:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 13391-09 for ; Wed, 7 Jun 2006 08:58:52 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 88D823B0CD3 for ; Wed, 7 Jun 2006 08:58:52 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k57CwpAG011897; Wed, 7 Jun 2006 08:58:51 -0400 Received: from pobox.stuttgart.redhat.com (pobox.stuttgart.redhat.com [172.16.2.10]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k57CwpR1031982; Wed, 7 Jun 2006 08:58:51 -0400 Received: from vpn-4-41.stuttgart.redhat.com (vpn-4-41.stuttgart.redhat.com [10.32.4.41]) by pobox.stuttgart.redhat.com (8.12.8/8.12.8) with ESMTP id k57CwoY5017421; Wed, 7 Jun 2006 14:58:50 +0200 From: Jindrich Novy To: Vladimir Nadvornik In-Reply-To: <200606071218.32428.nadvornik@suse.cz> References: <200509191419.01556.arekm@pld-linux.org> <1131825589.2735.24.camel@athlon> <200606071218.32428.nadvornik@suse.cz> Content-Type: text/plain Date: Wed, 07 Jun 2006 14:58:51 +0200 Message-Id: <1149685131.2269.10.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.601 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.601 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 12:58:57 -0000 Hi, On Wed, 2006-06-07 at 12:18 +0200, Vladimir Nadvornik wrote: > On Saturday 12 November 2005 20:59, Leonard den Ottolander wrote: > > Hi Bart, list, > > > > On Tue, 2005-09-20 at 08:14 +1200, Bart Oldeman wrote: > > > Basically you'd need to apply Fedora's patch, and then (sorry no proper > > > patch here but it's not a big deal) > > > > Attached you'll find a proper patch. I've moved the hunk from global.h > > to myslang.h (and dropped the inclusion of slang.h as it is redundant). > > > > Jindrich, please merge this patch with the UTF8 patch. You might even > > consider to build the next mc for FC --with-screen=mcslang, as I see the > > FC development tree does not yet feature slang-2. > > slang-2.0.5 is used since FC5 so only FC4 now uses the old slang-1.4.9. > Hi all, > > In non-UTF-8 mode slang2 behaves a bit different than the patched slang1. > As a result, mc does work with 8bit encodings, like 8859-2 or KOI8. > The attached patch fixes the SLsmg_write_nwchars() function to 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. Thanks for the patch. The last hunk didn't apply as there's no view_add_character used in editdraw.c. Jindrich From INVALID.NOREPLY@gnu.org Wed Jun 7 10:42:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 53FEF3B0CC1 for ; Wed, 7 Jun 2006 10:42:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21355-08 for ; Wed, 7 Jun 2006 10:42:37 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 9ADAF3B0CC8 for ; Wed, 7 Jun 2006 10:42:37 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnzEr-0003qw-00; Wed, 07 Jun 2006 10:42:29 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 17:42:29 +0300 Date: Wed, 7 Jun 2006 17:42:29 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060607-174228.sv36205.47259@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> In-Reply-To: <20060607-141110.sv36205.29236@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.555 tagged_above=-999 required=2 tests=[AWL=-0.032, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.555 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 14:42:39 -0000 Follow-up Comment #6, bug #16762 (project mc): Hello yaroslav, Fetch the latest CVS version of MC and apply the attached patch. Let us know wheter it fixes your problem or not. _______________________________________________________ Additional Item Attachment: File name: getmntinfo-fix.patch Size:3 KB _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 7 15:21:42 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 686D93B029F for ; Wed, 7 Jun 2006 15:21:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07968-09 for ; Wed, 7 Jun 2006 15:21:41 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id CF6CD3B0288 for ; Wed, 7 Jun 2006 15:21:40 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fo3aq-0005OI-00; Wed, 07 Jun 2006 15:21:28 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 21:21:28 +0200 Date: Wed, 7 Jun 2006 21:21:28 +0200 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060607-212128.sv26390.34564@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> In-Reply-To: <20060607-174228.sv36205.47259@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 19:21:42 -0000 Follow-up Comment #7, bug #16762 (project mc): Having the essential code moved into acinclude.m4 instead of mountlist.c seems appropriate as this is where it dissappeared from in the first place. And the inclusion of fstypename.m4 also reintroduces the tests that got lost when I introduced ls-mntd-fs.m4 and fsusage.m4. Haven't tested but appears ok. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Wed Jun 7 16:00:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 29F343B03C4 for ; Wed, 7 Jun 2006 16:00:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10546-07 for ; Wed, 7 Jun 2006 16:00:40 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id DCEC73B0546 for ; Wed, 7 Jun 2006 16:00:39 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id CAC5F4023 for ; Wed, 7 Jun 2006 22:00:38 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id LefPSXgX7Ft3 for ; Wed, 7 Jun 2006 22:00:35 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 5B03B4021 for ; Wed, 7 Jun 2006 22:00:35 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <1149624863.2506.3.camel@athlon> References: <1149624863.2506.3.camel@athlon> Content-Type: text/plain Date: Wed, 07 Jun 2006 22:02:15 +0200 Message-Id: <1149710535.2481.2.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Subject: Re: FTP: Cannot change to write-only directory X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 20:00:44 -0000 Hi, On Tue, 2006-06-06 at 22:14 +0200, Leonard den Ottolander wrote: > https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=194277 False alarm. The issue seems to be recently fixed. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From nadvornik@suse.cz Thu Jun 8 06:02:54 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B12DC3B0619 for ; Thu, 8 Jun 2006 06:02:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24798-05 for ; Thu, 8 Jun 2006 06:02:53 -0400 (EDT) Received: from mail.suse.cz (styx.suse.cz [82.119.242.94]) by menubar.gnome.org (Postfix) with ESMTP id 3DE9D3B0CF2 for ; Thu, 8 Jun 2006 06:02:53 -0400 (EDT) Received: from sphinx.suse.cz (sphinx.suse.cz [10.20.1.5]) by mail.suse.cz (SUSE CR ESMTP Mailer) with ESMTP id A084A62853A; Thu, 8 Jun 2006 12:02:51 +0200 (CEST) From: Vladimir Nadvornik To: Jindrich Novy Date: Thu, 8 Jun 2006 12:02:50 +0200 User-Agent: KMail/1.9.1 References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> In-Reply-To: <1149685131.2269.10.camel@localhost.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606081202.51002.nadvornik@suse.cz> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jun 2006 10:02:54 -0000 > > > > In non-UTF-8 mode slang2 behaves a bit different than the patched slang1. > > As a result, mc does work with 8bit encodings, like 8859-2 or KOI8. > > The attached patch fixes the SLsmg_write_nwchars() function to 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. > > Thanks for the patch. The last hunk didn't apply as there's no > view_add_character used in editdraw.c. > My patch is based on mc-4.6.1 The 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 From ptsekov@gmx.net Thu Jun 8 09:10:57 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 080363B0433 for ; Thu, 8 Jun 2006 09:10:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06345-06 for ; Thu, 8 Jun 2006 09:10:53 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.20]) by menubar.gnome.org (Postfix) with SMTP id 765B03B04FD for ; Thu, 8 Jun 2006 09:10:21 -0400 (EDT) Received: (qmail invoked by alias); 08 Jun 2006 13:10:20 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp029) with SMTP; 08 Jun 2006 15:10:20 +0200 X-Authenticated: #14308112 Date: Thu, 8 Jun 2006 16:09:10 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: MC dev Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.477 tagged_above=-999 required=2 tests=[AWL=-0.012, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.477 X-Spam-Level: Subject: Directory Tree feature X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jun 2006 13:10:57 -0000 Hello, I find the directory tree feature quite obscure and unusable ? Does anyone here feel the same way ? If this is the case I'd like that we discuss how it could be improved. There are several things which I think make the directory tree totally unusable: * When I invoke the "Directory Tree" command and the mode is "Static" I cannot easily navigate trough the directory structure. I'd expect that I'd be able to move around the tree using the arrow keys but it doesn't work this way. To enter a directory and list it contents I have to press Enter which closes the dialog box i.e. I cannot use left and right to navigate the subdirectories. So if I start from the root directory and want to go to /home/ptsekov it will take to invocations of the Directory Tree dialog to do so. * The directory tree remebers its state and if I navigate the directory hierarchy more and more directories become expanded I cannot close them - this makes the tree pretty hard to navigate. * The dynamic mode - I fee totally confused when using it. To some degree it is improvement over the static mode in terms of navigation but all the tree changes just confuse me too much and at some point I just become lost. * The whole dynamic/static mode thing is just too much - I'd prefer a single user friendly mode. From egmont@uhulinux.hu Thu Jun 8 14:13:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6ACE53B0F8F for ; Thu, 8 Jun 2006 14:13:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27351-01 for ; Thu, 8 Jun 2006 14:13:11 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id 7EF663B0F64 for ; Thu, 8 Jun 2006 14:13:11 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id 0A26A7DCA; Thu, 8 Jun 2006 20:13:10 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20809-07; Thu, 8 Jun 2006 20:13:03 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id 735F27EB8; Thu, 8 Jun 2006 20:13:03 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Thu, 8 Jun 2006 20:13:02 +0200 Date: Thu, 8 Jun 2006 20:13:02 +0200 From: Egmont Koblinger To: Vladimir Nadvornik Message-ID: <20060608181302.GA6254@cs.bme.hu> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200606081202.51002.nadvornik@suse.cz> User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.583 tagged_above=-999 required=2 tests=[AWL=0.016, BAYES_00=-2.599] X-Spam-Score: -2.583 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jun 2006 18:13:16 -0000 Hi Vladimir (and others), I've just upgraded to slang-2 in our distro and also updated the UTF-8 patches to mc-4.6.1 (based on SUSE's version). It was easier than I thought it would be. I was glad to see that you had applied plenty of my patches in SUSE (those named "00-*"). Please take a look at here again: https://svn.uhulinux.hu/packages/dev/mc/patches/ 00-77 had to be updated to slang-2. When a user searches for a file by ^S, panel->search_buffer is filled up individually with every single byte pressed. Hence it often contains partial UTF-8 string. Displaying it just happened to work with slang-1, but slang-2 prints the partial UTF-8 as "" or similar. As a result, the cyan box overflows: if you search in the left panel for an existing accented filename, two cyan blocks appear in the right panel. The updated patch first finds the longest valid UTF-8 prefix of the string and only prints that part. You might find 00-79 useful too, it fixes an off-by-one bug introduced by the UTF-8 patches that causes Alt+Backspace to behave differently (erase a whole word and one more character, usually a space) than in bash or in vanilla mc (erase only the word). bye, Egmont From INVALID.NOREPLY@gnu.org Sun Jun 11 04:01:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 29B6A3B0547 for ; Sun, 11 Jun 2006 04:01:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15580-01 for ; Sun, 11 Jun 2006 04:01:14 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 97FD53B00D8 for ; Sun, 11 Jun 2006 04:01:14 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FpKr9-0004mk-00; Sun, 11 Jun 2006 03:59:35 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 11 Jun 2006 10:59:34 +0300 Date: Sun, 11 Jun 2006 10:59:34 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Opera/8.51 (Windows ME; U; en) X-Apparently-From: 87.126.52.205 (Savane authenticated user ptsekov) Message-Id: <20060611-105933.sv36205.22318@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> In-Reply-To: <20060607-212128.sv26390.34564@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 08:01:16 -0000 Follow-up Comment #8, bug #16762 (project mc): Ping! _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Sun Jun 11 07:25:25 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1E7143B062A for ; Sun, 11 Jun 2006 07:25:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06549-04 for ; Sun, 11 Jun 2006 07:25:20 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id B6AB13B0635 for ; Sun, 11 Jun 2006 07:25:19 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id C683B4023; Sun, 11 Jun 2006 13:07:10 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id heh8eT5zCX4n; Sun, 11 Jun 2006 13:07:05 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 258354021; Sun, 11 Jun 2006 13:07:05 +0200 (CEST) From: Leonard den Ottolander To: Jindrich Novy In-Reply-To: <20060608181302.GA6254@cs.bme.hu> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> Content-Type: text/plain Date: Sun, 11 Jun 2006 13:08:46 +0200 Message-Id: <1150024126.2478.14.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 11:25:25 -0000 Hello Jindrich, On Thu, 2006-06-08 at 20:13 +0200, Egmont Koblinger wrote: > I've just upgraded to slang-2 in our distro and also updated the UTF-8 > patches to mc-4.6.1 (based on SUSE's version). It was easier than I thought > it would be. I was glad to see that you had applied plenty of my patches in > SUSE (those named "00-*"). Please take a look at here again: > > https://svn.uhulinux.hu/packages/dev/mc/patches/ Please take notice. It would probably be good if Vladimir and you could keep your UTF-8 patch sets in sync. It just seems wasted effort to do this in two places independently. Some inter-distro communication is not going to hurt. Maybe these patches should be centrally maintained in a contribs tree. Egmonts patches are worth looking at. I've blatantly ignored pushing them to you as I'd expected you to integrate them over time. I've probably not made it clear enough to you before that these patches are worth considering. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Sun Jun 11 08:00:33 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 70A6A3B057C for ; Sun, 11 Jun 2006 08:00:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08035-03 for ; Sun, 11 Jun 2006 08:00:30 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id DDF813B062F for ; Sun, 11 Jun 2006 08:00:29 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 6293F4023 for ; Sun, 11 Jun 2006 13:25:30 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id eSqOxfQ23SQl for ; Sun, 11 Jun 2006 13:25:27 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 44AED4021 for ; Sun, 11 Jun 2006 13:25:27 +0200 (CEST) From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Sun, 11 Jun 2006 13:27:09 +0200 Message-Id: <1150025229.2478.17.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Subject: [Fwd: [Bug 194777] New: mc hangs when copying file with no read perm over fish] X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 12:00:33 -0000 Hi, I can confirm this behaviour. Probably fish needs to test permissions before attempting to copy. Leonard. -------- Forwarded Message -------- From: bugzilla at redhat.com To: leonard-rh-bugzilla at den.ottolander.nl Subject: [Bug 194777] New: mc hangs when copying file with no read perm over fish Date: Sat, 10 Jun 2006 09:19:40 -0400 Please do not reply directly to this email. All additional comments should be made in the comments box of this bug report. https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=194777 Summary: mc hangs when copying file with no read perm over fish Product: Fedora Core Version: fc5 Platform: All OS/Version: Linux Status: NEW Severity: normal Priority: normal Component: mc AssignedTo: jnovy at redhat.com ReportedBy: stsp at aknet.ru CC: leonard-rh-bugzilla at den.ottolander.nl Description of problem: If I try to copy the file over the ssh connection (fish) for which there is no read permission, mc hangs. Version-Release number of selected component (if applicable): mc-4.6.1a-13.FC5 How reproducible: always Steps to Reproduce: 1. Make an ssh connection with mc, log is as user, not root 2. Try to read/copy some file, like /etc/shadow, for which you don't have the read permission. Actual results: mc hangs Expected results: mc displays the "permission denied" error. -- mount -t life -o ro /dev/dna /genetic/research From ptsekov@gmx.net Sun Jun 11 11:31:14 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72D893B0138 for ; Sun, 11 Jun 2006 11:31:14 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16333-02 for ; Sun, 11 Jun 2006 11:31:13 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 5CB043B008B for ; Sun, 11 Jun 2006 11:31:12 -0400 (EDT) Received: (qmail invoked by alias); 11 Jun 2006 15:30:20 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp010) with SMTP; 11 Jun 2006 17:30:20 +0200 X-Authenticated: #14308112 Date: Sun, 11 Jun 2006 18:29:08 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander In-Reply-To: <1150025229.2478.17.camel@athlon> Message-ID: References: <1150025229.2478.17.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development Subject: Re: [Fwd: [Bug 194777] New: mc hangs when copying file with no read perm over fish] X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 15:31:14 -0000 On Sun, 11 Jun 2006, Leonard den Ottolander wrote: > I can confirm this behaviour. Probably fish needs to test permissions > before attempting to copy. > > Leonard. I have a patch for this issue for quite some time. It just needs to be polished a bit. I'll try to post it in the next few days. From egmont@uhulinux.hu Mon Jun 12 04:31:53 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 301113B000D for ; Mon, 12 Jun 2006 04:31:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26350-02 for ; Mon, 12 Jun 2006 04:31:47 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id 5A2A33B00A7 for ; Mon, 12 Jun 2006 04:31:46 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id 9D1A07EE0 for ; Mon, 12 Jun 2006 10:30:48 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02190-01 for ; Mon, 12 Jun 2006 10:30:45 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id 5387C7EBA for ; Mon, 12 Jun 2006 10:30:45 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Mon, 12 Jun 2006 10:30:45 +0200 Date: Mon, 12 Jun 2006 10:30:45 +0200 From: Egmont Koblinger To: mc-devel@gnome.org Message-ID: <20060612083045.GA22700@cs.bme.hu> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1150024126.2478.14.camel@athlon> User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.585 tagged_above=-999 required=2 tests=[AWL=0.014, BAYES_00=-2.599] X-Spam-Score: -2.585 X-Spam-Level: Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 08:31:53 -0000 On Sun, Jun 11, 2006 at 01:08:46PM +0200, Leonard den Ottolander wrote: > Egmonts patches are worth looking at. I've blatantly ignored pushing > them to you as I'd expected you to integrate them over time. I've > probably not made it clear enough to you before that these patches are > worth considering. These patches hardly change nowadays. They only change if: - I face a new utf8 related bug in mc. It didn't happen in the last ~1.5 years (except for the off-by-one fix), and I always use the same small subset of mc's features, so it's unlikely for this to happen. - Something else (e.g. slang) is upgraded which introduces or triggers new bugs. - mc is upgraded in our distro. This will only happen if a new mainstream version is released. I don't want to bother with CVS snapshots, 4.6.1 is working reasonably well. After all, I'll try not to forget to mention it here if anything noticable changes in these patches. It's much simpler this way than for anyone to keep track of our changes. Finally, note that while these patches fix many issues with single-width UTF-8 characters, they may be really buggy with double-width (CJK) or zero-width Unicode characters, since I often assume that each Unicode entity occupies one column. I know it is totally false and I already knew it when I created these patches, but doing these things right would have required much more efforts. -- Egmont From jnovy@redhat.com Mon Jun 12 05:17:34 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 096F03B008D for ; Mon, 12 Jun 2006 05:17:34 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27996-03 for ; Mon, 12 Jun 2006 05:17:31 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 7F7723B0061 for ; Mon, 12 Jun 2006 05:17:30 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5C8tU0S007886; Mon, 12 Jun 2006 04:55:30 -0400 Received: from pobox.stuttgart.redhat.com (pobox.stuttgart.redhat.com [172.16.2.10]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5C8tTsF004862; Mon, 12 Jun 2006 04:55:29 -0400 Received: from vpn-4-29.stuttgart.redhat.com (vpn-4-29.stuttgart.redhat.com [10.32.4.29]) by pobox.stuttgart.redhat.com (8.12.8/8.12.8) with ESMTP id k5C8tSY5007832; Mon, 12 Jun 2006 10:55:28 +0200 From: Jindrich Novy To: Leonard den Ottolander In-Reply-To: <1150024126.2478.14.camel@athlon> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> Content-Type: text/plain Date: Mon, 12 Jun 2006 10:55:28 +0200 Message-Id: <1150102528.2242.17.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.5) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.601 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.601 X-Spam-Level: Cc: MC development Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 09:17:34 -0000 Hi Leonard, On Sun, 2006-06-11 at 13:08 +0200, Leonard den Ottolander wrote: > On Thu, 2006-06-08 at 20:13 +0200, Egmont Koblinger wrote: > > I've just upgraded to slang-2 in our distro and also updated the UTF-8 > > patches to mc-4.6.1 (based on SUSE's version). It was easier than I thought > > it would be. I was glad to see that you had applied plenty of my patches in > > SUSE (those named "00-*"). Please take a look at here again: > > > > https://svn.uhulinux.hu/packages/dev/mc/patches/ 00-74, 00-78 patches were helpful for me as well, thanks Egmont. They are now applied in devel FC. > Please take notice. It would probably be good if Vladimir and you could > keep your UTF-8 patch sets in sync. It just seems wasted effort to do > this in two places independently. Some inter-distro communication is not > going to hurt. Maybe these patches should be centrally maintained in a > contribs tree. The problem is that Vladimir and me use different versions of mc. My approach is to be more in sync with upstream so that there's a more recent CVS snapshot in Fedora for now because of a very rare release period of mc. This helps me to do only minimal changes when I want to send a patch to upstream. SuSE uses the stable mc-4.6.1, AFAIK. +1 for storing useful patches in contrib. It would be quite hard to keep them in sync with devel mc though. Cheers, Jindrich From leonard@den.ottolander.nl Mon Jun 12 07:54:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1D6DA3B00D4 for ; Mon, 12 Jun 2006 07:54:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00587-06 for ; Mon, 12 Jun 2006 07:54:25 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 349833B0078 for ; Mon, 12 Jun 2006 07:54:25 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 22A984023 for ; Mon, 12 Jun 2006 13:52:59 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id H8DbT-enwgdG for ; Mon, 12 Jun 2006 13:52:53 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 8D9594021 for ; Mon, 12 Jun 2006 13:52:53 +0200 (CEST) From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Mon, 12 Jun 2006 13:54:35 +0200 Message-Id: <1150113275.2520.29.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Subject: Dialogs, hotkeys and capitalization X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 11:54:27 -0000 Hi, This is a bit of a minor issue, but Pavel Tsekov brought it up when I changed a duplicate hotkey in the sort order dialog. I changed &Change time to C&Hange time thus capitalizing the hotkey, but also leaving the first letter of the phrase capitalized. Although the double capitalization might look somewhat odd it emphasizes the hotkey and I think the capitalized first letter looks nicer. The most widely used approach in the menus and dialogs is to only capitalize the (highlighted) hotkey ("c&Hange time"), but this is implemented inconsistently, which is most obvious in the Command menu. I have no idea how we should reach an agreement on this (vote??), but I think it's a good idea to decide on a format so the menus and dialogs will look more consistent. The three options I think are most appropriate are: No added capitalization of hotkeys ("C&hange time") (no emphasis apart from colourization) Add capitalization to hotkeys ("C&Hange time") (double capitalization) Only capitalize the hotkey ("c&Hange time") (missing capitals in first position) Opinions? Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Mon Jun 12 08:32:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6B86F3B00D8 for ; Mon, 12 Jun 2006 08:32:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02401-03 for ; Mon, 12 Jun 2006 08:32:43 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 58F0F3B00A7 for ; Mon, 12 Jun 2006 08:32:43 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fpla1-0003ZJ-00; Mon, 12 Jun 2006 08:31:41 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Mon, 12 Jun 2006 12:31:41 +0000 Date: Mon, 12 Jun 2006 12:31:41 +0000 To: Nick Shmyrev , mc-devel@gnome.org From: Nick Shmyrev X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; ru; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 195.98.173.2 (Savane authenticated user nshmyrev) Message-Id: <20060612-123140.sv25628.90055@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.814 tagged_above=-999 required=2 tests=[AWL=-0.772, BAYES_00=-2.599, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001] X-Spam-Score: -1.814 X-Spam-Level: Cc: Subject: [bug #16829] Crash when formatting paragraph X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 12:32:44 -0000 URL: Summary: Crash when formatting paragraph Project: GNU Midnight Commander Submitted by: nshmyrev Submitted on: Понедельник 12.06.2006 at 12:31 Category: None Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Hurd _______________________________________________________ Details: With Fedora's 5 stock mc-4.6.1a rpm I have a following crash when formatting paragraph. (gdb) bt #0 next_word_start (t=0x81fc138, q=Variable "q" is not available. ) at wordproc.c:227语言编写的插件,Gimp 还能够使用脚本。大部分现有的脚本都是用 S#1 0x080a975d in format_paragraph (edit=0x81ea598, force=1) at wordproc.c:280 #2 0x0809a035 in edit_execute_cmd (edit=0x81ea598, command=416, char_for_insertion=4294967295) at edit.c:2666 #3 0x0809aa05 in edit_execute_key_command (edit=0x81ea598, command=416, char_for_insertion=4294967295) at edit.c:2250 #4 0x080a268b in edit_callback (w=0x81ea598, msg=WIDGET_KEY, parm=8304) at editwidget.c:362 4Замена 5Копия 6Перемес7Поиск 8Удалить9МенюMC 10Вы #5 0x080599fb in dlg_process_event (h=0x81ef0a8, key=112, event=0xbff84d70) at dialog.c:659 #6 0x08059d0d in run_dlg (h=0x81ef0a8) at dialog.c:785 #7 0x080a22a4 in edit_file (_file=0x81b0850 "concepts.xml.save", line=0) at editwidget.c:225 #8 0x0806fe7b in do_nc () at main.c:1757 #9 0x08070855 in main (argc=Cannot access memory at address 0x0 ) at main.c:2293 #10 0x00af77e4 in __libc_start_main () from /lib/libc.so.6 #11 0x0804d481 in _start () _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Mon Jun 12 08:57:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5781E3B0083 for ; Mon, 12 Jun 2006 08:57:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03281-01 for ; Mon, 12 Jun 2006 08:57:43 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 553873B00E5 for ; Mon, 12 Jun 2006 08:57:43 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FplbW-0003hK-00; Mon, 12 Jun 2006 08:33:14 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Mon, 12 Jun 2006 12:33:14 +0000 Date: Mon, 12 Jun 2006 12:33:14 +0000 To: Nick Shmyrev , mc-devel@gnome.org From: Nick Shmyrev X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; ru; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 195.98.173.2 (Savane authenticated user nshmyrev) Message-Id: <20060612-123314.sv25628.73913@savannah.gnu.org> References: <20060612-123140.sv25628.90055@savannah.gnu.org> In-Reply-To: <20060612-123140.sv25628.90055@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.809 tagged_above=-999 required=2 tests=[AWL=-0.767, BAYES_00=-2.599, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001] X-Spam-Score: -1.809 X-Spam-Level: Cc: Subject: [bug #16829] Crash when formatting paragraph X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 12:57:44 -0000 Follow-up Comment #1, bug #16829 (project mc): The file that causes the crash. You have to put cursor on last in the text (line 2303 for example) and press Alt+p. _______________________________________________________ Additional Item Attachment: File name: translate-concepts.xml.patch.gz Size:9 KB _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From proski@gnu.org Mon Jun 12 16:15:26 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6B0E03B0100 for ; Mon, 12 Jun 2006 16:15:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28924-05 for ; Mon, 12 Jun 2006 16:15:25 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id 3CD0A3B00C8 for ; Mon, 12 Jun 2006 16:15:25 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1Fpsnb-0000tI-Ch for mc-devel@gnome.org; Mon, 12 Jun 2006 16:14:11 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FpsnX-0003XN-9f; Mon, 12 Jun 2006 16:14:07 -0400 From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150113275.2520.29.camel@athlon> References: <1150113275.2520.29.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Mon, 12 Jun 2006 16:14:07 -0400 Message-Id: <1150143247.4297.5.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC development Subject: Re: Dialogs, hotkeys and capitalization X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 20:15:26 -0000 Hello! On Mon, 2006-06-12 at 13:54 +0200, Leonard den Ottolander wrote: > The three options I think are most appropriate are: > No added capitalization of hotkeys ("C&hange time") (no emphasis apart > from colourization) > Add capitalization to hotkeys ("C&Hange time") (double capitalization) > Only capitalize the hotkey ("c&Hange time") (missing capitals in first > position) I suggest no capitalization. I believe capitalization was used when many terminals were unable to highlight or underline the hotkey, or mc couldn't use those capabilities. This is no longer true. -- Regards, Pavel Roskin From proski@gnu.org Mon Jun 12 18:09:18 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 85D7A3B00F5 for ; Mon, 12 Jun 2006 18:09:18 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00701-05 for ; Mon, 12 Jun 2006 18:09:16 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id AA3743B0010 for ; Mon, 12 Jun 2006 18:09:16 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FpuZr-0004zP-6S for mc-devel@gnome.org; Mon, 12 Jun 2006 18:08:07 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FpuZm-0003cR-GF; Mon, 12 Jun 2006 18:08:02 -0400 From: Pavel Roskin To: Jindrich Novy In-Reply-To: <1150102528.2242.17.camel@localhost.localdomain> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <1150102528.2242.17.camel@localhost.localdomain> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Mon, 12 Jun 2006 18:08:02 -0400 Message-Id: <1150150082.4297.34.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC development , Leonard den Ottolander Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 22:09:18 -0000 Hello! On Mon, 2006-06-12 at 10:55 +0200, Jindrich Novy wrote: > The problem is that Vladimir and me use different versions of mc. My > approach is to be more in sync with upstream so that there's a more > recent CVS snapshot in Fedora for now because of a very rare release > period of mc. This helps me to do only minimal changes when I want to > send a patch to upstream. SuSE uses the stable mc-4.6.1, AFAIK. > > +1 for storing useful patches in contrib. It would be quite hard to keep > them in sync with devel mc though. When I see a proposal to store any patches under version control, it makes me think that the version control system is inadequate. The natural representation of patches is differences between file revisions under version control. I think CVS it too centralized for the decentralized development that is done on mc. It's not possible for a non-committing user to create a separate branch. Recent years gave us several decentralized version control systems, such as Arch, BitKeeper, Monotone, Git and Mercurial. Their common feature is that every user has the complete repository of the project. Changes are exchanged between repositories in the form of changesets, either by e-mail or using other protocols. Branching is more advanced, merging is easier, and the merge history is recorded. Most importantly, branching is local. It should be possible to use an old version as the base and then rebase the patches while keeping track of what was actually merged. I think Git would be a great choice because it's free, actively developed and used by major projects such as Linux kernel and Wine. It also has a frontend called StGIT, which allows refining patches before submitting them to other developers. Git repositories work over http. Perhaps ibiblio.com would be persuaded to host the main repository. -- Regards, Pavel Roskin From INVALID.NOREPLY@gnu.org Tue Jun 13 04:02:49 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B0DCD3B00C9 for ; Tue, 13 Jun 2006 04:02:49 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15320-10 for ; Tue, 13 Jun 2006 04:02:46 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id A32783B00F5 for ; Tue, 13 Jun 2006 04:02:46 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq3U0-0002RY-00; Tue, 13 Jun 2006 03:38:40 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 07:38:39 +0000 Date: Tue, 13 Jun 2006 07:38:39 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060613-073838.sv47365.94722@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> In-Reply-To: <20060611-105933.sv36205.22318@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.504 tagged_above=-999 required=2 tests=[AWL=0.019, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.504 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 08:02:49 -0000 Follow-up Comment #9, bug #16762 (project mc): $ patch < getmntinfo-fix.patch can't find file to patch at input line 4 Perhaps you should have used the -p or --strip option? The text leading up to this was: -------------------------- |diff -Nrup mc-orig/acinclude.m4 mc/acinclude.m4 |--- mc-orig/acinclude.m4 2006-06-07 17:37:13.000000000 +0300 |+++ mc/acinclude.m4 2006-06-07 17:22:02.000000000 +0300 -------------------------- File to patch: _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 04:57:28 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3F2D43B00F5 for ; Tue, 13 Jun 2006 04:57:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17194-01 for ; Tue, 13 Jun 2006 04:57:27 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id DE4663B00AF for ; Tue, 13 Jun 2006 04:57:26 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq4MQ-000486-00; Tue, 13 Jun 2006 04:34:54 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 11:34:53 +0300 Date: Tue, 13 Jun 2006 11:34:53 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-113453.sv36205.79891@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> In-Reply-To: <20060613-073838.sv47365.94722@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.504 tagged_above=-999 required=2 tests=[AWL=0.019, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.504 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 08:57:28 -0000 Follow-up Comment #10, bug #16762 (project mc): 1) Enter in your MC directory 2) patch -p1 < getmntinfo-fix.patch _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 06:56:01 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AA2D43B000A for ; Tue, 13 Jun 2006 06:56:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20528-03 for ; Tue, 13 Jun 2006 06:56:00 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 813563B000C for ; Tue, 13 Jun 2006 06:56:00 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq6YC-0000LL-00; Tue, 13 Jun 2006 06:55:12 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 10:55:11 +0000 Date: Tue, 13 Jun 2006 10:55:11 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060613-105511.sv47365.57796@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> In-Reply-To: <20060613-113453.sv36205.79891@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.057, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 10:56:01 -0000 Follow-up Comment #11, bug #16762 (project mc): MOUNT_UFS still undeclared :( But I can fix this by undefining HAVE_INFOMOUNT_LIST in config.h before compiling. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 07:18:04 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A48483B000A for ; Tue, 13 Jun 2006 07:18:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20874-09 for ; Tue, 13 Jun 2006 07:18:03 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 207263B000C for ; Tue, 13 Jun 2006 07:18:03 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq6sz-0000bV-00; Tue, 13 Jun 2006 07:16:41 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 14:16:41 +0300 Date: Tue, 13 Jun 2006 14:16:41 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-141640.sv36205.93232@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> In-Reply-To: <20060613-105511.sv47365.57796@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.057, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 11:18:04 -0000 Follow-up Comment #12, bug #16762 (project mc): With the patch I've submitted the code which uses MOUNT_UFS shouldn't be compiled in. Can you attach your config.log to this bug report, please ? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 07:38:03 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D4A503B008F for ; Tue, 13 Jun 2006 07:38:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21364-10 for ; Tue, 13 Jun 2006 07:38:02 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 9E3293B000C for ; Tue, 13 Jun 2006 07:38:02 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq6tQ-0000c6-00; Tue, 13 Jun 2006 07:17:08 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 14:17:08 +0300 Date: Tue, 13 Jun 2006 14:17:08 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-141708.sv36205.99230@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> In-Reply-To: <20060613-141640.sv36205.93232@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.057, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 11:38:04 -0000 Follow-up Comment #13, bug #16762 (project mc): .. and your config.h too. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 08:55:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 611923B0114 for ; Tue, 13 Jun 2006 08:55:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23753-04 for ; Tue, 13 Jun 2006 08:55:40 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id DC9023B000A for ; Tue, 13 Jun 2006 08:55:39 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq8Q2-0004jO-00; Tue, 13 Jun 2006 08:54:54 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 14:54:54 +0200 Date: Tue, 13 Jun 2006 14:54:54 +0200 To: Nick Shmyrev , Leonard den Ottolander , mc-devel@gnome.org From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060613-145453.sv26390.71423@savannah.gnu.org> References: <20060612-123140.sv25628.90055@savannah.gnu.org> <20060612-123314.sv25628.73913@savannah.gnu.org> In-Reply-To: <20060612-123314.sv25628.73913@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.544 tagged_above=-999 required=2 tests=[AWL=0.056, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.544 X-Spam-Level: Cc: Subject: [bug #16829] Crash when formatting paragraph X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 12:55:44 -0000 Update of bug #16829 (project mc): Category: None => Editor Status: None => Invalid Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #2: This is an issue with the utf8ization of mcedit. The UTF-8 patches are no part of the official mc. Please report your issue in Red Hats bugzilla (http://bugzilla.redhat.com). _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 09:25:37 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7D6C53B00AF for ; Tue, 13 Jun 2006 09:25:37 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24676-05 for ; Tue, 13 Jun 2006 09:25:35 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 01AE43B000A for ; Tue, 13 Jun 2006 09:25:34 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq8sK-0005Bc-00; Tue, 13 Jun 2006 09:24:08 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 16:24:08 +0300 Date: Tue, 13 Jun 2006 16:24:08 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-162408.sv36205.31330@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> In-Reply-To: <20060613-141708.sv36205.99230@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.544 tagged_above=-999 required=2 tests=[AWL=0.056, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.544 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 13:25:37 -0000 Follow-up Comment #14, bug #16762 (project mc): My bad. I see what's wrong - will fix it and attach a new patch. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 09:51:11 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9CA853B00E5 for ; Tue, 13 Jun 2006 09:51:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24974-08 for ; Tue, 13 Jun 2006 09:51:09 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 0FF243B008F for ; Tue, 13 Jun 2006 09:51:09 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq9Hc-0006nV-00; Tue, 13 Jun 2006 09:50:16 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 16:50:16 +0300 Date: Tue, 13 Jun 2006 16:50:16 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-165016.sv36205.72008@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> In-Reply-To: <20060613-162408.sv36205.31330@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.506 tagged_above=-999 required=2 tests=[AWL=0.017, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.506 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 13:51:11 -0000 Follow-up Comment #15, bug #16762 (project mc): Ok. Attaching the new patch. Before applying this one - apply the old patch with -R: patch -p1 -R < getmntinfo-fix.patch and then apply the new one: patch -p1 < getmntinfo-fix-1.patch _______________________________________________________ Additional Item Attachment: File name: getmntinfo-fix-1.patch Size:3 KB _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 10:01:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 85AA33B00AF for ; Tue, 13 Jun 2006 10:01:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25629-05 for ; Tue, 13 Jun 2006 10:01:20 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 53A013B008F for ; Tue, 13 Jun 2006 10:01:20 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq9Qw-0006uf-00; Tue, 13 Jun 2006 09:59:54 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 13:59:54 +0000 Date: Tue, 13 Jun 2006 13:59:54 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060613-135953.sv47365.47118@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> In-Reply-To: <20060613-165016.sv36205.72008@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.506 tagged_above=-999 required=2 tests=[AWL=0.017, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.506 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 14:01:21 -0000 Follow-up Comment #16, bug #16762 (project mc): With getmntinfo-fix-1.patch compilation process finished successfully. 10x! Will you include this patch into source tree? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 10:22:29 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 912F33B00A5 for ; Tue, 13 Jun 2006 10:22:29 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26410-04 for ; Tue, 13 Jun 2006 10:22:26 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 45D1D3B00E5 for ; Tue, 13 Jun 2006 10:22:26 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq9lr-0007EE-00; Tue, 13 Jun 2006 10:21:31 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 17:21:31 +0300 Date: Tue, 13 Jun 2006 17:21:31 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-172130.sv36205.64124@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> In-Reply-To: <20060613-135953.sv47365.47118@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.544 tagged_above=-999 required=2 tests=[AWL=0.056, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.544 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 14:22:29 -0000 Follow-up Comment #17, bug #16762 (project mc): Yes. I just wanted to hear from Rolland Illig before commiting. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From kloczek@rudy.mif.pg.gda.pl Tue Jun 13 13:16:01 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 86F433B0438 for ; Tue, 13 Jun 2006 13:16:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31972-09 for ; Tue, 13 Jun 2006 13:16:00 -0400 (EDT) Received: from rudy.mif.pg.gda.pl (rudy.mif.pg.gda.pl [153.19.42.16]) by menubar.gnome.org (Postfix) with ESMTP id 26D0B3B0407 for ; Tue, 13 Jun 2006 13:16:00 -0400 (EDT) X-Virus-Scanned: at rudy.mif.pg.gda.pl Received: by rudy.mif.pg.gda.pl (plum, from userid 2732) id A1066233D5; Tue, 13 Jun 2006 19:14:41 +0200 (CEST) Date: Tue, 13 Jun 2006 19:14:41 +0200 (CEST) From: =?ISO-8859-2?Q?Tomasz_K=B3oczko?= To: Egmont Koblinger In-Reply-To: <20060612083045.GA22700@cs.bme.hu> Message-ID: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <20060612083045.GA22700@cs.bme.hu> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-59671104-1150218881=:31655" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.541 tagged_above=-999 required=2 tests=[AWL=-0.017, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_SG=0.077] X-Spam-Score: -2.541 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 17:16:01 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --0-59671104-1150218881=:31655 Content-Type: TEXT/PLAIN; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 8BIT On Mon, 12 Jun 2006, Egmont Koblinger wrote: [..] BTW: anyone is working on UFT-8 support for ncurses(w) backend ? BTW2: few monts ago was on this list about converting in source tree alle po/*.po files to UTF-8 .. still not done. Any reasons ? It can be performed by: [mc]$ for i in po/*.po; do msgconv -t UTF-8 $i -o $i; done and commiting changes. kloczek -- ----------------------------------------------------------- *Ludzie nie mają problemów, tylko sobie sami je stwarzają* ----------------------------------------------------------- Tomasz Kłoczko, sys adm @zie.pg.gda.pl|*e-mail: kloczek@rudy.mif.pg.gda.pl* --0-59671104-1150218881=:31655-- From egmont@uhulinux.hu Wed Jun 14 09:17:10 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1073B3B0406 for ; Wed, 14 Jun 2006 09:17:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31014-06 for ; Wed, 14 Jun 2006 09:17:08 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id 32A1D3B0081 for ; Wed, 14 Jun 2006 09:17:08 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id F42397F9A; Wed, 14 Jun 2006 15:16:24 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26249-05; Wed, 14 Jun 2006 15:16:21 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id BB0867E02; Wed, 14 Jun 2006 15:16:21 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Wed, 14 Jun 2006 15:16:21 +0200 Date: Wed, 14 Jun 2006 15:16:21 +0200 From: Egmont Koblinger To: Tomasz =?iso-8859-2?Q?K=B3oczko?= Subject: Re: utf8 patch for mc, slang 2 version Message-ID: <20060614131621.GE29389@cs.bme.hu> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <20060612083045.GA22700@cs.bme.hu> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.548 tagged_above=-999 required=2 tests=[AWL=-0.026, BAYES_00=-2.599, TW_SG=0.077] X-Spam-Score: -2.548 X-Spam-Level: Cc: mc-devel@gnome.org X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 13:17:10 -0000 On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz Kłoczko wrote: > BTW: anyone is working on UFT-8 support for ncurses(w) backend ? I don't think so, and I don't think it is worth it. Maintaining two backends IMHO just causes headaches while it doesn't make mc better. I still can't see why developers do not decide which one to use and drop the other one. With Unicode support maintaining the two will be much harder since AFAIK slang works with UTF-8 while ncurses uses UCS-4. Hence a completely different patch would be required for the two cases. > BTW2: few monts ago was on this list about converting in source > tree alle po/*.po files to UTF-8 .. still not done. Any reasons ? > > It can be performed by: > > [mc]$ for i in po/*.po; do msgconv -t UTF-8 $i -o $i; done Are you sure it is safe to use the same output file? I'd rather use a tmp file. It depends on msgconv's internal implementation, but I can easily imagine a situation where the writing file descriptor's position exceeds the reading position (since UTF-8 is longer than the 8-bit version) and this may cause invalid results. Due to buffered read and write requests I guess it needs larger files (with approx. 4096 -- 8192 accented characters) for this bug to occur. I'm not sure, though, just reasonably paranoid :-) -- Egmont From nadvornik@suse.cz Wed Jun 14 10:23:23 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3724F3B041B for ; Wed, 14 Jun 2006 10:23:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03772-05 for ; Wed, 14 Jun 2006 10:23:09 -0400 (EDT) Received: from mail.suse.cz (styx.suse.cz [82.119.242.94]) by menubar.gnome.org (Postfix) with ESMTP id A494D3B0570 for ; Wed, 14 Jun 2006 10:23:09 -0400 (EDT) Received: from sphinx.suse.cz (sphinx.suse.cz [10.20.1.5]) by mail.suse.cz (SUSE CR ESMTP Mailer) with ESMTP id 9710C628067 for ; Wed, 14 Jun 2006 16:22:51 +0200 (CEST) From: Vladimir Nadvornik To: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version Date: Wed, 14 Jun 2006 16:22:49 +0200 User-Agent: KMail/1.9.1 References: <200509191419.01556.arekm@pld-linux.org> <1150024126.2478.14.camel@athlon> <1150102528.2242.17.camel@localhost.localdomain> In-Reply-To: <1150102528.2242.17.camel@localhost.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606141622.50049.nadvornik@suse.cz> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 14:23:23 -0000 On Monday 12 June 2006 10:55, Jindrich Novy wrote: > > > Please take notice. It would probably be good if Vladimir and you could > > keep your UTF-8 patch sets in sync. It just seems wasted effort to do > > this in two places independently. Some inter-distro communication is not > > going to hurt. Maybe these patches should be centrally maintained in a > > contribs tree. > > The problem is that Vladimir and me use different versions of mc. My > approach is to be more in sync with upstream so that there's a more > recent CVS snapshot in Fedora for now because of a very rare release > period of mc. This helps me to do only minimal changes when I want to > send a patch to upstream. SuSE uses the stable mc-4.6.1, AFAIK. > It would not be a problem to have a more recent mc snapshot in openSUSE Factory. Even better, if it is synced 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 From bartoldeman@users.sourceforge.net Wed Jun 14 17:52:11 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CBF073B0433 for ; Wed, 14 Jun 2006 17:52:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31602-06 for ; Wed, 14 Jun 2006 17:52:08 -0400 (EDT) Received: from mail2.woosh.co.nz (webmail.woosh.co.nz [202.74.207.2]) by menubar.gnome.org (Postfix) with ESMTP id 9AAF83B041B for ; Wed, 14 Jun 2006 17:52:07 -0400 (EDT) Received: from enm-bo-lt.localnet (202-74-212-77.ue.woosh.co.nz [202.74.212.77]) by woosh.co.nz (Rockliffe SMTPRA 6.1.22) with ESMTP id ; Thu, 15 Jun 2006 09:51:23 +1200 Received: from enbeo (helo=localhost) by enm-bo-lt.localnet with local-esmtp (Exim 4.62) (envelope-from ) id 1FqdB0-000326-Ma; Thu, 15 Jun 2006 09:45:26 +1200 Date: Thu, 15 Jun 2006 09:45:26 +1200 (NZST) From: Bart Oldeman X-X-Sender: enbeo@enm-bo-lt.localnet To: Egmont Koblinger Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <20060614131621.GE29389@cs.bme.hu> Message-ID: References: <200509191419.01556.arekm@pld-linux.org><200606071218.32428.nadv ornik@suse.cz><1149685131.2269.10.camel@localhost.localdomain><200606081202 .51002.nadvornik@suse.cz><20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon><20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: Cc: mc-devel@gnome.org, Tomasz =?iso-8859-2?Q?K=B3oczko?= X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 21:52:12 -0000 On Wed, 14 Jun 2006, Egmont Koblinger wrote: > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > I don't think so, and I don't think it is worth it. Maintaining two backends > IMHO just causes headaches while it doesn't make mc better. I still can't > see why developers do not decide which one to use and drop the other one. Maybe compatibility with older UN*Xes with curses but no slang? > With Unicode support maintaining the two will be much harder since AFAIK > slang works with UTF-8 while ncurses uses UCS-4. Hence a completely > different patch would be required for the two cases. Last time I played with it ncursesw (but not plain ncurses) handled UTF-8 just fine. e.g. you can pass a UTF-8 encoded string to addstr(), and provided the locale is set correctly, ncursesw will compute its width correctly. It is *also* possible to use addwstr() with UCS-4, but not compulsory. Bart From proski@gnu.org Wed Jun 14 18:12:25 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 13D573B0145 for ; Wed, 14 Jun 2006 18:12:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08738-03 for ; Wed, 14 Jun 2006 18:12:23 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id 67B653B00D6 for ; Wed, 14 Jun 2006 18:12:23 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FqdaT-0000qj-3U for mc-devel@gnome.org; Wed, 14 Jun 2006 18:11:45 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FqdaL-00062m-Lp; Wed, 14 Jun 2006 18:11:37 -0400 Subject: Re: utf8 patch for mc, slang 2 version From: Pavel Roskin To: Bart Oldeman In-Reply-To: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadv ornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202 .51002.nadvornik@suse.cz><20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon><20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Wed, 14 Jun 2006 18:11:37 -0400 Message-Id: <1150323097.23144.2.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: Egmont Koblinger , mc-devel@gnome.org, Tomasz =?iso-8859-2?Q?K=B3oczko?= X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 22:12:25 -0000 Hello! On Thu, 2006-06-15 at 09:45 +1200, Bart Oldeman wrote: > On Wed, 14 Jun 2006, Egmont Koblinger wrote: > > > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: > > > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > > > I don't think so, and I don't think it is worth it. Maintaining two backends > > IMHO just causes headaches while it doesn't make mc better. I still can't > > see why developers do not decide which one to use and drop the other one. > > Maybe compatibility with older UN*Xes with curses but no slang? It's a bogus argument. UNIX curses was removed long ago, and it had never worked well anyway. I don't remember a single person complaining. Besides, S-Lang is included with mc and it's quite portable. -- Regards, Pavel Roskin From ossi@kde.org Wed Jun 14 18:23:28 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 168E43B000E for ; Wed, 14 Jun 2006 18:23:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00410-04 for ; Wed, 14 Jun 2006 18:23:24 -0400 (EDT) Received: from ktown.kde.org (ktown.kde.org [131.246.120.250]) by menubar.gnome.org (Postfix) with SMTP id 194493B0099 for ; Wed, 14 Jun 2006 18:23:24 -0400 (EDT) Received: (qmail 6653 invoked from network); 14 Jun 2006 22:22:34 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 14 Jun 2006 22:22:34 -0000 Received: from ossi by ugly.local with local (masqmail 0.2.21) id 1Fqdkw-2f5-00 for ; Thu, 15 Jun 2006 00:22:34 +0200 Date: Thu, 15 Jun 2006 00:22:34 +0200 From: Oswald Buddenhagen To: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version Message-ID: <20060614222234.GA9122@ugly.local> Mail-Followup-To: mc-devel@gnome.org References: <20060614131621.GE29389@cs.bme.hu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.585 tagged_above=-999 required=2 tests=[AWL=0.014, BAYES_00=-2.599] X-Spam-Score: -2.585 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 22:23:28 -0000 On Thu, Jun 15, 2006 at 09:45:26AM +1200, Bart Oldeman wrote: > On Wed, 14 Jun 2006, Egmont Koblinger wrote: > > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > > > I don't think so, and I don't think it is worth it. Maintaining two backends > > IMHO just causes headaches while it doesn't make mc better. I still can't > > see why developers do not decide which one to use and drop the other one. > > Maybe compatibility with older UN*Xes with curses but no slang? > that doesn't sound too convincing. > > With Unicode support maintaining the two will be much harder since AFAIK > > slang works with UTF-8 while ncurses uses UCS-4. Hence a completely > > different patch would be required for the two cases. > > Last time I played with it ncursesw (but not plain ncurses) handled UTF-8 > just fine. > good. i'm all for killing slang support. why that one? libslang is twice as big as libncursesw. probably because it was meant to be much more than just a display lib. -- Hi! I'm a .signature virus! Copy me into your ~/.signature, please! -- Chaos, panic, and disorder - my work here is done. From kloczek@rudy.mif.pg.gda.pl Thu Jun 15 00:21:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2CCA43B002B for ; Thu, 15 Jun 2006 00:21:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10727-08 for ; Thu, 15 Jun 2006 00:21:33 -0400 (EDT) Received: from rudy.mif.pg.gda.pl (rudy.mif.pg.gda.pl [153.19.42.16]) by menubar.gnome.org (Postfix) with ESMTP id D320E3B00B5 for ; Thu, 15 Jun 2006 00:21:32 -0400 (EDT) X-Virus-Scanned: at rudy.mif.pg.gda.pl Received: by rudy.mif.pg.gda.pl (plum, from userid 2732) id DE57C233C2; Thu, 15 Jun 2006 06:20:42 +0200 (CEST) Date: Thu, 15 Jun 2006 06:20:42 +0200 (CEST) From: =?ISO-8859-2?Q?Tomasz_K=B3oczko?= To: Egmont Koblinger Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <20060614131621.GE29389@cs.bme.hu> Message-ID: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-590361060-1150344476=:31655" Content-ID: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.54 tagged_above=-999 required=2 tests=[AWL=-0.016, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_SG=0.077] X-Spam-Score: -2.54 X-Spam-Level: Cc: mc-devel@gnome.org X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 04:21:36 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --0-590361060-1150344476=:31655 Content-Type: TEXT/PLAIN; CHARSET=ISO-8859-2; FORMAT=flowed Content-Transfer-Encoding: 8BIT Content-ID: On Wed, 14 Jun 2006, Egmont Koblinger wrote: > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz Kłoczko wrote: > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > I don't think so, and I don't think it is worth it. Maintaining two backends > IMHO just causes headaches while it doesn't make mc better. I still can't > see why developers do not decide which one to use and drop the other one. If someone want ask which backend is more importand and will be better keep as major IMO answer tn this kind question is very simple: # rpm -q --whatrequires libslang.so.2 | grep -v slang | wc -l 4 # rpm -q --whatrequires libncurses.so.5 libncursesw.so.5 | grep -v ncurses |wc -l 55 Above slang list contain only packages which do not have now ncurses backend and are not importand as mc :) Also current state have other sick points on Linux. In case using mc with gpm it causes runtime linking with more than one term toolkit library (slang or internal slang and ncurses used by libgpm). [..] >> [mc]$ for i in po/*.po; do msgconv -t UTF-8 $i -o $i; done > > Are you sure it is safe to use the same output file? I'd rather use a tmp > file. I'm sure. msgconv cumulates output in memory and aftewr finish conversion writes output to file name passed in -o parameter in single step. kloczek -- ----------------------------------------------------------- *Ludzie nie mają problemów, tylko sobie sami je stwarzają* ----------------------------------------------------------- Tomasz Kłoczko, sys adm @zie.pg.gda.pl|*e-mail: kloczek@rudy.mif.pg.gda.pl* --0-590361060-1150344476=:31655-- From ptsekov@gmx.net Thu Jun 15 00:35:07 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 45C963B0324 for ; Thu, 15 Jun 2006 00:35:07 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11437-01 for ; Thu, 15 Jun 2006 00:34:58 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 4B94E3B0184 for ; Thu, 15 Jun 2006 00:34:56 -0400 (EDT) Received: (qmail invoked by alias); 15 Jun 2006 04:34:23 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp036) with SMTP; 15 Jun 2006 06:34:23 +0200 X-Authenticated: #14308112 Date: Thu, 15 Jun 2006 07:33:12 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole Cc: MC dev Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <1150323097.23144.2.camel@dv> Message-ID: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadv ornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202 .51002.nadvornik@suse.cz><20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon><20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> <1150323097.23144.2.camel@dv> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.546 tagged_above=-999 required=2 tests=[AWL=0.054, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.546 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 04:35:07 -0000 On Wed, 14 Jun 2006, Pavel Roskin wrote: > Hello! > > On Thu, 2006-06-15 at 09:45 +1200, Bart Oldeman wrote: >> On Wed, 14 Jun 2006, Egmont Koblinger wrote: >> >>> On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: >>> >>>> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? >>> >>> I don't think so, and I don't think it is worth it. Maintaining two backends >>> IMHO just causes headaches while it doesn't make mc better. I still can't >>> see why developers do not decide which one to use and drop the other one. >> >> Maybe compatibility with older UN*Xes with curses but no slang? > > It's a bogus argument. UNIX curses was removed long ago, and it had > never worked well anyway. I don't remember a single person complaining. > Besides, S-Lang is included with mc and it's quite portable. We had that argument once already. curses is not that old and it is standard. And it has unicode support. Its just a matter of using it. From egmont@uhulinux.hu Thu Jun 15 06:33:33 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5B1473B0440 for ; Thu, 15 Jun 2006 06:33:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30159-02 for ; Thu, 15 Jun 2006 06:33:28 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id 78AEC3B03EB for ; Thu, 15 Jun 2006 06:33:28 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id DC5CA8036 for ; Thu, 15 Jun 2006 12:33:20 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12764-06 for ; Thu, 15 Jun 2006 12:33:17 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id 281557FF0 for ; Thu, 15 Jun 2006 12:33:17 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Thu, 15 Jun 2006 12:33:14 +0200 Date: Thu, 15 Jun 2006 12:33:14 +0200 From: Egmont Koblinger To: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version Message-ID: <20060615103314.GA14523@cs.bme.hu> References: <20060614131621.GE29389@cs.bme.hu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.584 tagged_above=-999 required=2 tests=[AWL=0.015, BAYES_00=-2.599] X-Spam-Score: -2.584 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 10:33:36 -0000 Hi, > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > > > I don't think so, and I don't think it is worth it. Maintaining two backends > > IMHO just causes headaches while it doesn't make mc better. I still can't > > see why developers do not decide which one to use and drop the other one. > > Maybe compatibility with older UN*Xes with curses but no slang? Asking these sysadmins to install slang (or compile mc to its bundled slang) is IMHO easier than to do double work in mc. > Last time I played with it ncursesw (but not plain ncurses) handled UTF-8 > just fine. > > e.g. you can pass a UTF-8 encoded string to addstr(), and provided the > locale is set correctly, ncursesw will compute its width correctly. It is > *also* possible to use addwstr() with UCS-4, but not compulsory. It's clear now, thanks! Anyway, there are plenty of apps (e.g. vim, joe) that perfectly support UTF-8 and use ncurses (not the w version). I wonder how it is possible... -- Egmont From INVALID.NOREPLY@gnu.org Wed Jun 14 15:03:01 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D204A3B0190 for ; Wed, 14 Jun 2006 15:03:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15652-08 for ; Wed, 14 Jun 2006 15:03:00 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3A7723B00C7 for ; Wed, 14 Jun 2006 15:03:00 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fqad3-0005RO-00; Wed, 14 Jun 2006 15:02:13 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 14 Jun 2006 19:02:13 +0000 Date: Wed, 14 Jun 2006 19:02:13 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: purportex X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.0.4) Gecko/20060508 Firefox/1.5.0.4 X-Apparently-From: 81.31.39.117 (Savane authenticated user purportex) Message-Id: <20060614-190212.sv50251.32349@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> In-Reply-To: <20060613-172130.sv36205.64124@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 08:58:02 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 19:03:02 -0000 Follow-up Comment #18, bug #16762 (project mc): Hi, when I compiling current cvs version, I have such problem.. $ ./autogen ; make ... mountlist.c: In function 'fstype_to_string': mountlist.c:176: error: 'MOUNT_UFS' undeclared (first use in this function) mountlist.c:176: error: (Each undeclared identifier is reported only once mountlist.c:176: error: for each function it appears in.) mountlist.c:178: error: 'MOUNT_NFS' undeclared (first use in this function) $ uname -a Darwin MacBookPro.local 8.6.1 Darwin Kernel Version 8.6.1: Tue Mar 7 16:55:45 PST 2006; root:xnu-792.9.22.obj~1/RELEASE_I386 i386 i386 _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 15 00:37:55 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E3FD13B00CA for ; Thu, 15 Jun 2006 00:37:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11437-06 for ; Thu, 15 Jun 2006 00:37:53 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id A34FB3B00BA for ; Thu, 15 Jun 2006 00:37:53 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FqjbZ-0008C3-00; Thu, 15 Jun 2006 00:37:17 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 15 Jun 2006 07:37:16 +0300 Date: Thu, 15 Jun 2006 07:37:16 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Opera/8.51 (Windows ME; U; en) X-Apparently-From: 87.126.52.205 (Savane authenticated user ptsekov) Message-Id: <20060615-073715.sv36205.52677@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> In-Reply-To: <20060614-190212.sv50251.32349@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 08:58:02 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 04:37:55 -0000 Follow-up Comment #19, bug #16762 (project mc): purportex, have you tried to fix the problem by applying the suggested patch ? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From bartoldeman@users.sourceforge.net Thu Jun 15 17:15:00 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 891BA3B01FF for ; Thu, 15 Jun 2006 17:15:00 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01106-01 for ; Thu, 15 Jun 2006 17:14:59 -0400 (EDT) Received: from mail2.woosh.co.nz (webmail.woosh.co.nz [202.74.207.2]) by menubar.gnome.org (Postfix) with ESMTP id 5C5023B00DD for ; Thu, 15 Jun 2006 17:14:58 -0400 (EDT) Received: from enm-bo-lt.localnet (202-74-216-93.ue.woosh.co.nz [202.74.216.93]) by woosh.co.nz (Rockliffe SMTPRA 6.1.22) with ESMTP id for ; Fri, 16 Jun 2006 09:14:10 +1200 Received: from enbeo (helo=localhost) by enm-bo-lt.localnet with local-esmtp (Exim 4.62) (envelope-from ) id 1Fqz4P-0003ds-F4 for mc-devel@gnome.org; Fri, 16 Jun 2006 09:08:05 +1200 Date: Fri, 16 Jun 2006 09:08:04 +1200 (NZST) From: Bart Oldeman X-X-Sender: enbeo@enm-bo-lt.localnet To: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <20060615103314.GA14523@cs.bme.hu> Message-ID: References: <20060614131621.GE29389@cs.bme.hu> <20060615103314.GA14523@cs.bme.hu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 21:15:00 -0000 On Thu, 15 Jun 2006, Egmont Koblinger wrote: > Anyway, there are plenty of apps (e.g. vim, joe) that perfectly support > UTF-8 and use ncurses (not the w version). I wonder how it is possible... Because they only use the terminfo (low-level) parts of ncurses, see "man 3ncurses terminfo". Those parts do not care about UTF-8. MC uses a higher level part of ncurses (the display routines), but restricted to "stdscr". There's an even higher level part of ncurses that supports managing (overlapping) windows, but MC does not use it. SLang (without the newt library) does not support that. So one advantage of using ncurses over slang is that MC could make use of ncurses' windowing code, thereby simplifying its own code. In the way that MC uses SLang and ncurses right now there is very little difference between the two libraries. If you google (groups) for it (Miguel's posts) you'll find that around '95/'96 SLang was preferred over ncurses because it was faster, smaller, and less buggy. But that is no longer the case, there is not much difference now. Bart From leonard@den.ottolander.nl Thu Jun 15 19:55:20 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E1A6F3B00DD for ; Thu, 15 Jun 2006 19:55:19 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06118-09 for ; Thu, 15 Jun 2006 19:55:14 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id AE7613B0011 for ; Thu, 15 Jun 2006 19:55:14 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id ABA4E4023 for ; Fri, 16 Jun 2006 01:54:08 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id Maxju7m2nPkZ for ; Fri, 16 Jun 2006 01:54:02 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id ED55C4021 for ; Fri, 16 Jun 2006 01:54:01 +0200 (CEST) Subject: Symlink attack in file.c? From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Fri, 16 Jun 2006 01:53:56 +0200 Message-Id: <1150415636.2615.24.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 23:55:20 -0000 Hi, Something I came across a couple of times this week, just now in relation to an RFE regarding file permissions on copying fat files in RHs bugzilla (https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=195614): http://cvs.savannah.gnu.org/viewcvs/mc/src/file.c?root=mc&r1=1.28&r2=1.29 A commit by "pavel" (Machek?) who added the remark "FIXME: You have security hole here, btw. Imagine copying to /tmp and symlink attack :-(" Is there anybody that can explain to me what he's concerned about and if that is still an issue? If so this is a rather long standing hole... If not, let's get rid of that warning. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Thu Jun 15 18:27:59 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C15DE3B01A1 for ; Thu, 15 Jun 2006 18:27:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03783-05 for ; Thu, 15 Jun 2006 18:27:58 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 02FDC3B0007 for ; Thu, 15 Jun 2006 18:27:57 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fr0JH-0002nT-00; Thu, 15 Jun 2006 18:27:31 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 15 Jun 2006 22:27:30 +0000 Date: Thu, 15 Jun 2006 22:27:30 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: purportex X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.0.4) Gecko/20060508 Firefox/1.5.0.4 X-Apparently-From: 81.31.39.117 (Savane authenticated user purportex) Message-Id: <20060615-222730.sv50251.60290@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > In-Reply-To: <20060615-073715.sv36205.52677@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.548 tagged_above=-999 required=2 tests=[AWL=0.052, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.548 X-Spam-Level: X-Mailman-Approved-At: Fri, 16 Jun 2006 05:26:01 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 22:28:00 -0000 Follow-up Comment #20, bug #16762 (project mc): Yeah, great! I can't compile it with tuesday's version, but with yesterday's I can, thanx :] _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Fri Jun 16 09:43:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 40C913B0076 for ; Fri, 16 Jun 2006 09:43:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30254-02 for ; Fri, 16 Jun 2006 09:43:41 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3835D3B000B for ; Fri, 16 Jun 2006 09:43:41 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrEbH-0000KJ-00; Fri, 16 Jun 2006 09:43:03 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Fri, 16 Jun 2006 15:43:02 +0200 Date: Fri, 16 Jun 2006 15:43:02 +0200 To: Nick Shmyrev , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16829] Crash when formatting paragraph From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060616-154301.sv26390.44190@savannah.gnu.org> References: <20060612-123140.sv25628.90055@savannah.gnu.org> <20060612-123314.sv25628.73913@savannah.gnu.org> <20060613-145453.sv26390.71423@savannah.gnu.org> In-Reply-To: <20060613-145453.sv26390.71423@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.548 tagged_above=-999 required=2 tests=[AWL=0.052, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.548 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 13:43:44 -0000 Update of bug #16829 (project mc): Status: Invalid => None Assigned to: None => leonardjo Open/Closed: Closed => Open Operating System: GNU/Hurd => All _______________________________________________________ Follow-up Comment #3: Turns out to be a general mc issue after all: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=194562 Jindrich Novy proposes the following solution: https://bugzilla.redhat.com/bugzilla/attachment.cgi?id=131038 _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From jnovy@redhat.com Fri Jun 16 10:44:35 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 295C73B0012 for ; Fri, 16 Jun 2006 10:44:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32146-01 for ; Fri, 16 Jun 2006 10:44:33 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id B4BEC3B000B for ; Fri, 16 Jun 2006 10:44:33 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5GCUXa8011193 for ; Fri, 16 Jun 2006 08:30:33 -0400 Received: from pobox.stuttgart.redhat.com (pobox.stuttgart.redhat.com [172.16.2.10]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5GCUV2V007457 for ; Fri, 16 Jun 2006 08:30:33 -0400 Received: from vpn-4-42.stuttgart.redhat.com (vpn-4-42.stuttgart.redhat.com [10.32.4.42]) by pobox.stuttgart.redhat.com (8.12.8/8.12.8) with ESMTP id k5GCUUTK005881 for ; Fri, 16 Jun 2006 14:30:30 +0200 Subject: [PATCH] segfault fix while formatting paragraph (alt-p) From: Jindrich Novy To: MC Devel Content-Type: multipart/mixed; boundary="=-2pcaSwIryKoHMMTlNz7W" Date: Fri, 16 Jun 2006 14:30:29 +0200 Message-Id: <1150461029.2294.6.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.5) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.601 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.601 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 14:44:35 -0000 --=-2pcaSwIryKoHMMTlNz7W Content-Type: text/plain Content-Transfer-Encoding: 7bit Hi, there's a segfault while formatting a paragraph with alt-p. The next_word_start() in wordproc.c misses the upper boundary check. The attached patch fixes it. References/Reproducer: http://bugzilla.redhat.com/194562 Jindrich --=-2pcaSwIryKoHMMTlNz7W Content-Disposition: attachment; filename=mc-segfault.patch Content-Type: text/x-patch; name=mc-segfault.patch; charset=UTF-8 Content-Transfer-Encoding: 7bit --- mc/edit/wordproc.c.jn 2005-05-27 05:35:12.000000000 +0200 +++ mc/edit/wordproc.c 2006-06-16 14:19:38.000000000 +0200 @@ -198,10 +198,10 @@ } static int -next_word_start (unsigned char *t, int q) +next_word_start (unsigned char *t, int q, int size) { int i; - for (i = q;; i++) { + for (i = q; i < size; i++) { switch (t[i]) { case '\n': return -1; @@ -220,11 +220,11 @@ /* find the start of a word */ static int -word_start (unsigned char *t, int q) +word_start (unsigned char *t, int q, int size) { int i = q; if (t[q] == ' ' || t[q] == '\t') - return next_word_start (t, q); + return next_word_start (t, q, size); for (;;) { int c; if (!i) @@ -253,9 +253,9 @@ break; if (t[q] == '\n') break; - p = word_start (t, q); + p = word_start (t, q, size); if (p == -1) - q = next_word_start (t, q); /* Return the end of the word if the beginning + q = next_word_start (t, q, size); /* Return the end of the word if the beginning of the word is at the beginning of a line (i.e. a very long word) */ else --=-2pcaSwIryKoHMMTlNz7W-- From ptsekov@gmx.net Fri Jun 16 11:59:15 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 55D4D3B0005 for ; Fri, 16 Jun 2006 11:59:15 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01930-07 for ; Fri, 16 Jun 2006 11:59:12 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 01C653B000B for ; Fri, 16 Jun 2006 11:59:11 -0400 (EDT) Received: (qmail invoked by alias); 16 Jun 2006 15:58:30 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp028) with SMTP; 16 Jun 2006 17:58:30 +0200 X-Authenticated: #14308112 Date: Fri, 16 Jun 2006 18:57:18 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: MC dev Subject: Problems with the mailing list ? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.549 tagged_above=-999 required=2 tests=[AWL=-0.943, BAYES_20=-0.74, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -1.549 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 15:59:15 -0000 Hello, Does anyone miss messages from the mc-devel list ? It seems like some messages do not reach the mailing list at all while others don't reach the mailing list subcsribers. Can anyone confirm or deny this ? Thanks! From jnovy@redhat.com Fri Jun 16 12:57:33 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E085B3B033E for ; Fri, 16 Jun 2006 12:57:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06357-08 for ; Fri, 16 Jun 2006 12:57:25 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 838633B050A for ; Fri, 16 Jun 2006 12:55:21 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5GGsPDw006893 for ; Fri, 16 Jun 2006 12:54:25 -0400 Received: from pobox.stuttgart.redhat.com (pobox.stuttgart.redhat.com [172.16.2.10]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5GGsOK7007658 for ; Fri, 16 Jun 2006 12:54:24 -0400 Received: from vpn-4-3.stuttgart.redhat.com (vpn-4-3.stuttgart.redhat.com [10.32.4.3]) by pobox.stuttgart.redhat.com (8.12.8/8.12.8) with ESMTP id k5GGsNTK026570 for ; Fri, 16 Jun 2006 18:54:23 +0200 Subject: better [PATCH] segfault fix while formatting paragraph (alt-p) From: Jindrich Novy To: MC Devel Content-Type: multipart/mixed; boundary="=-3u5KXe3b23+1fD2VbBs1" Date: Fri, 16 Jun 2006 18:54:23 +0200 Message-Id: <1150476863.19192.3.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.5) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.601 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.601 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 16:57:33 -0000 --=-3u5KXe3b23+1fD2VbBs1 Content-Type: text/plain Content-Transfer-Encoding: 7bit Hi, after some refinement I'm sending a better patch that rewrites next_word_start() and fixes the segfault. Jindrich --=-3u5KXe3b23+1fD2VbBs1 Content-Disposition: attachment; filename=mc-segfault.patch Content-Type: text/x-patch; name=mc-segfault.patch; charset=UTF-8 Content-Transfer-Encoding: 7bit --- mc/edit/wordproc.c.jn 2005-05-27 05:35:12.000000000 +0200 +++ mc/edit/wordproc.c 2006-06-16 18:48:42.000000000 +0200 @@ -198,33 +198,25 @@ } static int -next_word_start (unsigned char *t, int q) +next_word_start (unsigned char *t, int q, int size) { int i; - for (i = q;; i++) { - switch (t[i]) { - case '\n': + for (i = q; i X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6AA2F3B04C9 for ; Fri, 16 Jun 2006 16:21:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19862-05 for ; Fri, 16 Jun 2006 16:21:41 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 7B4BC3B03B3 for ; Fri, 16 Jun 2006 16:21:41 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrKoG-0007SH-00; Fri, 16 Jun 2006 16:20:52 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Fri, 16 Jun 2006 22:20:52 +0200 Date: Fri, 16 Jun 2006 22:20:52 +0200 To: Nick Shmyrev , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16829] Crash when formatting paragraph From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060616-222051.sv26390.93326@savannah.gnu.org> References: <20060612-123140.sv25628.90055@savannah.gnu.org> <20060612-123314.sv25628.73913@savannah.gnu.org> <20060613-145453.sv26390.71423@savannah.gnu.org> <20060616-154301.sv26390.44190@savannah.gnu.org> In-Reply-To: <20060616-154301.sv26390.44190@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.55 tagged_above=-999 required=2 tests=[AWL=0.050, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.55 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 20:21:44 -0000 Update of bug #16829 (project mc): Status: None => Fixed Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #4: Pavel Tsekov committed patches to fix this issue. Closing. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From proski@gnu.org Fri Jun 16 23:17:46 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AFAEF3B00C5 for ; Fri, 16 Jun 2006 23:17:46 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00723-05 for ; Fri, 16 Jun 2006 23:17:45 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id B49B33B0137 for ; Fri, 16 Jun 2006 23:17:45 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FrRIQ-0002kb-1Z for mc-devel@gnome.org; Fri, 16 Jun 2006 23:16:26 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FrRIJ-00025L-VK; Fri, 16 Jun 2006 23:16:19 -0400 Subject: Re: Problems with the mailing list ? From: Pavel Roskin To: Pavel Tsekov In-Reply-To: References: Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Fri, 16 Jun 2006 23:16:19 -0400 Message-Id: <1150514179.29738.20.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 03:17:46 -0000 Hello! On Fri, 2006-06-16 at 18:57 +0300, Pavel Tsekov wrote: > Hello, > > Does anyone miss messages from the mc-devel list ? It seems like some > messages do not reach the mailing list at all while others don't reach > the mailing list subcsribers. Can anyone confirm or deny this ? I have sent an email to the GNOME mailing list administrator. I don't see any delays or mail loss, but let's see what would happen to this message. -- Regards, Pavel Roskin From proski@gnu.org Sat Jun 17 00:33:48 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 099BB3B015A for ; Sat, 17 Jun 2006 00:33:48 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01828-10 for ; Sat, 17 Jun 2006 00:33:46 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id 8FE6D3B00CB for ; Sat, 17 Jun 2006 00:33:46 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FrRT5-0002yB-Q6 for mc-devel@gnome.org; Fri, 16 Jun 2006 23:27:27 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FrRT0-00025j-D6; Fri, 16 Jun 2006 23:27:22 -0400 Subject: Re: Symlink attack in file.c? From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150415636.2615.24.camel@athlon> References: <1150415636.2615.24.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Fri, 16 Jun 2006 23:27:22 -0400 Message-Id: <1150514842.29738.32.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 04:33:48 -0000 Hello, Leonard! On Fri, 2006-06-16 at 01:53 +0200, Leonard den Ottolander wrote: > Something I came across a couple of times this week, just now in > relation to an RFE regarding file permissions on copying fat files in > RHs bugzilla > (https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=195614): > http://cvs.savannah.gnu.org/viewcvs/mc/src/file.c?root=mc&r1=1.28&r2=1.29 > > A commit by "pavel" (Machek?) who added the remark > "FIXME: You have security hole here, btw. Imagine copying to /tmp and > symlink attack :-(" > > Is there anybody that can explain to me what he's concerned about and if > that is still an issue? If so this is a rather long standing hole... If > not, let's get rid of that warning. I think it's still an issue. Suppose the target doesn't exist. Then mc decides that it's OK to create the file and creates it. In the meantime, somebody could have created a symlink, so mc truncates the file pointed to by the symlink. It is a hole indeed, but it needs a good timing to be exploited. The attacker should know which file is about to be overwritten and the symlink should be created after mc has checked that the target doesn't exist, but before mc opens the file for writing. Since mc needs to be interactive, it's hard to avoid accessing the target file more than once. The simplest fix would be to use O_EXCL is there was no target file initially. If it fails for the reason that the file exists, there should be a huge warning that no user should be able to ignore. -- Regards, Pavel Roskin From niko_2501@yahoo.co.jp Wed Jun 14 02:52:08 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3C1A73B00A4 for ; Wed, 14 Jun 2006 02:52:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19764-06 for ; Wed, 14 Jun 2006 02:52:07 -0400 (EDT) Received: from web3704.mail.tnz.yahoo.co.jp (web3704.mail.tnz.yahoo.co.jp [203.216.226.186]) by menubar.gnome.org (Postfix) with SMTP id 5C6D73B000C for ; Wed, 14 Jun 2006 02:52:06 -0400 (EDT) Received: (qmail 50747 invoked by uid 60001); 14 Jun 2006 06:50:59 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=yj20050223; d=yahoo.co.jp; h=Message-ID:Received:Date:From:Subject:To:MIME-Version:Content-Type; b=fKfMo4MtcFdN3Oi44x+rUCTdRh804D+vSygKDCE2SnLqfIE0VSjG32inB55EtTlWaKDRmUId67rQxnl7zaB+WjYH1rDaTntn7UzdA4w9jA/f4iZEZp/9P9n5p/oH5Exk ; Message-ID: <20060614065059.50745.qmail@web3704.mail.tnz.yahoo.co.jp> Received: from [220.98.134.208] by web3704.mail.tnz.yahoo.co.jp via HTTP; Wed, 14 Jun 2006 15:50:59 JST Date: Wed, 14 Jun 2006 15:50:59 +0900 (JST) From: sipieter nicolas Subject: mc bugs To: mc-devel@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-2022-jp X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.709 tagged_above=-999 required=2 tests=[BAYES_50=0.001, DNS_FROM_RFC_POST=1.708] X-Spam-Score: 1.709 X-Spam-Level: * X-Mailman-Approved-At: Thu, 15 Jun 2006 08:58:02 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 06:52:08 -0000 hi there, i would like to say i use a lot mc, it's just great. lately i've been updating my website, and i discovered i could edit my document remotely with mc. (cd /#ftp:bleh:pass@some.ftp.net then push f4 key on the document i wish to edit....) it's really nice but, i've been experiencing problems, at least with the ftp server i use: when i edit documents it take some time, enough to be disconnected from ftp server. in that case mc just re-log me in and properly save the document .. so far so good, but, after a while working like that, mc seems unable from time to time to connect to the ftp server. i even get seg fault, or it just fail to connect randomly.. when this happen, the only choice left is to quit mc and re-launch it .. i would say, i spend between 1 and 10minutes on a document, and i do lots of em per day (maybe 100 or 200minimum) and i have to restart mc at least 20times... i would say something is wrong in the ftp code inside mc. thanks for your time and efforts, mc is really cool to use. -------------------------------------- Let's start Yahoo! Auction - Free Campaign Now! http://pr.mail.yahoo.co.jp/auction/ From ptsekov@gmx.net Sat Jun 17 02:59:14 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 42DB83B0744 for ; Sat, 17 Jun 2006 02:59:14 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11195-01 for ; Sat, 17 Jun 2006 02:59:12 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 7F8FF3B0302 for ; Sat, 17 Jun 2006 02:59:11 -0400 (EDT) Received: (qmail invoked by alias); 17 Jun 2006 06:58:19 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp020) with SMTP; 17 Jun 2006 08:58:19 +0200 X-Authenticated: #14308112 Date: Sat, 17 Jun 2006 09:57:06 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Pavel Roskin Subject: Re: Problems with the mailing list ? In-Reply-To: <1150514179.29738.20.camel@dv> Message-ID: References: <1150514179.29738.20.camel@dv> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 06:59:14 -0000 Hello Pavel, On Fri, 16 Jun 2006, Pavel Roskin wrote: > On Fri, 2006-06-16 at 18:57 +0300, Pavel Tsekov wrote: >> Hello, >> >> Does anyone miss messages from the mc-devel list ? It seems like some >> messages do not reach the mailing list at all while others don't reach >> the mailing list subcsribers. Can anyone confirm or deny this ? > > I have sent an email to the GNOME mailing list administrator. > > I don't see any delays or mail loss, but let's see what would happen to > this message. I got a copy of your reply which you CC-ed directly to me. The message destined to the mailing list is still not here though. I see that the mailing list software at mail.gnome.org has been changed - maybe the administrators are doing some kind of upgrade... From leonard@den.ottolander.nl Sat Jun 17 08:47:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C72863B075D for ; Sat, 17 Jun 2006 08:47:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22117-06 for ; Sat, 17 Jun 2006 08:47:18 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id BDA1E3B03E5 for ; Sat, 17 Jun 2006 08:47:18 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 788374023 for ; Sat, 17 Jun 2006 14:46:35 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id tXpVqRKSrvlX for ; Sat, 17 Jun 2006 14:46:33 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id EA55E4021 for ; Sat, 17 Jun 2006 14:46:32 +0200 (CEST) Subject: Re: mc bugs From: Leonard den Ottolander To: MC development In-Reply-To: <20060614065059.50745.qmail@web3704.mail.tnz.yahoo.co.jp> References: <20060614065059.50745.qmail@web3704.mail.tnz.yahoo.co.jp> Content-Type: text/plain Date: Sat, 17 Jun 2006 14:46:33 +0200 Message-Id: <1150548393.2528.12.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 12:47:22 -0000 Hello Sipieter, On Wed, 2006-06-14 at 15:50 +0900, sipieter nicolas wrote: > but, after a while working like that, mc seems unable from > time to time to connect to the ftp server. i even get seg > fault, or it just fail to connect randomly.. Connection failures are not necessarily a problem with mc (not saying the ftp code is perfect though ;) ). However, if you do see segmentation faults please open a bug report at http://savannah.gnu.org/bugs/?group=mc and attach a backtrace. Don't forget to mention system information and please do *not* report bugs against mc versions before 4.6.1. (Use ulimit -c 99999 to enable core dumps on your system. Use gdb and the bt command to get a backtrace.) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Sat Jun 17 08:54:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9B7C83B03E5 for ; Sat, 17 Jun 2006 08:54:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22162-08 for ; Sat, 17 Jun 2006 08:54:26 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 81F0C3B0165 for ; Sat, 17 Jun 2006 08:54:25 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id AAF4B4023; Sat, 17 Jun 2006 14:52:42 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id MvD+6iJVdikt; Sat, 17 Jun 2006 14:52:39 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 205F44021; Sat, 17 Jun 2006 14:52:39 +0200 (CEST) Subject: Bugzilla submits only against >= 4.6.1 From: Leonard den Ottolander To: Pavel Roskin Content-Type: text/plain Date: Sat, 17 Jun 2006 14:52:38 +0200 Message-Id: <1150548759.2528.20.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 12:54:27 -0000 Hello Pavel, IMO it doesn't make much sense for people to be able to report bugs against mc versions older than 4.6.1. I presume most developers will agree with me (please protest if not). Could you please update the Savannah bugs "Release" drop down menu to only contain the following elements? older than 4.6.1 (upgrade first!) 4.6.1 current (CVS or snapshot) I don't think we need the entries "All versions" and "None" but these might be hard coded default entries. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Sat Jun 17 09:02:22 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B72163B0165 for ; Sat, 17 Jun 2006 09:02:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22628-01 for ; Sat, 17 Jun 2006 09:02:21 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3F8343B000D for ; Sat, 17 Jun 2006 09:02:21 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FraOq-0003fU-00; Sat, 17 Jun 2006 08:59:40 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sat, 17 Jun 2006 14:59:39 +0200 Date: Sat, 17 Jun 2006 14:59:39 +0200 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060617-145938.sv26390.15283@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > <20060615-222730.sv50251.60290@savannah.gnu.org> In-Reply-To: <20060615-222730.sv50251.60290@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.552 tagged_above=-999 required=2 tests=[AWL=0.048, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.552 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 09:19:08 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 13:02:22 -0000 Follow-up Comment #21, bug #16762 (project mc): If Roland doesn't feel the need to add any remarks to this approach I suppose this patch can be submitted and this report closed. (I did not verify the code other than glancing over it, but I trust it to be ok ;) .) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sat Jun 17 11:52:37 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id DC5333B00A7 for ; Sat, 17 Jun 2006 11:52:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26174-02 for ; Sat, 17 Jun 2006 11:52:35 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 81C363B000D for ; Sat, 17 Jun 2006 11:52:35 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Frd56-0001Zf-00; Sat, 17 Jun 2006 11:51:28 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sat, 17 Jun 2006 18:51:25 +0300 Date: Sat, 17 Jun 2006 18:51:25 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Opera/8.51 (Windows ME; U; en) X-Apparently-From: 87.126.52.205 (Savane authenticated user ptsekov) Message-Id: <20060617-185125.sv36205.47362@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > <20060615-222730.sv50251.60290@savannah.gnu.org> <20060617-145938.sv26390.15283@savannah.gnu.org> In-Reply-To: <20060617-145938.sv26390.15283@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.514 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TV=0.077] X-Spam-Score: -2.514 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 09:19:08 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 15:52:37 -0000 Update of bug #16762 (project mc): Status: None => Fixed Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #22: I've just commited the patch. It should be OK. It was tested and reported to work by Pavel Shirshov, purportex and yaroslav. If coreutils configure tests are modified to include tests for: 1) the presence of field f_fstypename in struct statvfs 2) the type of the first argument ot getmntinfo() we will remove the homebrew tests from AC_GET_FS_INFO and use those provided by coreutils. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sat Jun 17 15:48:22 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4F4D33B074C for ; Sat, 17 Jun 2006 15:48:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05618-08 for ; Sat, 17 Jun 2006 15:48:21 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id C83323B01A6 for ; Sat, 17 Jun 2006 15:48:20 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrgRN-0008Lb-00; Sat, 17 Jun 2006 15:26:41 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sat, 17 Jun 2006 21:26:40 +0200 Date: Sat, 17 Jun 2006 21:26:40 +0200 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060617-212640.sv26390.65809@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > <20060615-222730.sv50251.60290@savannah.gnu.org> <20060617-145938.sv26390.15283@savannah.gnu.org> <20060617-185125.sv36205.47362@savannah.gnu.org> In-Reply-To: <20060617-185125.sv36205.47362@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.514 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TV=0.077] X-Spam-Score: -2.514 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 09:19:08 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 19:48:22 -0000 Follow-up Comment #23, bug #16762 (project mc): > If coreutils configure tests are modified to include tests for: > > 1) the presence of field f_fstypename in struct statvfs > > 2) the type of the first argument ot getmntinfo() > > we will remove the homebrew tests from AC_GET_FS_INFO and use > those provided by coreutils. Have you contacted the coreutils maintainers about this? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sat Jun 17 15:48:23 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9AC3F3B033C for ; Sat, 17 Jun 2006 15:48:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05730-03 for ; Sat, 17 Jun 2006 15:48:21 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 688E63B02E2 for ; Sat, 17 Jun 2006 15:48:21 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrgZ2-0001NR-00; Sat, 17 Jun 2006 15:34:36 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sat, 17 Jun 2006 22:34:36 +0300 Date: Sat, 17 Jun 2006 22:34:36 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Opera/8.51 (Windows ME; U; en) X-Apparently-From: 87.126.52.205 (Savane authenticated user ptsekov) Message-Id: <20060617-223436.sv36205.11011@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > <20060615-222730.sv50251.60290@savannah.gnu.org> <20060617-145938.sv26390.15283@savannah.gnu.org> <20060617-185125.sv36205.47362@savannah.gnu.org> <20060617-212640.sv26390.65809@savannah.gnu.org> In-Reply-To: <20060617-212640.sv26390.65809@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.552 tagged_above=-999 required=2 tests=[AWL=0.048, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.552 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 09:19:08 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 19:48:23 -0000 Follow-up Comment #24, bug #16762 (project mc): No. Maybe you can drop them a message ? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 10:58:13 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B73953B08E2 for ; Sun, 18 Jun 2006 10:58:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31385-03 for ; Sun, 18 Jun 2006 10:58:12 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id DED683B0078 for ; Sun, 18 Jun 2006 10:58:11 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrygF-0006eY-00; Sun, 18 Jun 2006 10:55:15 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 14:55:15 +0000 Date: Sun, 18 Jun 2006 14:55:15 +0000 To: hajma , mc-devel@gnome.org Subject: [bug #16871] czech translation - description overlaps in the chmod dialogue From: hajma X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16871 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060531 Mandriva/1.5.0.4-1mdv2007.0 (2007.0) Firefox/1.5.0.4 X-Apparently-From: 82.208.37.13 (Savane authenticated user tropikhajma) Message-Id: <20060618-145515.sv50336.41107@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.555 tagged_above=-999 required=2 tests=[AWL=0.045, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.555 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 14:58:13 -0000 URL: Summary: czech translation - description overlaps in the chmod dialogue Project: GNU Midnight Commander Submitted by: tropikhajma Submitted on: Sunday 06/18/2006 at 14:55 Category: None Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Linux _______________________________________________________ Details: see screenshot: ftp://tropikhajma.vserver.cz/bugs/mc.png the first two lines of the "File" rectangle get overwritten by text from the "mode" rectangle. IMHO replacing číslo uĹživatele with UID would make it. Side note: caron is missing above the second e in "změne" and the word "nastavenĂ­" should follow the word "změně" _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 11:22:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 468D33B0CB2 for ; Sun, 18 Jun 2006 11:22:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00310-01 for ; Sun, 18 Jun 2006 11:22:30 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 482A53B0CD0 for ; Sun, 18 Jun 2006 11:22:29 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Frymc-0007y2-00; Sun, 18 Jun 2006 11:01:50 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 15:01:50 +0000 Date: Sun, 18 Jun 2006 15:01:50 +0000 To: Istvan Kispal , mc-devel@gnome.org Subject: [bug #16872] ftpfs lists directories begining with '2006 ' incorrectly From: Istvan Kispal X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16872 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.4) Gecko/20060508 Firefox/1.5.0.4 X-Apparently-From: 81.183.183.18 (Savane authenticated user kispaljr) Message-Id: <20060618-150150.sv50338.79195@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.554 tagged_above=-999 required=2 tests=[AWL=0.046, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.554 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 15:22:36 -0000 URL: Summary: ftpfs lists directories begining with '2006 ' incorrectly Project: GNU Midnight Commander Submitted by: kispaljr Submitted on: Sunday 06/18/2006 at 15:01 Category: VFS Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Linux _______________________________________________________ Details: if a directory on an ftp server has the following subdirectories: 1990 06 19 hetfo 2005 06 23 akarmi 2006 06 23 akarmi then they are listed in mc (console mode version, using ftpfs) incorrectly as: 06 19 hetfo 06 23 akarmi 06 23 akarmi if you type cd 2006 06 19 hetfo manually then you can cd into the subdir, but not with taping enter on the (incorrectly listed) directory name. it's rather uncomofortable. _______________________________________________________ Carbon-Copy List: CC Address | Comment ------------------------------------+----------------------------- kispaljr | _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 11:34:10 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D616B3B0CB1 for ; Sun, 18 Jun 2006 11:34:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00460-07 for ; Sun, 18 Jun 2006 11:34:09 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 78DD03B0C2B for ; Sun, 18 Jun 2006 11:34:09 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrzGu-0005Zh-00; Sun, 18 Jun 2006 11:33:08 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 17:33:07 +0200 Date: Sun, 18 Jun 2006 17:33:07 +0200 To: hajma , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16871] czech translation - description overlaps in the chmod dialogue From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16871 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060618-173307.sv26390.76425@savannah.gnu.org> References: <20060618-145515.sv50336.41107@savannah.gnu.org> In-Reply-To: <20060618-145515.sv50336.41107@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.554 tagged_above=-999 required=2 tests=[AWL=0.046, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.554 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 15:34:11 -0000 Update of bug #16871 (project mc): Status: None => Need Info Assigned to: None => leonardjo _______________________________________________________ Follow-up Comment #1: Please provide a patch. Mske sure you use the correct character set in the file. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 12:09:52 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3B8693B0CD1 for ; Sun, 18 Jun 2006 12:09:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01904-07 for ; Sun, 18 Jun 2006 12:09:51 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 113B43B0CD5 for ; Sun, 18 Jun 2006 12:09:51 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Frzol-0007KE-00; Sun, 18 Jun 2006 12:08:07 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 18:08:05 +0200 Date: Sun, 18 Jun 2006 18:08:05 +0200 To: Istvan Kispal , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16872] ftpfs lists directories begining with '2006 ' incorrectly From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16872 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060618-180805.sv26390.79688@savannah.gnu.org> References: <20060618-150150.sv50338.79195@savannah.gnu.org> In-Reply-To: <20060618-150150.sv50338.79195@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 16:09:52 -0000 Update of bug #16872 (project mc): Status: None => Duplicate Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #1: Be so kind to check for exisiting reports before submitting new reports. This is a duplicate of 10645 and 4327. This issue has been fixed in CVS. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 12:13:08 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8693F3B0CC5 for ; Sun, 18 Jun 2006 12:12:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02109-10 for ; Sun, 18 Jun 2006 12:12:49 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id E95503B0AA3 for ; Sun, 18 Jun 2006 12:12:48 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Frzpt-0007L8-00; Sun, 18 Jun 2006 12:09:17 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 16:09:17 +0000 Date: Sun, 18 Jun 2006 16:09:17 +0000 To: hajma , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16871] czech translation - description overlaps in the chmod dialogue From: hajma X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16871 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060531 Mandriva/1.5.0.4-1mdv2007.0 (2007.0) Firefox/1.5.0.4 X-Apparently-From: 82.208.37.13 (Savane authenticated user tropikhajma) Message-Id: <20060618-160916.sv50336.88803@savannah.gnu.org> References: <20060618-145515.sv50336.41107@savannah.gnu.org> <20060618-173307.sv26390.76425@savannah.gnu.org> In-Reply-To: <20060618-173307.sv26390.76425@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 16:13:09 -0000 Follow-up Comment #2, bug #16871 (project mc): I found out that the bug was fixed in revision 1.67 of cs.po, it just didn't make it into mc-4.6.1 in Mandriva Cooker I'm using. as regards the side note I attach corrected cs.po that fixes it. _______________________________________________________ Additional Item Attachment: File name: cs.po Size:73 KB cs.po _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 12:13:09 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 82DF63B0C4F for ; Sun, 18 Jun 2006 12:12:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01996-09 for ; Sun, 18 Jun 2006 12:12:49 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 690A33B0C35 for ; Sun, 18 Jun 2006 12:12:48 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrzsE-0007MO-00; Sun, 18 Jun 2006 12:11:42 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 18:11:42 +0200 Date: Sun, 18 Jun 2006 18:11:42 +0200 To: hajma , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16871] czech translation - description overlaps in the chmod dialogue From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16871 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060618-181142.sv26390.23707@savannah.gnu.org> References: <20060618-145515.sv50336.41107@savannah.gnu.org> <20060618-173307.sv26390.76425@savannah.gnu.org> <20060618-160916.sv50336.88803@savannah.gnu.org> In-Reply-To: <20060618-160916.sv50336.88803@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 16:13:09 -0000 Update of bug #16871 (project mc): Status: Need Info => Invalid Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #3: Ok. Closing "invalid" as the issue didn't exist anymore when the issue was reported. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From proski@gnu.org Mon Jun 19 17:50:46 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 51A1F3B05A8 for ; Mon, 19 Jun 2006 17:50:46 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02882-07 for ; Mon, 19 Jun 2006 17:50:45 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id A34B13B03BA for ; Mon, 19 Jun 2006 17:50:44 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FsRcm-00020v-BN for mc-devel@gnome.org; Mon, 19 Jun 2006 17:49:36 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FsRcg-0003zX-7s; Mon, 19 Jun 2006 17:49:30 -0400 Subject: Re: Bugzilla submits only against >= 4.6.1 From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150548759.2528.20.camel@athlon> References: <1150548759.2528.20.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Mon, 19 Jun 2006 17:49:30 -0400 Message-Id: <1150753770.12841.19.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 21:50:46 -0000 Hello! On Sat, 2006-06-17 at 14:52 +0200, Leonard den Ottolander wrote: > Hello Pavel, > > IMO it doesn't make much sense for people to be able to report bugs > against mc versions older than 4.6.1. I presume most developers will > agree with me (please protest if not). > > Could you please update the Savannah bugs "Release" drop down menu to > only contain the following elements? > > older than 4.6.1 (upgrade first!) > 4.6.1 > current (CVS or snapshot) I think that would be solving a social problem using technical means. If you check Red Hat's Bugzilla you'll see that it's possible to enter a bug e.g. for Fedora Core 1. Some bugs can be more long-lived than you may think. I believe the quality of the bug report should be judged not only by the version. Bugs against old versions should be discouraged, but not outright forbidden. Besides, there is only one bug filed for "older than 4.5.55". > I don't think we need the entries "All versions" and "None" but these > might be hard coded default entries. "None" is hardcoded, "All versions" is not. I think "all version" is a valid value in some cases. -- Regards, Pavel Roskin From leonard@den.ottolander.nl Mon Jun 19 19:04:28 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5EEEE3B0A79 for ; Mon, 19 Jun 2006 19:04:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06061-07 for ; Mon, 19 Jun 2006 19:04:27 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id DF06B3B0335 for ; Mon, 19 Jun 2006 19:04:26 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id BFCB94023; Tue, 20 Jun 2006 01:02:55 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 752vGUiocrMK; Tue, 20 Jun 2006 01:02:50 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 25F3E4021; Tue, 20 Jun 2006 01:02:50 +0200 (CEST) Subject: Re: Bugzilla submits only against >= 4.6.1 From: Leonard den Ottolander To: Pavel Roskin In-Reply-To: <1150753770.12841.19.camel@dv> References: <1150548759.2528.20.camel@athlon> <1150753770.12841.19.camel@dv> Content-Type: text/plain Date: Tue, 20 Jun 2006 01:02:49 +0200 Message-Id: <1150758169.2571.7.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 23:04:28 -0000 Hello Pavel, On Mon, 2006-06-19 at 17:49 -0400, Pavel Roskin wrote: > Some bugs can be more long-lived than you may think. I believe the > quality of the bug report should be judged not only by the version. > Bugs against old versions should be discouraged, but not outright > forbidden. > > Besides, there is only one bug filed for "older than 4.5.55". I didn't mean old bugs should be removed from the bug list. I just feel it doesn't make much sense for people to file new bugs against anything older than 4.6.1. There is no added value to let people add bugs against older versions. If the issue no longer exists it's just wasted time, and if it does still exist the reporter should make the effort to verify the issue indeed still exists in 4.6.1 or later. > "None" is hardcoded, "All versions" is not. I think "all version" is a > valid value in some cases. Yes, but only if you keep all the other versions as valid options. If we'd drop anything but latest stable and CVS there's not much use leaving "all versions" around. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From proski@gnu.org Tue Jun 20 14:08:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1A9943B02AC for ; Tue, 20 Jun 2006 14:08:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02911-01 for ; Tue, 20 Jun 2006 14:08:18 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id 921CB3B000C for ; Tue, 20 Jun 2006 14:08:18 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1Fskdk-00031J-4G for mc-devel@gnome.org; Tue, 20 Jun 2006 14:08:01 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FskdX-0005Ef-Ch; Tue, 20 Jun 2006 14:07:39 -0400 Subject: Re: Bugzilla submits only against >= 4.6.1 From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150758169.2571.7.camel@athlon> References: <1150548759.2528.20.camel@athlon> <1150753770.12841.19.camel@dv> <1150758169.2571.7.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 20 Jun 2006 14:07:39 -0400 Message-Id: <1150826859.1969.7.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.595 tagged_above=-999 required=2 tests=[AWL=0.005, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.595 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 18:08:27 -0000 On Tue, 2006-06-20 at 01:02 +0200, Leonard den Ottolander wrote: > I didn't mean old bugs should be removed from the bug list. I just feel > it doesn't make much sense for people to file new bugs against anything > older than 4.6.1. > > There is no added value to let people add bugs against older versions. Anyone who takes time to file a new bug is adding some value to the project. It may be more or less valuable, but we shouldn't give the impression that we don't want to hear about the problem. > If the issue no longer exists it's just wasted time, and if it does > still exist the reporter should make the effort to verify the issue > indeed still exists in 4.6.1 or later. Ideally, yes. But not everyone can do it. It's better to have 10 reports for already fixed bugs and one for a bug that still exists than to have neither of them. If you have an example where time was wasted as a result of the availability of the older versions in the bug tracker, I may reconsider. > > "None" is hardcoded, "All versions" is not. I think "all version" is a > > valid value in some cases. > > Yes, but only if you keep all the other versions as valid options. If > we'd drop anything but latest stable and CVS there's not much use > leaving "all versions" around. I generally assume the bug reporters to be intelligent persons who can make there own judgment how to file a bug. -- Regards, Pavel Roskin From ptsekov@gmx.net Tue Jun 20 14:28:43 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 409073B08C6 for ; Tue, 20 Jun 2006 14:28:43 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04451-05 for ; Tue, 20 Jun 2006 14:28:38 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 586743B06E3 for ; Tue, 20 Jun 2006 14:28:33 -0400 (EDT) Received: (qmail invoked by alias); 20 Jun 2006 18:28:32 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp034) with SMTP; 20 Jun 2006 20:28:32 +0200 X-Authenticated: #14308112 Date: Tue, 20 Jun 2006 21:27:19 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: "Stan. S. Krupoderov" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <20060620060123.GD99474@inode.hvn> Message-ID: References: <20060620060123.GD99474@inode.hvn> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: mc@gnome.org, MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 18:28:43 -0000 Hello Stan, On Tue, 20 Jun 2006, Stan. S. Krupoderov wrote: > This Midnight Commander build is modified to use Colorer-take5 as a syntax highlighting engine in standard mc editor. > http://colorer.sourceforge.net/mc.html That's just great! > Maybe it can be useful for someone. Any opinions? Sure it will! Some time ago I tried myself to get colorer to work with MC. Unfortunately due to time constraints I abandoned the idea - I just didn't have enough time to study how colorer works properly. I've downloaded MC-Colorer's source tarball today and I took a look at the code. Though I haven't studied the code in depth I can say that it seems pretty high quality. After all it is written by the colorer's author himself - who could understand better how colorer works :) I'll try to contact him and see what he thinks about integrating his work into MC's source tree. It would be also very useful if we could use the work done on MC-Colorer to get syntax highlighting in the viewer too - this was one of the tasks I was trying to achieve when I started investigating colorer. Thanks! From irusskih@gmail.com Wed Jun 21 08:50:40 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6E7343B0F9B for ; Wed, 21 Jun 2006 08:50:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05808-06 for ; Wed, 21 Jun 2006 08:50:35 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.198]) by menubar.gnome.org (Postfix) with ESMTP id 0490A3B0FE0 for ; Wed, 21 Jun 2006 08:50:33 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id s1so170251nze for ; Wed, 21 Jun 2006 05:50:33 -0700 (PDT) Received: by 10.37.13.61 with SMTP id q61mr445036nzi; Wed, 21 Jun 2006 05:50:33 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Wed, 21 Jun 2006 05:50:33 -0700 (PDT) Message-ID: <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> Date: Wed, 21 Jun 2006 16:50:33 +0400 From: "Igor Russkih" To: mc@gnome.org, mc-devel@gnome.org Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_Part_1775_638873.1150894233203" References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.225 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, HTML_30_40=0.374, HTML_MESSAGE=0.001, SPF_PASS=-0.001] X-Spam-Score: -2.225 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 12:50:40 -0000 ------=_Part_1775_638873.1150894233203 Content-Type: multipart/alternative; boundary="----=_Part_1776_131830.1150894233203" ------=_Part_1776_131830.1150894233203 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi Pavel, Hi All, I'll be really glad to help to improve MC in this area, I've downloaded MC-Colorer's source tarball today and I took > a look at the code. Though I haven't studied the code in depth > I can say that it seems pretty high quality. After all it is > written by the colorer's author himself - who could understand > better how colorer works :) I'll try to contact him and see what > he thinks about integrating his work into MC's source tree. It If somebody is interested, attached is a full diff on MC tree to support colorer. For now I'm using sf.net SVN repository to store modified MC code. Information on how to access it: http://sourceforge.net/svn/?group_id=34855 There are also some questions which I believe should be discussed. At first there is one C++ file in this mod (to link with c++ colorer code). As far as I understand MC uses C only. Is this a problem? Another is that this mod dynamically links to the libcolorer - this means that to use it, colorer library should be installed in system. This introduces MC additional dependency. would be also very useful if we could use the work done on MC-Colorer > to get syntax highlighting in the viewer too - this was one of the > tasks I was trying to achieve when I started investigating colorer. > That's a good idea, I'll try investigate it in near time. -- Igor ------=_Part_1776_131830.1150894233203 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline
Hi Pavel, Hi All,

I'll be really glad to help to improve MC in this area,

I've downloaded MC-Colorer's source tarball today and I took
a look at the code. Though I haven't studied the code in depth
I can say that it seems pretty high quality. After all it is
written by the colorer's author himself - who could understand
better how colorer works :) I'll try to contact him and see what
he thinks about integrating his work into MC's source tree. It

If somebody is interested, attached is a full diff on MC tree to support colorer.

For now I'm using sf.net SVN repository to store modified MC code.
Information on how to access it: http://sourceforge.net/svn/?group_id=34855

There are also some questions which I believe should be discussed.
At first there is one C++ file in this mod (to link with c++ colorer code). As far as I understand MC uses C only. Is this a problem?
Another is that this mod dynamically links to the libcolorer - this means that to use it, colorer library should be installed in system. This introduces MC additional dependency.

would be also very useful if we could use the work done on MC-Colorer
to get syntax highlighting in the viewer too - this was one of the
tasks I was trying to achieve when I started investigating colorer.

That's a good idea, I'll try investigate it in near time.

--
  Igor


------=_Part_1776_131830.1150894233203-- ------=_Part_1775_638873.1150894233203 Content-Type: application/x-gzip; name=mccolorer.diff.gz Content-Transfer-Encoding: base64 X-Attachment-Id: f_eopn4lol Content-Disposition: attachment; filename="mccolorer.diff.gz" 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 /wGW3psI2yABAA== ------=_Part_1775_638873.1150894233203-- From leonard@den.ottolander.nl Wed Jun 21 10:03:05 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E951D3B103C for ; Wed, 21 Jun 2006 10:03:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10784-07 for ; Wed, 21 Jun 2006 10:03:01 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 0180D3B1033 for ; Wed, 21 Jun 2006 10:03:00 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id DDE3C4023; Wed, 21 Jun 2006 16:02:57 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id M5kjYx2Phqne; Wed, 21 Jun 2006 16:02:54 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 05A1E4021; Wed, 21 Jun 2006 16:02:53 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: Igor Russkih In-Reply-To: <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> Content-Type: text/plain Date: Wed, 21 Jun 2006 16:02:52 +0200 Message-Id: <1150898573.2801.45.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 14:03:05 -0000 Hello Igor, On Wed, 2006-06-21 at 16:50 +0400, Igor Russkih wrote: > I'll be really glad to help to improve MC in this area, This looks really nice. I'm very exited. With just minor patching to the xml (introduction of ControlKeyword, eg "if", "else" etc.) and a custom colour scheme I've already got the php syntax looking much like the original in mc (where can I send patches? Is there a mailing list for colorer?). Only have to look at the String type as we normally distinguish between single quoted (FixedString) and double quoted (VariableString) in php (and perl too for that matter). Although the startup of the viewer seems a bit slow with colorer this has much added value over the default syntax highlighting, and although I think we could well include the colorer hooks in the main mc tree I don't believe we should drop the existing highlighting, over even make colorer the default. Firstly the default syntax is more lightweight, which some people might prefer. Secondly the use of colorer requires the installation of a(n extra) third party library. > If somebody is interested, attached is a full diff on MC tree to > support colorer. Is this a fully functional patch? Much lighter than the diff I got diffing your tarball against CVS :) . In that patch I noticed a couple of things: - You got rid of the COPYING.LGPL file in vfs. I think this might be a mistake on your part. You might want to rectify that for your version. - In your version you got rid of the pipethrough files. This has no bearing on us as it's not in your patch. - There are a lot of fixes to the po files and some to the Russian and Serbian(?) man page. Please submit these to this list separately. - I noticed a CR here and there. There seem to be even more in the patch you sent. Please get rid of those (fe with dos2unix). - You made some fixes to the config files as well that seem same. Please submit those separately for review. - I noticed changes in vfs/samba/configure. Most of this are somewhat odd whitespace changes, but there appear to be some hunks at the top and bottom to actually do something. Please submit (not the whitespace) :) . - Why did you get rid of vfs/extfs/README.it? (not much of an issue) - There are a lot of added comments/fixes in config.h.in that I do not see in your patch. Please submit separately. > For now I'm using sf.net SVN repository to store modified MC code. > Information on how to access it: > http://sourceforge.net/svn/?group_id=34855 Good to know. > There are also some questions which I believe should be discussed. > At first there is one C++ file in this mod (to link with c++ colorer > code). As far as I understand MC uses C only. Is this a problem? Yes, it might. The overall approach towards accepted language constructs is a bit conservative to maintain compatibility with older systems. Would it be much work to rewrite these parts? > Another is that this mod dynamically links to the libcolorer - this > means that to use it, colorer library should be installed in system. > This introduces MC additional dependency. This is why I do not want to make colorer the default. I think this is something we should leave to the distributions. > to get syntax highlighting in the viewer too > That's a good idea, I'll try investigate it in near time. That would be great. Thanks a lot! Leonard. P.S. Could you please set your mail client to produce plain text mails and use an indentation character and a "replying to" line for quotes? -- mount -t life -o ro /dev/dna /genetic/research From ptsekov@gmx.net Wed Jun 21 10:28:00 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8E9D53B106A for ; Wed, 21 Jun 2006 10:28:00 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12487-02 for ; Wed, 21 Jun 2006 10:27:59 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 7C4863B106C for ; Wed, 21 Jun 2006 10:27:58 -0400 (EDT) Received: (qmail invoked by alias); 21 Jun 2006 14:27:57 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp032) with SMTP; 21 Jun 2006 16:27:57 +0200 X-Authenticated: #14308112 Date: Wed, 21 Jun 2006 17:26:43 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole Cc: MC development Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150898573.2801.45.camel@athlon> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 14:28:00 -0000 On Wed, 21 Jun 2006, Leonard den Ottolander wrote: >> There are also some questions which I believe should be discussed. >> At first there is one C++ file in this mod (to link with c++ colorer >> code). As far as I understand MC uses C only. Is this a problem? > > Yes, it might. The overall approach towards accepted language constructs > is a bit conservative to maintain compatibility with older systems. > Would it be much work to rewrite these parts? Yes it will take a lot of work - colorer is written entirely in C++ . Thus there is a thin wrapper to translate from C to C++ and vice versa. In my opinion this is not a big deal and a necessary sacrifice. For system which do not have C++ support obviously colorer syntax highlighting would be disabled by configure. Since I have tried to embed colorer in MC in the past I have configure code that deals with those issues. >> Another is that this mod dynamically links to the libcolorer - this >> means that to use it, colorer library should be installed in system. >> This introduces MC additional dependency. > > This is why I do not want to make colorer the default. I think this is > something we should leave to the distributions. This we are not going to make it the default (at least not at this time). This can be achieved with configure too - I have code for that too. I still haven't looked at the patch that Igor sent today but I'll do that as soon as I get some free time. I am willing to make the necessary changes to MC to adopt Igor's patch. I think patch has great value. From leonard@den.ottolander.nl Wed Jun 21 11:04:35 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 10A383B0FA5 for ; Wed, 21 Jun 2006 11:04:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15002-05 for ; Wed, 21 Jun 2006 11:04:34 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id CE3943B0FDD for ; Wed, 21 Jun 2006 11:04:33 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id BE3F44023 for ; Wed, 21 Jun 2006 17:04:32 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id nGjmWqt66RAz for ; Wed, 21 Jun 2006 17:04:31 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 428F34021 for ; Wed, 21 Jun 2006 17:04:31 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> Content-Type: text/plain Date: Wed, 21 Jun 2006 17:04:30 +0200 Message-Id: <1150902270.2801.52.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 15:04:35 -0000 Hello Pavel, On Wed, 2006-06-21 at 17:26 +0300, Pavel Tsekov wrote: > Yes it will take a lot of work - colorer is written entirely in C++ . > Thus there is a thin wrapper to translate from C to C++ and vice > versa. In my opinion this is not a big deal and a necessary sacrifice. I'm not sure what you say here: Is it a necessary sacrifice to port syntax-colorer.cpp to c or is it a necessary sacrifice to include c++ code into the tree? I'd rather go for the first option. > This can be achieved with configure too - I have code for that too. All it needs is the current default in the patch to change. > I still haven't looked at the patch that Igor sent today but I'll > do that as soon as I get some free time. I am willing to make the > necessary changes to MC to adopt Igor's patch. Maybe Igor is just as willing to make some changes to the patch for mc to adopt it ;) . > I think patch has great value. We totally agree then :-) . Leonard. -- mount -t life -o ro /dev/dna /genetic/research From ptsekov@gmx.net Wed Jun 21 11:46:22 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6005D3B106E for ; Wed, 21 Jun 2006 11:46:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18001-02 for ; Wed, 21 Jun 2006 11:46:20 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 72F443B1076 for ; Wed, 21 Jun 2006 11:46:19 -0400 (EDT) Received: (qmail invoked by alias); 21 Jun 2006 15:46:17 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp036) with SMTP; 21 Jun 2006 17:46:17 +0200 X-Authenticated: #14308112 Date: Wed, 21 Jun 2006 18:45:04 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150902270.2801.52.camel@athlon> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <1150902270.2801.52.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 15:46:22 -0000 On Wed, 21 Jun 2006, Leonard den Ottolander wrote: > Hello Pavel, > > On Wed, 2006-06-21 at 17:26 +0300, Pavel Tsekov wrote: >> Yes it will take a lot of work - colorer is written entirely in C++ . >> Thus there is a thin wrapper to translate from C to C++ and vice >> versa. In my opinion this is not a big deal and a necessary sacrifice. > > I'm not sure what you say here: Is it a necessary sacrifice to port > syntax-colorer.cpp to c or is it a necessary sacrifice to include c++ > code into the tree? I'd rather go for the first option. You cannot avoid the inclusion of C++ code. colorer is written in C++ and as such it cannot be linked directly with MC. You'll need a wrapper which must be compiled with C++ compiler. We can discuss however where to put that code ? It can be moved into a directory of its own or it can be left where it is now. From INVALID.NOREPLY@gnu.org Wed Jun 21 13:36:11 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B39933B0646 for ; Wed, 21 Jun 2006 13:36:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25350-05 for ; Wed, 21 Jun 2006 13:36:07 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 95CA53B0578 for ; Wed, 21 Jun 2006 13:36:05 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6cP-0008Df-00; Wed, 21 Jun 2006 13:35:57 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:35:56 +0200 Date: Wed, 21 Jun 2006 19:35:56 +0200 To: SGh , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16303] More functionally u7z From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16303 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-193556.sv26390.77497@savannah.gnu.org> References: <20060408-134359.sv45177.11632@savannah.gnu.org> <20060408-134508.sv45177.86924@savannah.gnu.org> <20060408-134854.sv45177.29103@savannah.gnu.org> <20060518-165152.sv36205.74443@savannah.gnu.org> <20060530-195233.sv45177.57929@savannah.gnu.org> In-Reply-To: <20060530-195233.sv45177.57929@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.558 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.558 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:36:11 -0000 Follow-up Comment #4, bug #16303 (project mc): It's easier to see what changed (and if there are unwanted regressions) if you patch the existing version instead of writing a new version from scratch. So if you want to get any improvements considered for inclusion you will have to rewrite your patch. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 13:37:06 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 36E093B014E for ; Wed, 21 Jun 2006 13:37:06 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25325-10 for ; Wed, 21 Jun 2006 13:37:04 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 66A103B059D for ; Wed, 21 Jun 2006 13:37:04 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6cj-0008JI-00; Wed, 21 Jun 2006 13:36:17 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:36:17 +0200 Date: Wed, 21 Jun 2006 19:36:17 +0200 To: Rudolf Polzer , Oswald Buddenhagen , Roland Illig , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16452] mcedit forgets POSIX newline at end of file From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16452 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-193617.sv26390.27833@savannah.gnu.org> References: <20060427-072754.sv49027.45360@savannah.gnu.org> <20060427-180523.sv41304.99027@savannah.gnu.org> <20060427-214753.sv49027.21116@savannah.gnu.org> <20060427-215010.sv49027.73709@savannah.gnu.org> <20060429-101230.sv20990.85981@savannah.gnu.org> <20060429-102521.sv41304.56758@savannah.gnu.org> <20060429-091823.sv49027.23806@savannah.gnu.org> In-Reply-To: <20060429-091823.sv49027.23806@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.559 tagged_above=-999 required=2 tests=[AWL=0.041, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.559 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:37:06 -0000 Follow-up Comment #7, bug #16452 (project mc): Any patches forthcoming? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 13:37:35 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 426863B04F6 for ; Wed, 21 Jun 2006 13:37:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25593-02 for ; Wed, 21 Jun 2006 13:37:34 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id E733D3B0494 for ; Wed, 21 Jun 2006 13:37:33 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6dv-0008Pw-00; Wed, 21 Jun 2006 13:37:31 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:37:31 +0200 Date: Wed, 21 Jun 2006 19:37:31 +0200 To: Rolf Offermanns , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16383] Build system does not allow cross compiling From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16383 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-193731.sv26390.16849@savannah.gnu.org> References: <20060419-132319.sv48822.2441@savannah.gnu.org> In-Reply-To: <20060419-132319.sv48822.2441@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.56 tagged_above=-999 required=2 tests=[AWL=0.040, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.56 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:37:35 -0000 Follow-up Comment #1, bug #16383 (project mc): Please provide a patch. Thanks. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 13:47:41 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1B4753B063E for ; Wed, 21 Jun 2006 13:47:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26098-05 for ; Wed, 21 Jun 2006 13:47:39 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 2A6D33B00B0 for ; Wed, 21 Jun 2006 13:47:39 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6nT-0001MS-00; Wed, 21 Jun 2006 13:47:23 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:47:23 +0200 Date: Wed, 21 Jun 2006 19:47:23 +0200 To: PB , Leonard den Ottolander , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #15621] file/dir entries with international characters mess up the columns From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 15621 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-194722.sv26390.13446@savannah.gnu.org> References: <20060204-101232.sv47152.80354@savannah.gnu.org> <20060211-093708.sv47312.65124@savannah.gnu.org> In-Reply-To: <20060211-093708.sv47312.65124@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.561 tagged_above=-999 required=2 tests=[AWL=0.039, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.561 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:47:41 -0000 Update of bug #15621 (project mc): Status: None => Duplicate Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #2: This is a duplicate of bug 7936 and bug 15100. Please check for existing bug reports before submitting. If you do submit please specify your platform, the version of mc used and if any patches have been applied. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Wed Jun 21 14:07:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5C2753B0706 for ; Wed, 21 Jun 2006 14:07:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27026-09 for ; Wed, 21 Jun 2006 14:07:15 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 1053F3B0733 for ; Wed, 21 Jun 2006 14:07:15 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 257144023; Wed, 21 Jun 2006 20:07:14 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id tHnFxEPUHYqg; Wed, 21 Jun 2006 20:07:12 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 513C24021; Wed, 21 Jun 2006 20:07:12 +0200 (CEST) Subject: Progress bar From: Leonard den Ottolander To: Pavel Tsekov Content-Type: text/plain Date: Wed, 21 Jun 2006 20:07:11 +0200 Message-Id: <1150913231.2801.73.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 18:07:16 -0000 Hello Pavel, Looking at bugs 10507 and 13100. The patch from Hampa Hug that you've committed should fix the issue for moving files. Does it also fix the issue when copying files? Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Wed Jun 21 14:07:52 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 025663B06D1 for ; Wed, 21 Jun 2006 14:07:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27422-01 for ; Wed, 21 Jun 2006 14:07:49 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id DD4563B05EB for ; Wed, 21 Jun 2006 14:07:48 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft778-00051S-00; Wed, 21 Jun 2006 14:07:42 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 20:07:42 +0200 Date: Wed, 21 Jun 2006 20:07:42 +0200 To: Thomas Zajic , Leonard den Ottolander , Oleg Broytmann , Rihards , mc-devel@gnome.org Subject: [bug #13100] Bytes and Count progess bars when moving multiple files From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 13100 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-200741.sv26390.85621@savannah.gnu.org> References: <20050516-170931.sv14402.91225@savannah.gnu.org> In-Reply-To: <20050516-170931.sv14402.91225@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.562 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.562 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 18:07:52 -0000 Update of bug #13100 (project mc): Status: None => Duplicate Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #1: This is a duplicate of bug 10507. Should be fixed by the patch from Hampa Hug to file_move_move() in file.c. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Wed Jun 21 14:56:53 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7BFFF3B0235 for ; Wed, 21 Jun 2006 14:56:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30644-03 for ; Wed, 21 Jun 2006 14:56:52 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id A71023B02AF for ; Wed, 21 Jun 2006 14:56:51 -0400 (EDT) Received: (qmail invoked by alias); 21 Jun 2006 18:56:50 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp042) with SMTP; 21 Jun 2006 20:56:50 +0200 X-Authenticated: #14308112 Date: Wed, 21 Jun 2006 21:55:37 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Progress bar In-Reply-To: <1150913231.2801.73.camel@athlon> Message-ID: References: <1150913231.2801.73.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 18:56:53 -0000 On Wed, 21 Jun 2006, Leonard den Ottolander wrote: > Looking at bugs 10507 and 13100. The patch from Hampa Hug that you've > committed should fix the issue for moving files. Does it also fix the > issue when copying files? No. From INVALID.NOREPLY@gnu.org Wed Jun 21 14:58:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A18373B02AF for ; Wed, 21 Jun 2006 14:58:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30612-07 for ; Wed, 21 Jun 2006 14:58:33 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3D90C3B02A3 for ; Wed, 21 Jun 2006 14:58:33 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft7uI-0006zh-00; Wed, 21 Jun 2006 14:58:30 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 20:58:30 +0200 Date: Wed, 21 Jun 2006 20:58:30 +0200 To: Leonard den Ottolander , Rihards , mc-devel@gnome.org Subject: [bug #10507] copy/move progress bar show none/bad values on big transactions From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 10507 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-205829.sv26390.48736@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.562 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.562 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 18:58:36 -0000 Update of bug #10507 (project mc): Status: None => Fixed Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #1: The poor counting appears to be fixed in CVS. Closing this bug as FIXED. The progress counter only calculates estimates per file. If you want a progress counter for the total time for all files you should file this as an RFE. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 15:15:43 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 433423B03D6 for ; Wed, 21 Jun 2006 15:15:43 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31772-04 for ; Wed, 21 Jun 2006 15:15:42 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 0CB6A3B0397 for ; Wed, 21 Jun 2006 15:15:41 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft8Aq-0007zn-00; Wed, 21 Jun 2006 15:15:36 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:15:35 +0000 Date: Wed, 21 Jun 2006 19:15:35 +0000 To: SGh , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16303] More functionally u7z From: SGh X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16303 User-Agent: Opera/8.51 (X11; Linux i686; U; ru) X-Apparently-From: 80.91.160.214 (Savane authenticated user sgh) Message-Id: <20060621-191535.sv45177.54566@savannah.gnu.org> References: <20060408-134359.sv45177.11632@savannah.gnu.org> <20060408-134508.sv45177.86924@savannah.gnu.org> <20060408-134854.sv45177.29103@savannah.gnu.org> <20060518-165152.sv36205.74443@savannah.gnu.org> <20060530-195233.sv45177.57929@savannah.gnu.org> <20060621-193556.sv26390.77497@savannah.gnu.org> In-Reply-To: <20060621-193556.sv26390.77497@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.563 tagged_above=-999 required=2 tests=[AWL=0.037, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.563 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 19:15:43 -0000 Follow-up Comment #5, bug #16303 (project mc): OK, Understand. I will download latest CVS, and see if I have something to patch un u7z. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From irusskih@gmail.com Wed Jun 21 15:26:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7DF953B01F3 for ; Wed, 21 Jun 2006 15:26:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32350-07 for ; Wed, 21 Jun 2006 15:26:40 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.193]) by menubar.gnome.org (Postfix) with ESMTP id ABDF33B0536 for ; Wed, 21 Jun 2006 15:26:33 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id s1so277067nze for ; Wed, 21 Jun 2006 12:26:33 -0700 (PDT) Received: by 10.36.227.49 with SMTP id z49mr847594nzg; Wed, 21 Jun 2006 12:26:33 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Wed, 21 Jun 2006 12:26:32 -0700 (PDT) Message-ID: <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> Date: Wed, 21 Jun 2006 23:26:32 +0400 From: "Igor Russkih" To: "Leonard den Ottolander" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150898573.2801.45.camel@athlon> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.412 tagged_above=-999 required=2 tests=[AWL=0.188, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.412 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 19:26:44 -0000 On 6/21/06, Leonard den Ottolander wrote: > Hello Igor, > > original in mc (where can I send patches? Is there a mailing list for > colorer?). Only have to look at the String type as we normally Sure, you can use colorer-talks@lists.sourceforge.net (http://lists.sourceforge.net/mailman/listinfo/colorer-talks) > Although the startup of the viewer seems a bit slow with colorer this > has much added value over the default syntax highlighting, and although Yep, the startup time is a bit heavier. Basically this depends on a syntax complexity and dependencies. > I think we could well include the colorer hooks in the main mc tree I > don't believe we should drop the existing highlighting, over even make > colorer the default. Firstly the default syntax is more lightweight, > which some people might prefer. Secondly the use of colorer requires the > installation of a(n extra) third party library. This was one of the ideas I've tried to reach in my patch. Colorer library can be disabled either during compilation time (thus making no dependencies on libcolorer) or in runtime (in this case regular mc syntax highlighter can work). > Is this a fully functional patch? Much lighter than the diff I got > diffing your tarball against CVS :) . Tarball can contain some additional generated files or codes which are not included into SVN repository. From the other side, colorer's SVN repository contains the only files from MC-2006-05-30-15 snapshot which I've altered. This can be a reason. > In that patch I noticed a couple of things: > - There are a lot of fixes to the po files and some to the Russian and > Serbian(?) man page. Please submit these to this list separately. Just a single ru.po file with a few additions. > - I noticed a CR here and there. There seem to be even more in the patch > you sent. Please get rid of those (fe with dos2unix). thanks, that's because of windows-based SVN client. For all the next comments it seems to be a misunderstanding (possibly because my diff is based on MC-2006-05-30-15 snapshot, not the latest one). > - There are a lot of added comments/fixes in config.h.in that I do not > see in your patch. Please submit separately. > - You got rid of the COPYING.LGPL file in vfs. I think this might be a > mistake on your part. You might want to rectify that for your version. > - In your version you got rid of the pipethrough files. This has no > bearing on us as it's not in your patch. > - You made some fixes to the config files as well that seem same. Please > submit those separately for review. > - I noticed changes in vfs/samba/configure. Most of this are somewhat > odd whitespace changes, but there appear to be some hunks at the top and > bottom to actually do something. Please submit (not the whitespace) :) . > - Why did you get rid of vfs/extfs/README.it? (not much of an issue) I'll upmerge with latest CVS MC revision and resend it. > > code). As far as I understand MC uses C only. Is this a problem? > Yes, it might. The overall approach towards accepted language constructs > is a bit conservative to maintain compatibility with older systems. > Would it be much work to rewrite these parts? The main problem with this is that syntax-colorer.cpp file makes direct connection between mc editor data and colorer's code. Technically it is possible to extract a kind of 'generic' C API and include it on library side. In this case MC will have pure C codes. >From the other side this will not release MC from libcolorer dependency - and this means that if user wants to compile and use mc-colorer, he anyway should have C++ environment. I mean I see no reason to eliminate that C++ code from MC: those who have C-only environments can just disable colorer's support in compile time. > This is why I do not want to make colorer the default. I think this is > something we should leave to the distributions. Agreed. > P.S. Could you please set your mail client to produce plain text mails > and use an indentation character and a "replying to" line for quotes? sorry, fixed. -- Igor From leonard@den.ottolander.nl Wed Jun 21 16:05:47 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0DEE23B056F for ; Wed, 21 Jun 2006 16:05:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02395-09 for ; Wed, 21 Jun 2006 16:05:45 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 4133B3B0556 for ; Wed, 21 Jun 2006 16:05:45 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 048E54023 for ; Wed, 21 Jun 2006 22:05:44 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id XchkQtXZk6gl for ; Wed, 21 Jun 2006 22:05:43 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id C653F4021 for ; Wed, 21 Jun 2006 22:05:43 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> Content-Type: text/plain Date: Wed, 21 Jun 2006 22:05:43 +0200 Message-Id: <1150920343.2801.92.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 20:05:47 -0000 Hello Igor, On Wed, 2006-06-21 at 23:26 +0400, Igor Russkih wrote: > On 6/21/06, Leonard den Ottolander wrote: > Colorer library can be disabled either during compilation time Switching at run time would be nice. At least as a startup option. > Just a single ru.po file with a few additions. And sr.po. > For all the next comments it seems to be a misunderstanding (possibly > because my diff is based on MC-2006-05-30-15 snapshot, not the latest > one). These are no misunderstandings, just differences I noticed between mccolorer and mc-CVS. I already filtered out some m4 related makefile issues. > > - There are a lot of added comments/fixes in config.h.in that I do not > > see in your patch. Please submit separately. These are comments and fixes in your mccolorer, not available in CVS. Are you using patches from others? > > - You got rid of the COPYING.LGPL file in vfs. I think this might be a > > mistake on your part. You might want to rectify that for your version. For some reason this file got lost in your mccolorer tarball. > > - You made some fixes to the config files as well that seem same. Please > > submit those separately for review. > > - I noticed changes in vfs/samba/configure. Most of this are somewhat > > odd whitespace changes, but there appear to be some hunks at the top and > > bottom to actually do something. Please submit (not the whitespace) :) . These are patches you seem to be using that are not in CVS. This is why I ask you to submit them for review. > I'll upmerge with latest CVS MC revision and resend it. The CVS tarball I'm using is only 2 weeks newer than yours. I'm not speaking of the recent changes to CVS. > The main problem with this is that syntax-colorer.cpp file makes > direct connection between mc editor data and colorer's code. > Technically it is possible to extract a kind of 'generic' C API and > include it on library side. In this case MC will have pure C codes. Is it technically possible to reimplement that c++ code in c? (This is just theoretical question, I don't ask you to do it.) > >From the other side this will not release MC from libcolorer > dependency - and this means that if user wants to compile and use > mc-colorer, he anyway should have C++ environment. > > I mean I see no reason to eliminate that C++ code from MC: those who > have C-only environments can just disable colorer's support in compile > time. Yes, I guess you are right. We might want to put the colorer code in a different directory though. > > P.S. Could you please set your mail client to produce plain text mails > > and use an indentation character and a "replying to" line for quotes? > sorry, fixed. Thanks :) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Wed Jun 21 16:06:51 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5314E3B0573 for ; Wed, 21 Jun 2006 16:06:51 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02504-10 for ; Wed, 21 Jun 2006 16:06:50 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 537BD3B056B for ; Wed, 21 Jun 2006 16:06:50 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 8C1574023 for ; Wed, 21 Jun 2006 22:06:44 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id HM0rfGtmzMsH for ; Wed, 21 Jun 2006 22:06:43 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id B9AD84021 for ; Wed, 21 Jun 2006 22:06:43 +0200 (CEST) Subject: Re: Progress bar From: Leonard den Ottolander To: MC development In-Reply-To: References: <1150913231.2801.73.camel@athlon> Content-Type: text/plain Date: Wed, 21 Jun 2006 22:06:43 +0200 Message-Id: <1150920403.2801.95.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 20:06:51 -0000 On Wed, 2006-06-21 at 21:55 +0300, Pavel Tsekov wrote: > > Does it also fix the > > issue when copying files? > > No. Seems to work fine though. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Wed Jun 21 17:21:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F34E73B00E8 for ; Wed, 21 Jun 2006 17:21:15 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06624-06 for ; Wed, 21 Jun 2006 17:21:14 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 925423B00F2 for ; Wed, 21 Jun 2006 17:21:14 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id B529F4023 for ; Wed, 21 Jun 2006 23:21:13 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id tbmp1FvQgFwr for ; Wed, 21 Jun 2006 23:21:07 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 4373F4021 for ; Wed, 21 Jun 2006 23:21:07 +0200 (CEST) Subject: Snapshots availability From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Wed, 21 Jun 2006 23:21:06 +0200 Message-Id: <1150924866.2801.100.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 21:21:16 -0000 Hi, Who is the creator of the two weekly snapshots found at http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/snapshots/ ? Pavel? Miguel? Could you please keep a couple of months worth of snapshots around? I couldn't find the May 30th snapshot when I wanted to compare it with mccolorer. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Wed Jun 21 19:05:41 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2C4D23B0138 for ; Wed, 21 Jun 2006 19:05:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11604-09 for ; Wed, 21 Jun 2006 19:05:39 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 756083B006C for ; Wed, 21 Jun 2006 19:05:39 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtBlM-0000CL-00; Wed, 21 Jun 2006 19:05:32 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 01:05:32 +0200 Date: Thu, 22 Jun 2006 01:05:32 +0200 To: Leonard den Ottolander , mc-devel@gnome.org Subject: [task #5671] Data Export #2 (bugs) From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: task X-Savane-Item-ID: 5671 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-010531.sv26390.89793@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.564 tagged_above=-999 required=2 tests=[AWL=0.036, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.564 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 23:05:41 -0000 URL: Summary: Data Export #2 (bugs) Project: GNU Midnight Commander Submitted by: leonardjo Submitted on: Thursday 22/06/06 at 01:05 Should Start On: Thursday 22/06/06 at 00:00 Should be Finished on: Friday 23/06/06 at 00:00 Category: None Priority: 5 - Normal Status: None Privacy: Private Assigned to: None Percent Complete: 0% Open/Closed: Open Effort: 0.00 _______________________________________________________ Details: A new export job has been registered. This task has been created to keep the project informed. However, only Leonard den Ottolander, that created the job, can remove the job itself. ######### JOB URL ######### Once the job will be done, it will be available at: ######### JOB REMOVAL ######### Closing this task will not remove the job. To remove the job, Leonard den Ottolander must go at ######### JOB DETAILS ######### The SQL query will be: SELECT bug_id FROM bugs WHERE group_id=3521 (Note: We are aware this information is not tremendously user-friendly. This will be improved in future Savane releases) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Thu Jun 22 00:53:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8FED23B0377 for ; Thu, 22 Jun 2006 00:53:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28223-01 for ; Thu, 22 Jun 2006 00:53:37 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 25D633B027A for ; Thu, 22 Jun 2006 00:53:36 -0400 (EDT) Received: (qmail invoked by alias); 22 Jun 2006 04:53:35 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp016) with SMTP; 22 Jun 2006 06:53:35 +0200 X-Authenticated: #14308112 Date: Thu, 22 Jun 2006 07:52:21 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Progress bar In-Reply-To: <1150920403.2801.95.camel@athlon> Message-ID: References: <1150913231.2801.73.camel@athlon> <1150920403.2801.95.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 04:53:39 -0000 On Wed, 21 Jun 2006, Leonard den Ottolander wrote: > On Wed, 2006-06-21 at 21:55 +0300, Pavel Tsekov wrote: >>> Does it also fix the >>> issue when copying files? >> >> No. > > Seems to work fine though. Hampa's patch behaves exactly as described: [...] If a file is moved by copy/remove the progress bar is advanced twice. On the other hand, if a file is moved by renaming the progress bar is never updated. [...] I don't see how it could possibly fix other issues. From INVALID.NOREPLY@gnu.org Thu Jun 22 02:16:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7DB7B3B014A for ; Thu, 22 Jun 2006 02:16:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32693-10 for ; Thu, 22 Jun 2006 02:16:42 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 885D53B026A for ; Thu, 22 Jun 2006 02:16:42 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtIUZ-000551-00; Thu, 22 Jun 2006 02:16:39 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 06:16:38 +0000 Date: Thu, 22 Jun 2006 06:16:38 +0000 To: Rolf Offermanns , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16383] Build system does not allow cross compiling From: Rolf Offermanns X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16383 User-Agent: Mozilla/5.0 (compatible; Konqueror/3.5; Linux) KHTML/3.5.2 (like Gecko) Kubuntu 6.06 Dapper X-Apparently-From: 84.58.135.66 (Savane authenticated user roffermanns) Message-Id: <20060622-061638.sv48822.49212@savannah.gnu.org> References: <20060419-132319.sv48822.2441@savannah.gnu.org> <20060621-193731.sv26390.16849@savannah.gnu.org> In-Reply-To: <20060621-193731.sv26390.16849@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.564 tagged_above=-999 required=2 tests=[AWL=0.036, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.564 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 06:16:44 -0000 Follow-up Comment #2, bug #16383 (project mc): I would, but I have no clue about the auto* stuff. Sorry. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 02:56:50 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C01823B02D2 for ; Thu, 22 Jun 2006 02:56:50 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02668-05 for ; Thu, 22 Jun 2006 02:56:49 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 61ED03B00C2 for ; Thu, 22 Jun 2006 02:56:49 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtJ7N-0000cX-00; Thu, 22 Jun 2006 02:56:45 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 09:56:45 +0300 Date: Thu, 22 Jun 2006 09:56:45 +0300 To: Rolf Offermanns , Leonard den Ottolander , Pavel Tsekov , mc-devel@gnome.org Subject: [bug #16383] Build system does not allow cross compiling From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16383 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060622-095644.sv36205.99030@savannah.gnu.org> References: <20060419-132319.sv48822.2441@savannah.gnu.org> <20060621-193731.sv26390.16849@savannah.gnu.org> <20060622-061638.sv48822.49212@savannah.gnu.org> In-Reply-To: <20060622-061638.sv48822.49212@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.565 tagged_above=-999 required=2 tests=[AWL=0.035, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.565 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 06:56:51 -0000 Follow-up Comment #3, bug #16383 (project mc): The major problem here is that man2hlp relies on glib. This complicates the task of making it build in cross environment. One way to fix this is to drop the glib dependency - there are tree or four functions which need to be replaced. When I have time I'll do this if noone beats me to it. I have already made some changes to the auto stuff so that MC will build properly in cross environment but whithout changing man2hlp they are of no use. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From irusskih@gmail.com Thu Jun 22 06:17:30 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 84BC73B0191 for ; Thu, 22 Jun 2006 06:17:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15568-03 for ; Thu, 22 Jun 2006 06:17:27 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.195]) by menubar.gnome.org (Postfix) with ESMTP id 9A6723B02D2 for ; Thu, 22 Jun 2006 06:17:26 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id l8so363567nzf for ; Thu, 22 Jun 2006 03:17:25 -0700 (PDT) Received: by 10.36.252.49 with SMTP id z49mr1712665nzh; Thu, 22 Jun 2006 03:17:25 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Thu, 22 Jun 2006 03:17:25 -0700 (PDT) Message-ID: <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> Date: Thu, 22 Jun 2006 14:17:25 +0400 From: "Igor Russkih" To: "Leonard den Ottolander" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150920303.2801.89.camel@athlon> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_Part_3415_13609534.1150971445577" References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.499 tagged_above=-999 required=2 tests=[AWL=0.101, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.499 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 10:17:30 -0000 ------=_Part_3415_13609534.1150971445577 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Leonard, all, Here attached the patch over mc-2006-06-17-02 (snapshot from ibiblio.org). Please don't make direct diffs between mc-colorer and cvs snapshot since they are different versions. Use this patch for reviewing. I've separated the patch for easier understanding: build.diff - make/configs changes edit.diff - changes in existing edit/* files mccolorer.diff - new colorer's code edit/syntax-colorer-* lang.diff - ru.po additions for colorer > > Colorer library can be disabled either during compilation time > Switching at run time would be nice. At least as a startup option. "either during compilation time or in runtime" - I meant this is already implemented. > These are comments and fixes in your mccolorer, not available in CVS. > Are you using patches from others? No, just clean mc snapshot from ibiblio.org. > > > odd whitespace changes, but there appear to be some hunks at the top and > > > bottom to actually do something. Please submit (not the whitespace) :) . > These are patches you seem to be using that are not in CVS. This is why > I ask you to submit them for review. Sorry, it seems to be a difference in our original MC tarballs. I didn't touch it. See the patch attached for all the files changed. > > The main problem with this is that syntax-colorer.cpp file makes > > direct connection between mc editor data and colorer's code. > > Technically it is possible to extract a kind of 'generic' C API and > > include it on library side. In this case MC will have pure C codes. > Is it technically possible to reimplement that c++ code in c? (This is > just theoretical question, I don't ask you to do it.) It is possible to move this code to libcolorer side and implement plain C API from library side - however this'll take more time and I see no reason in doing this. > Yes, I guess you are right. We might want to put the colorer code in a > different directory though. That's easy. -- Igor ------=_Part_3415_13609534.1150971445577 Content-Type: application/x-gzip; name=mccolorer.diff.tgz Content-Transfer-Encoding: base64 X-Attachment-Id: f_eoqy6k46 Content-Disposition: attachment; filename="mccolorer.diff.tgz" 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 PaPn4z3/Fzf5qE4AQAEA ------=_Part_3415_13609534.1150971445577-- From INVALID.NOREPLY@gnu.org Thu Jun 22 07:54:37 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 138DC3B02A8 for ; Thu, 22 Jun 2006 07:54:37 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21553-06 for ; Thu, 22 Jun 2006 07:54:35 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 73FAA3B02F9 for ; Thu, 22 Jun 2006 07:54:35 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtNlY-0005Il-00; Thu, 22 Jun 2006 07:54:32 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 13:54:32 +0200 Date: Thu, 22 Jun 2006 13:54:32 +0200 To: Leonard den Ottolander , mc-devel@gnome.org Subject: [task #5673] Data Export #3 (bugs) From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: task X-Savane-Item-ID: 5673 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-135432.sv26390.82990@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.566 tagged_above=-999 required=2 tests=[AWL=0.034, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.566 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 11:54:37 -0000 URL: Summary: Data Export #3 (bugs) Project: GNU Midnight Commander Submitted by: leonardjo Submitted on: Thursday 22/06/06 at 13:54 Should Start On: Thursday 22/06/06 at 00:00 Should be Finished on: Friday 23/06/06 at 00:00 Category: None Priority: 5 - Normal Status: None Privacy: Private Assigned to: None Percent Complete: 0% Open/Closed: Open Effort: 0.00 _______________________________________________________ Details: A new export job has been registered. This task has been created to keep the project informed. However, only Leonard den Ottolander, that created the job, can remove the job itself. ######### JOB URL ######### Once the job will be done, it will be available at: ######### JOB REMOVAL ######### Closing this task will not remove the job. To remove the job, Leonard den Ottolander must go at ######### JOB DETAILS ######### The SQL query will be: SELECT bug_id FROM bugs WHERE group_id=3521 (Note: We are aware this information is not tremendously user-friendly. This will be improved in future Savane releases) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Thu Jun 22 08:09:08 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5CB333B0421 for ; Thu, 22 Jun 2006 08:09:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23152-01 for ; Thu, 22 Jun 2006 08:09:06 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 7DAD03B0401 for ; Thu, 22 Jun 2006 08:09:06 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 6AC464023 for ; Thu, 22 Jun 2006 14:09:05 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id xMGRfFcFP945 for ; Thu, 22 Jun 2006 14:09:03 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id CB99E4021 for ; Thu, 22 Jun 2006 14:09:03 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> Content-Type: text/plain Date: Thu, 22 Jun 2006 14:09:03 +0200 Message-Id: <1150978143.2807.11.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:09:08 -0000 Hello Igor, On Thu, 2006-06-22 at 14:17 +0400, Igor Russkih wrote: > "either during compilation time or in runtime" - I meant this is > already implemented. I should look for that switch then :) . > No, just clean mc snapshot from ibiblio.org. Can you make it available to me? I am quite curious where the changes I observe came from. They are quite a few, and if they are not in CVS I'm curious how they ended up in the tarball. > > Is it technically possible to reimplement that c++ code in c? (This is > > just theoretical question, I don't ask you to do it.) > It is possible to move this code to libcolorer side and implement > plain C API from library side - however this'll take more time and I > see no reason in doing this. My question was if it is technically possible to rewrite the cpp code for *mc* in c and (through trickery) still keep interface compatibility. A bit like linking Delphi (Pascal) to C code. This is possible through compiler switches changing the stack cleanup behaviour (and probably some alignment tricks). Again, I'm not asking you to do this, just inquiring about the theoretical possibility. It's a bit OT, I know ;) . Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Thu Jun 22 08:10:22 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CF08F3B0484 for ; Thu, 22 Jun 2006 08:10:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23399-04 for ; Thu, 22 Jun 2006 08:10:19 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id BBE813B0570 for ; Thu, 22 Jun 2006 08:10:19 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtO0n-00064f-00; Thu, 22 Jun 2006 08:10:17 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 14:10:17 +0200 Date: Thu, 22 Jun 2006 14:10:17 +0200 To: Leonard den Ottolander , mc-devel@gnome.org Subject: [task #5674] Data Export #4 (bugs) From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: task X-Savane-Item-ID: 5674 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-141017.sv26390.14093@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.566 tagged_above=-999 required=2 tests=[AWL=0.034, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.566 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:10:23 -0000 URL: Summary: Data Export #4 (bugs) Project: GNU Midnight Commander Submitted by: leonardjo Submitted on: Thursday 22/06/06 at 14:10 Should Start On: Thursday 22/06/06 at 00:00 Should be Finished on: Saturday 24/06/06 at 00:00 Category: None Priority: 5 - Normal Status: None Privacy: Private Assigned to: None Percent Complete: 0% Open/Closed: Open Effort: 0.00 _______________________________________________________ Details: A new export job has been registered. This task has been created to keep the project informed. However, only Leonard den Ottolander, that created the job, can remove the job itself. ######### JOB URL ######### Once the job will be done, it will be available at: ######### JOB REMOVAL ######### Closing this task will not remove the job. To remove the job, Leonard den Ottolander must go at ######### JOB DETAILS ######### The SQL query will be: SELECT bug_id FROM bugs WHERE group_id=3521 AND status_id IN (1) (Note: We are aware this information is not tremendously user-friendly. This will be improved in future Savane releases) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 13:49:13 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 721AA3B0733 for ; Wed, 21 Jun 2006 13:49:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26116-05 for ; Wed, 21 Jun 2006 13:49:11 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 8F2E03B06F1 for ; Wed, 21 Jun 2006 13:49:11 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6on-0001Zw-00; Wed, 21 Jun 2006 13:48:45 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:48:45 +0200 Date: Wed, 21 Jun 2006 19:48:45 +0200 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-194845.sv26390.25842@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> In-Reply-To: <20060306-153157.sv36205.31998@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.562 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.562 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 08:25:17 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:49:13 -0000 Follow-up Comment #25, bug #14155 (project mc): Ping. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Thu Jun 22 08:36:12 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 062EA3B0606 for ; Thu, 22 Jun 2006 08:36:12 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25706-05 for ; Thu, 22 Jun 2006 08:36:10 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id F034E3B03FD for ; Thu, 22 Jun 2006 08:36:09 -0400 (EDT) Received: (qmail invoked by alias); 22 Jun 2006 12:36:08 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp042) with SMTP; 22 Jun 2006 14:36:08 +0200 X-Authenticated: #14308112 Date: Thu, 22 Jun 2006 15:34:54 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150978143.2807.11.camel@athlon> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.477 tagged_above=-999 required=2 tests=[AWL=-0.012, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.477 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:36:12 -0000 On Thu, 22 Jun 2006, Leonard den Ottolander wrote: >>> Is it technically possible to reimplement that c++ code in c? (This is >>> just theoretical question, I don't ask you to do it.) >> It is possible to move this code to libcolorer side and implement >> plain C API from library side - however this'll take more time and I >> see no reason in doing this. > > My question was if it is technically possible to rewrite the cpp code > for *mc* in c and (through trickery) still keep interface compatibility. Not unless colorer exports C interfaces and it doesn't. The way it is implemented colorer exports a set of interfaces that one has to implement in terms of C++ classes. Theoretically it could be possible to create an C++ implementation of those interfaces, one that delegates the work to pure C functions. Again that means that colorer has to export a C. I don't see why this is such a big deal to you ? > A bit like linking Delphi (Pascal) to C code. This is possible through > compiler switches changing the stack cleanup behaviour (and probably > some alignment tricks). What about name mangling issues ? As I said above - you cannot avoid the C++ code. From leonard@den.ottolander.nl Thu Jun 22 08:36:29 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AFADE3B06C8 for ; Thu, 22 Jun 2006 08:36:29 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25640-08 for ; Thu, 22 Jun 2006 08:36:27 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id B69843B0677 for ; Thu, 22 Jun 2006 08:36:27 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 774334023 for ; Thu, 22 Jun 2006 14:36:21 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id XkAbOexUxtt9 for ; Thu, 22 Jun 2006 14:36:17 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id AA3E44021 for ; Thu, 22 Jun 2006 14:36:17 +0200 (CEST) Subject: Re: Progress bar From: Leonard den Ottolander To: MC development In-Reply-To: References: <1150913231.2801.73.camel@athlon> <1150920403.2801.95.camel@athlon> Content-Type: text/plain Date: Thu, 22 Jun 2006 14:36:17 +0200 Message-Id: <1150979777.2807.25.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:36:29 -0000 Hello Pavel, On Thu, 2006-06-22 at 07:52 +0300, Pavel Tsekov wrote: > Hampa's patch behaves exactly as described: > > [...] > If a file is moved by copy/remove the progress bar is advanced twice. On > the other hand, if a file is moved by renaming the progress bar is never > updated. > [...] I got confused by bug 10507 that doesn't distinguish clearly between copy and move. The copy progress bar behaves as expected. (copy_dir_dir() and move_dir_dir() do not show a bytes or count bar, but this is expected as they do not attempt to make an estimate of the number and size of the copied/moved files.) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Thu Jun 22 08:51:18 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C4EB23B06E1 for ; Thu, 22 Jun 2006 08:51:18 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27256-05 for ; Thu, 22 Jun 2006 08:51:17 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 562D33B066E for ; Thu, 22 Jun 2006 08:51:17 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtOdb-0000vu-00; Thu, 22 Jun 2006 08:50:23 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 14:50:22 +0200 Date: Thu, 22 Jun 2006 14:50:22 +0200 To: Gergely =?UTF-8?B?U3rDoXN6?= , Leonard den Ottolander , Pavel Tsekov , Oswald Buddenhagen , mc-devel@gnome.org Subject: [patch #4970] add label highlighting to c.syntax From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: patch X-Savane-Item-ID: 4970 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-145022.sv26390.88876@savannah.gnu.org> References: <20060312-194248.sv8412.23459@savannah.gnu.org> <20060317-170214.sv36205.75631@savannah.gnu.org> <20060317-161352.sv41304.82068@savannah.gnu.org> <20060317-211325.sv41304.63756@savannah.gnu.org> <20060318-120849.sv36205.36817@savannah.gnu.org> <20060318-144031.sv26390.61472@savannah.gnu.org> <20060319-090924.sv8412.83221@savannah.gnu.org> <20060319-164645.sv26390.22214@savannah.gnu.org> <20060319-204823.sv8412.33015@savannah.gnu.org> In-Reply-To: <20060319-204823.sv8412.33015@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.567 tagged_above=-999 required=2 tests=[AWL=0.033, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.567 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:51:19 -0000 Update of patch #4970 (project mc): Status: None => Done Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #9: Committed. Closing. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 08:59:11 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C623A3B071C for ; Thu, 22 Jun 2006 08:59:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28144-04 for ; Thu, 22 Jun 2006 08:59:10 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 8A51C3B0719 for ; Thu, 22 Jun 2006 08:59:10 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtOm3-0001Ef-00; Thu, 22 Jun 2006 08:59:07 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 14:59:07 +0200 Date: Thu, 22 Jun 2006 14:59:07 +0200 To: Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org Subject: [patch #4991] add .ipk extension to mc.ext From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: patch X-Savane-Item-ID: 4991 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-145906.sv26390.95959@savannah.gnu.org> References: <20060323-173337.sv36205.23406@savannah.gnu.org> <20060323-195337.sv26390.31728@savannah.gnu.org> In-Reply-To: <20060323-195337.sv26390.31728@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.568 tagged_above=-999 required=2 tests=[AWL=0.032, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.568 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:59:12 -0000 Update of patch #4991 (project mc): Category: None => Menu and associations Status: None => Done Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #2: Committed. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 09:01:57 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5704B3B0720 for ; Thu, 22 Jun 2006 09:01:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28587-02 for ; Thu, 22 Jun 2006 09:01:50 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id F38BE3B078C for ; Thu, 22 Jun 2006 09:00:53 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtOne-0001HY-00; Thu, 22 Jun 2006 09:00:46 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 15:00:44 +0200 Date: Thu, 22 Jun 2006 15:00:44 +0200 To: Sorin Sbarnea , Roland Illig , Leonard den Ottolander , mc-devel@gnome.org Subject: [patch #4741] Syntax Support for config files (conf,ini,cfg,...) From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: patch X-Savane-Item-ID: 4741 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-150044.sv26390.89917@savannah.gnu.org> References: <20051228-210650.sv46405.46961@savannah.gnu.org> <20051228-210735.sv46405.17938@savannah.gnu.org> <20060128-105039.sv20990.3126@savannah.gnu.org> In-Reply-To: <20060128-105039.sv20990.3126@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.568 tagged_above=-999 required=2 tests=[AWL=0.032, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.568 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:01:57 -0000 Follow-up Comment #2, patch #4741 (project mc): Ping. Sorin, if you do not fix these patches this report will be closed. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 08:40:20 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CEB323B06CE for ; Thu, 22 Jun 2006 08:40:20 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26231-01 for ; Thu, 22 Jun 2006 08:40:19 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 197813B0677 for ; Thu, 22 Jun 2006 08:40:19 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtOSt-00007u-00; Thu, 22 Jun 2006 08:39:19 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 15:39:19 +0300 Date: Thu, 22 Jun 2006 15:39:19 +0300 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060622-153919.sv36205.75620@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> <20060621-194845.sv26390.25842@savannah.gnu.org> In-Reply-To: <20060621-194845.sv26390.25842@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.567 tagged_above=-999 required=2 tests=[AWL=0.033, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.567 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 09:09:11 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:40:21 -0000 Follow-up Comment #26, bug #14155 (project mc): I guess we can safely close that one . If anyone has any kind of objections she/he could request that we reopen the bug report. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From irusskih@gmail.com Thu Jun 22 09:30:41 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72E753B06B5 for ; Thu, 22 Jun 2006 09:30:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30485-04 for ; Thu, 22 Jun 2006 09:30:40 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.204]) by menubar.gnome.org (Postfix) with ESMTP id BAB223B0559 for ; Thu, 22 Jun 2006 09:30:39 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id 18so390211nzp for ; Thu, 22 Jun 2006 06:30:39 -0700 (PDT) Received: by 10.37.22.14 with SMTP id z14mr1920162nzi; Thu, 22 Jun 2006 06:30:38 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Thu, 22 Jun 2006 06:30:38 -0700 (PDT) Message-ID: <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> Date: Thu, 22 Jun 2006 17:30:38 +0400 From: "Igor Russkih" To: "Leonard den Ottolander" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150978143.2807.11.camel@athlon> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.531 tagged_above=-999 required=2 tests=[AWL=0.069, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.531 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:30:41 -0000 > > already implemented. > I should look for that switch then :) . It's a runtime option in editor's settings dialog. You'll find it easily ;) > > No, just clean mc snapshot from ibiblio.org. > Can you make it available to me? I am quite curious where the changes I The latest one I've got from http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/snapshots/mc-2006-06-17-02.tar.gz The previous I've used (mc-2006-05-30-15.tar.gz) > > plain C API from library side - however this'll take more time and I > > see no reason in doing this. > My question was if it is technically possible to rewrite the cpp code > for *mc* in c and (through trickery) still keep interface compatibility. No. that's particular action is not possible as far as I know. Surely it is possible to make a kind of c++ API 'emulation' from pure C code - so that pure C component (mc) will start using pure C++ component (libcolorer). But this is just in theory and it's not a production solution. Hope I've answered your question ;) -- Igor From leonard@den.ottolander.nl Thu Jun 22 09:41:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 19F2E3B042A for ; Thu, 22 Jun 2006 09:41:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31154-10 for ; Thu, 22 Jun 2006 09:41:18 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id AAE543B00DE for ; Thu, 22 Jun 2006 09:41:18 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id C22344023 for ; Thu, 22 Jun 2006 15:41:17 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id sYin0FGGCowf for ; Thu, 22 Jun 2006 15:41:12 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 41DF34021 for ; Thu, 22 Jun 2006 15:41:12 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> Content-Type: text/plain Date: Thu, 22 Jun 2006 15:41:11 +0200 Message-Id: <1150983671.2807.29.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:41:21 -0000 Hello Igor, On Thu, 2006-06-22 at 17:30 +0400, Igor Russkih wrote: > The previous I've used (mc-2006-05-30-15.tar.gz) I cannot find that version anymore. Can you make it available to me somewhere so I can have a look? > No. that's particular action is not possible as far as I know. > Surely it is possible to make a kind of c++ API 'emulation' from pure > C code - so that pure C component (mc) will start using pure C++ > component (libcolorer). But this is just in theory and it's not a > production solution. > > Hope I've answered your question ;) Yup. Thanks :) . (No big deal, just curious.) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From irusskih@gmail.com Thu Jun 22 09:55:05 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 821D33B038B for ; Thu, 22 Jun 2006 09:55:05 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32339-08 for ; Thu, 22 Jun 2006 09:55:02 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.206]) by menubar.gnome.org (Postfix) with ESMTP id BC25B3B03A4 for ; Thu, 22 Jun 2006 09:55:01 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id s18so421398nze for ; Thu, 22 Jun 2006 06:55:01 -0700 (PDT) Received: by 10.37.13.43 with SMTP id q43mr2012277nzi; Thu, 22 Jun 2006 06:55:01 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Thu, 22 Jun 2006 06:55:01 -0700 (PDT) Message-ID: <861727ef0606220655o5a195eb2ub12e508c313f7779@mail.gmail.com> Date: Thu, 22 Jun 2006 17:55:01 +0400 From: "Igor Russkih" To: "Leonard den Ottolander" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150983671.2807.29.camel@athlon> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <1150983671.2807.29.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:55:05 -0000 > > The previous I've used (mc-2006-05-30-15.tar.gz) > I cannot find that version anymore. Can you make it available to me > somewhere so I can have a look? I've placed it at http://colorer.sourceforge.net/files/mc-2006-05-30-15.tar.gz -- Igor From leonard@den.ottolander.nl Thu Jun 22 10:10:01 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 74CA33B081D for ; Thu, 22 Jun 2006 10:10:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01047-02 for ; Thu, 22 Jun 2006 10:10:00 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 57E513B07DF for ; Thu, 22 Jun 2006 10:10:00 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id D18C44023 for ; Thu, 22 Jun 2006 16:09:58 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id lUd8k95cotkD for ; Thu, 22 Jun 2006 16:09:54 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 4FCBC4021 for ; Thu, 22 Jun 2006 16:09:54 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606220655o5a195eb2ub12e508c313f7779@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <1150983671.2807.29.camel@athlon> <861727ef0606220655o5a195eb2ub12e508c313f7779@mail.gmail.com> Content-Type: text/plain Date: Thu, 22 Jun 2006 16:09:48 +0200 Message-Id: <1150985388.2807.32.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 14:10:01 -0000 Hello Igor, On Thu, 2006-06-22 at 17:55 +0400, Igor Russkih wrote: > I've placed it at > http://colorer.sourceforge.net/files/mc-2006-05-30-15.tar.gz Thanks. Well, that clears things up for me :-) . It turns out all the changes I observed are caused by the autogen step used to create the snapshots. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Thu Jun 22 10:32:26 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D276D3B041B for ; Thu, 22 Jun 2006 10:32:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02378-03 for ; Thu, 22 Jun 2006 10:32:25 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id AADAE3B0658 for ; Thu, 22 Jun 2006 10:32:25 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id B61094023 for ; Thu, 22 Jun 2006 16:32:24 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id uGEZi1J4kOTe for ; Thu, 22 Jun 2006 16:32:23 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 3F85C4021 for ; Thu, 22 Jun 2006 16:32:23 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> Content-Type: text/plain Date: Thu, 22 Jun 2006 16:32:22 +0200 Message-Id: <1150986742.2807.34.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 14:32:27 -0000 Hi Igor, On Thu, 2006-06-22 at 17:30 +0400, Igor Russkih wrote: > It's a runtime option in editor's settings dialog. You'll find it easily ;) Yes, got it. But you've introduced a duplicate hotkey C. Please choose another one. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Thu Jun 22 11:11:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 551443B0501 for ; Thu, 22 Jun 2006 11:11:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04503-07 for ; Thu, 22 Jun 2006 11:11:20 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 158503B0331 for ; Thu, 22 Jun 2006 11:11:20 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 0F4434023; Thu, 22 Jun 2006 17:11:19 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 5-UDyn51ImKM; Thu, 22 Jun 2006 17:11:15 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 9317F4021; Thu, 22 Jun 2006 17:11:15 +0200 (CEST) Subject: Where to report issues with mccolorer? From: Leonard den Ottolander To: Igor Russkih Content-Type: text/plain Date: Thu, 22 Jun 2006 17:11:15 +0200 Message-Id: <1150989075.2807.39.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 15:11:21 -0000 Hello Igor, Where do you want us to report issues with mccolorer? In the colorer bug system? (I'm seeing a crash when opening the syntax highlighting dialog for the old syntax highlighting.) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From ossi@kde.org Thu Jun 22 12:10:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C556D3B01D2 for ; Thu, 22 Jun 2006 12:10:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08495-02 for ; Thu, 22 Jun 2006 12:10:20 -0400 (EDT) Received: from ktown.kde.org (ktown.kde.org [131.246.120.250]) by menubar.gnome.org (Postfix) with SMTP id 97E283B07A2 for ; Thu, 22 Jun 2006 12:10:19 -0400 (EDT) Received: (qmail 3801 invoked from network); 22 Jun 2006 16:10:17 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 22 Jun 2006 16:10:17 -0000 Received: from ossi by ugly.local with local (masqmail 0.2.21) id 1FtRkx-0uH-00 for ; Thu, 22 Jun 2006 18:10:11 +0200 Date: Thu, 22 Jun 2006 18:10:11 +0200 From: Oswald Buddenhagen To: mc-devel@gnome.org Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine Message-ID: <20060622161011.GC3368@ugly.local> Mail-Followup-To: mc-devel@gnome.org References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.586 tagged_above=-999 required=2 tests=[AWL=0.013, BAYES_00=-2.599] X-Spam-Score: -2.586 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 16:10:22 -0000 On Thu, Jun 22, 2006 at 05:30:38PM +0400, Igor Russkih wrote: > > > already implemented. > > I should look for that switch then :) . > It's a runtime option in editor's settings dialog. You'll find it easily ;) > fwiw, i think this is silly. typical example of over-configurability. if it has to be runtime-switchable (why?), don't put it in the dialog at least. -- Hi! I'm a .signature virus! Copy me into your ~/.signature, please! -- Chaos, panic, and disorder - my work here is done. From proski@gnu.org Thu Jun 22 14:15:51 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0453A3B0750 for ; Thu, 22 Jun 2006 14:15:51 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16309-05 for ; Thu, 22 Jun 2006 14:15:48 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id E86833B082D for ; Thu, 22 Jun 2006 14:15:47 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FtTiV-0003Lh-2P for mc-devel@gnome.org; Thu, 22 Jun 2006 14:15:47 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FtTiL-0008PV-3w; Thu, 22 Jun 2006 14:15:37 -0400 Subject: Re: Snapshots availability From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150924866.2801.100.camel@athlon> References: <1150924866.2801.100.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Thu, 22 Jun 2006 14:15:37 -0400 Message-Id: <1151000137.3539.23.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.595 tagged_above=-999 required=2 tests=[AWL=0.005, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.595 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 18:15:51 -0000 Hello, Leonard! On Wed, 2006-06-21 at 23:21 +0200, Leonard den Ottolander wrote: > Hi, > > Who is the creator of the two weekly snapshots found at > http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/snapshots/ ? > Pavel? Miguel? I generate them using maint/mcsnap > Could you please keep a couple of months worth of snapshots around? I > couldn't find the May 30th snapshot when I wanted to compare it with > mccolorer. Snapshots are not intended for developers. Developers should be using proper version control systems. Snapshots are for users who want to try the latest features and check if some bug has been fixed, but who don't intend to keep the sources up-to-date. -- Regards, Pavel Roskin From ptsekov@gmx.net Fri Jun 23 03:10:45 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EBAB33B0646 for ; Fri, 23 Jun 2006 03:10:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21658-09 for ; Fri, 23 Jun 2006 03:10:39 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id D4E653B00ED for ; Fri, 23 Jun 2006 03:10:38 -0400 (EDT) Received: (qmail invoked by alias); 23 Jun 2006 07:10:36 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp019) with SMTP; 23 Jun 2006 09:10:36 +0200 X-Authenticated: #14308112 Date: Fri, 23 Jun 2006 10:09:20 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole Cc: MC development Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.477 tagged_above=-999 required=2 tests=[AWL=-0.012, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.477 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 07:10:45 -0000 Hello Igor, On Thu, 22 Jun 2006, Igor Russkih wrote: > Here attached the patch over mc-2006-06-17-02 (snapshot from > ibiblio.org). Please don't make direct diffs between mc-colorer and > cvs snapshot since they are different versions. Use this patch for > reviewing. > > I've separated the patch for easier understanding: > build.diff - make/configs changes There is no need to include configure, config.h.in, Makefile.in and and any other autogenerated files in your patches. Next time, please, submit only your changes to configure.ac and Makefile.am. From ptsekov@gmx.net Fri Jun 23 03:59:56 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0322F3B0393 for ; Fri, 23 Jun 2006 03:59:56 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25386-04 for ; Fri, 23 Jun 2006 03:59:54 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id F0DE13B013B for ; Fri, 23 Jun 2006 03:59:53 -0400 (EDT) Received: (qmail invoked by alias); 23 Jun 2006 07:59:49 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp033) with SMTP; 23 Jun 2006 09:59:49 +0200 X-Authenticated: #14308112 Date: Fri, 23 Jun 2006 10:58:32 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 07:59:56 -0000 Hello Igor, On Thu, 22 Jun 2006, Igor Russkih wrote: > Here attached the patch over mc-2006-06-17-02 (snapshot from > ibiblio.org). Please don't make direct diffs between mc-colorer and > cvs snapshot since they are different versions. Use this patch for > reviewing. > > I've separated the patch for easier understanding: > build.diff - make/configs changes Index: edit/Makefile.am =================================================================== --- edit/Makefile.am (.../branches/MC-VENDOR/mccolorer) (revision 776) +++ edit/Makefile.am (.../trunk/mccolorer) (revision 776) @@ -6,10 +6,19 @@ noinst_LIBRARIES = endif +if USE_COLORER libedit_a_SOURCES = \ bookmark.c edit.c editcmd.c editwidget.c editdraw.c editkeys.c \ editmenu.c editoptions.c editcmddef.h edit.h edit-widget.h \ + editlock.c editlock.h syntax.c usermap.h usermap.cwordproc.c \ ^^^^^^^^^^^^^^^^^^^ JFYI, there is a missing space here. From ptsekov@gmx.net Fri Jun 23 05:07:03 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 598393B01BA for ; Fri, 23 Jun 2006 05:07:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30249-08 for ; Fri, 23 Jun 2006 05:07:02 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 83B173B012A for ; Fri, 23 Jun 2006 05:07:01 -0400 (EDT) Received: (qmail invoked by alias); 23 Jun 2006 09:06:59 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp035) with SMTP; 23 Jun 2006 11:06:59 +0200 X-Authenticated: #14308112 Date: Fri, 23 Jun 2006 12:05:39 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Where to report issues with mccolorer? In-Reply-To: <1150989075.2807.39.camel@athlon> Message-ID: References: <1150989075.2807.39.camel@athlon> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="-559023410-851401618-1151053539=:24144" X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 09:07:03 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. ---559023410-851401618-1151053539=:24144 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed On Thu, 22 Jun 2006, Leonard den Ottolander wrote: > Where do you want us to report issues with mccolorer? In the colorer bug > system? > > (I'm seeing a crash when opening the syntax highlighting dialog for the > old syntax highlighting.) Find attached a patch. ---559023410-851401618-1151053539=:24144 Content-Type: TEXT/PLAIN; charset=US-ASCII; name=edit_free_syntax_rules_fix.diff Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: attachment; filename=edit_free_syntax_rules_fix.diff SW5kZXg6IGVkaXQvc3ludGF4LmMNCj09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0N ClJDUyBmaWxlOiAvY3Zzcm9vdC9tYy9tYy9lZGl0L3N5bnRheC5jLHYNCnJl dHJpZXZpbmcgcmV2aXNpb24gMS44MA0KZGlmZiAtdSAtcCAtcjEuODAgc3lu dGF4LmMNCi0tLSBlZGl0L3N5bnRheC5jCTMgQXByIDIwMDYgMjE6MjI6MDkg LTAwMDAJMS44MA0KKysrIGVkaXQvc3ludGF4LmMJMjMgSnVuIDIwMDYgMDk6 MDI6NDMgLTAwMDANCkBAIC05NjksNiArOTgzLDEyIEBAIHZvaWQgZWRpdF9m cmVlX3N5bnRheF9ydWxlcyAoV0VkaXQgKiBlZGkNCiANCiAgICAgaWYgKCFl ZGl0KQ0KIAlyZXR1cm47DQorDQorI2lmIFVTRV9DT0xPUkVSDQorICAgIGNv bG9yZXJfZnJlZV9zeW50YXhfcnVsZXMoZWRpdCk7DQorICAgIHJldHVybjsN CisjZW5kaWYgICAgDQorDQogICAgIGlmIChlZGl0LT5kZWZpbmVzKQ0KIAlk ZXN0cm95X2RlZmluZXMgKCZlZGl0LT5kZWZpbmVzKTsNCiAgICAgaWYgKCFl ZGl0LT5ydWxlcykNCg== ---559023410-851401618-1151053539=:24144-- From irusskih@gmail.com Fri Jun 23 07:08:31 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 679073B069B for ; Fri, 23 Jun 2006 07:08:31 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05406-10 for ; Fri, 23 Jun 2006 07:08:29 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.204]) by menubar.gnome.org (Postfix) with ESMTP id 229933B00EF for ; Fri, 23 Jun 2006 07:08:29 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id 9so741233nzo for ; Fri, 23 Jun 2006 04:08:28 -0700 (PDT) Received: by 10.36.252.42 with SMTP id z42mr3610654nzh; Fri, 23 Jun 2006 04:08:28 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Fri, 23 Jun 2006 04:08:28 -0700 (PDT) Message-ID: <861727ef0606230408p69fe14dbhf846cedd458dfb0e@mail.gmail.com> Date: Fri, 23 Jun 2006 15:08:28 +0400 From: "Igor Russkih" To: "Pavel Tsekov" Subject: Re: Where to report issues with mccolorer? In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <1150989075.2807.39.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 11:08:31 -0000 > > (I'm seeing a crash when opening the syntax highlighting dialog for the > > old syntax highlighting.) > > Find attached a patch. > Thanks, Pavel! -- Igor From INVALID.NOREPLY@gnu.org Thu Jun 22 09:43:19 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9E7BD3B04F0 for ; Thu, 22 Jun 2006 09:43:19 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31278-09 for ; Thu, 22 Jun 2006 09:43:18 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 109113B00E0 for ; Thu, 22 Jun 2006 09:43:18 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtPSa-0003x3-00; Thu, 22 Jun 2006 09:43:04 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 15:43:04 +0200 Date: Thu, 22 Jun 2006 15:43:04 +0200 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-154303.sv26390.2544@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> <20060621-194845.sv26390.25842@savannah.gnu.org> <20060622-153919.sv36205.75620@savannah.gnu.org> In-Reply-To: <20060622-153919.sv36205.75620@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.569 tagged_above=-999 required=2 tests=[AWL=0.031, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.569 X-Spam-Level: X-Mailman-Approved-At: Fri, 23 Jun 2006 08:55:54 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:43:19 -0000 Update of bug #14155 (project mc): Status: Need Info => Fixed Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #27: Not sure why you didn't close it then. You should be able to. Closing. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 10:21:29 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0BCC83B0331 for ; Thu, 22 Jun 2006 10:21:29 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01617-09 for ; Thu, 22 Jun 2006 10:21:27 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 97F493B055E for ; Thu, 22 Jun 2006 10:21:27 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtQ3Y-0005T3-00; Thu, 22 Jun 2006 10:21:16 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 17:21:15 +0300 Date: Thu, 22 Jun 2006 17:21:15 +0300 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060622-172115.sv36205.4532@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> <20060621-194845.sv26390.25842@savannah.gnu.org> <20060622-153919.sv36205.75620@savannah.gnu.org> <20060622-154303.sv26390.2544@savannah.gnu.org> In-Reply-To: <20060622-154303.sv26390.2544@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.569 tagged_above=-999 required=2 tests=[AWL=0.031, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.569 X-Spam-Level: X-Mailman-Approved-At: Fri, 23 Jun 2006 08:55:54 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 14:21:29 -0000 Follow-up Comment #28, bug #14155 (project mc): This is getting annoying. I didn't close it because of comment #24. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 10:35:57 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9C2443B0578 for ; Thu, 22 Jun 2006 10:35:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02525-02 for ; Thu, 22 Jun 2006 10:35:56 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 0E9E23B06AE for ; Thu, 22 Jun 2006 10:35:56 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtQHD-0006LN-00; Thu, 22 Jun 2006 10:35:23 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 16:35:22 +0200 Date: Thu, 22 Jun 2006 16:35:22 +0200 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-163522.sv26390.98931@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> <20060621-194845.sv26390.25842@savannah.gnu.org> <20060622-153919.sv36205.75620@savannah.gnu.org> <20060622-154303.sv26390.2544@savannah.gnu.org> <20060622-172115.sv36205.4532@savannah.gnu.org> In-Reply-To: <20060622-172115.sv36205.4532@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.569 tagged_above=-999 required=2 tests=[AWL=0.031, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.569 X-Spam-Level: X-Mailman-Approved-At: Fri, 23 Jun 2006 08:55:54 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 14:35:57 -0000 Follow-up Comment #29, bug #14155 (project mc): Sorry. I took comment #26 as a "we can close this report", and thought you still weren't aware you could close bugs. Well, you can reopen it yourself if you want. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Fri Jun 23 16:11:47 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A0C263B04C1 for ; Fri, 23 Jun 2006 16:11:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02632-04 for ; Fri, 23 Jun 2006 16:11:43 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 458263B06F5 for ; Fri, 23 Jun 2006 16:11:43 -0400 (EDT) Received: (qmail invoked by alias); 23 Jun 2006 20:11:41 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp027) with SMTP; 23 Jun 2006 22:11:41 +0200 X-Authenticated: #14308112 Date: Fri, 23 Jun 2006 23:10:28 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <20060622161011.GC3368@ugly.local> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <20060622161011.GC3368@ugly.local> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 20:11:47 -0000 On Thu, 22 Jun 2006, Oswald Buddenhagen wrote: > On Thu, Jun 22, 2006 at 05:30:38PM +0400, Igor Russkih wrote: >>>> already implemented. >>> I should look for that switch then :) . >> It's a runtime option in editor's settings dialog. You'll find it easily ;) >> > fwiw, i think this is silly. typical example of over-configurability. if > it has to be runtime-switchable (why?), don't put it in the dialog at > least. Today I've modified Igor's patch as follows: 1) The part of his patch which depends on libcolorer is built as shared library (libcolorer_glue). The library exports a single method which is used to get an array of function pointers - these are methods from the library that the editor calls. 2) The part of his patch which doesn't directly depend on libcolorer remains in the editor source tree (only C code). It exports a set of functions which the code in libcolorer_glue needs to query to the editor, again passed as an array of functions pointers. 3) The editor tries to dynamically load libcolorer_glue.so and if it fails it fallbacks to the default syntax highlighting code. Otherwise colorer is used. These changes allow one to build MC with colorer support but doesn't require libcolorer to be present on the target system. I've made also some other changes - mainly related to the autoconf stuff. Since I am to tired to diff now I'll post patches tomorrow. From INVALID.NOREPLY@gnu.org Fri Jun 23 19:07:00 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EB3193B0968 for ; Fri, 23 Jun 2006 19:06:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10295-10 for ; Fri, 23 Jun 2006 19:06:56 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id C31D33B0957 for ; Fri, 23 Jun 2006 19:06:56 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ftujd-0000Pu-00; Fri, 23 Jun 2006 19:06:45 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Fri, 23 Jun 2006 23:06:44 +0000 Date: Fri, 23 Jun 2006 23:06:44 +0000 To: SGh , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16303] More functionally u7z From: SGh X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16303 User-Agent: Opera/8.51 (X11; Linux i686; U; ru) X-Apparently-From: 80.91.160.214 (Savane authenticated user sgh) Message-Id: <20060623-230644.sv45177.8861@savannah.gnu.org> References: <20060408-134359.sv45177.11632@savannah.gnu.org> <20060408-134508.sv45177.86924@savannah.gnu.org> <20060408-134854.sv45177.29103@savannah.gnu.org> <20060518-165152.sv36205.74443@savannah.gnu.org> <20060530-195233.sv45177.57929@savannah.gnu.org> <20060621-193556.sv26390.77497@savannah.gnu.org> <20060621-191535.sv45177.54566@savannah.gnu.org> In-Reply-To: <20060621-191535.sv45177.54566@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.571 tagged_above=-999 required=2 tests=[AWL=0.029, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.571 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 23:07:00 -0000 Follow-up Comment #6, bug #16303 (project mc): Here is my patch to original u7z, fixed things: 1) Detection if we have 7z or only 7za installed. (With 7z we can work with all 7z-supported archives, i.e. CABs, etc... Only have to rename this script in ucab.) 2) Workaround for old version p7zip archives with prefix ./ in filenames. 3) Fixed directory creation in mcu7zip_mkdir, now it works properly. _______________________________________________________ Additional Item Attachment: File name: u7z.patch Size:1 KB u7z patch _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Thu Jun 1 08:53:31 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E31023B01AD for ; Thu, 1 Jun 2006 08:53:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03324-10 for ; Thu, 1 Jun 2006 08:53:29 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by menubar.gnome.org (Postfix) with SMTP id D77263B017F for ; Thu, 1 Jun 2006 08:53:28 -0400 (EDT) Received: (qmail invoked by alias); 01 Jun 2006 12:53:27 -0000 Received: from 87-126-39-234.btc-net.bg (EHLO sole) [87.126.39.234] by mail.gmx.net (mp040) with SMTP; 01 Jun 2006 14:53:27 +0200 X-Authenticated: #14308112 Date: Thu, 1 Jun 2006 15:52:18 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: mc@rigacci.org In-Reply-To: Message-ID: References: <20060529075733.GD12204@rigacci.org> <20060530085432.GB15022@rigacci.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.555 tagged_above=-999 required=2 tests=[AWL=0.045, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.555 X-Spam-Level: Cc: MC dev Subject: Re: Blocking DNS lookup on MC startup X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Jun 2006 12:53:31 -0000 On Wed, 31 May 2006, Pavel Tsekov wrote: > There are more calls to gethostbyname() after the get_myname () call. > load_interfaces() is doing gethostbyname() for every single value of the > "interfaces" parameter of smb.conf. If interfaces doesn't contain an > ip_address/netmask pair load_interfaces() tries to resolve the value > via gethostbyname() :( Another solution would be to delay the samba lib initialization until the first samba request. This way it will be clearly visible for the user that the hang is due to a samba request. Of course the initialization must be made interruptable. Opinions ? From ptsekov@gmx.net Fri Jun 2 09:09:02 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 74C403B01DB for ; Fri, 2 Jun 2006 09:09:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27932-10 for ; Fri, 2 Jun 2006 09:09:01 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by menubar.gnome.org (Postfix) with SMTP id 8AF793B000C for ; Fri, 2 Jun 2006 09:09:00 -0400 (EDT) Received: (qmail invoked by alias); 02 Jun 2006 13:08:58 -0000 Received: from 87-126-39-234.btc-net.bg (EHLO sole) [87.126.39.234] by mail.gmx.net (mp032) with SMTP; 02 Jun 2006 15:08:58 +0200 X-Authenticated: #14308112 Date: Fri, 2 Jun 2006 16:07:49 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: vadim In-Reply-To: <200605051503.27061.vadim-lvv@yandex.ru> Message-ID: References: <200605051503.27061.vadim-lvv@yandex.ru> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: [patch] for gnome & kde trash X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 13:09:02 -0000 Hello Vadim, On Fri, 5 May 2006, vadim wrote: > This patch being proposed is created for support of the trash in gnome or in kde. > The files get into the trash only from /home directory and while mc is run in gnome or kde. > I think that root does not need the trash but users must not delete files outside home directory > and not work without GUI. This patch is not acceptable as is. I suppose both GNOME and KDE provide means for moving a file to the trash. I'd be happy to review patches which delete a file to the trash with the appropriate interfaces. Btw note that both GNOME and KDE are supported on systems other than Linux. Next time when you submit a patch for review, please, remove any debugging output that you've used while developing the patch. Patches should be stripped off any information which is not related to the patch. Also avoid whitespace changes, formating changes, etc - they make the patch harder to read. Thanks! From leonard@den.ottolander.nl Fri Jun 2 12:38:53 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 04A363B045F for ; Fri, 2 Jun 2006 12:38:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08517-02 for ; Fri, 2 Jun 2006 12:38:52 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 6EB3C3B00A5 for ; Fri, 2 Jun 2006 12:38:50 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id ECE05402A for ; Fri, 2 Jun 2006 18:38:48 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id agae4SbZ5JJN for ; Fri, 2 Jun 2006 18:38:44 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 5E80C4023 for ; Fri, 2 Jun 2006 18:38:44 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <20060601184743.E643513D16@server8.alinet.sk> References: <20060601184743.E643513D16@server8.alinet.sk> Content-Type: text/plain Date: Fri, 02 Jun 2006 18:40:21 +0200 Message-Id: <1149266421.2605.17.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.306 tagged_above=-999 required=2 tests=[AWL=-0.150, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_RW=0.077, TW_SR=0.077, TW_WX=0.077, TW_XR=0.077] X-Spam-Score: -2.306 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 16:38:53 -0000 Hello Dusan, You are slightly overdoing it with the info. Not sure what the ps, mount and dmesg output are needed for for example... Plus the use of multipart html mail causes quite some waste of disk space and bandwidth. Please be a bit more considerate next time you ask a question. O, and please ask user questions on the user list. On Thu, 2006-06-01 at 20:47 +0200, rekcah wrote: > # ls -l /usr/lib/mc/cons.saver > -rwsrwxrwx 1 root root 5696 May 5 2005 /usr/lib/mc/cons.saver Well that binary is suid root which should work - although suid vcsa is preferred, assuming the /dev/vcsa devices are owned by a user vcsa. Please take a look just below the header of src/cons.saver.c -, but I am wondering if you are actually looking at the correct binary. The latest FC4 mc rpm I checked has cons.saver located in /usr/libexec/mc/. By the way, you do *not* want suid binaries world writable!!! Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Fri Jun 2 12:40:25 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4F39A3B012E for ; Fri, 2 Jun 2006 12:40:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08459-09 for ; Fri, 2 Jun 2006 12:40:24 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 441803B00C8 for ; Fri, 2 Jun 2006 12:40:24 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 6374C4023 for ; Fri, 2 Jun 2006 18:40:23 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id Sv8OzhsaaR-J for ; Fri, 2 Jun 2006 18:40:23 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 0150A4021 for ; Fri, 2 Jun 2006 18:40:22 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <1149266421.2605.17.camel@athlon> References: <20060601184743.E643513D16@server8.alinet.sk> <1149266421.2605.17.camel@athlon> Content-Type: text/plain Date: Fri, 02 Jun 2006 18:42:00 +0200 Message-Id: <1149266520.2605.18.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.714 tagged_above=-999 required=2 tests=[AWL=-0.739, BAYES_05=-1.11, FORGED_RCVD_HELO=0.135] X-Spam-Score: -1.714 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 16:40:25 -0000 On Fri, 2006-06-02 at 18:40 +0200, Leonard den Ottolander wrote: > O, and please ask user questions on the user list. Duh! It was not sent to this list in the first place. Scuze me ;) . Leonard. -- mount -t life -o ro /dev/dna /genetic/research From egmont@uhulinux.hu Fri Jun 2 12:43:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 32D323B0135 for ; Fri, 2 Jun 2006 12:43:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08798-05 for ; Fri, 2 Jun 2006 12:43:33 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id E8D213B0507 for ; Fri, 2 Jun 2006 12:43:32 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id 4CE6B7FA5 for ; Fri, 2 Jun 2006 18:43:31 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25536-07 for ; Fri, 2 Jun 2006 18:43:27 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id 99CA67F4E for ; Fri, 2 Jun 2006 18:43:27 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Fri, 2 Jun 2006 18:43:27 +0200 Date: Fri, 2 Jun 2006 18:43:27 +0200 From: Egmont Koblinger To: mc-devel@gnome.org Message-ID: <20060602164326.GB5134@cs.bme.hu> References: <20060601184743.E643513D16@server8.alinet.sk> <1149266421.2605.17.camel@athlon> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1149266421.2605.17.camel@athlon> User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.855 tagged_above=-999 required=2 tests=[AWL=-0.745, BAYES_05=-1.11] X-Spam-Score: -1.855 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 16:43:36 -0000 On Fri, Jun 02, 2006 at 06:40:21PM +0200, Leonard den Ottolander wrote: > By the way, you do *not* want suid binaries world writable!!! OT: The linux kernel removes the set[ug]id bit as soon as you modify the file. However, other systems may not do so. -- Egmont From leonard@den.ottolander.nl Fri Jun 2 12:50:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1FBE63B0325 for ; Fri, 2 Jun 2006 12:50:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09252-02 for ; Fri, 2 Jun 2006 12:50:26 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 174AD3B0135 for ; Fri, 2 Jun 2006 12:50:26 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 1F6824023 for ; Fri, 2 Jun 2006 18:50:25 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 9HbEI4Iozrqp for ; Fri, 2 Jun 2006 18:50:23 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 3AD194021 for ; Fri, 2 Jun 2006 18:50:23 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <20060602164326.GB5134@cs.bme.hu> References: <20060601184743.E643513D16@server8.alinet.sk> <1149266421.2605.17.camel@athlon> <20060602164326.GB5134@cs.bme.hu> Content-Type: text/plain Date: Fri, 02 Jun 2006 18:52:00 +0200 Message-Id: <1149267120.2605.23.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 16:50:27 -0000 Hello Egmont, On Fri, 2006-06-02 at 18:43 +0200, Egmont Koblinger wrote: > OT: > The linux kernel removes the set[ug]id bit as soon as you modify the file. > However, other systems may not do so. Ok. I didn't know that. Does this only happen with 2.6 kernels or also with 2.4 kernels? Leonard. -- mount -t life -o ro /dev/dna /genetic/research From egmont@uhulinux.hu Fri Jun 2 13:03:12 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3E6D63B00A5 for ; Fri, 2 Jun 2006 13:03:12 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09674-09 for ; Fri, 2 Jun 2006 13:03:09 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id A4DE33B026C for ; Fri, 2 Jun 2006 13:03:09 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id 88C9E803E for ; Fri, 2 Jun 2006 19:03:08 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25507-04 for ; Fri, 2 Jun 2006 19:03:04 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id C51957F4E for ; Fri, 2 Jun 2006 19:03:04 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Fri, 2 Jun 2006 19:03:04 +0200 Date: Fri, 2 Jun 2006 19:03:04 +0200 From: Egmont Koblinger To: mc-devel@gnome.org Message-ID: <20060602170304.GC5134@cs.bme.hu> References: <20060601184743.E643513D16@server8.alinet.sk> <1149266421.2605.17.camel@athlon> <20060602164326.GB5134@cs.bme.hu> <1149267120.2605.23.camel@athlon> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1149267120.2605.23.camel@athlon> User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.58 tagged_above=-999 required=2 tests=[AWL=0.019, BAYES_00=-2.599] X-Spam-Score: -2.58 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 17:03:12 -0000 On Fri, Jun 02, 2006 at 06:52:00PM +0200, Leonard den Ottolander wrote: > Ok. I didn't know that. Does this only happen with 2.6 kernels or also > with 2.4 kernels? I think it's a really very old feature. BTW a world-writable binary (even without a setuid bit) that is likely to be executed by many different users _is_ a big security hole. Anyone can easily replace it with a binary that removes your files or similar... -- Egmont From ossi@kde.org Fri Jun 2 14:51:49 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A82423B0B87 for ; Fri, 2 Jun 2006 14:51:49 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15831-06 for ; Fri, 2 Jun 2006 14:51:45 -0400 (EDT) Received: from ktown.kde.org (ktown.kde.org [131.246.120.250]) by menubar.gnome.org (Postfix) with SMTP id 90FC63B0414 for ; Fri, 2 Jun 2006 14:51:44 -0400 (EDT) Received: (qmail 27395 invoked from network); 2 Jun 2006 18:51:43 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 2 Jun 2006 18:51:43 -0000 Received: from ossi by ugly.local with local (masqmail 0.2.21) id 1FmEhZ-0yc-00 for ; Fri, 02 Jun 2006 20:48:53 +0200 Date: Fri, 2 Jun 2006 20:48:53 +0200 From: Oswald Buddenhagen To: mc-devel@gnome.org Message-ID: <20060602184853.GB3439@ugly.local> Mail-Followup-To: mc-devel@gnome.org References: <200605051503.27061.vadim-lvv@yandex.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.585 tagged_above=-999 required=2 tests=[AWL=0.014, BAYES_00=-2.599] X-Spam-Score: -2.585 X-Spam-Level: Subject: Re: [patch] for gnome & kde trash X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 18:51:49 -0000 On Fri, Jun 02, 2006 at 04:07:49PM +0300, Pavel Tsekov wrote: > This patch is not acceptable as is. > indeed. > I suppose both GNOME and KDE provide means for moving a file to the > trash. > who cares? the authoritative reference is http://www.ramendik.ru/docs/trashspec.html -- Hi! I'm a .signature virus! Copy me into your ~/.signature, please! -- Chaos, panic, and disorder - my work here is done. From nerijus@users.sourceforge.net Sun Jun 4 14:45:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4D6763B02F2 for ; Sun, 4 Jun 2006 14:45:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03996-07 for ; Sun, 4 Jun 2006 14:45:14 -0400 (EDT) Received: from mx.dtiltas.lt (mx.dt.lt [84.32.38.8]) by menubar.gnome.org (Postfix) with ESMTP id 4BE163B02D7 for ; Sun, 4 Jun 2006 14:45:14 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by mx.dtiltas.lt (UAB "Duomenu Tiltas" Mail service) with ESMTP id E3E8BC6D5 for ; Sun, 4 Jun 2006 21:45:11 +0300 (EEST) Received: from mx.dtiltas.lt ([84.32.38.8]) by localhost (mx.dt.lt [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05781-01-4 for ; Sun, 4 Jun 2006 21:45:10 +0300 (EEST) Received: from nerijus.sat.lt (clt-84-32-63-24.dtiltas.lt [84.32.63.24]) by mx.dtiltas.lt (UAB "Duomenu Tiltas" Mail service) with ESMTP id 6D96FCEAC for ; Sun, 4 Jun 2006 21:20:11 +0300 (EEST) Received: (qmail 25458 invoked from network); 4 Jun 2006 18:18:56 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 4 Jun 2006 18:18:56 -0000 Date: Sun, 4 Jun 2006 21:18:56 +0300 From: Nerijus Baliunas To: Leonard den Ottolander MIME-Version: 1.0 Content-Type: TEXT/PLAIN; CHARSET=US-ASCII Content-Disposition: INLINE X-Mailer: Mahogany 0.66.0 'Clio', compiled for Linux 2.6.16-1.2080_3.rhfc5.cubbi_suspend2 i686 Message-Id: <20060604182011.6D96FCEAC@mx.dtiltas.lt> X-Virus-Scanned: amavisd-new at dt.lt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.49 tagged_above=-999 required=2 tests=[AWL=-0.885, BAYES_20=-0.74, FORGED_RCVD_HELO=0.135] X-Spam-Score: -1.49 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Open mailboxes with mailfs X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jun 2006 18:45:16 -0000 Hello, I see you added it to mc.ext.in (very nice btw!): +# Mailboxes +type/^ASCII\ mail\ text$ + Open=%cd %p#mailfs But 'file' on some of my mailboxes gives: ASCII mail text, with very long lines So I suggest removing "$" from the end. Regards, Nerijus From leonard@den.ottolander.nl Mon Jun 5 06:25:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 71A173B0152 for ; Mon, 5 Jun 2006 06:25:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21866-05 for ; Mon, 5 Jun 2006 06:25:20 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 1F2F03B002C for ; Mon, 5 Jun 2006 06:25:19 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 5F3184023 for ; Mon, 5 Jun 2006 12:25:14 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id lf2l-E6+Tgqm for ; Mon, 5 Jun 2006 12:25:13 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id DE0E34021 for ; Mon, 5 Jun 2006 12:25:12 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <20060604182011.6D96FCEAC@mx.dtiltas.lt> References: <20060604182011.6D96FCEAC@mx.dtiltas.lt> Content-Type: text/plain Date: Mon, 05 Jun 2006 12:26:51 +0200 Message-Id: <1149503211.2473.5.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.526 tagged_above=-999 required=2 tests=[AWL=-0.921, BAYES_20=-0.74, FORGED_RCVD_HELO=0.135] X-Spam-Score: -1.526 X-Spam-Level: Subject: Re: Open mailboxes with mailfs X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 10:25:21 -0000 Hi Nerijus, On Sun, 2006-06-04 at 21:18 +0300, Nerijus Baliunas wrote: > So I suggest removing "$" from the end. Sure. Done. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Mon Jun 5 07:06:58 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 89C683B0382 for ; Mon, 5 Jun 2006 07:06:58 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24348-01 for ; Mon, 5 Jun 2006 07:06:57 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 35A883B00CC for ; Mon, 5 Jun 2006 07:06:57 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id E530E4023 for ; Mon, 5 Jun 2006 13:06:55 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id hdr8SfqyTbj0 for ; Mon, 5 Jun 2006 13:06:54 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 55EE44021 for ; Mon, 5 Jun 2006 13:06:54 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: References: <20060529075733.GD12204@rigacci.org> <20060530085432.GB15022@rigacci.org> Content-Type: text/plain Date: Mon, 05 Jun 2006 13:08:29 +0200 Message-Id: <1149505709.2473.19.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.454 tagged_above=-999 required=2 tests=[AWL=0.010, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.454 X-Spam-Level: Subject: Re: Blocking DNS lookup on MC startup X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 11:06:58 -0000 Hello Pavel, On Thu, 2006-06-01 at 15:52 +0300, Pavel Tsekov wrote: > On Wed, 31 May 2006, Pavel Tsekov wrote: > > load_interfaces() is doing gethostbyname() for every single value of the > > "interfaces" parameter of smb.conf. If interfaces doesn't contain an > > ip_address/netmask pair load_interfaces() tries to resolve the value > > via gethostbyname() :( Are you referring to interpret_addr()? I'd say the case where the interface is identified by a name is a bit of a corner case. > Another solution would be to delay the samba lib initialization until the > first samba request. This way it will be clearly visible for the user that > the hang is due to a samba request. Of course the initialization must be > made interruptable. > > Opinions ? I don't have any fundamental objections against delaying the initialization of smbfs, but is it really worth the effort? Don't you think we catch most cases with making the call to Get_Hostbyname() in get_myname() conditional? Leonard. -- mount -t life -o ro /dev/dna /genetic/research From ptsekov@gmx.net Mon Jun 5 07:42:54 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id DF5603B027B for ; Mon, 5 Jun 2006 07:42:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26687-06 for ; Mon, 5 Jun 2006 07:42:52 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.20]) by menubar.gnome.org (Postfix) with SMTP id A04B23B0704 for ; Mon, 5 Jun 2006 07:42:51 -0400 (EDT) Received: (qmail invoked by alias); 05 Jun 2006 11:42:49 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp039) with SMTP; 05 Jun 2006 13:42:49 +0200 X-Authenticated: #14308112 Date: Mon, 5 Jun 2006 14:41:39 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander In-Reply-To: <1149505709.2473.19.camel@athlon> Message-ID: References: <20060529075733.GD12204@rigacci.org> <20060530085432.GB15022@rigacci.org> <1149505709.2473.19.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.489 tagged_above=-999 required=2 tests=[AWL=-0.024, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.489 X-Spam-Level: Cc: MC development Subject: Re: Blocking DNS lookup on MC startup X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 11:42:54 -0000 On Mon, 5 Jun 2006, Leonard den Ottolander wrote: >>> load_interfaces() is doing gethostbyname() for every single value of the >>> "interfaces" parameter of smb.conf. If interfaces doesn't contain an >>> ip_address/netmask pair load_interfaces() tries to resolve the value >>> via gethostbyname() :( > > Are you referring to interpret_addr()? Yes. > I'd say the case where the interface is identified by a name is a bit of > a corner case. Not really. Please, look here: http://mail.gnome.org/archives/mc-devel/2006-April/msg00036.html http://mail.gnome.org/archives/mc/2006-May/msg00005.html It seems historic samba didn't allow interface names in the "interfaces" directive. However newer samba versions allow the use of interface names and it is used by people. If you think about it - it makes a lot of sense. >> Another solution would be to delay the samba lib initialization until the >> first samba request. This way it will be clearly visible for the user that >> the hang is due to a samba request. Of course the initialization must be >> made interruptable. >> >> Opinions ? > > I don't have any fundamental objections against delaying the > initialization of smbfs, but is it really worth the effort? Don't you > think we catch most cases with making the call to Get_Hostbyname() in > get_myname() conditional? Unfortunately not. Switching to a newer samba lib is another option. It has been discussed in the past - at least in bugzilla there is an entry discussing a switch to newer samba. Of course we can hack the intree samba lib but I think it is not worth doing it. From INVALID.NOREPLY@gnu.org Tue Jun 6 02:43:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 153953B00E1 for ; Tue, 6 Jun 2006 02:43:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28705-10 for ; Tue, 6 Jun 2006 02:43:35 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id EA2AB3B0750 for ; Tue, 6 Jun 2006 02:43:34 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnVHn-0005rO-00; Tue, 06 Jun 2006 02:43:31 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 6 Jun 2006 10:43:31 +0400 Date: Tue, 6 Jun 2006 10:43:31 +0400 To: Oleg Broytmann , mc-devel@gnome.org From: Oleg Broytmann X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16757 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060516 SeaMonkey/1.0.2 X-Apparently-From: 80.252.150.251 (Savane authenticated user phd) Message-Id: <20060606-104330.sv47300.22684@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.591 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.591 X-Spam-Level: Cc: Subject: [bug #16757] Environment variables in a subshell X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 06:43:39 -0000 URL: Summary: Environment variables in a subshell Project: GNU Midnight Commander Submitted by: phd Submitted on: Вторник 06.06.2006 at 10:43 Category: Subshell Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Linux _______________________________________________________ Details: I have a lot of different environments (Python, Java, Postgres and so on), and I source a config file when I want to change the environment; for example running "include svn" runs . $HOME/lib/config/svn that adds SVN directories to PATH, LD_LIBRARY_PATH and MANPATH. When I do this under Midnight Commander I have a minor problem with subshell (at least I think the problem is in the subshell). When I run a program in the mc command line (type "./a_script", press [Enter]) mc (subshell?) passes the modified env vars to the program. But if I just press [Enter] on the program mc passes an old environment as if I didn't source any config file; it seems after pressing [Enter] on a program mc passes its own original environment, not the subshell's environment. I think that's a bug; I'd like mc to pass the modified environment to all programs regardless of the way I start them. Debian GNU/Linux 3.1, mc 4.6.1-pre3. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 6 10:18:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 67F1F3B0189 for ; Tue, 6 Jun 2006 10:18:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27630-03 for ; Tue, 6 Jun 2006 10:18:38 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id BBD723B0184 for ; Tue, 6 Jun 2006 10:18:37 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FncO9-0007M9-00; Tue, 06 Jun 2006 10:18:33 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 6 Jun 2006 14:18:33 +0000 Date: Tue, 6 Jun 2006 14:18:33 +0000 To: yaroslav , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060606-141833.sv47365.36914@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.591 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.591 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:18:39 -0000 URL: Summary: Cannot compile mc-2006-06-05-20 Project: GNU Midnight Commander Submitted by: s68 Submitted on: Вторник 06.06.2006 at 14:18 Category: Core Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: current (CVS or snapshot) Operating System: FreeBSD _______________________________________________________ Details: mountlist.c: In function 'fstype_to_string': mountlist.c:186: error: 'MOUNT_UFS' undeclared (first use in this function) Operating systems are: Darwin Kernel Version 8.4.1: Tue Jan 3 18:23:53 PST 2006; root:xnu-792.7.90.obj~1/RELEASE_I386 i386 i386 and FreeBSD 4.10-RELEASE Configure options are "--with-subshell=optional" _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 6 15:46:07 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BEA503B0AE1 for ; Tue, 6 Jun 2006 15:46:07 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17438-06 for ; Tue, 6 Jun 2006 15:46:06 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 5191C3B0B37 for ; Tue, 6 Jun 2006 15:46:06 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnhUx-00034K-00; Tue, 06 Jun 2006 15:45:55 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 6 Jun 2006 21:45:55 +0200 Date: Tue, 6 Jun 2006 21:45:55 +0200 To: yaroslav , Leonard den Ottolander , mc-devel@gnome.org From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060606-214555.sv26390.24839@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> In-Reply-To: <20060606-141833.sv47365.36914@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 19:46:07 -0000 Follow-up Comment #1, bug #16762 (project mc): Does this fix your issue? _______________________________________________________ Additional Item Attachment: File name: mountlist.c.patch Size:0 KB Define HAVE_F_FSTYPE if HAVE_STRUCT_STATFS_F_FSTYPENAME is defined (regardless of HAVE_STATVFS) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Tue Jun 6 16:12:49 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7DD663B0B94 for ; Tue, 6 Jun 2006 16:12:49 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19120-04 for ; Tue, 6 Jun 2006 16:12:47 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 3125D3B0236 for ; Tue, 6 Jun 2006 16:12:47 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 55F6A4023 for ; Tue, 6 Jun 2006 22:12:45 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 8yy9hanIHWkZ for ; Tue, 6 Jun 2006 22:12:44 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id DCC014021 for ; Tue, 6 Jun 2006 22:12:43 +0200 (CEST) From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Tue, 06 Jun 2006 22:14:23 +0200 Message-Id: <1149624863.2506.3.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Subject: FTP: Cannot change to write-only directory X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 20:12:49 -0000 >From Red Hat's bugzilla: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=194277 Leonard. -- mount -t life -o ro /dev/dna /genetic/research From niccolo@rigacci.org Tue Jun 6 19:21:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 015E33B032C for ; Tue, 6 Jun 2006 19:21:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28814-10 for ; Tue, 6 Jun 2006 19:21:38 -0400 (EDT) Received: from paros.rigacci.org (host50-109.pool8838.interbusiness.it [88.38.109.50]) by menubar.gnome.org (Postfix) with ESMTP id 0704C3B012A for ; Tue, 6 Jun 2006 19:21:37 -0400 (EDT) Received: from niccolo by paros.rigacci.org with local (Exim 4.61) (envelope-from ) id 1Fnkrg-0000eR-Pe for mc-devel@gnome.org; Wed, 07 Jun 2006 01:21:36 +0200 Date: Wed, 7 Jun 2006 01:21:36 +0200 From: mc@rigacci.org To: MC dev Message-ID: <20060606232136.GB2405@rigacci.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11+cvs20060403 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.516 tagged_above=-999 required=2 tests=[AWL=-0.872, BAYES_20=-0.74, FORGED_RCVD_HELO=0.135, NO_REAL_NAME=0.961] X-Spam-Score: -0.516 X-Spam-Level: Subject: Re: Blocking DNS lookup on MC startup X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 23:21:39 -0000 > Another solution would be to delay the samba lib initialization until the > first samba request. This way it will be clearly visible for the user that > the hang is due to a samba request. Is the problem related only to smbfs support? If so, my preference will be an option (or a config file parameter) to start mc with smbfs disabled. Delaying samba lib initialization can be a good solution too, but I think more hard to implement. -- Niccolo Rigacci Firenze - Italy Iraq, missione di pace: 38254 morti - www.iraqbodycount.net From INVALID.NOREPLY@gnu.org Wed Jun 7 04:08:31 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 922DF3B02FF for ; Wed, 7 Jun 2006 04:08:31 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25660-03 for ; Wed, 7 Jun 2006 04:08:28 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 8C01F3B0164 for ; Wed, 7 Jun 2006 04:08:28 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fnt5M-0005Iz-00; Wed, 07 Jun 2006 04:08:16 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 08:08:16 +0000 Date: Wed, 7 Jun 2006 08:08:16 +0000 To: yaroslav , Leonard den Ottolander , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060607-080816.sv47365.26756@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> In-Reply-To: <20060606-214555.sv26390.24839@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 08:08:31 -0000 Follow-up Comment #2, bug #16762 (project mc): > Does this fix your issue? No :( _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 7 05:36:46 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E80643B00A8 for ; Wed, 7 Jun 2006 05:36:45 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31652-05 for ; Wed, 7 Jun 2006 05:36:43 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id D094D3B0BBC for ; Wed, 7 Jun 2006 05:36:42 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnuSs-0001hc-00; Wed, 07 Jun 2006 05:36:38 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 12:36:37 +0300 Date: Wed, 7 Jun 2006 12:36:37 +0300 To: yaroslav , Leonard den Ottolander , Pavel Tsekov , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060607-123637.sv36205.98656@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> In-Reply-To: <20060607-080816.sv47365.26756@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001, UPPERCASE_25_50=0] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 09:36:46 -0000 Follow-up Comment #3, bug #16762 (project mc): The real problem here is that noone sets HAVE_STRUCT_STATFS_F_FSTYPENAME. I.e. there is no test at configure time which sets this. Before Leonard's changes to configure there was a test which used to set HAVE_F_FSTYPENAME. #if defined(HAVE_STATVFS) # if defined(HAVE_STRUCT_STATVFS_F_FSTYPENAME) # define HAVE_F_FSTYPENAME # endif #else # if defined(HAVE_STRUCT_STATFS_F_FSTYPENAME) # define HAVE_F_FSTYPENAME # endif #endif So what happens is that on FreeBSD we take the second branch and since HAVE_F_FSTYPENAME is not set the fstype_to_string() routine is compiled in. Apparently MOUNT_UFS is not available on FreeBSD and the build fails. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 7 05:46:33 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 935FB3B0AE7 for ; Wed, 7 Jun 2006 05:46:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32285-09 for ; Wed, 7 Jun 2006 05:46:32 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3B1893B00A8 for ; Wed, 7 Jun 2006 05:46:32 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnuXU-0001tO-00; Wed, 07 Jun 2006 05:41:24 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 12:41:24 +0300 Date: Wed, 7 Jun 2006 12:41:24 +0300 To: yaroslav , Leonard den Ottolander , Pavel Tsekov , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060607-124124.sv36205.81804@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> In-Reply-To: <20060607-123637.sv36205.98656@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.593 tagged_above=-999 required=2 tests=[AWL=0.007, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.593 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 09:46:33 -0000 Follow-up Comment #4, bug #16762 (project mc): In fact in the past the code used to check whether MOUNT_UFS was defined but the check was removed later and the code assumed the availability of MOUNT_UFS for granted: http://cvs.savannah.gnu.org/viewcvs/mc/mc/src/mountlist.c?sortby=date&r2=1.5&r1=1.4&diff_format=u In my opinion this issue should be handled carefully. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From nadvornik@suse.cz Wed Jun 7 06:18:40 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CEC4B3B08CC for ; Wed, 7 Jun 2006 06:18:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02299-01 for ; Wed, 7 Jun 2006 06:18:37 -0400 (EDT) Received: from mail.suse.cz (styx.suse.cz [82.119.242.94]) by menubar.gnome.org (Postfix) with ESMTP id B22FA3B0B10 for ; Wed, 7 Jun 2006 06:18:36 -0400 (EDT) Received: from sphinx.suse.cz (sphinx.suse.cz [10.20.1.5]) by mail.suse.cz (SUSE CR ESMTP Mailer) with ESMTP id A60356283DB for ; Wed, 7 Jun 2006 12:18:33 +0200 (CEST) From: Vladimir Nadvornik To: mc-devel@gnome.org Date: Wed, 7 Jun 2006 12:18:31 +0200 User-Agent: KMail/1.9.1 References: <200509191419.01556.arekm@pld-linux.org> <1131825589.2735.24.camel@athlon> In-Reply-To: <1131825589.2735.24.camel@athlon> MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_4fqhE9aq8TcWQqY" Message-Id: <200606071218.32428.nadvornik@suse.cz> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 10:18:40 -0000 --Boundary-00=_4fqhE9aq8TcWQqY Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline On Saturday 12 November 2005 20:59, Leonard den Ottolander wrote: > Hi Bart, list, > > On Tue, 2005-09-20 at 08:14 +1200, Bart Oldeman wrote: > > Basically you'd need to apply Fedora's patch, and then (sorry no proper > > patch here but it's not a big deal) > > Attached you'll find a proper patch. I've moved the hunk from global.h > to myslang.h (and dropped the inclusion of slang.h as it is redundant). > > Jindrich, please merge this patch with the UTF8 patch. You might even > consider to build the next mc for FC --with-screen=mcslang, as I see the > FC development tree does not yet feature slang-2. > Hi all, In non-UTF-8 mode slang2 behaves a bit different than the patched slang1. As a result, mc does work with 8bit encodings, like 8859-2 or KOI8. The attached patch fixes the SLsmg_write_nwchars() function to 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. e-mail: nadvornik@suse.cz Drahobejlova 27 tel:+420 2 9654 2373 190 00 Praha 9 fax:+420 2 9654 2374 Ceska republika http://www.suse.cz --Boundary-00=_4fqhE9aq8TcWQqY Content-Type: text/x-diff; charset="iso-8859-6"; name="mc-slang2-fix.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="mc-slang2-fix.patch" diff -ruN mc-4.6.1.orig/edit/editdraw.c mc-4.6.1/edit/editdraw.c --- mc-4.6.1.orig/edit/editdraw.c 2006-06-07 11:57:19.000000000 +0200 +++ mc-4.6.1/edit/editdraw.c 2006-06-07 11:56:30.000000000 +0200 @@ -234,7 +234,7 @@ lowlevel_set_color (color); } #ifdef UTF8 - SLsmg_write_char(textchar); + SLsmg_write_nwchars(&textchar, 1); #else addch (textchar); #endif diff -ruN mc-4.6.1.orig/src/help.c mc-4.6.1/src/help.c --- mc-4.6.1.orig/src/help.c 2006-06-07 11:57:19.000000000 +0200 +++ mc-4.6.1/src/help.c 2006-06-07 11:56:30.000000000 +0200 @@ -461,7 +461,7 @@ len = mbrtowc(&wc, p, MB_CUR_MAX, &mbs); if (len <= 0) len = 1; /* skip broken multibyte chars */ - SLsmg_write_char(wc); + SLsmg_write_nwchars(&wc, 1); p += len - 1; } else #endif diff -ruN mc-4.6.1.orig/src/util.c mc-4.6.1/src/util.c --- mc-4.6.1.orig/src/util.c 2006-06-07 11:57:19.000000000 +0200 +++ mc-4.6.1/src/util.c 2006-06-07 11:56:30.000000000 +0200 @@ -58,8 +58,26 @@ #if SLANG_VERSION >= 20000 void SLsmg_write_nwchars(wchar_t *s, size_t n) { - while(n--) - SLsmg_write_char(*s++); + if (SLsmg_is_utf8_mode()) { /* slang can handle it directly */ + while(n-- && *s) + SLsmg_write_char(*s++); + } + else { /* convert wchars back to 8bit encoding */ + mbstate_t mbs; + memset (&mbs, 0, sizeof (mbs)); + while (n-- && *s) { + char buf[MB_LEN_MAX + 1]; /* should use 1 char, but to be sure */ + if (*s < 0x80) { + SLsmg_write_char(*s++); /* ASCII */ + } + else { + if (wcrtomb(buf, *s++, &mbs) == 1) + SLsmg_write_char((wchar_t)(buf[0])); + else + SLsmg_write_char('?'); /* should not happen */ + } + } + } } #endif diff -ruN mc-4.6.1.orig/src/view.c mc-4.6.1/src/view.c --- mc-4.6.1.orig/src/view.c 2006-06-07 11:57:19.000000000 +0200 +++ mc-4.6.1/src/view.c 2006-06-07 11:56:30.000000000 +0200 @@ -852,7 +852,7 @@ #ifndef UTF8 #define view_add_character(view,c) addch (c) #else /* UTF8 */ -#define view_add_character(view,c) SLsmg_write_char(c) +#define view_add_character(view,c) {wchar_t tmp=c; SLsmg_write_nwchars(&tmp, 1);} #endif /* UTF8 */ #define view_add_one_vline() one_vline() #define view_add_string(view,s) addstr (s) --Boundary-00=_4fqhE9aq8TcWQqY-- From INVALID.NOREPLY@gnu.org Wed Jun 7 07:11:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CBAC03B02C0 for ; Wed, 7 Jun 2006 07:11:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05334-02 for ; Wed, 7 Jun 2006 07:11:24 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id A80AC3B01EA for ; Wed, 7 Jun 2006 07:11:24 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnvwN-0004SN-00; Wed, 07 Jun 2006 07:11:11 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 14:11:10 +0300 Date: Wed, 7 Jun 2006 14:11:10 +0300 To: yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060607-141110.sv36205.29236@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> In-Reply-To: <20060607-124124.sv36205.81804@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.593 tagged_above=-999 required=2 tests=[AWL=0.007, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.593 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 11:11:28 -0000 Update of bug #16762 (project mc): Assigned to: None => ptsekov _______________________________________________________ Follow-up Comment #5: I'll fix this. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From adel@uaemet.gov.ae Tue Jun 6 10:12:04 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6DE6E3B0151 for ; Tue, 6 Jun 2006 10:12:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27387-02 for ; Tue, 6 Jun 2006 10:12:02 -0400 (EDT) Received: from www.uaemet.gov.ae (unknown [213.42.139.195]) by menubar.gnome.org (Postfix) with ESMTP id 90B9A3B00A1 for ; Tue, 6 Jun 2006 10:12:00 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by www.uaemet.gov.ae (Postfix) with ESMTP id A68531DF170 for ; Tue, 6 Jun 2006 18:11:57 +0400 (GST) Received: from uaemet.gov.ae (localhost.localdomain [127.0.0.1]) by www.uaemet.gov.ae (Postfix) with ESMTP id 8116B1DF16F for ; Tue, 6 Jun 2006 10:11:55 -0400 (EDT) From: "Adel Gabr" To: mc-devel@gnome.org Date: Tue, 6 Jun 2006 18:11:55 +0400 Message-Id: <20060606140640.M23835@uaemet.gov.ae> X-Mailer: Open WebMail 1.90 20030212 X-OriginatingIP: 213.42.139.195 (adel) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 X-Virus-Scanned: by AMaViS perl-11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.36 tagged_above=-999 required=2 tests=[BAYES_20=-0.74, DEAR_SOMETHING=2.1] X-Spam-Score: 1.36 X-Spam-Level: * X-Mailman-Approved-At: Wed, 07 Jun 2006 08:10:53 -0400 Subject: mc bug X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: adel@uaemet.gov.ae List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:12:04 -0000 Dear Sir, I have installed Suse in my machine,when I try to use Midnight Commander 4.6.0 using the command 'mc' is not working.But if I use mc -x it is working. The output of `mc -V'is :- master:/rhome> mc -V GNU Midnight Commander 4.6.0 Virtual File System: tarfs, extfs, cpiofs, ftpfs, fish With builtin Editor Using system-installed S-Lang library with terminfo database With subshell support as default With support for background operations With mouse support on xterm and Linux console With support for X11 events With internationalization support With multiple codepages support Please advise and send me the good way to reinstall th mc again. Best regards Adel -- Open WebMail Project (http://openwebmail.org) From jnovy@redhat.com Wed Jun 7 08:58:57 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C33CB3B0599 for ; Wed, 7 Jun 2006 08:58:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 13391-09 for ; Wed, 7 Jun 2006 08:58:52 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 88D823B0CD3 for ; Wed, 7 Jun 2006 08:58:52 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k57CwpAG011897; Wed, 7 Jun 2006 08:58:51 -0400 Received: from pobox.stuttgart.redhat.com (pobox.stuttgart.redhat.com [172.16.2.10]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k57CwpR1031982; Wed, 7 Jun 2006 08:58:51 -0400 Received: from vpn-4-41.stuttgart.redhat.com (vpn-4-41.stuttgart.redhat.com [10.32.4.41]) by pobox.stuttgart.redhat.com (8.12.8/8.12.8) with ESMTP id k57CwoY5017421; Wed, 7 Jun 2006 14:58:50 +0200 From: Jindrich Novy To: Vladimir Nadvornik In-Reply-To: <200606071218.32428.nadvornik@suse.cz> References: <200509191419.01556.arekm@pld-linux.org> <1131825589.2735.24.camel@athlon> <200606071218.32428.nadvornik@suse.cz> Content-Type: text/plain Date: Wed, 07 Jun 2006 14:58:51 +0200 Message-Id: <1149685131.2269.10.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.601 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.601 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 12:58:57 -0000 Hi, On Wed, 2006-06-07 at 12:18 +0200, Vladimir Nadvornik wrote: > On Saturday 12 November 2005 20:59, Leonard den Ottolander wrote: > > Hi Bart, list, > > > > On Tue, 2005-09-20 at 08:14 +1200, Bart Oldeman wrote: > > > Basically you'd need to apply Fedora's patch, and then (sorry no proper > > > patch here but it's not a big deal) > > > > Attached you'll find a proper patch. I've moved the hunk from global.h > > to myslang.h (and dropped the inclusion of slang.h as it is redundant). > > > > Jindrich, please merge this patch with the UTF8 patch. You might even > > consider to build the next mc for FC --with-screen=mcslang, as I see the > > FC development tree does not yet feature slang-2. > > slang-2.0.5 is used since FC5 so only FC4 now uses the old slang-1.4.9. > Hi all, > > In non-UTF-8 mode slang2 behaves a bit different than the patched slang1. > As a result, mc does work with 8bit encodings, like 8859-2 or KOI8. > The attached patch fixes the SLsmg_write_nwchars() function to 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. Thanks for the patch. The last hunk didn't apply as there's no view_add_character used in editdraw.c. Jindrich From INVALID.NOREPLY@gnu.org Wed Jun 7 10:42:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 53FEF3B0CC1 for ; Wed, 7 Jun 2006 10:42:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21355-08 for ; Wed, 7 Jun 2006 10:42:37 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 9ADAF3B0CC8 for ; Wed, 7 Jun 2006 10:42:37 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnzEr-0003qw-00; Wed, 07 Jun 2006 10:42:29 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 17:42:29 +0300 Date: Wed, 7 Jun 2006 17:42:29 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060607-174228.sv36205.47259@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> In-Reply-To: <20060607-141110.sv36205.29236@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.555 tagged_above=-999 required=2 tests=[AWL=-0.032, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.555 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 14:42:39 -0000 Follow-up Comment #6, bug #16762 (project mc): Hello yaroslav, Fetch the latest CVS version of MC and apply the attached patch. Let us know wheter it fixes your problem or not. _______________________________________________________ Additional Item Attachment: File name: getmntinfo-fix.patch Size:3 KB _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 7 15:21:42 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 686D93B029F for ; Wed, 7 Jun 2006 15:21:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07968-09 for ; Wed, 7 Jun 2006 15:21:41 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id CF6CD3B0288 for ; Wed, 7 Jun 2006 15:21:40 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fo3aq-0005OI-00; Wed, 07 Jun 2006 15:21:28 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 21:21:28 +0200 Date: Wed, 7 Jun 2006 21:21:28 +0200 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060607-212128.sv26390.34564@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> In-Reply-To: <20060607-174228.sv36205.47259@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 19:21:42 -0000 Follow-up Comment #7, bug #16762 (project mc): Having the essential code moved into acinclude.m4 instead of mountlist.c seems appropriate as this is where it dissappeared from in the first place. And the inclusion of fstypename.m4 also reintroduces the tests that got lost when I introduced ls-mntd-fs.m4 and fsusage.m4. Haven't tested but appears ok. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Wed Jun 7 16:00:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 29F343B03C4 for ; Wed, 7 Jun 2006 16:00:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10546-07 for ; Wed, 7 Jun 2006 16:00:40 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id DCEC73B0546 for ; Wed, 7 Jun 2006 16:00:39 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id CAC5F4023 for ; Wed, 7 Jun 2006 22:00:38 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id LefPSXgX7Ft3 for ; Wed, 7 Jun 2006 22:00:35 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 5B03B4021 for ; Wed, 7 Jun 2006 22:00:35 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <1149624863.2506.3.camel@athlon> References: <1149624863.2506.3.camel@athlon> Content-Type: text/plain Date: Wed, 07 Jun 2006 22:02:15 +0200 Message-Id: <1149710535.2481.2.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Subject: Re: FTP: Cannot change to write-only directory X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 20:00:44 -0000 Hi, On Tue, 2006-06-06 at 22:14 +0200, Leonard den Ottolander wrote: > https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=194277 False alarm. The issue seems to be recently fixed. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From nadvornik@suse.cz Thu Jun 8 06:02:54 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B12DC3B0619 for ; Thu, 8 Jun 2006 06:02:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24798-05 for ; Thu, 8 Jun 2006 06:02:53 -0400 (EDT) Received: from mail.suse.cz (styx.suse.cz [82.119.242.94]) by menubar.gnome.org (Postfix) with ESMTP id 3DE9D3B0CF2 for ; Thu, 8 Jun 2006 06:02:53 -0400 (EDT) Received: from sphinx.suse.cz (sphinx.suse.cz [10.20.1.5]) by mail.suse.cz (SUSE CR ESMTP Mailer) with ESMTP id A084A62853A; Thu, 8 Jun 2006 12:02:51 +0200 (CEST) From: Vladimir Nadvornik To: Jindrich Novy Date: Thu, 8 Jun 2006 12:02:50 +0200 User-Agent: KMail/1.9.1 References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> In-Reply-To: <1149685131.2269.10.camel@localhost.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606081202.51002.nadvornik@suse.cz> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jun 2006 10:02:54 -0000 > > > > In non-UTF-8 mode slang2 behaves a bit different than the patched slang1. > > As a result, mc does work with 8bit encodings, like 8859-2 or KOI8. > > The attached patch fixes the SLsmg_write_nwchars() function to 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. > > Thanks for the patch. The last hunk didn't apply as there's no > view_add_character used in editdraw.c. > My patch is based on mc-4.6.1 The 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 From ptsekov@gmx.net Thu Jun 8 09:10:57 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 080363B0433 for ; Thu, 8 Jun 2006 09:10:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06345-06 for ; Thu, 8 Jun 2006 09:10:53 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.20]) by menubar.gnome.org (Postfix) with SMTP id 765B03B04FD for ; Thu, 8 Jun 2006 09:10:21 -0400 (EDT) Received: (qmail invoked by alias); 08 Jun 2006 13:10:20 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp029) with SMTP; 08 Jun 2006 15:10:20 +0200 X-Authenticated: #14308112 Date: Thu, 8 Jun 2006 16:09:10 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: MC dev Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.477 tagged_above=-999 required=2 tests=[AWL=-0.012, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.477 X-Spam-Level: Subject: Directory Tree feature X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jun 2006 13:10:57 -0000 Hello, I find the directory tree feature quite obscure and unusable ? Does anyone here feel the same way ? If this is the case I'd like that we discuss how it could be improved. There are several things which I think make the directory tree totally unusable: * When I invoke the "Directory Tree" command and the mode is "Static" I cannot easily navigate trough the directory structure. I'd expect that I'd be able to move around the tree using the arrow keys but it doesn't work this way. To enter a directory and list it contents I have to press Enter which closes the dialog box i.e. I cannot use left and right to navigate the subdirectories. So if I start from the root directory and want to go to /home/ptsekov it will take to invocations of the Directory Tree dialog to do so. * The directory tree remebers its state and if I navigate the directory hierarchy more and more directories become expanded I cannot close them - this makes the tree pretty hard to navigate. * The dynamic mode - I fee totally confused when using it. To some degree it is improvement over the static mode in terms of navigation but all the tree changes just confuse me too much and at some point I just become lost. * The whole dynamic/static mode thing is just too much - I'd prefer a single user friendly mode. From egmont@uhulinux.hu Thu Jun 8 14:13:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6ACE53B0F8F for ; Thu, 8 Jun 2006 14:13:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27351-01 for ; Thu, 8 Jun 2006 14:13:11 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id 7EF663B0F64 for ; Thu, 8 Jun 2006 14:13:11 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id 0A26A7DCA; Thu, 8 Jun 2006 20:13:10 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20809-07; Thu, 8 Jun 2006 20:13:03 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id 735F27EB8; Thu, 8 Jun 2006 20:13:03 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Thu, 8 Jun 2006 20:13:02 +0200 Date: Thu, 8 Jun 2006 20:13:02 +0200 From: Egmont Koblinger To: Vladimir Nadvornik Message-ID: <20060608181302.GA6254@cs.bme.hu> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200606081202.51002.nadvornik@suse.cz> User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.583 tagged_above=-999 required=2 tests=[AWL=0.016, BAYES_00=-2.599] X-Spam-Score: -2.583 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jun 2006 18:13:16 -0000 Hi Vladimir (and others), I've just upgraded to slang-2 in our distro and also updated the UTF-8 patches to mc-4.6.1 (based on SUSE's version). It was easier than I thought it would be. I was glad to see that you had applied plenty of my patches in SUSE (those named "00-*"). Please take a look at here again: https://svn.uhulinux.hu/packages/dev/mc/patches/ 00-77 had to be updated to slang-2. When a user searches for a file by ^S, panel->search_buffer is filled up individually with every single byte pressed. Hence it often contains partial UTF-8 string. Displaying it just happened to work with slang-1, but slang-2 prints the partial UTF-8 as "" or similar. As a result, the cyan box overflows: if you search in the left panel for an existing accented filename, two cyan blocks appear in the right panel. The updated patch first finds the longest valid UTF-8 prefix of the string and only prints that part. You might find 00-79 useful too, it fixes an off-by-one bug introduced by the UTF-8 patches that causes Alt+Backspace to behave differently (erase a whole word and one more character, usually a space) than in bash or in vanilla mc (erase only the word). bye, Egmont From INVALID.NOREPLY@gnu.org Sun Jun 11 04:01:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 29B6A3B0547 for ; Sun, 11 Jun 2006 04:01:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15580-01 for ; Sun, 11 Jun 2006 04:01:14 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 97FD53B00D8 for ; Sun, 11 Jun 2006 04:01:14 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FpKr9-0004mk-00; Sun, 11 Jun 2006 03:59:35 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 11 Jun 2006 10:59:34 +0300 Date: Sun, 11 Jun 2006 10:59:34 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Opera/8.51 (Windows ME; U; en) X-Apparently-From: 87.126.52.205 (Savane authenticated user ptsekov) Message-Id: <20060611-105933.sv36205.22318@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> In-Reply-To: <20060607-212128.sv26390.34564@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 08:01:16 -0000 Follow-up Comment #8, bug #16762 (project mc): Ping! _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Sun Jun 11 07:25:25 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1E7143B062A for ; Sun, 11 Jun 2006 07:25:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06549-04 for ; Sun, 11 Jun 2006 07:25:20 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id B6AB13B0635 for ; Sun, 11 Jun 2006 07:25:19 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id C683B4023; Sun, 11 Jun 2006 13:07:10 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id heh8eT5zCX4n; Sun, 11 Jun 2006 13:07:05 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 258354021; Sun, 11 Jun 2006 13:07:05 +0200 (CEST) From: Leonard den Ottolander To: Jindrich Novy In-Reply-To: <20060608181302.GA6254@cs.bme.hu> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> Content-Type: text/plain Date: Sun, 11 Jun 2006 13:08:46 +0200 Message-Id: <1150024126.2478.14.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 11:25:25 -0000 Hello Jindrich, On Thu, 2006-06-08 at 20:13 +0200, Egmont Koblinger wrote: > I've just upgraded to slang-2 in our distro and also updated the UTF-8 > patches to mc-4.6.1 (based on SUSE's version). It was easier than I thought > it would be. I was glad to see that you had applied plenty of my patches in > SUSE (those named "00-*"). Please take a look at here again: > > https://svn.uhulinux.hu/packages/dev/mc/patches/ Please take notice. It would probably be good if Vladimir and you could keep your UTF-8 patch sets in sync. It just seems wasted effort to do this in two places independently. Some inter-distro communication is not going to hurt. Maybe these patches should be centrally maintained in a contribs tree. Egmonts patches are worth looking at. I've blatantly ignored pushing them to you as I'd expected you to integrate them over time. I've probably not made it clear enough to you before that these patches are worth considering. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Sun Jun 11 08:00:33 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 70A6A3B057C for ; Sun, 11 Jun 2006 08:00:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08035-03 for ; Sun, 11 Jun 2006 08:00:30 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id DDF813B062F for ; Sun, 11 Jun 2006 08:00:29 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 6293F4023 for ; Sun, 11 Jun 2006 13:25:30 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id eSqOxfQ23SQl for ; Sun, 11 Jun 2006 13:25:27 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 44AED4021 for ; Sun, 11 Jun 2006 13:25:27 +0200 (CEST) From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Sun, 11 Jun 2006 13:27:09 +0200 Message-Id: <1150025229.2478.17.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Subject: [Fwd: [Bug 194777] New: mc hangs when copying file with no read perm over fish] X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 12:00:33 -0000 Hi, I can confirm this behaviour. Probably fish needs to test permissions before attempting to copy. Leonard. -------- Forwarded Message -------- From: bugzilla at redhat.com To: leonard-rh-bugzilla at den.ottolander.nl Subject: [Bug 194777] New: mc hangs when copying file with no read perm over fish Date: Sat, 10 Jun 2006 09:19:40 -0400 Please do not reply directly to this email. All additional comments should be made in the comments box of this bug report. https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=194777 Summary: mc hangs when copying file with no read perm over fish Product: Fedora Core Version: fc5 Platform: All OS/Version: Linux Status: NEW Severity: normal Priority: normal Component: mc AssignedTo: jnovy at redhat.com ReportedBy: stsp at aknet.ru CC: leonard-rh-bugzilla at den.ottolander.nl Description of problem: If I try to copy the file over the ssh connection (fish) for which there is no read permission, mc hangs. Version-Release number of selected component (if applicable): mc-4.6.1a-13.FC5 How reproducible: always Steps to Reproduce: 1. Make an ssh connection with mc, log is as user, not root 2. Try to read/copy some file, like /etc/shadow, for which you don't have the read permission. Actual results: mc hangs Expected results: mc displays the "permission denied" error. -- mount -t life -o ro /dev/dna /genetic/research From ptsekov@gmx.net Sun Jun 11 11:31:14 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72D893B0138 for ; Sun, 11 Jun 2006 11:31:14 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16333-02 for ; Sun, 11 Jun 2006 11:31:13 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 5CB043B008B for ; Sun, 11 Jun 2006 11:31:12 -0400 (EDT) Received: (qmail invoked by alias); 11 Jun 2006 15:30:20 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp010) with SMTP; 11 Jun 2006 17:30:20 +0200 X-Authenticated: #14308112 Date: Sun, 11 Jun 2006 18:29:08 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander In-Reply-To: <1150025229.2478.17.camel@athlon> Message-ID: References: <1150025229.2478.17.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development Subject: Re: [Fwd: [Bug 194777] New: mc hangs when copying file with no read perm over fish] X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 15:31:14 -0000 On Sun, 11 Jun 2006, Leonard den Ottolander wrote: > I can confirm this behaviour. Probably fish needs to test permissions > before attempting to copy. > > Leonard. I have a patch for this issue for quite some time. It just needs to be polished a bit. I'll try to post it in the next few days. From egmont@uhulinux.hu Mon Jun 12 04:31:53 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 301113B000D for ; Mon, 12 Jun 2006 04:31:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26350-02 for ; Mon, 12 Jun 2006 04:31:47 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id 5A2A33B00A7 for ; Mon, 12 Jun 2006 04:31:46 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id 9D1A07EE0 for ; Mon, 12 Jun 2006 10:30:48 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02190-01 for ; Mon, 12 Jun 2006 10:30:45 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id 5387C7EBA for ; Mon, 12 Jun 2006 10:30:45 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Mon, 12 Jun 2006 10:30:45 +0200 Date: Mon, 12 Jun 2006 10:30:45 +0200 From: Egmont Koblinger To: mc-devel@gnome.org Message-ID: <20060612083045.GA22700@cs.bme.hu> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1150024126.2478.14.camel@athlon> User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.585 tagged_above=-999 required=2 tests=[AWL=0.014, BAYES_00=-2.599] X-Spam-Score: -2.585 X-Spam-Level: Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 08:31:53 -0000 On Sun, Jun 11, 2006 at 01:08:46PM +0200, Leonard den Ottolander wrote: > Egmonts patches are worth looking at. I've blatantly ignored pushing > them to you as I'd expected you to integrate them over time. I've > probably not made it clear enough to you before that these patches are > worth considering. These patches hardly change nowadays. They only change if: - I face a new utf8 related bug in mc. It didn't happen in the last ~1.5 years (except for the off-by-one fix), and I always use the same small subset of mc's features, so it's unlikely for this to happen. - Something else (e.g. slang) is upgraded which introduces or triggers new bugs. - mc is upgraded in our distro. This will only happen if a new mainstream version is released. I don't want to bother with CVS snapshots, 4.6.1 is working reasonably well. After all, I'll try not to forget to mention it here if anything noticable changes in these patches. It's much simpler this way than for anyone to keep track of our changes. Finally, note that while these patches fix many issues with single-width UTF-8 characters, they may be really buggy with double-width (CJK) or zero-width Unicode characters, since I often assume that each Unicode entity occupies one column. I know it is totally false and I already knew it when I created these patches, but doing these things right would have required much more efforts. -- Egmont From jnovy@redhat.com Mon Jun 12 05:17:34 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 096F03B008D for ; Mon, 12 Jun 2006 05:17:34 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27996-03 for ; Mon, 12 Jun 2006 05:17:31 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 7F7723B0061 for ; Mon, 12 Jun 2006 05:17:30 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5C8tU0S007886; Mon, 12 Jun 2006 04:55:30 -0400 Received: from pobox.stuttgart.redhat.com (pobox.stuttgart.redhat.com [172.16.2.10]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5C8tTsF004862; Mon, 12 Jun 2006 04:55:29 -0400 Received: from vpn-4-29.stuttgart.redhat.com (vpn-4-29.stuttgart.redhat.com [10.32.4.29]) by pobox.stuttgart.redhat.com (8.12.8/8.12.8) with ESMTP id k5C8tSY5007832; Mon, 12 Jun 2006 10:55:28 +0200 From: Jindrich Novy To: Leonard den Ottolander In-Reply-To: <1150024126.2478.14.camel@athlon> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> Content-Type: text/plain Date: Mon, 12 Jun 2006 10:55:28 +0200 Message-Id: <1150102528.2242.17.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.5) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.601 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.601 X-Spam-Level: Cc: MC development Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 09:17:34 -0000 Hi Leonard, On Sun, 2006-06-11 at 13:08 +0200, Leonard den Ottolander wrote: > On Thu, 2006-06-08 at 20:13 +0200, Egmont Koblinger wrote: > > I've just upgraded to slang-2 in our distro and also updated the UTF-8 > > patches to mc-4.6.1 (based on SUSE's version). It was easier than I thought > > it would be. I was glad to see that you had applied plenty of my patches in > > SUSE (those named "00-*"). Please take a look at here again: > > > > https://svn.uhulinux.hu/packages/dev/mc/patches/ 00-74, 00-78 patches were helpful for me as well, thanks Egmont. They are now applied in devel FC. > Please take notice. It would probably be good if Vladimir and you could > keep your UTF-8 patch sets in sync. It just seems wasted effort to do > this in two places independently. Some inter-distro communication is not > going to hurt. Maybe these patches should be centrally maintained in a > contribs tree. The problem is that Vladimir and me use different versions of mc. My approach is to be more in sync with upstream so that there's a more recent CVS snapshot in Fedora for now because of a very rare release period of mc. This helps me to do only minimal changes when I want to send a patch to upstream. SuSE uses the stable mc-4.6.1, AFAIK. +1 for storing useful patches in contrib. It would be quite hard to keep them in sync with devel mc though. Cheers, Jindrich From leonard@den.ottolander.nl Mon Jun 12 07:54:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1D6DA3B00D4 for ; Mon, 12 Jun 2006 07:54:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00587-06 for ; Mon, 12 Jun 2006 07:54:25 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 349833B0078 for ; Mon, 12 Jun 2006 07:54:25 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 22A984023 for ; Mon, 12 Jun 2006 13:52:59 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id H8DbT-enwgdG for ; Mon, 12 Jun 2006 13:52:53 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 8D9594021 for ; Mon, 12 Jun 2006 13:52:53 +0200 (CEST) From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Mon, 12 Jun 2006 13:54:35 +0200 Message-Id: <1150113275.2520.29.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Subject: Dialogs, hotkeys and capitalization X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 11:54:27 -0000 Hi, This is a bit of a minor issue, but Pavel Tsekov brought it up when I changed a duplicate hotkey in the sort order dialog. I changed &Change time to C&Hange time thus capitalizing the hotkey, but also leaving the first letter of the phrase capitalized. Although the double capitalization might look somewhat odd it emphasizes the hotkey and I think the capitalized first letter looks nicer. The most widely used approach in the menus and dialogs is to only capitalize the (highlighted) hotkey ("c&Hange time"), but this is implemented inconsistently, which is most obvious in the Command menu. I have no idea how we should reach an agreement on this (vote??), but I think it's a good idea to decide on a format so the menus and dialogs will look more consistent. The three options I think are most appropriate are: No added capitalization of hotkeys ("C&hange time") (no emphasis apart from colourization) Add capitalization to hotkeys ("C&Hange time") (double capitalization) Only capitalize the hotkey ("c&Hange time") (missing capitals in first position) Opinions? Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Mon Jun 12 08:32:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6B86F3B00D8 for ; Mon, 12 Jun 2006 08:32:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02401-03 for ; Mon, 12 Jun 2006 08:32:43 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 58F0F3B00A7 for ; Mon, 12 Jun 2006 08:32:43 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fpla1-0003ZJ-00; Mon, 12 Jun 2006 08:31:41 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Mon, 12 Jun 2006 12:31:41 +0000 Date: Mon, 12 Jun 2006 12:31:41 +0000 To: Nick Shmyrev , mc-devel@gnome.org From: Nick Shmyrev X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; ru; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 195.98.173.2 (Savane authenticated user nshmyrev) Message-Id: <20060612-123140.sv25628.90055@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.814 tagged_above=-999 required=2 tests=[AWL=-0.772, BAYES_00=-2.599, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001] X-Spam-Score: -1.814 X-Spam-Level: Cc: Subject: [bug #16829] Crash when formatting paragraph X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 12:32:44 -0000 URL: Summary: Crash when formatting paragraph Project: GNU Midnight Commander Submitted by: nshmyrev Submitted on: Понедельник 12.06.2006 at 12:31 Category: None Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Hurd _______________________________________________________ Details: With Fedora's 5 stock mc-4.6.1a rpm I have a following crash when formatting paragraph. (gdb) bt #0 next_word_start (t=0x81fc138, q=Variable "q" is not available. ) at wordproc.c:227语言编写的插件,Gimp 还能够使用脚本。大部分现有的脚本都是用 S#1 0x080a975d in format_paragraph (edit=0x81ea598, force=1) at wordproc.c:280 #2 0x0809a035 in edit_execute_cmd (edit=0x81ea598, command=416, char_for_insertion=4294967295) at edit.c:2666 #3 0x0809aa05 in edit_execute_key_command (edit=0x81ea598, command=416, char_for_insertion=4294967295) at edit.c:2250 #4 0x080a268b in edit_callback (w=0x81ea598, msg=WIDGET_KEY, parm=8304) at editwidget.c:362 4Замена 5Копия 6Перемес7Поиск 8Удалить9МенюMC 10Вы #5 0x080599fb in dlg_process_event (h=0x81ef0a8, key=112, event=0xbff84d70) at dialog.c:659 #6 0x08059d0d in run_dlg (h=0x81ef0a8) at dialog.c:785 #7 0x080a22a4 in edit_file (_file=0x81b0850 "concepts.xml.save", line=0) at editwidget.c:225 #8 0x0806fe7b in do_nc () at main.c:1757 #9 0x08070855 in main (argc=Cannot access memory at address 0x0 ) at main.c:2293 #10 0x00af77e4 in __libc_start_main () from /lib/libc.so.6 #11 0x0804d481 in _start () _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Mon Jun 12 08:57:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5781E3B0083 for ; Mon, 12 Jun 2006 08:57:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03281-01 for ; Mon, 12 Jun 2006 08:57:43 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 553873B00E5 for ; Mon, 12 Jun 2006 08:57:43 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FplbW-0003hK-00; Mon, 12 Jun 2006 08:33:14 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Mon, 12 Jun 2006 12:33:14 +0000 Date: Mon, 12 Jun 2006 12:33:14 +0000 To: Nick Shmyrev , mc-devel@gnome.org From: Nick Shmyrev X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; ru; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 195.98.173.2 (Savane authenticated user nshmyrev) Message-Id: <20060612-123314.sv25628.73913@savannah.gnu.org> References: <20060612-123140.sv25628.90055@savannah.gnu.org> In-Reply-To: <20060612-123140.sv25628.90055@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.809 tagged_above=-999 required=2 tests=[AWL=-0.767, BAYES_00=-2.599, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001] X-Spam-Score: -1.809 X-Spam-Level: Cc: Subject: [bug #16829] Crash when formatting paragraph X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 12:57:44 -0000 Follow-up Comment #1, bug #16829 (project mc): The file that causes the crash. You have to put cursor on last in the text (line 2303 for example) and press Alt+p. _______________________________________________________ Additional Item Attachment: File name: translate-concepts.xml.patch.gz Size:9 KB _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From proski@gnu.org Mon Jun 12 16:15:26 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6B0E03B0100 for ; Mon, 12 Jun 2006 16:15:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28924-05 for ; Mon, 12 Jun 2006 16:15:25 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id 3CD0A3B00C8 for ; Mon, 12 Jun 2006 16:15:25 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1Fpsnb-0000tI-Ch for mc-devel@gnome.org; Mon, 12 Jun 2006 16:14:11 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FpsnX-0003XN-9f; Mon, 12 Jun 2006 16:14:07 -0400 From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150113275.2520.29.camel@athlon> References: <1150113275.2520.29.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Mon, 12 Jun 2006 16:14:07 -0400 Message-Id: <1150143247.4297.5.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC development Subject: Re: Dialogs, hotkeys and capitalization X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 20:15:26 -0000 Hello! On Mon, 2006-06-12 at 13:54 +0200, Leonard den Ottolander wrote: > The three options I think are most appropriate are: > No added capitalization of hotkeys ("C&hange time") (no emphasis apart > from colourization) > Add capitalization to hotkeys ("C&Hange time") (double capitalization) > Only capitalize the hotkey ("c&Hange time") (missing capitals in first > position) I suggest no capitalization. I believe capitalization was used when many terminals were unable to highlight or underline the hotkey, or mc couldn't use those capabilities. This is no longer true. -- Regards, Pavel Roskin From proski@gnu.org Mon Jun 12 18:09:18 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 85D7A3B00F5 for ; Mon, 12 Jun 2006 18:09:18 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00701-05 for ; Mon, 12 Jun 2006 18:09:16 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id AA3743B0010 for ; Mon, 12 Jun 2006 18:09:16 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FpuZr-0004zP-6S for mc-devel@gnome.org; Mon, 12 Jun 2006 18:08:07 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FpuZm-0003cR-GF; Mon, 12 Jun 2006 18:08:02 -0400 From: Pavel Roskin To: Jindrich Novy In-Reply-To: <1150102528.2242.17.camel@localhost.localdomain> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <1150102528.2242.17.camel@localhost.localdomain> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Mon, 12 Jun 2006 18:08:02 -0400 Message-Id: <1150150082.4297.34.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC development , Leonard den Ottolander Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 22:09:18 -0000 Hello! On Mon, 2006-06-12 at 10:55 +0200, Jindrich Novy wrote: > The problem is that Vladimir and me use different versions of mc. My > approach is to be more in sync with upstream so that there's a more > recent CVS snapshot in Fedora for now because of a very rare release > period of mc. This helps me to do only minimal changes when I want to > send a patch to upstream. SuSE uses the stable mc-4.6.1, AFAIK. > > +1 for storing useful patches in contrib. It would be quite hard to keep > them in sync with devel mc though. When I see a proposal to store any patches under version control, it makes me think that the version control system is inadequate. The natural representation of patches is differences between file revisions under version control. I think CVS it too centralized for the decentralized development that is done on mc. It's not possible for a non-committing user to create a separate branch. Recent years gave us several decentralized version control systems, such as Arch, BitKeeper, Monotone, Git and Mercurial. Their common feature is that every user has the complete repository of the project. Changes are exchanged between repositories in the form of changesets, either by e-mail or using other protocols. Branching is more advanced, merging is easier, and the merge history is recorded. Most importantly, branching is local. It should be possible to use an old version as the base and then rebase the patches while keeping track of what was actually merged. I think Git would be a great choice because it's free, actively developed and used by major projects such as Linux kernel and Wine. It also has a frontend called StGIT, which allows refining patches before submitting them to other developers. Git repositories work over http. Perhaps ibiblio.com would be persuaded to host the main repository. -- Regards, Pavel Roskin From INVALID.NOREPLY@gnu.org Tue Jun 13 04:02:49 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B0DCD3B00C9 for ; Tue, 13 Jun 2006 04:02:49 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15320-10 for ; Tue, 13 Jun 2006 04:02:46 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id A32783B00F5 for ; Tue, 13 Jun 2006 04:02:46 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq3U0-0002RY-00; Tue, 13 Jun 2006 03:38:40 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 07:38:39 +0000 Date: Tue, 13 Jun 2006 07:38:39 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060613-073838.sv47365.94722@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> In-Reply-To: <20060611-105933.sv36205.22318@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.504 tagged_above=-999 required=2 tests=[AWL=0.019, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.504 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 08:02:49 -0000 Follow-up Comment #9, bug #16762 (project mc): $ patch < getmntinfo-fix.patch can't find file to patch at input line 4 Perhaps you should have used the -p or --strip option? The text leading up to this was: -------------------------- |diff -Nrup mc-orig/acinclude.m4 mc/acinclude.m4 |--- mc-orig/acinclude.m4 2006-06-07 17:37:13.000000000 +0300 |+++ mc/acinclude.m4 2006-06-07 17:22:02.000000000 +0300 -------------------------- File to patch: _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 04:57:28 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3F2D43B00F5 for ; Tue, 13 Jun 2006 04:57:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17194-01 for ; Tue, 13 Jun 2006 04:57:27 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id DE4663B00AF for ; Tue, 13 Jun 2006 04:57:26 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq4MQ-000486-00; Tue, 13 Jun 2006 04:34:54 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 11:34:53 +0300 Date: Tue, 13 Jun 2006 11:34:53 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-113453.sv36205.79891@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> In-Reply-To: <20060613-073838.sv47365.94722@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.504 tagged_above=-999 required=2 tests=[AWL=0.019, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.504 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 08:57:28 -0000 Follow-up Comment #10, bug #16762 (project mc): 1) Enter in your MC directory 2) patch -p1 < getmntinfo-fix.patch _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 06:56:01 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AA2D43B000A for ; Tue, 13 Jun 2006 06:56:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20528-03 for ; Tue, 13 Jun 2006 06:56:00 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 813563B000C for ; Tue, 13 Jun 2006 06:56:00 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq6YC-0000LL-00; Tue, 13 Jun 2006 06:55:12 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 10:55:11 +0000 Date: Tue, 13 Jun 2006 10:55:11 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060613-105511.sv47365.57796@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> In-Reply-To: <20060613-113453.sv36205.79891@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.057, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 10:56:01 -0000 Follow-up Comment #11, bug #16762 (project mc): MOUNT_UFS still undeclared :( But I can fix this by undefining HAVE_INFOMOUNT_LIST in config.h before compiling. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 07:18:04 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A48483B000A for ; Tue, 13 Jun 2006 07:18:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20874-09 for ; Tue, 13 Jun 2006 07:18:03 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 207263B000C for ; Tue, 13 Jun 2006 07:18:03 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq6sz-0000bV-00; Tue, 13 Jun 2006 07:16:41 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 14:16:41 +0300 Date: Tue, 13 Jun 2006 14:16:41 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-141640.sv36205.93232@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> In-Reply-To: <20060613-105511.sv47365.57796@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.057, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 11:18:04 -0000 Follow-up Comment #12, bug #16762 (project mc): With the patch I've submitted the code which uses MOUNT_UFS shouldn't be compiled in. Can you attach your config.log to this bug report, please ? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 07:38:03 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D4A503B008F for ; Tue, 13 Jun 2006 07:38:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21364-10 for ; Tue, 13 Jun 2006 07:38:02 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 9E3293B000C for ; Tue, 13 Jun 2006 07:38:02 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq6tQ-0000c6-00; Tue, 13 Jun 2006 07:17:08 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 14:17:08 +0300 Date: Tue, 13 Jun 2006 14:17:08 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-141708.sv36205.99230@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> In-Reply-To: <20060613-141640.sv36205.93232@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.057, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 11:38:04 -0000 Follow-up Comment #13, bug #16762 (project mc): .. and your config.h too. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 08:55:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 611923B0114 for ; Tue, 13 Jun 2006 08:55:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23753-04 for ; Tue, 13 Jun 2006 08:55:40 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id DC9023B000A for ; Tue, 13 Jun 2006 08:55:39 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq8Q2-0004jO-00; Tue, 13 Jun 2006 08:54:54 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 14:54:54 +0200 Date: Tue, 13 Jun 2006 14:54:54 +0200 To: Nick Shmyrev , Leonard den Ottolander , mc-devel@gnome.org From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060613-145453.sv26390.71423@savannah.gnu.org> References: <20060612-123140.sv25628.90055@savannah.gnu.org> <20060612-123314.sv25628.73913@savannah.gnu.org> In-Reply-To: <20060612-123314.sv25628.73913@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.544 tagged_above=-999 required=2 tests=[AWL=0.056, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.544 X-Spam-Level: Cc: Subject: [bug #16829] Crash when formatting paragraph X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 12:55:44 -0000 Update of bug #16829 (project mc): Category: None => Editor Status: None => Invalid Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #2: This is an issue with the utf8ization of mcedit. The UTF-8 patches are no part of the official mc. Please report your issue in Red Hats bugzilla (http://bugzilla.redhat.com). _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 09:25:37 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7D6C53B00AF for ; Tue, 13 Jun 2006 09:25:37 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24676-05 for ; Tue, 13 Jun 2006 09:25:35 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 01AE43B000A for ; Tue, 13 Jun 2006 09:25:34 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq8sK-0005Bc-00; Tue, 13 Jun 2006 09:24:08 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 16:24:08 +0300 Date: Tue, 13 Jun 2006 16:24:08 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-162408.sv36205.31330@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> In-Reply-To: <20060613-141708.sv36205.99230@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.544 tagged_above=-999 required=2 tests=[AWL=0.056, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.544 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 13:25:37 -0000 Follow-up Comment #14, bug #16762 (project mc): My bad. I see what's wrong - will fix it and attach a new patch. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 09:51:11 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9CA853B00E5 for ; Tue, 13 Jun 2006 09:51:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24974-08 for ; Tue, 13 Jun 2006 09:51:09 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 0FF243B008F for ; Tue, 13 Jun 2006 09:51:09 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq9Hc-0006nV-00; Tue, 13 Jun 2006 09:50:16 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 16:50:16 +0300 Date: Tue, 13 Jun 2006 16:50:16 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-165016.sv36205.72008@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> In-Reply-To: <20060613-162408.sv36205.31330@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.506 tagged_above=-999 required=2 tests=[AWL=0.017, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.506 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 13:51:11 -0000 Follow-up Comment #15, bug #16762 (project mc): Ok. Attaching the new patch. Before applying this one - apply the old patch with -R: patch -p1 -R < getmntinfo-fix.patch and then apply the new one: patch -p1 < getmntinfo-fix-1.patch _______________________________________________________ Additional Item Attachment: File name: getmntinfo-fix-1.patch Size:3 KB _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 10:01:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 85AA33B00AF for ; Tue, 13 Jun 2006 10:01:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25629-05 for ; Tue, 13 Jun 2006 10:01:20 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 53A013B008F for ; Tue, 13 Jun 2006 10:01:20 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq9Qw-0006uf-00; Tue, 13 Jun 2006 09:59:54 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 13:59:54 +0000 Date: Tue, 13 Jun 2006 13:59:54 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060613-135953.sv47365.47118@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> In-Reply-To: <20060613-165016.sv36205.72008@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.506 tagged_above=-999 required=2 tests=[AWL=0.017, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.506 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 14:01:21 -0000 Follow-up Comment #16, bug #16762 (project mc): With getmntinfo-fix-1.patch compilation process finished successfully. 10x! Will you include this patch into source tree? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 10:22:29 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 912F33B00A5 for ; Tue, 13 Jun 2006 10:22:29 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26410-04 for ; Tue, 13 Jun 2006 10:22:26 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 45D1D3B00E5 for ; Tue, 13 Jun 2006 10:22:26 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq9lr-0007EE-00; Tue, 13 Jun 2006 10:21:31 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 17:21:31 +0300 Date: Tue, 13 Jun 2006 17:21:31 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-172130.sv36205.64124@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> In-Reply-To: <20060613-135953.sv47365.47118@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.544 tagged_above=-999 required=2 tests=[AWL=0.056, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.544 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 14:22:29 -0000 Follow-up Comment #17, bug #16762 (project mc): Yes. I just wanted to hear from Rolland Illig before commiting. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From kloczek@rudy.mif.pg.gda.pl Tue Jun 13 13:16:01 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 86F433B0438 for ; Tue, 13 Jun 2006 13:16:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31972-09 for ; Tue, 13 Jun 2006 13:16:00 -0400 (EDT) Received: from rudy.mif.pg.gda.pl (rudy.mif.pg.gda.pl [153.19.42.16]) by menubar.gnome.org (Postfix) with ESMTP id 26D0B3B0407 for ; Tue, 13 Jun 2006 13:16:00 -0400 (EDT) X-Virus-Scanned: at rudy.mif.pg.gda.pl Received: by rudy.mif.pg.gda.pl (plum, from userid 2732) id A1066233D5; Tue, 13 Jun 2006 19:14:41 +0200 (CEST) Date: Tue, 13 Jun 2006 19:14:41 +0200 (CEST) From: =?ISO-8859-2?Q?Tomasz_K=B3oczko?= To: Egmont Koblinger In-Reply-To: <20060612083045.GA22700@cs.bme.hu> Message-ID: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <20060612083045.GA22700@cs.bme.hu> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-59671104-1150218881=:31655" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.541 tagged_above=-999 required=2 tests=[AWL=-0.017, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_SG=0.077] X-Spam-Score: -2.541 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 17:16:01 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --0-59671104-1150218881=:31655 Content-Type: TEXT/PLAIN; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 8BIT On Mon, 12 Jun 2006, Egmont Koblinger wrote: [..] BTW: anyone is working on UFT-8 support for ncurses(w) backend ? BTW2: few monts ago was on this list about converting in source tree alle po/*.po files to UTF-8 .. still not done. Any reasons ? It can be performed by: [mc]$ for i in po/*.po; do msgconv -t UTF-8 $i -o $i; done and commiting changes. kloczek -- ----------------------------------------------------------- *Ludzie nie mają problemów, tylko sobie sami je stwarzają* ----------------------------------------------------------- Tomasz Kłoczko, sys adm @zie.pg.gda.pl|*e-mail: kloczek@rudy.mif.pg.gda.pl* --0-59671104-1150218881=:31655-- From egmont@uhulinux.hu Wed Jun 14 09:17:10 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1073B3B0406 for ; Wed, 14 Jun 2006 09:17:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31014-06 for ; Wed, 14 Jun 2006 09:17:08 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id 32A1D3B0081 for ; Wed, 14 Jun 2006 09:17:08 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id F42397F9A; Wed, 14 Jun 2006 15:16:24 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26249-05; Wed, 14 Jun 2006 15:16:21 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id BB0867E02; Wed, 14 Jun 2006 15:16:21 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Wed, 14 Jun 2006 15:16:21 +0200 Date: Wed, 14 Jun 2006 15:16:21 +0200 From: Egmont Koblinger To: Tomasz =?iso-8859-2?Q?K=B3oczko?= Subject: Re: utf8 patch for mc, slang 2 version Message-ID: <20060614131621.GE29389@cs.bme.hu> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <20060612083045.GA22700@cs.bme.hu> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.548 tagged_above=-999 required=2 tests=[AWL=-0.026, BAYES_00=-2.599, TW_SG=0.077] X-Spam-Score: -2.548 X-Spam-Level: Cc: mc-devel@gnome.org X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 13:17:10 -0000 On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz Kłoczko wrote: > BTW: anyone is working on UFT-8 support for ncurses(w) backend ? I don't think so, and I don't think it is worth it. Maintaining two backends IMHO just causes headaches while it doesn't make mc better. I still can't see why developers do not decide which one to use and drop the other one. With Unicode support maintaining the two will be much harder since AFAIK slang works with UTF-8 while ncurses uses UCS-4. Hence a completely different patch would be required for the two cases. > BTW2: few monts ago was on this list about converting in source > tree alle po/*.po files to UTF-8 .. still not done. Any reasons ? > > It can be performed by: > > [mc]$ for i in po/*.po; do msgconv -t UTF-8 $i -o $i; done Are you sure it is safe to use the same output file? I'd rather use a tmp file. It depends on msgconv's internal implementation, but I can easily imagine a situation where the writing file descriptor's position exceeds the reading position (since UTF-8 is longer than the 8-bit version) and this may cause invalid results. Due to buffered read and write requests I guess it needs larger files (with approx. 4096 -- 8192 accented characters) for this bug to occur. I'm not sure, though, just reasonably paranoid :-) -- Egmont From nadvornik@suse.cz Wed Jun 14 10:23:23 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3724F3B041B for ; Wed, 14 Jun 2006 10:23:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03772-05 for ; Wed, 14 Jun 2006 10:23:09 -0400 (EDT) Received: from mail.suse.cz (styx.suse.cz [82.119.242.94]) by menubar.gnome.org (Postfix) with ESMTP id A494D3B0570 for ; Wed, 14 Jun 2006 10:23:09 -0400 (EDT) Received: from sphinx.suse.cz (sphinx.suse.cz [10.20.1.5]) by mail.suse.cz (SUSE CR ESMTP Mailer) with ESMTP id 9710C628067 for ; Wed, 14 Jun 2006 16:22:51 +0200 (CEST) From: Vladimir Nadvornik To: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version Date: Wed, 14 Jun 2006 16:22:49 +0200 User-Agent: KMail/1.9.1 References: <200509191419.01556.arekm@pld-linux.org> <1150024126.2478.14.camel@athlon> <1150102528.2242.17.camel@localhost.localdomain> In-Reply-To: <1150102528.2242.17.camel@localhost.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606141622.50049.nadvornik@suse.cz> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 14:23:23 -0000 On Monday 12 June 2006 10:55, Jindrich Novy wrote: > > > Please take notice. It would probably be good if Vladimir and you could > > keep your UTF-8 patch sets in sync. It just seems wasted effort to do > > this in two places independently. Some inter-distro communication is not > > going to hurt. Maybe these patches should be centrally maintained in a > > contribs tree. > > The problem is that Vladimir and me use different versions of mc. My > approach is to be more in sync with upstream so that there's a more > recent CVS snapshot in Fedora for now because of a very rare release > period of mc. This helps me to do only minimal changes when I want to > send a patch to upstream. SuSE uses the stable mc-4.6.1, AFAIK. > It would not be a problem to have a more recent mc snapshot in openSUSE Factory. Even better, if it is synced 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 From bartoldeman@users.sourceforge.net Wed Jun 14 17:52:11 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CBF073B0433 for ; Wed, 14 Jun 2006 17:52:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31602-06 for ; Wed, 14 Jun 2006 17:52:08 -0400 (EDT) Received: from mail2.woosh.co.nz (webmail.woosh.co.nz [202.74.207.2]) by menubar.gnome.org (Postfix) with ESMTP id 9AAF83B041B for ; Wed, 14 Jun 2006 17:52:07 -0400 (EDT) Received: from enm-bo-lt.localnet (202-74-212-77.ue.woosh.co.nz [202.74.212.77]) by woosh.co.nz (Rockliffe SMTPRA 6.1.22) with ESMTP id ; Thu, 15 Jun 2006 09:51:23 +1200 Received: from enbeo (helo=localhost) by enm-bo-lt.localnet with local-esmtp (Exim 4.62) (envelope-from ) id 1FqdB0-000326-Ma; Thu, 15 Jun 2006 09:45:26 +1200 Date: Thu, 15 Jun 2006 09:45:26 +1200 (NZST) From: Bart Oldeman X-X-Sender: enbeo@enm-bo-lt.localnet To: Egmont Koblinger Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <20060614131621.GE29389@cs.bme.hu> Message-ID: References: <200509191419.01556.arekm@pld-linux.org><200606071218.32428.nadv ornik@suse.cz><1149685131.2269.10.camel@localhost.localdomain><200606081202 .51002.nadvornik@suse.cz><20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon><20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: Cc: mc-devel@gnome.org, Tomasz =?iso-8859-2?Q?K=B3oczko?= X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 21:52:12 -0000 On Wed, 14 Jun 2006, Egmont Koblinger wrote: > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > I don't think so, and I don't think it is worth it. Maintaining two backends > IMHO just causes headaches while it doesn't make mc better. I still can't > see why developers do not decide which one to use and drop the other one. Maybe compatibility with older UN*Xes with curses but no slang? > With Unicode support maintaining the two will be much harder since AFAIK > slang works with UTF-8 while ncurses uses UCS-4. Hence a completely > different patch would be required for the two cases. Last time I played with it ncursesw (but not plain ncurses) handled UTF-8 just fine. e.g. you can pass a UTF-8 encoded string to addstr(), and provided the locale is set correctly, ncursesw will compute its width correctly. It is *also* possible to use addwstr() with UCS-4, but not compulsory. Bart From proski@gnu.org Wed Jun 14 18:12:25 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 13D573B0145 for ; Wed, 14 Jun 2006 18:12:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08738-03 for ; Wed, 14 Jun 2006 18:12:23 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id 67B653B00D6 for ; Wed, 14 Jun 2006 18:12:23 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FqdaT-0000qj-3U for mc-devel@gnome.org; Wed, 14 Jun 2006 18:11:45 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FqdaL-00062m-Lp; Wed, 14 Jun 2006 18:11:37 -0400 Subject: Re: utf8 patch for mc, slang 2 version From: Pavel Roskin To: Bart Oldeman In-Reply-To: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadv ornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202 .51002.nadvornik@suse.cz><20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon><20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Wed, 14 Jun 2006 18:11:37 -0400 Message-Id: <1150323097.23144.2.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: Egmont Koblinger , mc-devel@gnome.org, Tomasz =?iso-8859-2?Q?K=B3oczko?= X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 22:12:25 -0000 Hello! On Thu, 2006-06-15 at 09:45 +1200, Bart Oldeman wrote: > On Wed, 14 Jun 2006, Egmont Koblinger wrote: > > > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: > > > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > > > I don't think so, and I don't think it is worth it. Maintaining two backends > > IMHO just causes headaches while it doesn't make mc better. I still can't > > see why developers do not decide which one to use and drop the other one. > > Maybe compatibility with older UN*Xes with curses but no slang? It's a bogus argument. UNIX curses was removed long ago, and it had never worked well anyway. I don't remember a single person complaining. Besides, S-Lang is included with mc and it's quite portable. -- Regards, Pavel Roskin From ossi@kde.org Wed Jun 14 18:23:28 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 168E43B000E for ; Wed, 14 Jun 2006 18:23:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00410-04 for ; Wed, 14 Jun 2006 18:23:24 -0400 (EDT) Received: from ktown.kde.org (ktown.kde.org [131.246.120.250]) by menubar.gnome.org (Postfix) with SMTP id 194493B0099 for ; Wed, 14 Jun 2006 18:23:24 -0400 (EDT) Received: (qmail 6653 invoked from network); 14 Jun 2006 22:22:34 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 14 Jun 2006 22:22:34 -0000 Received: from ossi by ugly.local with local (masqmail 0.2.21) id 1Fqdkw-2f5-00 for ; Thu, 15 Jun 2006 00:22:34 +0200 Date: Thu, 15 Jun 2006 00:22:34 +0200 From: Oswald Buddenhagen To: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version Message-ID: <20060614222234.GA9122@ugly.local> Mail-Followup-To: mc-devel@gnome.org References: <20060614131621.GE29389@cs.bme.hu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.585 tagged_above=-999 required=2 tests=[AWL=0.014, BAYES_00=-2.599] X-Spam-Score: -2.585 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 22:23:28 -0000 On Thu, Jun 15, 2006 at 09:45:26AM +1200, Bart Oldeman wrote: > On Wed, 14 Jun 2006, Egmont Koblinger wrote: > > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > > > I don't think so, and I don't think it is worth it. Maintaining two backends > > IMHO just causes headaches while it doesn't make mc better. I still can't > > see why developers do not decide which one to use and drop the other one. > > Maybe compatibility with older UN*Xes with curses but no slang? > that doesn't sound too convincing. > > With Unicode support maintaining the two will be much harder since AFAIK > > slang works with UTF-8 while ncurses uses UCS-4. Hence a completely > > different patch would be required for the two cases. > > Last time I played with it ncursesw (but not plain ncurses) handled UTF-8 > just fine. > good. i'm all for killing slang support. why that one? libslang is twice as big as libncursesw. probably because it was meant to be much more than just a display lib. -- Hi! I'm a .signature virus! Copy me into your ~/.signature, please! -- Chaos, panic, and disorder - my work here is done. From kloczek@rudy.mif.pg.gda.pl Thu Jun 15 00:21:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2CCA43B002B for ; Thu, 15 Jun 2006 00:21:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10727-08 for ; Thu, 15 Jun 2006 00:21:33 -0400 (EDT) Received: from rudy.mif.pg.gda.pl (rudy.mif.pg.gda.pl [153.19.42.16]) by menubar.gnome.org (Postfix) with ESMTP id D320E3B00B5 for ; Thu, 15 Jun 2006 00:21:32 -0400 (EDT) X-Virus-Scanned: at rudy.mif.pg.gda.pl Received: by rudy.mif.pg.gda.pl (plum, from userid 2732) id DE57C233C2; Thu, 15 Jun 2006 06:20:42 +0200 (CEST) Date: Thu, 15 Jun 2006 06:20:42 +0200 (CEST) From: =?ISO-8859-2?Q?Tomasz_K=B3oczko?= To: Egmont Koblinger Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <20060614131621.GE29389@cs.bme.hu> Message-ID: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-590361060-1150344476=:31655" Content-ID: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.54 tagged_above=-999 required=2 tests=[AWL=-0.016, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_SG=0.077] X-Spam-Score: -2.54 X-Spam-Level: Cc: mc-devel@gnome.org X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 04:21:36 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --0-590361060-1150344476=:31655 Content-Type: TEXT/PLAIN; CHARSET=ISO-8859-2; FORMAT=flowed Content-Transfer-Encoding: 8BIT Content-ID: On Wed, 14 Jun 2006, Egmont Koblinger wrote: > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz Kłoczko wrote: > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > I don't think so, and I don't think it is worth it. Maintaining two backends > IMHO just causes headaches while it doesn't make mc better. I still can't > see why developers do not decide which one to use and drop the other one. If someone want ask which backend is more importand and will be better keep as major IMO answer tn this kind question is very simple: # rpm -q --whatrequires libslang.so.2 | grep -v slang | wc -l 4 # rpm -q --whatrequires libncurses.so.5 libncursesw.so.5 | grep -v ncurses |wc -l 55 Above slang list contain only packages which do not have now ncurses backend and are not importand as mc :) Also current state have other sick points on Linux. In case using mc with gpm it causes runtime linking with more than one term toolkit library (slang or internal slang and ncurses used by libgpm). [..] >> [mc]$ for i in po/*.po; do msgconv -t UTF-8 $i -o $i; done > > Are you sure it is safe to use the same output file? I'd rather use a tmp > file. I'm sure. msgconv cumulates output in memory and aftewr finish conversion writes output to file name passed in -o parameter in single step. kloczek -- ----------------------------------------------------------- *Ludzie nie mają problemów, tylko sobie sami je stwarzają* ----------------------------------------------------------- Tomasz Kłoczko, sys adm @zie.pg.gda.pl|*e-mail: kloczek@rudy.mif.pg.gda.pl* --0-590361060-1150344476=:31655-- From ptsekov@gmx.net Thu Jun 15 00:35:07 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 45C963B0324 for ; Thu, 15 Jun 2006 00:35:07 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11437-01 for ; Thu, 15 Jun 2006 00:34:58 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 4B94E3B0184 for ; Thu, 15 Jun 2006 00:34:56 -0400 (EDT) Received: (qmail invoked by alias); 15 Jun 2006 04:34:23 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp036) with SMTP; 15 Jun 2006 06:34:23 +0200 X-Authenticated: #14308112 Date: Thu, 15 Jun 2006 07:33:12 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole Cc: MC dev Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <1150323097.23144.2.camel@dv> Message-ID: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadv ornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202 .51002.nadvornik@suse.cz><20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon><20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> <1150323097.23144.2.camel@dv> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.546 tagged_above=-999 required=2 tests=[AWL=0.054, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.546 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 04:35:07 -0000 On Wed, 14 Jun 2006, Pavel Roskin wrote: > Hello! > > On Thu, 2006-06-15 at 09:45 +1200, Bart Oldeman wrote: >> On Wed, 14 Jun 2006, Egmont Koblinger wrote: >> >>> On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: >>> >>>> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? >>> >>> I don't think so, and I don't think it is worth it. Maintaining two backends >>> IMHO just causes headaches while it doesn't make mc better. I still can't >>> see why developers do not decide which one to use and drop the other one. >> >> Maybe compatibility with older UN*Xes with curses but no slang? > > It's a bogus argument. UNIX curses was removed long ago, and it had > never worked well anyway. I don't remember a single person complaining. > Besides, S-Lang is included with mc and it's quite portable. We had that argument once already. curses is not that old and it is standard. And it has unicode support. Its just a matter of using it. From egmont@uhulinux.hu Thu Jun 15 06:33:33 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5B1473B0440 for ; Thu, 15 Jun 2006 06:33:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30159-02 for ; Thu, 15 Jun 2006 06:33:28 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id 78AEC3B03EB for ; Thu, 15 Jun 2006 06:33:28 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id DC5CA8036 for ; Thu, 15 Jun 2006 12:33:20 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12764-06 for ; Thu, 15 Jun 2006 12:33:17 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id 281557FF0 for ; Thu, 15 Jun 2006 12:33:17 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Thu, 15 Jun 2006 12:33:14 +0200 Date: Thu, 15 Jun 2006 12:33:14 +0200 From: Egmont Koblinger To: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version Message-ID: <20060615103314.GA14523@cs.bme.hu> References: <20060614131621.GE29389@cs.bme.hu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.584 tagged_above=-999 required=2 tests=[AWL=0.015, BAYES_00=-2.599] X-Spam-Score: -2.584 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 10:33:36 -0000 Hi, > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > > > I don't think so, and I don't think it is worth it. Maintaining two backends > > IMHO just causes headaches while it doesn't make mc better. I still can't > > see why developers do not decide which one to use and drop the other one. > > Maybe compatibility with older UN*Xes with curses but no slang? Asking these sysadmins to install slang (or compile mc to its bundled slang) is IMHO easier than to do double work in mc. > Last time I played with it ncursesw (but not plain ncurses) handled UTF-8 > just fine. > > e.g. you can pass a UTF-8 encoded string to addstr(), and provided the > locale is set correctly, ncursesw will compute its width correctly. It is > *also* possible to use addwstr() with UCS-4, but not compulsory. It's clear now, thanks! Anyway, there are plenty of apps (e.g. vim, joe) that perfectly support UTF-8 and use ncurses (not the w version). I wonder how it is possible... -- Egmont From INVALID.NOREPLY@gnu.org Wed Jun 14 15:03:01 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D204A3B0190 for ; Wed, 14 Jun 2006 15:03:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15652-08 for ; Wed, 14 Jun 2006 15:03:00 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3A7723B00C7 for ; Wed, 14 Jun 2006 15:03:00 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fqad3-0005RO-00; Wed, 14 Jun 2006 15:02:13 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 14 Jun 2006 19:02:13 +0000 Date: Wed, 14 Jun 2006 19:02:13 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: purportex X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.0.4) Gecko/20060508 Firefox/1.5.0.4 X-Apparently-From: 81.31.39.117 (Savane authenticated user purportex) Message-Id: <20060614-190212.sv50251.32349@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> In-Reply-To: <20060613-172130.sv36205.64124@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 08:58:02 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 19:03:02 -0000 Follow-up Comment #18, bug #16762 (project mc): Hi, when I compiling current cvs version, I have such problem.. $ ./autogen ; make ... mountlist.c: In function 'fstype_to_string': mountlist.c:176: error: 'MOUNT_UFS' undeclared (first use in this function) mountlist.c:176: error: (Each undeclared identifier is reported only once mountlist.c:176: error: for each function it appears in.) mountlist.c:178: error: 'MOUNT_NFS' undeclared (first use in this function) $ uname -a Darwin MacBookPro.local 8.6.1 Darwin Kernel Version 8.6.1: Tue Mar 7 16:55:45 PST 2006; root:xnu-792.9.22.obj~1/RELEASE_I386 i386 i386 _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 15 00:37:55 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E3FD13B00CA for ; Thu, 15 Jun 2006 00:37:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11437-06 for ; Thu, 15 Jun 2006 00:37:53 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id A34FB3B00BA for ; Thu, 15 Jun 2006 00:37:53 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FqjbZ-0008C3-00; Thu, 15 Jun 2006 00:37:17 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 15 Jun 2006 07:37:16 +0300 Date: Thu, 15 Jun 2006 07:37:16 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Opera/8.51 (Windows ME; U; en) X-Apparently-From: 87.126.52.205 (Savane authenticated user ptsekov) Message-Id: <20060615-073715.sv36205.52677@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> In-Reply-To: <20060614-190212.sv50251.32349@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 08:58:02 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 04:37:55 -0000 Follow-up Comment #19, bug #16762 (project mc): purportex, have you tried to fix the problem by applying the suggested patch ? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From bartoldeman@users.sourceforge.net Thu Jun 15 17:15:00 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 891BA3B01FF for ; Thu, 15 Jun 2006 17:15:00 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01106-01 for ; Thu, 15 Jun 2006 17:14:59 -0400 (EDT) Received: from mail2.woosh.co.nz (webmail.woosh.co.nz [202.74.207.2]) by menubar.gnome.org (Postfix) with ESMTP id 5C5023B00DD for ; Thu, 15 Jun 2006 17:14:58 -0400 (EDT) Received: from enm-bo-lt.localnet (202-74-216-93.ue.woosh.co.nz [202.74.216.93]) by woosh.co.nz (Rockliffe SMTPRA 6.1.22) with ESMTP id for ; Fri, 16 Jun 2006 09:14:10 +1200 Received: from enbeo (helo=localhost) by enm-bo-lt.localnet with local-esmtp (Exim 4.62) (envelope-from ) id 1Fqz4P-0003ds-F4 for mc-devel@gnome.org; Fri, 16 Jun 2006 09:08:05 +1200 Date: Fri, 16 Jun 2006 09:08:04 +1200 (NZST) From: Bart Oldeman X-X-Sender: enbeo@enm-bo-lt.localnet To: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <20060615103314.GA14523@cs.bme.hu> Message-ID: References: <20060614131621.GE29389@cs.bme.hu> <20060615103314.GA14523@cs.bme.hu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 21:15:00 -0000 On Thu, 15 Jun 2006, Egmont Koblinger wrote: > Anyway, there are plenty of apps (e.g. vim, joe) that perfectly support > UTF-8 and use ncurses (not the w version). I wonder how it is possible... Because they only use the terminfo (low-level) parts of ncurses, see "man 3ncurses terminfo". Those parts do not care about UTF-8. MC uses a higher level part of ncurses (the display routines), but restricted to "stdscr". There's an even higher level part of ncurses that supports managing (overlapping) windows, but MC does not use it. SLang (without the newt library) does not support that. So one advantage of using ncurses over slang is that MC could make use of ncurses' windowing code, thereby simplifying its own code. In the way that MC uses SLang and ncurses right now there is very little difference between the two libraries. If you google (groups) for it (Miguel's posts) you'll find that around '95/'96 SLang was preferred over ncurses because it was faster, smaller, and less buggy. But that is no longer the case, there is not much difference now. Bart From leonard@den.ottolander.nl Thu Jun 15 19:55:20 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E1A6F3B00DD for ; Thu, 15 Jun 2006 19:55:19 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06118-09 for ; Thu, 15 Jun 2006 19:55:14 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id AE7613B0011 for ; Thu, 15 Jun 2006 19:55:14 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id ABA4E4023 for ; Fri, 16 Jun 2006 01:54:08 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id Maxju7m2nPkZ for ; Fri, 16 Jun 2006 01:54:02 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id ED55C4021 for ; Fri, 16 Jun 2006 01:54:01 +0200 (CEST) Subject: Symlink attack in file.c? From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Fri, 16 Jun 2006 01:53:56 +0200 Message-Id: <1150415636.2615.24.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 23:55:20 -0000 Hi, Something I came across a couple of times this week, just now in relation to an RFE regarding file permissions on copying fat files in RHs bugzilla (https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=195614): http://cvs.savannah.gnu.org/viewcvs/mc/src/file.c?root=mc&r1=1.28&r2=1.29 A commit by "pavel" (Machek?) who added the remark "FIXME: You have security hole here, btw. Imagine copying to /tmp and symlink attack :-(" Is there anybody that can explain to me what he's concerned about and if that is still an issue? If so this is a rather long standing hole... If not, let's get rid of that warning. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Thu Jun 15 18:27:59 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C15DE3B01A1 for ; Thu, 15 Jun 2006 18:27:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03783-05 for ; Thu, 15 Jun 2006 18:27:58 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 02FDC3B0007 for ; Thu, 15 Jun 2006 18:27:57 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fr0JH-0002nT-00; Thu, 15 Jun 2006 18:27:31 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 15 Jun 2006 22:27:30 +0000 Date: Thu, 15 Jun 2006 22:27:30 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: purportex X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.0.4) Gecko/20060508 Firefox/1.5.0.4 X-Apparently-From: 81.31.39.117 (Savane authenticated user purportex) Message-Id: <20060615-222730.sv50251.60290@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > In-Reply-To: <20060615-073715.sv36205.52677@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.548 tagged_above=-999 required=2 tests=[AWL=0.052, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.548 X-Spam-Level: X-Mailman-Approved-At: Fri, 16 Jun 2006 05:26:01 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 22:28:00 -0000 Follow-up Comment #20, bug #16762 (project mc): Yeah, great! I can't compile it with tuesday's version, but with yesterday's I can, thanx :] _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Fri Jun 16 09:43:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 40C913B0076 for ; Fri, 16 Jun 2006 09:43:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30254-02 for ; Fri, 16 Jun 2006 09:43:41 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3835D3B000B for ; Fri, 16 Jun 2006 09:43:41 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrEbH-0000KJ-00; Fri, 16 Jun 2006 09:43:03 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Fri, 16 Jun 2006 15:43:02 +0200 Date: Fri, 16 Jun 2006 15:43:02 +0200 To: Nick Shmyrev , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16829] Crash when formatting paragraph From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060616-154301.sv26390.44190@savannah.gnu.org> References: <20060612-123140.sv25628.90055@savannah.gnu.org> <20060612-123314.sv25628.73913@savannah.gnu.org> <20060613-145453.sv26390.71423@savannah.gnu.org> In-Reply-To: <20060613-145453.sv26390.71423@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.548 tagged_above=-999 required=2 tests=[AWL=0.052, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.548 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 13:43:44 -0000 Update of bug #16829 (project mc): Status: Invalid => None Assigned to: None => leonardjo Open/Closed: Closed => Open Operating System: GNU/Hurd => All _______________________________________________________ Follow-up Comment #3: Turns out to be a general mc issue after all: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=194562 Jindrich Novy proposes the following solution: https://bugzilla.redhat.com/bugzilla/attachment.cgi?id=131038 _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From jnovy@redhat.com Fri Jun 16 10:44:35 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 295C73B0012 for ; Fri, 16 Jun 2006 10:44:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32146-01 for ; Fri, 16 Jun 2006 10:44:33 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id B4BEC3B000B for ; Fri, 16 Jun 2006 10:44:33 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5GCUXa8011193 for ; Fri, 16 Jun 2006 08:30:33 -0400 Received: from pobox.stuttgart.redhat.com (pobox.stuttgart.redhat.com [172.16.2.10]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5GCUV2V007457 for ; Fri, 16 Jun 2006 08:30:33 -0400 Received: from vpn-4-42.stuttgart.redhat.com (vpn-4-42.stuttgart.redhat.com [10.32.4.42]) by pobox.stuttgart.redhat.com (8.12.8/8.12.8) with ESMTP id k5GCUUTK005881 for ; Fri, 16 Jun 2006 14:30:30 +0200 Subject: [PATCH] segfault fix while formatting paragraph (alt-p) From: Jindrich Novy To: MC Devel Content-Type: multipart/mixed; boundary="=-2pcaSwIryKoHMMTlNz7W" Date: Fri, 16 Jun 2006 14:30:29 +0200 Message-Id: <1150461029.2294.6.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.5) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.601 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.601 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 14:44:35 -0000 --=-2pcaSwIryKoHMMTlNz7W Content-Type: text/plain Content-Transfer-Encoding: 7bit Hi, there's a segfault while formatting a paragraph with alt-p. The next_word_start() in wordproc.c misses the upper boundary check. The attached patch fixes it. References/Reproducer: http://bugzilla.redhat.com/194562 Jindrich --=-2pcaSwIryKoHMMTlNz7W Content-Disposition: attachment; filename=mc-segfault.patch Content-Type: text/x-patch; name=mc-segfault.patch; charset=UTF-8 Content-Transfer-Encoding: 7bit --- mc/edit/wordproc.c.jn 2005-05-27 05:35:12.000000000 +0200 +++ mc/edit/wordproc.c 2006-06-16 14:19:38.000000000 +0200 @@ -198,10 +198,10 @@ } static int -next_word_start (unsigned char *t, int q) +next_word_start (unsigned char *t, int q, int size) { int i; - for (i = q;; i++) { + for (i = q; i < size; i++) { switch (t[i]) { case '\n': return -1; @@ -220,11 +220,11 @@ /* find the start of a word */ static int -word_start (unsigned char *t, int q) +word_start (unsigned char *t, int q, int size) { int i = q; if (t[q] == ' ' || t[q] == '\t') - return next_word_start (t, q); + return next_word_start (t, q, size); for (;;) { int c; if (!i) @@ -253,9 +253,9 @@ break; if (t[q] == '\n') break; - p = word_start (t, q); + p = word_start (t, q, size); if (p == -1) - q = next_word_start (t, q); /* Return the end of the word if the beginning + q = next_word_start (t, q, size); /* Return the end of the word if the beginning of the word is at the beginning of a line (i.e. a very long word) */ else --=-2pcaSwIryKoHMMTlNz7W-- From ptsekov@gmx.net Fri Jun 16 11:59:15 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 55D4D3B0005 for ; Fri, 16 Jun 2006 11:59:15 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01930-07 for ; Fri, 16 Jun 2006 11:59:12 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 01C653B000B for ; Fri, 16 Jun 2006 11:59:11 -0400 (EDT) Received: (qmail invoked by alias); 16 Jun 2006 15:58:30 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp028) with SMTP; 16 Jun 2006 17:58:30 +0200 X-Authenticated: #14308112 Date: Fri, 16 Jun 2006 18:57:18 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: MC dev Subject: Problems with the mailing list ? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.549 tagged_above=-999 required=2 tests=[AWL=-0.943, BAYES_20=-0.74, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -1.549 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 15:59:15 -0000 Hello, Does anyone miss messages from the mc-devel list ? It seems like some messages do not reach the mailing list at all while others don't reach the mailing list subcsribers. Can anyone confirm or deny this ? Thanks! From jnovy@redhat.com Fri Jun 16 12:57:33 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E085B3B033E for ; Fri, 16 Jun 2006 12:57:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06357-08 for ; Fri, 16 Jun 2006 12:57:25 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 838633B050A for ; Fri, 16 Jun 2006 12:55:21 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5GGsPDw006893 for ; Fri, 16 Jun 2006 12:54:25 -0400 Received: from pobox.stuttgart.redhat.com (pobox.stuttgart.redhat.com [172.16.2.10]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5GGsOK7007658 for ; Fri, 16 Jun 2006 12:54:24 -0400 Received: from vpn-4-3.stuttgart.redhat.com (vpn-4-3.stuttgart.redhat.com [10.32.4.3]) by pobox.stuttgart.redhat.com (8.12.8/8.12.8) with ESMTP id k5GGsNTK026570 for ; Fri, 16 Jun 2006 18:54:23 +0200 Subject: better [PATCH] segfault fix while formatting paragraph (alt-p) From: Jindrich Novy To: MC Devel Content-Type: multipart/mixed; boundary="=-3u5KXe3b23+1fD2VbBs1" Date: Fri, 16 Jun 2006 18:54:23 +0200 Message-Id: <1150476863.19192.3.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.5) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.601 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.601 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 16:57:33 -0000 --=-3u5KXe3b23+1fD2VbBs1 Content-Type: text/plain Content-Transfer-Encoding: 7bit Hi, after some refinement I'm sending a better patch that rewrites next_word_start() and fixes the segfault. Jindrich --=-3u5KXe3b23+1fD2VbBs1 Content-Disposition: attachment; filename=mc-segfault.patch Content-Type: text/x-patch; name=mc-segfault.patch; charset=UTF-8 Content-Transfer-Encoding: 7bit --- mc/edit/wordproc.c.jn 2005-05-27 05:35:12.000000000 +0200 +++ mc/edit/wordproc.c 2006-06-16 18:48:42.000000000 +0200 @@ -198,33 +198,25 @@ } static int -next_word_start (unsigned char *t, int q) +next_word_start (unsigned char *t, int q, int size) { int i; - for (i = q;; i++) { - switch (t[i]) { - case '\n': + for (i = q; i X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6AA2F3B04C9 for ; Fri, 16 Jun 2006 16:21:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19862-05 for ; Fri, 16 Jun 2006 16:21:41 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 7B4BC3B03B3 for ; Fri, 16 Jun 2006 16:21:41 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrKoG-0007SH-00; Fri, 16 Jun 2006 16:20:52 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Fri, 16 Jun 2006 22:20:52 +0200 Date: Fri, 16 Jun 2006 22:20:52 +0200 To: Nick Shmyrev , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16829] Crash when formatting paragraph From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060616-222051.sv26390.93326@savannah.gnu.org> References: <20060612-123140.sv25628.90055@savannah.gnu.org> <20060612-123314.sv25628.73913@savannah.gnu.org> <20060613-145453.sv26390.71423@savannah.gnu.org> <20060616-154301.sv26390.44190@savannah.gnu.org> In-Reply-To: <20060616-154301.sv26390.44190@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.55 tagged_above=-999 required=2 tests=[AWL=0.050, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.55 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 20:21:44 -0000 Update of bug #16829 (project mc): Status: None => Fixed Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #4: Pavel Tsekov committed patches to fix this issue. Closing. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From proski@gnu.org Fri Jun 16 23:17:46 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AFAEF3B00C5 for ; Fri, 16 Jun 2006 23:17:46 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00723-05 for ; Fri, 16 Jun 2006 23:17:45 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id B49B33B0137 for ; Fri, 16 Jun 2006 23:17:45 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FrRIQ-0002kb-1Z for mc-devel@gnome.org; Fri, 16 Jun 2006 23:16:26 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FrRIJ-00025L-VK; Fri, 16 Jun 2006 23:16:19 -0400 Subject: Re: Problems with the mailing list ? From: Pavel Roskin To: Pavel Tsekov In-Reply-To: References: Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Fri, 16 Jun 2006 23:16:19 -0400 Message-Id: <1150514179.29738.20.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 03:17:46 -0000 Hello! On Fri, 2006-06-16 at 18:57 +0300, Pavel Tsekov wrote: > Hello, > > Does anyone miss messages from the mc-devel list ? It seems like some > messages do not reach the mailing list at all while others don't reach > the mailing list subcsribers. Can anyone confirm or deny this ? I have sent an email to the GNOME mailing list administrator. I don't see any delays or mail loss, but let's see what would happen to this message. -- Regards, Pavel Roskin From proski@gnu.org Sat Jun 17 00:33:48 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 099BB3B015A for ; Sat, 17 Jun 2006 00:33:48 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01828-10 for ; Sat, 17 Jun 2006 00:33:46 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id 8FE6D3B00CB for ; Sat, 17 Jun 2006 00:33:46 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FrRT5-0002yB-Q6 for mc-devel@gnome.org; Fri, 16 Jun 2006 23:27:27 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FrRT0-00025j-D6; Fri, 16 Jun 2006 23:27:22 -0400 Subject: Re: Symlink attack in file.c? From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150415636.2615.24.camel@athlon> References: <1150415636.2615.24.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Fri, 16 Jun 2006 23:27:22 -0400 Message-Id: <1150514842.29738.32.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 04:33:48 -0000 Hello, Leonard! On Fri, 2006-06-16 at 01:53 +0200, Leonard den Ottolander wrote: > Something I came across a couple of times this week, just now in > relation to an RFE regarding file permissions on copying fat files in > RHs bugzilla > (https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=195614): > http://cvs.savannah.gnu.org/viewcvs/mc/src/file.c?root=mc&r1=1.28&r2=1.29 > > A commit by "pavel" (Machek?) who added the remark > "FIXME: You have security hole here, btw. Imagine copying to /tmp and > symlink attack :-(" > > Is there anybody that can explain to me what he's concerned about and if > that is still an issue? If so this is a rather long standing hole... If > not, let's get rid of that warning. I think it's still an issue. Suppose the target doesn't exist. Then mc decides that it's OK to create the file and creates it. In the meantime, somebody could have created a symlink, so mc truncates the file pointed to by the symlink. It is a hole indeed, but it needs a good timing to be exploited. The attacker should know which file is about to be overwritten and the symlink should be created after mc has checked that the target doesn't exist, but before mc opens the file for writing. Since mc needs to be interactive, it's hard to avoid accessing the target file more than once. The simplest fix would be to use O_EXCL is there was no target file initially. If it fails for the reason that the file exists, there should be a huge warning that no user should be able to ignore. -- Regards, Pavel Roskin From niko_2501@yahoo.co.jp Wed Jun 14 02:52:08 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3C1A73B00A4 for ; Wed, 14 Jun 2006 02:52:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19764-06 for ; Wed, 14 Jun 2006 02:52:07 -0400 (EDT) Received: from web3704.mail.tnz.yahoo.co.jp (web3704.mail.tnz.yahoo.co.jp [203.216.226.186]) by menubar.gnome.org (Postfix) with SMTP id 5C6D73B000C for ; Wed, 14 Jun 2006 02:52:06 -0400 (EDT) Received: (qmail 50747 invoked by uid 60001); 14 Jun 2006 06:50:59 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=yj20050223; d=yahoo.co.jp; h=Message-ID:Received:Date:From:Subject:To:MIME-Version:Content-Type; b=fKfMo4MtcFdN3Oi44x+rUCTdRh804D+vSygKDCE2SnLqfIE0VSjG32inB55EtTlWaKDRmUId67rQxnl7zaB+WjYH1rDaTntn7UzdA4w9jA/f4iZEZp/9P9n5p/oH5Exk ; Message-ID: <20060614065059.50745.qmail@web3704.mail.tnz.yahoo.co.jp> Received: from [220.98.134.208] by web3704.mail.tnz.yahoo.co.jp via HTTP; Wed, 14 Jun 2006 15:50:59 JST Date: Wed, 14 Jun 2006 15:50:59 +0900 (JST) From: sipieter nicolas Subject: mc bugs To: mc-devel@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-2022-jp X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.709 tagged_above=-999 required=2 tests=[BAYES_50=0.001, DNS_FROM_RFC_POST=1.708] X-Spam-Score: 1.709 X-Spam-Level: * X-Mailman-Approved-At: Thu, 15 Jun 2006 08:58:02 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 06:52:08 -0000 hi there, i would like to say i use a lot mc, it's just great. lately i've been updating my website, and i discovered i could edit my document remotely with mc. (cd /#ftp:bleh:pass@some.ftp.net then push f4 key on the document i wish to edit....) it's really nice but, i've been experiencing problems, at least with the ftp server i use: when i edit documents it take some time, enough to be disconnected from ftp server. in that case mc just re-log me in and properly save the document .. so far so good, but, after a while working like that, mc seems unable from time to time to connect to the ftp server. i even get seg fault, or it just fail to connect randomly.. when this happen, the only choice left is to quit mc and re-launch it .. i would say, i spend between 1 and 10minutes on a document, and i do lots of em per day (maybe 100 or 200minimum) and i have to restart mc at least 20times... i would say something is wrong in the ftp code inside mc. thanks for your time and efforts, mc is really cool to use. -------------------------------------- Let's start Yahoo! Auction - Free Campaign Now! http://pr.mail.yahoo.co.jp/auction/ From ptsekov@gmx.net Sat Jun 17 02:59:14 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 42DB83B0744 for ; Sat, 17 Jun 2006 02:59:14 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11195-01 for ; Sat, 17 Jun 2006 02:59:12 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 7F8FF3B0302 for ; Sat, 17 Jun 2006 02:59:11 -0400 (EDT) Received: (qmail invoked by alias); 17 Jun 2006 06:58:19 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp020) with SMTP; 17 Jun 2006 08:58:19 +0200 X-Authenticated: #14308112 Date: Sat, 17 Jun 2006 09:57:06 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Pavel Roskin Subject: Re: Problems with the mailing list ? In-Reply-To: <1150514179.29738.20.camel@dv> Message-ID: References: <1150514179.29738.20.camel@dv> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 06:59:14 -0000 Hello Pavel, On Fri, 16 Jun 2006, Pavel Roskin wrote: > On Fri, 2006-06-16 at 18:57 +0300, Pavel Tsekov wrote: >> Hello, >> >> Does anyone miss messages from the mc-devel list ? It seems like some >> messages do not reach the mailing list at all while others don't reach >> the mailing list subcsribers. Can anyone confirm or deny this ? > > I have sent an email to the GNOME mailing list administrator. > > I don't see any delays or mail loss, but let's see what would happen to > this message. I got a copy of your reply which you CC-ed directly to me. The message destined to the mailing list is still not here though. I see that the mailing list software at mail.gnome.org has been changed - maybe the administrators are doing some kind of upgrade... From leonard@den.ottolander.nl Sat Jun 17 08:47:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C72863B075D for ; Sat, 17 Jun 2006 08:47:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22117-06 for ; Sat, 17 Jun 2006 08:47:18 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id BDA1E3B03E5 for ; Sat, 17 Jun 2006 08:47:18 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 788374023 for ; Sat, 17 Jun 2006 14:46:35 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id tXpVqRKSrvlX for ; Sat, 17 Jun 2006 14:46:33 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id EA55E4021 for ; Sat, 17 Jun 2006 14:46:32 +0200 (CEST) Subject: Re: mc bugs From: Leonard den Ottolander To: MC development In-Reply-To: <20060614065059.50745.qmail@web3704.mail.tnz.yahoo.co.jp> References: <20060614065059.50745.qmail@web3704.mail.tnz.yahoo.co.jp> Content-Type: text/plain Date: Sat, 17 Jun 2006 14:46:33 +0200 Message-Id: <1150548393.2528.12.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 12:47:22 -0000 Hello Sipieter, On Wed, 2006-06-14 at 15:50 +0900, sipieter nicolas wrote: > but, after a while working like that, mc seems unable from > time to time to connect to the ftp server. i even get seg > fault, or it just fail to connect randomly.. Connection failures are not necessarily a problem with mc (not saying the ftp code is perfect though ;) ). However, if you do see segmentation faults please open a bug report at http://savannah.gnu.org/bugs/?group=mc and attach a backtrace. Don't forget to mention system information and please do *not* report bugs against mc versions before 4.6.1. (Use ulimit -c 99999 to enable core dumps on your system. Use gdb and the bt command to get a backtrace.) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Sat Jun 17 08:54:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9B7C83B03E5 for ; Sat, 17 Jun 2006 08:54:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22162-08 for ; Sat, 17 Jun 2006 08:54:26 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 81F0C3B0165 for ; Sat, 17 Jun 2006 08:54:25 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id AAF4B4023; Sat, 17 Jun 2006 14:52:42 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id MvD+6iJVdikt; Sat, 17 Jun 2006 14:52:39 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 205F44021; Sat, 17 Jun 2006 14:52:39 +0200 (CEST) Subject: Bugzilla submits only against >= 4.6.1 From: Leonard den Ottolander To: Pavel Roskin Content-Type: text/plain Date: Sat, 17 Jun 2006 14:52:38 +0200 Message-Id: <1150548759.2528.20.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 12:54:27 -0000 Hello Pavel, IMO it doesn't make much sense for people to be able to report bugs against mc versions older than 4.6.1. I presume most developers will agree with me (please protest if not). Could you please update the Savannah bugs "Release" drop down menu to only contain the following elements? older than 4.6.1 (upgrade first!) 4.6.1 current (CVS or snapshot) I don't think we need the entries "All versions" and "None" but these might be hard coded default entries. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Sat Jun 17 09:02:22 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B72163B0165 for ; Sat, 17 Jun 2006 09:02:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22628-01 for ; Sat, 17 Jun 2006 09:02:21 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3F8343B000D for ; Sat, 17 Jun 2006 09:02:21 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FraOq-0003fU-00; Sat, 17 Jun 2006 08:59:40 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sat, 17 Jun 2006 14:59:39 +0200 Date: Sat, 17 Jun 2006 14:59:39 +0200 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060617-145938.sv26390.15283@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > <20060615-222730.sv50251.60290@savannah.gnu.org> In-Reply-To: <20060615-222730.sv50251.60290@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.552 tagged_above=-999 required=2 tests=[AWL=0.048, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.552 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 09:19:08 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 13:02:22 -0000 Follow-up Comment #21, bug #16762 (project mc): If Roland doesn't feel the need to add any remarks to this approach I suppose this patch can be submitted and this report closed. (I did not verify the code other than glancing over it, but I trust it to be ok ;) .) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sat Jun 17 11:52:37 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id DC5333B00A7 for ; Sat, 17 Jun 2006 11:52:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26174-02 for ; Sat, 17 Jun 2006 11:52:35 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 81C363B000D for ; Sat, 17 Jun 2006 11:52:35 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Frd56-0001Zf-00; Sat, 17 Jun 2006 11:51:28 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sat, 17 Jun 2006 18:51:25 +0300 Date: Sat, 17 Jun 2006 18:51:25 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Opera/8.51 (Windows ME; U; en) X-Apparently-From: 87.126.52.205 (Savane authenticated user ptsekov) Message-Id: <20060617-185125.sv36205.47362@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > <20060615-222730.sv50251.60290@savannah.gnu.org> <20060617-145938.sv26390.15283@savannah.gnu.org> In-Reply-To: <20060617-145938.sv26390.15283@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.514 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TV=0.077] X-Spam-Score: -2.514 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 09:19:08 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 15:52:37 -0000 Update of bug #16762 (project mc): Status: None => Fixed Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #22: I've just commited the patch. It should be OK. It was tested and reported to work by Pavel Shirshov, purportex and yaroslav. If coreutils configure tests are modified to include tests for: 1) the presence of field f_fstypename in struct statvfs 2) the type of the first argument ot getmntinfo() we will remove the homebrew tests from AC_GET_FS_INFO and use those provided by coreutils. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sat Jun 17 15:48:22 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4F4D33B074C for ; Sat, 17 Jun 2006 15:48:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05618-08 for ; Sat, 17 Jun 2006 15:48:21 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id C83323B01A6 for ; Sat, 17 Jun 2006 15:48:20 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrgRN-0008Lb-00; Sat, 17 Jun 2006 15:26:41 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sat, 17 Jun 2006 21:26:40 +0200 Date: Sat, 17 Jun 2006 21:26:40 +0200 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060617-212640.sv26390.65809@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > <20060615-222730.sv50251.60290@savannah.gnu.org> <20060617-145938.sv26390.15283@savannah.gnu.org> <20060617-185125.sv36205.47362@savannah.gnu.org> In-Reply-To: <20060617-185125.sv36205.47362@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.514 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TV=0.077] X-Spam-Score: -2.514 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 09:19:08 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 19:48:22 -0000 Follow-up Comment #23, bug #16762 (project mc): > If coreutils configure tests are modified to include tests for: > > 1) the presence of field f_fstypename in struct statvfs > > 2) the type of the first argument ot getmntinfo() > > we will remove the homebrew tests from AC_GET_FS_INFO and use > those provided by coreutils. Have you contacted the coreutils maintainers about this? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sat Jun 17 15:48:23 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9AC3F3B033C for ; Sat, 17 Jun 2006 15:48:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05730-03 for ; Sat, 17 Jun 2006 15:48:21 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 688E63B02E2 for ; Sat, 17 Jun 2006 15:48:21 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrgZ2-0001NR-00; Sat, 17 Jun 2006 15:34:36 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sat, 17 Jun 2006 22:34:36 +0300 Date: Sat, 17 Jun 2006 22:34:36 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Opera/8.51 (Windows ME; U; en) X-Apparently-From: 87.126.52.205 (Savane authenticated user ptsekov) Message-Id: <20060617-223436.sv36205.11011@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > <20060615-222730.sv50251.60290@savannah.gnu.org> <20060617-145938.sv26390.15283@savannah.gnu.org> <20060617-185125.sv36205.47362@savannah.gnu.org> <20060617-212640.sv26390.65809@savannah.gnu.org> In-Reply-To: <20060617-212640.sv26390.65809@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.552 tagged_above=-999 required=2 tests=[AWL=0.048, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.552 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 09:19:08 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 19:48:23 -0000 Follow-up Comment #24, bug #16762 (project mc): No. Maybe you can drop them a message ? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 10:58:13 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B73953B08E2 for ; Sun, 18 Jun 2006 10:58:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31385-03 for ; Sun, 18 Jun 2006 10:58:12 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id DED683B0078 for ; Sun, 18 Jun 2006 10:58:11 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrygF-0006eY-00; Sun, 18 Jun 2006 10:55:15 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 14:55:15 +0000 Date: Sun, 18 Jun 2006 14:55:15 +0000 To: hajma , mc-devel@gnome.org Subject: [bug #16871] czech translation - description overlaps in the chmod dialogue From: hajma X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16871 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060531 Mandriva/1.5.0.4-1mdv2007.0 (2007.0) Firefox/1.5.0.4 X-Apparently-From: 82.208.37.13 (Savane authenticated user tropikhajma) Message-Id: <20060618-145515.sv50336.41107@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.555 tagged_above=-999 required=2 tests=[AWL=0.045, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.555 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 14:58:13 -0000 URL: Summary: czech translation - description overlaps in the chmod dialogue Project: GNU Midnight Commander Submitted by: tropikhajma Submitted on: Sunday 06/18/2006 at 14:55 Category: None Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Linux _______________________________________________________ Details: see screenshot: ftp://tropikhajma.vserver.cz/bugs/mc.png the first two lines of the "File" rectangle get overwritten by text from the "mode" rectangle. IMHO replacing číslo uĹživatele with UID would make it. Side note: caron is missing above the second e in "změne" and the word "nastavenĂ­" should follow the word "změně" _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 11:22:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 468D33B0CB2 for ; Sun, 18 Jun 2006 11:22:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00310-01 for ; Sun, 18 Jun 2006 11:22:30 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 482A53B0CD0 for ; Sun, 18 Jun 2006 11:22:29 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Frymc-0007y2-00; Sun, 18 Jun 2006 11:01:50 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 15:01:50 +0000 Date: Sun, 18 Jun 2006 15:01:50 +0000 To: Istvan Kispal , mc-devel@gnome.org Subject: [bug #16872] ftpfs lists directories begining with '2006 ' incorrectly From: Istvan Kispal X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16872 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.4) Gecko/20060508 Firefox/1.5.0.4 X-Apparently-From: 81.183.183.18 (Savane authenticated user kispaljr) Message-Id: <20060618-150150.sv50338.79195@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.554 tagged_above=-999 required=2 tests=[AWL=0.046, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.554 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 15:22:36 -0000 URL: Summary: ftpfs lists directories begining with '2006 ' incorrectly Project: GNU Midnight Commander Submitted by: kispaljr Submitted on: Sunday 06/18/2006 at 15:01 Category: VFS Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Linux _______________________________________________________ Details: if a directory on an ftp server has the following subdirectories: 1990 06 19 hetfo 2005 06 23 akarmi 2006 06 23 akarmi then they are listed in mc (console mode version, using ftpfs) incorrectly as: 06 19 hetfo 06 23 akarmi 06 23 akarmi if you type cd 2006 06 19 hetfo manually then you can cd into the subdir, but not with taping enter on the (incorrectly listed) directory name. it's rather uncomofortable. _______________________________________________________ Carbon-Copy List: CC Address | Comment ------------------------------------+----------------------------- kispaljr | _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 11:34:10 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D616B3B0CB1 for ; Sun, 18 Jun 2006 11:34:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00460-07 for ; Sun, 18 Jun 2006 11:34:09 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 78DD03B0C2B for ; Sun, 18 Jun 2006 11:34:09 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrzGu-0005Zh-00; Sun, 18 Jun 2006 11:33:08 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 17:33:07 +0200 Date: Sun, 18 Jun 2006 17:33:07 +0200 To: hajma , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16871] czech translation - description overlaps in the chmod dialogue From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16871 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060618-173307.sv26390.76425@savannah.gnu.org> References: <20060618-145515.sv50336.41107@savannah.gnu.org> In-Reply-To: <20060618-145515.sv50336.41107@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.554 tagged_above=-999 required=2 tests=[AWL=0.046, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.554 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 15:34:11 -0000 Update of bug #16871 (project mc): Status: None => Need Info Assigned to: None => leonardjo _______________________________________________________ Follow-up Comment #1: Please provide a patch. Mske sure you use the correct character set in the file. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 12:09:52 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3B8693B0CD1 for ; Sun, 18 Jun 2006 12:09:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01904-07 for ; Sun, 18 Jun 2006 12:09:51 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 113B43B0CD5 for ; Sun, 18 Jun 2006 12:09:51 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Frzol-0007KE-00; Sun, 18 Jun 2006 12:08:07 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 18:08:05 +0200 Date: Sun, 18 Jun 2006 18:08:05 +0200 To: Istvan Kispal , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16872] ftpfs lists directories begining with '2006 ' incorrectly From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16872 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060618-180805.sv26390.79688@savannah.gnu.org> References: <20060618-150150.sv50338.79195@savannah.gnu.org> In-Reply-To: <20060618-150150.sv50338.79195@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 16:09:52 -0000 Update of bug #16872 (project mc): Status: None => Duplicate Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #1: Be so kind to check for exisiting reports before submitting new reports. This is a duplicate of 10645 and 4327. This issue has been fixed in CVS. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 12:13:08 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8693F3B0CC5 for ; Sun, 18 Jun 2006 12:12:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02109-10 for ; Sun, 18 Jun 2006 12:12:49 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id E95503B0AA3 for ; Sun, 18 Jun 2006 12:12:48 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Frzpt-0007L8-00; Sun, 18 Jun 2006 12:09:17 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 16:09:17 +0000 Date: Sun, 18 Jun 2006 16:09:17 +0000 To: hajma , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16871] czech translation - description overlaps in the chmod dialogue From: hajma X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16871 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060531 Mandriva/1.5.0.4-1mdv2007.0 (2007.0) Firefox/1.5.0.4 X-Apparently-From: 82.208.37.13 (Savane authenticated user tropikhajma) Message-Id: <20060618-160916.sv50336.88803@savannah.gnu.org> References: <20060618-145515.sv50336.41107@savannah.gnu.org> <20060618-173307.sv26390.76425@savannah.gnu.org> In-Reply-To: <20060618-173307.sv26390.76425@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 16:13:09 -0000 Follow-up Comment #2, bug #16871 (project mc): I found out that the bug was fixed in revision 1.67 of cs.po, it just didn't make it into mc-4.6.1 in Mandriva Cooker I'm using. as regards the side note I attach corrected cs.po that fixes it. _______________________________________________________ Additional Item Attachment: File name: cs.po Size:73 KB cs.po _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 12:13:09 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 82DF63B0C4F for ; Sun, 18 Jun 2006 12:12:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01996-09 for ; Sun, 18 Jun 2006 12:12:49 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 690A33B0C35 for ; Sun, 18 Jun 2006 12:12:48 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrzsE-0007MO-00; Sun, 18 Jun 2006 12:11:42 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 18:11:42 +0200 Date: Sun, 18 Jun 2006 18:11:42 +0200 To: hajma , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16871] czech translation - description overlaps in the chmod dialogue From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16871 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060618-181142.sv26390.23707@savannah.gnu.org> References: <20060618-145515.sv50336.41107@savannah.gnu.org> <20060618-173307.sv26390.76425@savannah.gnu.org> <20060618-160916.sv50336.88803@savannah.gnu.org> In-Reply-To: <20060618-160916.sv50336.88803@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 16:13:09 -0000 Update of bug #16871 (project mc): Status: Need Info => Invalid Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #3: Ok. Closing "invalid" as the issue didn't exist anymore when the issue was reported. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From proski@gnu.org Mon Jun 19 17:50:46 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 51A1F3B05A8 for ; Mon, 19 Jun 2006 17:50:46 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02882-07 for ; Mon, 19 Jun 2006 17:50:45 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id A34B13B03BA for ; Mon, 19 Jun 2006 17:50:44 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FsRcm-00020v-BN for mc-devel@gnome.org; Mon, 19 Jun 2006 17:49:36 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FsRcg-0003zX-7s; Mon, 19 Jun 2006 17:49:30 -0400 Subject: Re: Bugzilla submits only against >= 4.6.1 From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150548759.2528.20.camel@athlon> References: <1150548759.2528.20.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Mon, 19 Jun 2006 17:49:30 -0400 Message-Id: <1150753770.12841.19.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 21:50:46 -0000 Hello! On Sat, 2006-06-17 at 14:52 +0200, Leonard den Ottolander wrote: > Hello Pavel, > > IMO it doesn't make much sense for people to be able to report bugs > against mc versions older than 4.6.1. I presume most developers will > agree with me (please protest if not). > > Could you please update the Savannah bugs "Release" drop down menu to > only contain the following elements? > > older than 4.6.1 (upgrade first!) > 4.6.1 > current (CVS or snapshot) I think that would be solving a social problem using technical means. If you check Red Hat's Bugzilla you'll see that it's possible to enter a bug e.g. for Fedora Core 1. Some bugs can be more long-lived than you may think. I believe the quality of the bug report should be judged not only by the version. Bugs against old versions should be discouraged, but not outright forbidden. Besides, there is only one bug filed for "older than 4.5.55". > I don't think we need the entries "All versions" and "None" but these > might be hard coded default entries. "None" is hardcoded, "All versions" is not. I think "all version" is a valid value in some cases. -- Regards, Pavel Roskin From leonard@den.ottolander.nl Mon Jun 19 19:04:28 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5EEEE3B0A79 for ; Mon, 19 Jun 2006 19:04:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06061-07 for ; Mon, 19 Jun 2006 19:04:27 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id DF06B3B0335 for ; Mon, 19 Jun 2006 19:04:26 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id BFCB94023; Tue, 20 Jun 2006 01:02:55 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 752vGUiocrMK; Tue, 20 Jun 2006 01:02:50 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 25F3E4021; Tue, 20 Jun 2006 01:02:50 +0200 (CEST) Subject: Re: Bugzilla submits only against >= 4.6.1 From: Leonard den Ottolander To: Pavel Roskin In-Reply-To: <1150753770.12841.19.camel@dv> References: <1150548759.2528.20.camel@athlon> <1150753770.12841.19.camel@dv> Content-Type: text/plain Date: Tue, 20 Jun 2006 01:02:49 +0200 Message-Id: <1150758169.2571.7.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 23:04:28 -0000 Hello Pavel, On Mon, 2006-06-19 at 17:49 -0400, Pavel Roskin wrote: > Some bugs can be more long-lived than you may think. I believe the > quality of the bug report should be judged not only by the version. > Bugs against old versions should be discouraged, but not outright > forbidden. > > Besides, there is only one bug filed for "older than 4.5.55". I didn't mean old bugs should be removed from the bug list. I just feel it doesn't make much sense for people to file new bugs against anything older than 4.6.1. There is no added value to let people add bugs against older versions. If the issue no longer exists it's just wasted time, and if it does still exist the reporter should make the effort to verify the issue indeed still exists in 4.6.1 or later. > "None" is hardcoded, "All versions" is not. I think "all version" is a > valid value in some cases. Yes, but only if you keep all the other versions as valid options. If we'd drop anything but latest stable and CVS there's not much use leaving "all versions" around. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From proski@gnu.org Tue Jun 20 14:08:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1A9943B02AC for ; Tue, 20 Jun 2006 14:08:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02911-01 for ; Tue, 20 Jun 2006 14:08:18 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id 921CB3B000C for ; Tue, 20 Jun 2006 14:08:18 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1Fskdk-00031J-4G for mc-devel@gnome.org; Tue, 20 Jun 2006 14:08:01 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FskdX-0005Ef-Ch; Tue, 20 Jun 2006 14:07:39 -0400 Subject: Re: Bugzilla submits only against >= 4.6.1 From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150758169.2571.7.camel@athlon> References: <1150548759.2528.20.camel@athlon> <1150753770.12841.19.camel@dv> <1150758169.2571.7.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 20 Jun 2006 14:07:39 -0400 Message-Id: <1150826859.1969.7.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.595 tagged_above=-999 required=2 tests=[AWL=0.005, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.595 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 18:08:27 -0000 On Tue, 2006-06-20 at 01:02 +0200, Leonard den Ottolander wrote: > I didn't mean old bugs should be removed from the bug list. I just feel > it doesn't make much sense for people to file new bugs against anything > older than 4.6.1. > > There is no added value to let people add bugs against older versions. Anyone who takes time to file a new bug is adding some value to the project. It may be more or less valuable, but we shouldn't give the impression that we don't want to hear about the problem. > If the issue no longer exists it's just wasted time, and if it does > still exist the reporter should make the effort to verify the issue > indeed still exists in 4.6.1 or later. Ideally, yes. But not everyone can do it. It's better to have 10 reports for already fixed bugs and one for a bug that still exists than to have neither of them. If you have an example where time was wasted as a result of the availability of the older versions in the bug tracker, I may reconsider. > > "None" is hardcoded, "All versions" is not. I think "all version" is a > > valid value in some cases. > > Yes, but only if you keep all the other versions as valid options. If > we'd drop anything but latest stable and CVS there's not much use > leaving "all versions" around. I generally assume the bug reporters to be intelligent persons who can make there own judgment how to file a bug. -- Regards, Pavel Roskin From ptsekov@gmx.net Tue Jun 20 14:28:43 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 409073B08C6 for ; Tue, 20 Jun 2006 14:28:43 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04451-05 for ; Tue, 20 Jun 2006 14:28:38 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 586743B06E3 for ; Tue, 20 Jun 2006 14:28:33 -0400 (EDT) Received: (qmail invoked by alias); 20 Jun 2006 18:28:32 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp034) with SMTP; 20 Jun 2006 20:28:32 +0200 X-Authenticated: #14308112 Date: Tue, 20 Jun 2006 21:27:19 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: "Stan. S. Krupoderov" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <20060620060123.GD99474@inode.hvn> Message-ID: References: <20060620060123.GD99474@inode.hvn> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: mc@gnome.org, MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 18:28:43 -0000 Hello Stan, On Tue, 20 Jun 2006, Stan. S. Krupoderov wrote: > This Midnight Commander build is modified to use Colorer-take5 as a syntax highlighting engine in standard mc editor. > http://colorer.sourceforge.net/mc.html That's just great! > Maybe it can be useful for someone. Any opinions? Sure it will! Some time ago I tried myself to get colorer to work with MC. Unfortunately due to time constraints I abandoned the idea - I just didn't have enough time to study how colorer works properly. I've downloaded MC-Colorer's source tarball today and I took a look at the code. Though I haven't studied the code in depth I can say that it seems pretty high quality. After all it is written by the colorer's author himself - who could understand better how colorer works :) I'll try to contact him and see what he thinks about integrating his work into MC's source tree. It would be also very useful if we could use the work done on MC-Colorer to get syntax highlighting in the viewer too - this was one of the tasks I was trying to achieve when I started investigating colorer. Thanks! From irusskih@gmail.com Wed Jun 21 08:50:40 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6E7343B0F9B for ; Wed, 21 Jun 2006 08:50:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05808-06 for ; Wed, 21 Jun 2006 08:50:35 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.198]) by menubar.gnome.org (Postfix) with ESMTP id 0490A3B0FE0 for ; Wed, 21 Jun 2006 08:50:33 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id s1so170251nze for ; Wed, 21 Jun 2006 05:50:33 -0700 (PDT) Received: by 10.37.13.61 with SMTP id q61mr445036nzi; Wed, 21 Jun 2006 05:50:33 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Wed, 21 Jun 2006 05:50:33 -0700 (PDT) Message-ID: <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> Date: Wed, 21 Jun 2006 16:50:33 +0400 From: "Igor Russkih" To: mc@gnome.org, mc-devel@gnome.org Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_Part_1775_638873.1150894233203" References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.225 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, HTML_30_40=0.374, HTML_MESSAGE=0.001, SPF_PASS=-0.001] X-Spam-Score: -2.225 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 12:50:40 -0000 ------=_Part_1775_638873.1150894233203 Content-Type: multipart/alternative; boundary="----=_Part_1776_131830.1150894233203" ------=_Part_1776_131830.1150894233203 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi Pavel, Hi All, I'll be really glad to help to improve MC in this area, I've downloaded MC-Colorer's source tarball today and I took > a look at the code. Though I haven't studied the code in depth > I can say that it seems pretty high quality. After all it is > written by the colorer's author himself - who could understand > better how colorer works :) I'll try to contact him and see what > he thinks about integrating his work into MC's source tree. It If somebody is interested, attached is a full diff on MC tree to support colorer. For now I'm using sf.net SVN repository to store modified MC code. Information on how to access it: http://sourceforge.net/svn/?group_id=34855 There are also some questions which I believe should be discussed. At first there is one C++ file in this mod (to link with c++ colorer code). As far as I understand MC uses C only. Is this a problem? Another is that this mod dynamically links to the libcolorer - this means that to use it, colorer library should be installed in system. This introduces MC additional dependency. would be also very useful if we could use the work done on MC-Colorer > to get syntax highlighting in the viewer too - this was one of the > tasks I was trying to achieve when I started investigating colorer. > That's a good idea, I'll try investigate it in near time. -- Igor ------=_Part_1776_131830.1150894233203 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline
Hi Pavel, Hi All,

I'll be really glad to help to improve MC in this area,

I've downloaded MC-Colorer's source tarball today and I took
a look at the code. Though I haven't studied the code in depth
I can say that it seems pretty high quality. After all it is
written by the colorer's author himself - who could understand
better how colorer works :) I'll try to contact him and see what
he thinks about integrating his work into MC's source tree. It

If somebody is interested, attached is a full diff on MC tree to support colorer.

For now I'm using sf.net SVN repository to store modified MC code.
Information on how to access it: http://sourceforge.net/svn/?group_id=34855

There are also some questions which I believe should be discussed.
At first there is one C++ file in this mod (to link with c++ colorer code). As far as I understand MC uses C only. Is this a problem?
Another is that this mod dynamically links to the libcolorer - this means that to use it, colorer library should be installed in system. This introduces MC additional dependency.

would be also very useful if we could use the work done on MC-Colorer
to get syntax highlighting in the viewer too - this was one of the
tasks I was trying to achieve when I started investigating colorer.

That's a good idea, I'll try investigate it in near time.

--
  Igor


------=_Part_1776_131830.1150894233203-- ------=_Part_1775_638873.1150894233203 Content-Type: application/x-gzip; name=mccolorer.diff.gz Content-Transfer-Encoding: base64 X-Attachment-Id: f_eopn4lol Content-Disposition: attachment; filename="mccolorer.diff.gz" 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 /wGW3psI2yABAA== ------=_Part_1775_638873.1150894233203-- From leonard@den.ottolander.nl Wed Jun 21 10:03:05 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E951D3B103C for ; Wed, 21 Jun 2006 10:03:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10784-07 for ; Wed, 21 Jun 2006 10:03:01 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 0180D3B1033 for ; Wed, 21 Jun 2006 10:03:00 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id DDE3C4023; Wed, 21 Jun 2006 16:02:57 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id M5kjYx2Phqne; Wed, 21 Jun 2006 16:02:54 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 05A1E4021; Wed, 21 Jun 2006 16:02:53 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: Igor Russkih In-Reply-To: <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> Content-Type: text/plain Date: Wed, 21 Jun 2006 16:02:52 +0200 Message-Id: <1150898573.2801.45.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 14:03:05 -0000 Hello Igor, On Wed, 2006-06-21 at 16:50 +0400, Igor Russkih wrote: > I'll be really glad to help to improve MC in this area, This looks really nice. I'm very exited. With just minor patching to the xml (introduction of ControlKeyword, eg "if", "else" etc.) and a custom colour scheme I've already got the php syntax looking much like the original in mc (where can I send patches? Is there a mailing list for colorer?). Only have to look at the String type as we normally distinguish between single quoted (FixedString) and double quoted (VariableString) in php (and perl too for that matter). Although the startup of the viewer seems a bit slow with colorer this has much added value over the default syntax highlighting, and although I think we could well include the colorer hooks in the main mc tree I don't believe we should drop the existing highlighting, over even make colorer the default. Firstly the default syntax is more lightweight, which some people might prefer. Secondly the use of colorer requires the installation of a(n extra) third party library. > If somebody is interested, attached is a full diff on MC tree to > support colorer. Is this a fully functional patch? Much lighter than the diff I got diffing your tarball against CVS :) . In that patch I noticed a couple of things: - You got rid of the COPYING.LGPL file in vfs. I think this might be a mistake on your part. You might want to rectify that for your version. - In your version you got rid of the pipethrough files. This has no bearing on us as it's not in your patch. - There are a lot of fixes to the po files and some to the Russian and Serbian(?) man page. Please submit these to this list separately. - I noticed a CR here and there. There seem to be even more in the patch you sent. Please get rid of those (fe with dos2unix). - You made some fixes to the config files as well that seem same. Please submit those separately for review. - I noticed changes in vfs/samba/configure. Most of this are somewhat odd whitespace changes, but there appear to be some hunks at the top and bottom to actually do something. Please submit (not the whitespace) :) . - Why did you get rid of vfs/extfs/README.it? (not much of an issue) - There are a lot of added comments/fixes in config.h.in that I do not see in your patch. Please submit separately. > For now I'm using sf.net SVN repository to store modified MC code. > Information on how to access it: > http://sourceforge.net/svn/?group_id=34855 Good to know. > There are also some questions which I believe should be discussed. > At first there is one C++ file in this mod (to link with c++ colorer > code). As far as I understand MC uses C only. Is this a problem? Yes, it might. The overall approach towards accepted language constructs is a bit conservative to maintain compatibility with older systems. Would it be much work to rewrite these parts? > Another is that this mod dynamically links to the libcolorer - this > means that to use it, colorer library should be installed in system. > This introduces MC additional dependency. This is why I do not want to make colorer the default. I think this is something we should leave to the distributions. > to get syntax highlighting in the viewer too > That's a good idea, I'll try investigate it in near time. That would be great. Thanks a lot! Leonard. P.S. Could you please set your mail client to produce plain text mails and use an indentation character and a "replying to" line for quotes? -- mount -t life -o ro /dev/dna /genetic/research From ptsekov@gmx.net Wed Jun 21 10:28:00 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8E9D53B106A for ; Wed, 21 Jun 2006 10:28:00 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12487-02 for ; Wed, 21 Jun 2006 10:27:59 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 7C4863B106C for ; Wed, 21 Jun 2006 10:27:58 -0400 (EDT) Received: (qmail invoked by alias); 21 Jun 2006 14:27:57 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp032) with SMTP; 21 Jun 2006 16:27:57 +0200 X-Authenticated: #14308112 Date: Wed, 21 Jun 2006 17:26:43 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole Cc: MC development Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150898573.2801.45.camel@athlon> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 14:28:00 -0000 On Wed, 21 Jun 2006, Leonard den Ottolander wrote: >> There are also some questions which I believe should be discussed. >> At first there is one C++ file in this mod (to link with c++ colorer >> code). As far as I understand MC uses C only. Is this a problem? > > Yes, it might. The overall approach towards accepted language constructs > is a bit conservative to maintain compatibility with older systems. > Would it be much work to rewrite these parts? Yes it will take a lot of work - colorer is written entirely in C++ . Thus there is a thin wrapper to translate from C to C++ and vice versa. In my opinion this is not a big deal and a necessary sacrifice. For system which do not have C++ support obviously colorer syntax highlighting would be disabled by configure. Since I have tried to embed colorer in MC in the past I have configure code that deals with those issues. >> Another is that this mod dynamically links to the libcolorer - this >> means that to use it, colorer library should be installed in system. >> This introduces MC additional dependency. > > This is why I do not want to make colorer the default. I think this is > something we should leave to the distributions. This we are not going to make it the default (at least not at this time). This can be achieved with configure too - I have code for that too. I still haven't looked at the patch that Igor sent today but I'll do that as soon as I get some free time. I am willing to make the necessary changes to MC to adopt Igor's patch. I think patch has great value. From leonard@den.ottolander.nl Wed Jun 21 11:04:35 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 10A383B0FA5 for ; Wed, 21 Jun 2006 11:04:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15002-05 for ; Wed, 21 Jun 2006 11:04:34 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id CE3943B0FDD for ; Wed, 21 Jun 2006 11:04:33 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id BE3F44023 for ; Wed, 21 Jun 2006 17:04:32 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id nGjmWqt66RAz for ; Wed, 21 Jun 2006 17:04:31 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 428F34021 for ; Wed, 21 Jun 2006 17:04:31 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> Content-Type: text/plain Date: Wed, 21 Jun 2006 17:04:30 +0200 Message-Id: <1150902270.2801.52.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 15:04:35 -0000 Hello Pavel, On Wed, 2006-06-21 at 17:26 +0300, Pavel Tsekov wrote: > Yes it will take a lot of work - colorer is written entirely in C++ . > Thus there is a thin wrapper to translate from C to C++ and vice > versa. In my opinion this is not a big deal and a necessary sacrifice. I'm not sure what you say here: Is it a necessary sacrifice to port syntax-colorer.cpp to c or is it a necessary sacrifice to include c++ code into the tree? I'd rather go for the first option. > This can be achieved with configure too - I have code for that too. All it needs is the current default in the patch to change. > I still haven't looked at the patch that Igor sent today but I'll > do that as soon as I get some free time. I am willing to make the > necessary changes to MC to adopt Igor's patch. Maybe Igor is just as willing to make some changes to the patch for mc to adopt it ;) . > I think patch has great value. We totally agree then :-) . Leonard. -- mount -t life -o ro /dev/dna /genetic/research From ptsekov@gmx.net Wed Jun 21 11:46:22 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6005D3B106E for ; Wed, 21 Jun 2006 11:46:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18001-02 for ; Wed, 21 Jun 2006 11:46:20 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 72F443B1076 for ; Wed, 21 Jun 2006 11:46:19 -0400 (EDT) Received: (qmail invoked by alias); 21 Jun 2006 15:46:17 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp036) with SMTP; 21 Jun 2006 17:46:17 +0200 X-Authenticated: #14308112 Date: Wed, 21 Jun 2006 18:45:04 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150902270.2801.52.camel@athlon> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <1150902270.2801.52.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 15:46:22 -0000 On Wed, 21 Jun 2006, Leonard den Ottolander wrote: > Hello Pavel, > > On Wed, 2006-06-21 at 17:26 +0300, Pavel Tsekov wrote: >> Yes it will take a lot of work - colorer is written entirely in C++ . >> Thus there is a thin wrapper to translate from C to C++ and vice >> versa. In my opinion this is not a big deal and a necessary sacrifice. > > I'm not sure what you say here: Is it a necessary sacrifice to port > syntax-colorer.cpp to c or is it a necessary sacrifice to include c++ > code into the tree? I'd rather go for the first option. You cannot avoid the inclusion of C++ code. colorer is written in C++ and as such it cannot be linked directly with MC. You'll need a wrapper which must be compiled with C++ compiler. We can discuss however where to put that code ? It can be moved into a directory of its own or it can be left where it is now. From INVALID.NOREPLY@gnu.org Wed Jun 21 13:36:11 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B39933B0646 for ; Wed, 21 Jun 2006 13:36:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25350-05 for ; Wed, 21 Jun 2006 13:36:07 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 95CA53B0578 for ; Wed, 21 Jun 2006 13:36:05 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6cP-0008Df-00; Wed, 21 Jun 2006 13:35:57 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:35:56 +0200 Date: Wed, 21 Jun 2006 19:35:56 +0200 To: SGh , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16303] More functionally u7z From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16303 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-193556.sv26390.77497@savannah.gnu.org> References: <20060408-134359.sv45177.11632@savannah.gnu.org> <20060408-134508.sv45177.86924@savannah.gnu.org> <20060408-134854.sv45177.29103@savannah.gnu.org> <20060518-165152.sv36205.74443@savannah.gnu.org> <20060530-195233.sv45177.57929@savannah.gnu.org> In-Reply-To: <20060530-195233.sv45177.57929@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.558 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.558 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:36:11 -0000 Follow-up Comment #4, bug #16303 (project mc): It's easier to see what changed (and if there are unwanted regressions) if you patch the existing version instead of writing a new version from scratch. So if you want to get any improvements considered for inclusion you will have to rewrite your patch. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 13:37:06 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 36E093B014E for ; Wed, 21 Jun 2006 13:37:06 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25325-10 for ; Wed, 21 Jun 2006 13:37:04 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 66A103B059D for ; Wed, 21 Jun 2006 13:37:04 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6cj-0008JI-00; Wed, 21 Jun 2006 13:36:17 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:36:17 +0200 Date: Wed, 21 Jun 2006 19:36:17 +0200 To: Rudolf Polzer , Oswald Buddenhagen , Roland Illig , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16452] mcedit forgets POSIX newline at end of file From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16452 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-193617.sv26390.27833@savannah.gnu.org> References: <20060427-072754.sv49027.45360@savannah.gnu.org> <20060427-180523.sv41304.99027@savannah.gnu.org> <20060427-214753.sv49027.21116@savannah.gnu.org> <20060427-215010.sv49027.73709@savannah.gnu.org> <20060429-101230.sv20990.85981@savannah.gnu.org> <20060429-102521.sv41304.56758@savannah.gnu.org> <20060429-091823.sv49027.23806@savannah.gnu.org> In-Reply-To: <20060429-091823.sv49027.23806@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.559 tagged_above=-999 required=2 tests=[AWL=0.041, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.559 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:37:06 -0000 Follow-up Comment #7, bug #16452 (project mc): Any patches forthcoming? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 13:37:35 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 426863B04F6 for ; Wed, 21 Jun 2006 13:37:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25593-02 for ; Wed, 21 Jun 2006 13:37:34 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id E733D3B0494 for ; Wed, 21 Jun 2006 13:37:33 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6dv-0008Pw-00; Wed, 21 Jun 2006 13:37:31 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:37:31 +0200 Date: Wed, 21 Jun 2006 19:37:31 +0200 To: Rolf Offermanns , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16383] Build system does not allow cross compiling From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16383 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-193731.sv26390.16849@savannah.gnu.org> References: <20060419-132319.sv48822.2441@savannah.gnu.org> In-Reply-To: <20060419-132319.sv48822.2441@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.56 tagged_above=-999 required=2 tests=[AWL=0.040, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.56 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:37:35 -0000 Follow-up Comment #1, bug #16383 (project mc): Please provide a patch. Thanks. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 13:47:41 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1B4753B063E for ; Wed, 21 Jun 2006 13:47:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26098-05 for ; Wed, 21 Jun 2006 13:47:39 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 2A6D33B00B0 for ; Wed, 21 Jun 2006 13:47:39 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6nT-0001MS-00; Wed, 21 Jun 2006 13:47:23 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:47:23 +0200 Date: Wed, 21 Jun 2006 19:47:23 +0200 To: PB , Leonard den Ottolander , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #15621] file/dir entries with international characters mess up the columns From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 15621 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-194722.sv26390.13446@savannah.gnu.org> References: <20060204-101232.sv47152.80354@savannah.gnu.org> <20060211-093708.sv47312.65124@savannah.gnu.org> In-Reply-To: <20060211-093708.sv47312.65124@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.561 tagged_above=-999 required=2 tests=[AWL=0.039, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.561 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:47:41 -0000 Update of bug #15621 (project mc): Status: None => Duplicate Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #2: This is a duplicate of bug 7936 and bug 15100. Please check for existing bug reports before submitting. If you do submit please specify your platform, the version of mc used and if any patches have been applied. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Wed Jun 21 14:07:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5C2753B0706 for ; Wed, 21 Jun 2006 14:07:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27026-09 for ; Wed, 21 Jun 2006 14:07:15 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 1053F3B0733 for ; Wed, 21 Jun 2006 14:07:15 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 257144023; Wed, 21 Jun 2006 20:07:14 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id tHnFxEPUHYqg; Wed, 21 Jun 2006 20:07:12 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 513C24021; Wed, 21 Jun 2006 20:07:12 +0200 (CEST) Subject: Progress bar From: Leonard den Ottolander To: Pavel Tsekov Content-Type: text/plain Date: Wed, 21 Jun 2006 20:07:11 +0200 Message-Id: <1150913231.2801.73.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 18:07:16 -0000 Hello Pavel, Looking at bugs 10507 and 13100. The patch from Hampa Hug that you've committed should fix the issue for moving files. Does it also fix the issue when copying files? Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Wed Jun 21 14:07:52 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 025663B06D1 for ; Wed, 21 Jun 2006 14:07:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27422-01 for ; Wed, 21 Jun 2006 14:07:49 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id DD4563B05EB for ; Wed, 21 Jun 2006 14:07:48 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft778-00051S-00; Wed, 21 Jun 2006 14:07:42 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 20:07:42 +0200 Date: Wed, 21 Jun 2006 20:07:42 +0200 To: Thomas Zajic , Leonard den Ottolander , Oleg Broytmann , Rihards , mc-devel@gnome.org Subject: [bug #13100] Bytes and Count progess bars when moving multiple files From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 13100 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-200741.sv26390.85621@savannah.gnu.org> References: <20050516-170931.sv14402.91225@savannah.gnu.org> In-Reply-To: <20050516-170931.sv14402.91225@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.562 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.562 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 18:07:52 -0000 Update of bug #13100 (project mc): Status: None => Duplicate Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #1: This is a duplicate of bug 10507. Should be fixed by the patch from Hampa Hug to file_move_move() in file.c. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Wed Jun 21 14:56:53 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7BFFF3B0235 for ; Wed, 21 Jun 2006 14:56:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30644-03 for ; Wed, 21 Jun 2006 14:56:52 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id A71023B02AF for ; Wed, 21 Jun 2006 14:56:51 -0400 (EDT) Received: (qmail invoked by alias); 21 Jun 2006 18:56:50 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp042) with SMTP; 21 Jun 2006 20:56:50 +0200 X-Authenticated: #14308112 Date: Wed, 21 Jun 2006 21:55:37 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Progress bar In-Reply-To: <1150913231.2801.73.camel@athlon> Message-ID: References: <1150913231.2801.73.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 18:56:53 -0000 On Wed, 21 Jun 2006, Leonard den Ottolander wrote: > Looking at bugs 10507 and 13100. The patch from Hampa Hug that you've > committed should fix the issue for moving files. Does it also fix the > issue when copying files? No. From INVALID.NOREPLY@gnu.org Wed Jun 21 14:58:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A18373B02AF for ; Wed, 21 Jun 2006 14:58:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30612-07 for ; Wed, 21 Jun 2006 14:58:33 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3D90C3B02A3 for ; Wed, 21 Jun 2006 14:58:33 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft7uI-0006zh-00; Wed, 21 Jun 2006 14:58:30 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 20:58:30 +0200 Date: Wed, 21 Jun 2006 20:58:30 +0200 To: Leonard den Ottolander , Rihards , mc-devel@gnome.org Subject: [bug #10507] copy/move progress bar show none/bad values on big transactions From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 10507 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-205829.sv26390.48736@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.562 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.562 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 18:58:36 -0000 Update of bug #10507 (project mc): Status: None => Fixed Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #1: The poor counting appears to be fixed in CVS. Closing this bug as FIXED. The progress counter only calculates estimates per file. If you want a progress counter for the total time for all files you should file this as an RFE. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 15:15:43 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 433423B03D6 for ; Wed, 21 Jun 2006 15:15:43 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31772-04 for ; Wed, 21 Jun 2006 15:15:42 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 0CB6A3B0397 for ; Wed, 21 Jun 2006 15:15:41 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft8Aq-0007zn-00; Wed, 21 Jun 2006 15:15:36 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:15:35 +0000 Date: Wed, 21 Jun 2006 19:15:35 +0000 To: SGh , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16303] More functionally u7z From: SGh X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16303 User-Agent: Opera/8.51 (X11; Linux i686; U; ru) X-Apparently-From: 80.91.160.214 (Savane authenticated user sgh) Message-Id: <20060621-191535.sv45177.54566@savannah.gnu.org> References: <20060408-134359.sv45177.11632@savannah.gnu.org> <20060408-134508.sv45177.86924@savannah.gnu.org> <20060408-134854.sv45177.29103@savannah.gnu.org> <20060518-165152.sv36205.74443@savannah.gnu.org> <20060530-195233.sv45177.57929@savannah.gnu.org> <20060621-193556.sv26390.77497@savannah.gnu.org> In-Reply-To: <20060621-193556.sv26390.77497@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.563 tagged_above=-999 required=2 tests=[AWL=0.037, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.563 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 19:15:43 -0000 Follow-up Comment #5, bug #16303 (project mc): OK, Understand. I will download latest CVS, and see if I have something to patch un u7z. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From irusskih@gmail.com Wed Jun 21 15:26:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7DF953B01F3 for ; Wed, 21 Jun 2006 15:26:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32350-07 for ; Wed, 21 Jun 2006 15:26:40 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.193]) by menubar.gnome.org (Postfix) with ESMTP id ABDF33B0536 for ; Wed, 21 Jun 2006 15:26:33 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id s1so277067nze for ; Wed, 21 Jun 2006 12:26:33 -0700 (PDT) Received: by 10.36.227.49 with SMTP id z49mr847594nzg; Wed, 21 Jun 2006 12:26:33 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Wed, 21 Jun 2006 12:26:32 -0700 (PDT) Message-ID: <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> Date: Wed, 21 Jun 2006 23:26:32 +0400 From: "Igor Russkih" To: "Leonard den Ottolander" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150898573.2801.45.camel@athlon> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.412 tagged_above=-999 required=2 tests=[AWL=0.188, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.412 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 19:26:44 -0000 On 6/21/06, Leonard den Ottolander wrote: > Hello Igor, > > original in mc (where can I send patches? Is there a mailing list for > colorer?). Only have to look at the String type as we normally Sure, you can use colorer-talks@lists.sourceforge.net (http://lists.sourceforge.net/mailman/listinfo/colorer-talks) > Although the startup of the viewer seems a bit slow with colorer this > has much added value over the default syntax highlighting, and although Yep, the startup time is a bit heavier. Basically this depends on a syntax complexity and dependencies. > I think we could well include the colorer hooks in the main mc tree I > don't believe we should drop the existing highlighting, over even make > colorer the default. Firstly the default syntax is more lightweight, > which some people might prefer. Secondly the use of colorer requires the > installation of a(n extra) third party library. This was one of the ideas I've tried to reach in my patch. Colorer library can be disabled either during compilation time (thus making no dependencies on libcolorer) or in runtime (in this case regular mc syntax highlighter can work). > Is this a fully functional patch? Much lighter than the diff I got > diffing your tarball against CVS :) . Tarball can contain some additional generated files or codes which are not included into SVN repository. From the other side, colorer's SVN repository contains the only files from MC-2006-05-30-15 snapshot which I've altered. This can be a reason. > In that patch I noticed a couple of things: > - There are a lot of fixes to the po files and some to the Russian and > Serbian(?) man page. Please submit these to this list separately. Just a single ru.po file with a few additions. > - I noticed a CR here and there. There seem to be even more in the patch > you sent. Please get rid of those (fe with dos2unix). thanks, that's because of windows-based SVN client. For all the next comments it seems to be a misunderstanding (possibly because my diff is based on MC-2006-05-30-15 snapshot, not the latest one). > - There are a lot of added comments/fixes in config.h.in that I do not > see in your patch. Please submit separately. > - You got rid of the COPYING.LGPL file in vfs. I think this might be a > mistake on your part. You might want to rectify that for your version. > - In your version you got rid of the pipethrough files. This has no > bearing on us as it's not in your patch. > - You made some fixes to the config files as well that seem same. Please > submit those separately for review. > - I noticed changes in vfs/samba/configure. Most of this are somewhat > odd whitespace changes, but there appear to be some hunks at the top and > bottom to actually do something. Please submit (not the whitespace) :) . > - Why did you get rid of vfs/extfs/README.it? (not much of an issue) I'll upmerge with latest CVS MC revision and resend it. > > code). As far as I understand MC uses C only. Is this a problem? > Yes, it might. The overall approach towards accepted language constructs > is a bit conservative to maintain compatibility with older systems. > Would it be much work to rewrite these parts? The main problem with this is that syntax-colorer.cpp file makes direct connection between mc editor data and colorer's code. Technically it is possible to extract a kind of 'generic' C API and include it on library side. In this case MC will have pure C codes. >From the other side this will not release MC from libcolorer dependency - and this means that if user wants to compile and use mc-colorer, he anyway should have C++ environment. I mean I see no reason to eliminate that C++ code from MC: those who have C-only environments can just disable colorer's support in compile time. > This is why I do not want to make colorer the default. I think this is > something we should leave to the distributions. Agreed. > P.S. Could you please set your mail client to produce plain text mails > and use an indentation character and a "replying to" line for quotes? sorry, fixed. -- Igor From leonard@den.ottolander.nl Wed Jun 21 16:05:47 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0DEE23B056F for ; Wed, 21 Jun 2006 16:05:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02395-09 for ; Wed, 21 Jun 2006 16:05:45 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 4133B3B0556 for ; Wed, 21 Jun 2006 16:05:45 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 048E54023 for ; Wed, 21 Jun 2006 22:05:44 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id XchkQtXZk6gl for ; Wed, 21 Jun 2006 22:05:43 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id C653F4021 for ; Wed, 21 Jun 2006 22:05:43 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> Content-Type: text/plain Date: Wed, 21 Jun 2006 22:05:43 +0200 Message-Id: <1150920343.2801.92.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 20:05:47 -0000 Hello Igor, On Wed, 2006-06-21 at 23:26 +0400, Igor Russkih wrote: > On 6/21/06, Leonard den Ottolander wrote: > Colorer library can be disabled either during compilation time Switching at run time would be nice. At least as a startup option. > Just a single ru.po file with a few additions. And sr.po. > For all the next comments it seems to be a misunderstanding (possibly > because my diff is based on MC-2006-05-30-15 snapshot, not the latest > one). These are no misunderstandings, just differences I noticed between mccolorer and mc-CVS. I already filtered out some m4 related makefile issues. > > - There are a lot of added comments/fixes in config.h.in that I do not > > see in your patch. Please submit separately. These are comments and fixes in your mccolorer, not available in CVS. Are you using patches from others? > > - You got rid of the COPYING.LGPL file in vfs. I think this might be a > > mistake on your part. You might want to rectify that for your version. For some reason this file got lost in your mccolorer tarball. > > - You made some fixes to the config files as well that seem same. Please > > submit those separately for review. > > - I noticed changes in vfs/samba/configure. Most of this are somewhat > > odd whitespace changes, but there appear to be some hunks at the top and > > bottom to actually do something. Please submit (not the whitespace) :) . These are patches you seem to be using that are not in CVS. This is why I ask you to submit them for review. > I'll upmerge with latest CVS MC revision and resend it. The CVS tarball I'm using is only 2 weeks newer than yours. I'm not speaking of the recent changes to CVS. > The main problem with this is that syntax-colorer.cpp file makes > direct connection between mc editor data and colorer's code. > Technically it is possible to extract a kind of 'generic' C API and > include it on library side. In this case MC will have pure C codes. Is it technically possible to reimplement that c++ code in c? (This is just theoretical question, I don't ask you to do it.) > >From the other side this will not release MC from libcolorer > dependency - and this means that if user wants to compile and use > mc-colorer, he anyway should have C++ environment. > > I mean I see no reason to eliminate that C++ code from MC: those who > have C-only environments can just disable colorer's support in compile > time. Yes, I guess you are right. We might want to put the colorer code in a different directory though. > > P.S. Could you please set your mail client to produce plain text mails > > and use an indentation character and a "replying to" line for quotes? > sorry, fixed. Thanks :) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Wed Jun 21 16:06:51 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5314E3B0573 for ; Wed, 21 Jun 2006 16:06:51 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02504-10 for ; Wed, 21 Jun 2006 16:06:50 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 537BD3B056B for ; Wed, 21 Jun 2006 16:06:50 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 8C1574023 for ; Wed, 21 Jun 2006 22:06:44 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id HM0rfGtmzMsH for ; Wed, 21 Jun 2006 22:06:43 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id B9AD84021 for ; Wed, 21 Jun 2006 22:06:43 +0200 (CEST) Subject: Re: Progress bar From: Leonard den Ottolander To: MC development In-Reply-To: References: <1150913231.2801.73.camel@athlon> Content-Type: text/plain Date: Wed, 21 Jun 2006 22:06:43 +0200 Message-Id: <1150920403.2801.95.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 20:06:51 -0000 On Wed, 2006-06-21 at 21:55 +0300, Pavel Tsekov wrote: > > Does it also fix the > > issue when copying files? > > No. Seems to work fine though. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Wed Jun 21 17:21:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F34E73B00E8 for ; Wed, 21 Jun 2006 17:21:15 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06624-06 for ; Wed, 21 Jun 2006 17:21:14 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 925423B00F2 for ; Wed, 21 Jun 2006 17:21:14 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id B529F4023 for ; Wed, 21 Jun 2006 23:21:13 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id tbmp1FvQgFwr for ; Wed, 21 Jun 2006 23:21:07 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 4373F4021 for ; Wed, 21 Jun 2006 23:21:07 +0200 (CEST) Subject: Snapshots availability From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Wed, 21 Jun 2006 23:21:06 +0200 Message-Id: <1150924866.2801.100.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 21:21:16 -0000 Hi, Who is the creator of the two weekly snapshots found at http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/snapshots/ ? Pavel? Miguel? Could you please keep a couple of months worth of snapshots around? I couldn't find the May 30th snapshot when I wanted to compare it with mccolorer. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Wed Jun 21 19:05:41 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2C4D23B0138 for ; Wed, 21 Jun 2006 19:05:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11604-09 for ; Wed, 21 Jun 2006 19:05:39 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 756083B006C for ; Wed, 21 Jun 2006 19:05:39 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtBlM-0000CL-00; Wed, 21 Jun 2006 19:05:32 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 01:05:32 +0200 Date: Thu, 22 Jun 2006 01:05:32 +0200 To: Leonard den Ottolander , mc-devel@gnome.org Subject: [task #5671] Data Export #2 (bugs) From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: task X-Savane-Item-ID: 5671 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-010531.sv26390.89793@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.564 tagged_above=-999 required=2 tests=[AWL=0.036, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.564 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 23:05:41 -0000 URL: Summary: Data Export #2 (bugs) Project: GNU Midnight Commander Submitted by: leonardjo Submitted on: Thursday 22/06/06 at 01:05 Should Start On: Thursday 22/06/06 at 00:00 Should be Finished on: Friday 23/06/06 at 00:00 Category: None Priority: 5 - Normal Status: None Privacy: Private Assigned to: None Percent Complete: 0% Open/Closed: Open Effort: 0.00 _______________________________________________________ Details: A new export job has been registered. This task has been created to keep the project informed. However, only Leonard den Ottolander, that created the job, can remove the job itself. ######### JOB URL ######### Once the job will be done, it will be available at: ######### JOB REMOVAL ######### Closing this task will not remove the job. To remove the job, Leonard den Ottolander must go at ######### JOB DETAILS ######### The SQL query will be: SELECT bug_id FROM bugs WHERE group_id=3521 (Note: We are aware this information is not tremendously user-friendly. This will be improved in future Savane releases) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Thu Jun 22 00:53:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8FED23B0377 for ; Thu, 22 Jun 2006 00:53:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28223-01 for ; Thu, 22 Jun 2006 00:53:37 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 25D633B027A for ; Thu, 22 Jun 2006 00:53:36 -0400 (EDT) Received: (qmail invoked by alias); 22 Jun 2006 04:53:35 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp016) with SMTP; 22 Jun 2006 06:53:35 +0200 X-Authenticated: #14308112 Date: Thu, 22 Jun 2006 07:52:21 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Progress bar In-Reply-To: <1150920403.2801.95.camel@athlon> Message-ID: References: <1150913231.2801.73.camel@athlon> <1150920403.2801.95.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 04:53:39 -0000 On Wed, 21 Jun 2006, Leonard den Ottolander wrote: > On Wed, 2006-06-21 at 21:55 +0300, Pavel Tsekov wrote: >>> Does it also fix the >>> issue when copying files? >> >> No. > > Seems to work fine though. Hampa's patch behaves exactly as described: [...] If a file is moved by copy/remove the progress bar is advanced twice. On the other hand, if a file is moved by renaming the progress bar is never updated. [...] I don't see how it could possibly fix other issues. From INVALID.NOREPLY@gnu.org Thu Jun 22 02:16:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7DB7B3B014A for ; Thu, 22 Jun 2006 02:16:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32693-10 for ; Thu, 22 Jun 2006 02:16:42 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 885D53B026A for ; Thu, 22 Jun 2006 02:16:42 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtIUZ-000551-00; Thu, 22 Jun 2006 02:16:39 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 06:16:38 +0000 Date: Thu, 22 Jun 2006 06:16:38 +0000 To: Rolf Offermanns , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16383] Build system does not allow cross compiling From: Rolf Offermanns X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16383 User-Agent: Mozilla/5.0 (compatible; Konqueror/3.5; Linux) KHTML/3.5.2 (like Gecko) Kubuntu 6.06 Dapper X-Apparently-From: 84.58.135.66 (Savane authenticated user roffermanns) Message-Id: <20060622-061638.sv48822.49212@savannah.gnu.org> References: <20060419-132319.sv48822.2441@savannah.gnu.org> <20060621-193731.sv26390.16849@savannah.gnu.org> In-Reply-To: <20060621-193731.sv26390.16849@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.564 tagged_above=-999 required=2 tests=[AWL=0.036, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.564 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 06:16:44 -0000 Follow-up Comment #2, bug #16383 (project mc): I would, but I have no clue about the auto* stuff. Sorry. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 02:56:50 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C01823B02D2 for ; Thu, 22 Jun 2006 02:56:50 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02668-05 for ; Thu, 22 Jun 2006 02:56:49 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 61ED03B00C2 for ; Thu, 22 Jun 2006 02:56:49 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtJ7N-0000cX-00; Thu, 22 Jun 2006 02:56:45 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 09:56:45 +0300 Date: Thu, 22 Jun 2006 09:56:45 +0300 To: Rolf Offermanns , Leonard den Ottolander , Pavel Tsekov , mc-devel@gnome.org Subject: [bug #16383] Build system does not allow cross compiling From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16383 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060622-095644.sv36205.99030@savannah.gnu.org> References: <20060419-132319.sv48822.2441@savannah.gnu.org> <20060621-193731.sv26390.16849@savannah.gnu.org> <20060622-061638.sv48822.49212@savannah.gnu.org> In-Reply-To: <20060622-061638.sv48822.49212@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.565 tagged_above=-999 required=2 tests=[AWL=0.035, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.565 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 06:56:51 -0000 Follow-up Comment #3, bug #16383 (project mc): The major problem here is that man2hlp relies on glib. This complicates the task of making it build in cross environment. One way to fix this is to drop the glib dependency - there are tree or four functions which need to be replaced. When I have time I'll do this if noone beats me to it. I have already made some changes to the auto stuff so that MC will build properly in cross environment but whithout changing man2hlp they are of no use. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From irusskih@gmail.com Thu Jun 22 06:17:30 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 84BC73B0191 for ; Thu, 22 Jun 2006 06:17:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15568-03 for ; Thu, 22 Jun 2006 06:17:27 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.195]) by menubar.gnome.org (Postfix) with ESMTP id 9A6723B02D2 for ; Thu, 22 Jun 2006 06:17:26 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id l8so363567nzf for ; Thu, 22 Jun 2006 03:17:25 -0700 (PDT) Received: by 10.36.252.49 with SMTP id z49mr1712665nzh; Thu, 22 Jun 2006 03:17:25 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Thu, 22 Jun 2006 03:17:25 -0700 (PDT) Message-ID: <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> Date: Thu, 22 Jun 2006 14:17:25 +0400 From: "Igor Russkih" To: "Leonard den Ottolander" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150920303.2801.89.camel@athlon> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_Part_3415_13609534.1150971445577" References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.499 tagged_above=-999 required=2 tests=[AWL=0.101, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.499 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 10:17:30 -0000 ------=_Part_3415_13609534.1150971445577 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Leonard, all, Here attached the patch over mc-2006-06-17-02 (snapshot from ibiblio.org). Please don't make direct diffs between mc-colorer and cvs snapshot since they are different versions. Use this patch for reviewing. I've separated the patch for easier understanding: build.diff - make/configs changes edit.diff - changes in existing edit/* files mccolorer.diff - new colorer's code edit/syntax-colorer-* lang.diff - ru.po additions for colorer > > Colorer library can be disabled either during compilation time > Switching at run time would be nice. At least as a startup option. "either during compilation time or in runtime" - I meant this is already implemented. > These are comments and fixes in your mccolorer, not available in CVS. > Are you using patches from others? No, just clean mc snapshot from ibiblio.org. > > > odd whitespace changes, but there appear to be some hunks at the top and > > > bottom to actually do something. Please submit (not the whitespace) :) . > These are patches you seem to be using that are not in CVS. This is why > I ask you to submit them for review. Sorry, it seems to be a difference in our original MC tarballs. I didn't touch it. See the patch attached for all the files changed. > > The main problem with this is that syntax-colorer.cpp file makes > > direct connection between mc editor data and colorer's code. > > Technically it is possible to extract a kind of 'generic' C API and > > include it on library side. In this case MC will have pure C codes. > Is it technically possible to reimplement that c++ code in c? (This is > just theoretical question, I don't ask you to do it.) It is possible to move this code to libcolorer side and implement plain C API from library side - however this'll take more time and I see no reason in doing this. > Yes, I guess you are right. We might want to put the colorer code in a > different directory though. That's easy. -- Igor ------=_Part_3415_13609534.1150971445577 Content-Type: application/x-gzip; name=mccolorer.diff.tgz Content-Transfer-Encoding: base64 X-Attachment-Id: f_eoqy6k46 Content-Disposition: attachment; filename="mccolorer.diff.tgz" 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 PaPn4z3/Fzf5qE4AQAEA ------=_Part_3415_13609534.1150971445577-- From INVALID.NOREPLY@gnu.org Thu Jun 22 07:54:37 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 138DC3B02A8 for ; Thu, 22 Jun 2006 07:54:37 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21553-06 for ; Thu, 22 Jun 2006 07:54:35 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 73FAA3B02F9 for ; Thu, 22 Jun 2006 07:54:35 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtNlY-0005Il-00; Thu, 22 Jun 2006 07:54:32 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 13:54:32 +0200 Date: Thu, 22 Jun 2006 13:54:32 +0200 To: Leonard den Ottolander , mc-devel@gnome.org Subject: [task #5673] Data Export #3 (bugs) From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: task X-Savane-Item-ID: 5673 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-135432.sv26390.82990@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.566 tagged_above=-999 required=2 tests=[AWL=0.034, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.566 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 11:54:37 -0000 URL: Summary: Data Export #3 (bugs) Project: GNU Midnight Commander Submitted by: leonardjo Submitted on: Thursday 22/06/06 at 13:54 Should Start On: Thursday 22/06/06 at 00:00 Should be Finished on: Friday 23/06/06 at 00:00 Category: None Priority: 5 - Normal Status: None Privacy: Private Assigned to: None Percent Complete: 0% Open/Closed: Open Effort: 0.00 _______________________________________________________ Details: A new export job has been registered. This task has been created to keep the project informed. However, only Leonard den Ottolander, that created the job, can remove the job itself. ######### JOB URL ######### Once the job will be done, it will be available at: ######### JOB REMOVAL ######### Closing this task will not remove the job. To remove the job, Leonard den Ottolander must go at ######### JOB DETAILS ######### The SQL query will be: SELECT bug_id FROM bugs WHERE group_id=3521 (Note: We are aware this information is not tremendously user-friendly. This will be improved in future Savane releases) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Thu Jun 22 08:09:08 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5CB333B0421 for ; Thu, 22 Jun 2006 08:09:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23152-01 for ; Thu, 22 Jun 2006 08:09:06 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 7DAD03B0401 for ; Thu, 22 Jun 2006 08:09:06 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 6AC464023 for ; Thu, 22 Jun 2006 14:09:05 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id xMGRfFcFP945 for ; Thu, 22 Jun 2006 14:09:03 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id CB99E4021 for ; Thu, 22 Jun 2006 14:09:03 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> Content-Type: text/plain Date: Thu, 22 Jun 2006 14:09:03 +0200 Message-Id: <1150978143.2807.11.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:09:08 -0000 Hello Igor, On Thu, 2006-06-22 at 14:17 +0400, Igor Russkih wrote: > "either during compilation time or in runtime" - I meant this is > already implemented. I should look for that switch then :) . > No, just clean mc snapshot from ibiblio.org. Can you make it available to me? I am quite curious where the changes I observe came from. They are quite a few, and if they are not in CVS I'm curious how they ended up in the tarball. > > Is it technically possible to reimplement that c++ code in c? (This is > > just theoretical question, I don't ask you to do it.) > It is possible to move this code to libcolorer side and implement > plain C API from library side - however this'll take more time and I > see no reason in doing this. My question was if it is technically possible to rewrite the cpp code for *mc* in c and (through trickery) still keep interface compatibility. A bit like linking Delphi (Pascal) to C code. This is possible through compiler switches changing the stack cleanup behaviour (and probably some alignment tricks). Again, I'm not asking you to do this, just inquiring about the theoretical possibility. It's a bit OT, I know ;) . Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Thu Jun 22 08:10:22 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CF08F3B0484 for ; Thu, 22 Jun 2006 08:10:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23399-04 for ; Thu, 22 Jun 2006 08:10:19 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id BBE813B0570 for ; Thu, 22 Jun 2006 08:10:19 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtO0n-00064f-00; Thu, 22 Jun 2006 08:10:17 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 14:10:17 +0200 Date: Thu, 22 Jun 2006 14:10:17 +0200 To: Leonard den Ottolander , mc-devel@gnome.org Subject: [task #5674] Data Export #4 (bugs) From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: task X-Savane-Item-ID: 5674 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-141017.sv26390.14093@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.566 tagged_above=-999 required=2 tests=[AWL=0.034, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.566 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:10:23 -0000 URL: Summary: Data Export #4 (bugs) Project: GNU Midnight Commander Submitted by: leonardjo Submitted on: Thursday 22/06/06 at 14:10 Should Start On: Thursday 22/06/06 at 00:00 Should be Finished on: Saturday 24/06/06 at 00:00 Category: None Priority: 5 - Normal Status: None Privacy: Private Assigned to: None Percent Complete: 0% Open/Closed: Open Effort: 0.00 _______________________________________________________ Details: A new export job has been registered. This task has been created to keep the project informed. However, only Leonard den Ottolander, that created the job, can remove the job itself. ######### JOB URL ######### Once the job will be done, it will be available at: ######### JOB REMOVAL ######### Closing this task will not remove the job. To remove the job, Leonard den Ottolander must go at ######### JOB DETAILS ######### The SQL query will be: SELECT bug_id FROM bugs WHERE group_id=3521 AND status_id IN (1) (Note: We are aware this information is not tremendously user-friendly. This will be improved in future Savane releases) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 13:49:13 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 721AA3B0733 for ; Wed, 21 Jun 2006 13:49:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26116-05 for ; Wed, 21 Jun 2006 13:49:11 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 8F2E03B06F1 for ; Wed, 21 Jun 2006 13:49:11 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6on-0001Zw-00; Wed, 21 Jun 2006 13:48:45 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:48:45 +0200 Date: Wed, 21 Jun 2006 19:48:45 +0200 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-194845.sv26390.25842@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> In-Reply-To: <20060306-153157.sv36205.31998@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.562 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.562 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 08:25:17 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:49:13 -0000 Follow-up Comment #25, bug #14155 (project mc): Ping. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Thu Jun 22 08:36:12 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 062EA3B0606 for ; Thu, 22 Jun 2006 08:36:12 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25706-05 for ; Thu, 22 Jun 2006 08:36:10 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id F034E3B03FD for ; Thu, 22 Jun 2006 08:36:09 -0400 (EDT) Received: (qmail invoked by alias); 22 Jun 2006 12:36:08 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp042) with SMTP; 22 Jun 2006 14:36:08 +0200 X-Authenticated: #14308112 Date: Thu, 22 Jun 2006 15:34:54 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150978143.2807.11.camel@athlon> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.477 tagged_above=-999 required=2 tests=[AWL=-0.012, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.477 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:36:12 -0000 On Thu, 22 Jun 2006, Leonard den Ottolander wrote: >>> Is it technically possible to reimplement that c++ code in c? (This is >>> just theoretical question, I don't ask you to do it.) >> It is possible to move this code to libcolorer side and implement >> plain C API from library side - however this'll take more time and I >> see no reason in doing this. > > My question was if it is technically possible to rewrite the cpp code > for *mc* in c and (through trickery) still keep interface compatibility. Not unless colorer exports C interfaces and it doesn't. The way it is implemented colorer exports a set of interfaces that one has to implement in terms of C++ classes. Theoretically it could be possible to create an C++ implementation of those interfaces, one that delegates the work to pure C functions. Again that means that colorer has to export a C. I don't see why this is such a big deal to you ? > A bit like linking Delphi (Pascal) to C code. This is possible through > compiler switches changing the stack cleanup behaviour (and probably > some alignment tricks). What about name mangling issues ? As I said above - you cannot avoid the C++ code. From leonard@den.ottolander.nl Thu Jun 22 08:36:29 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AFADE3B06C8 for ; Thu, 22 Jun 2006 08:36:29 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25640-08 for ; Thu, 22 Jun 2006 08:36:27 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id B69843B0677 for ; Thu, 22 Jun 2006 08:36:27 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 774334023 for ; Thu, 22 Jun 2006 14:36:21 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id XkAbOexUxtt9 for ; Thu, 22 Jun 2006 14:36:17 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id AA3E44021 for ; Thu, 22 Jun 2006 14:36:17 +0200 (CEST) Subject: Re: Progress bar From: Leonard den Ottolander To: MC development In-Reply-To: References: <1150913231.2801.73.camel@athlon> <1150920403.2801.95.camel@athlon> Content-Type: text/plain Date: Thu, 22 Jun 2006 14:36:17 +0200 Message-Id: <1150979777.2807.25.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:36:29 -0000 Hello Pavel, On Thu, 2006-06-22 at 07:52 +0300, Pavel Tsekov wrote: > Hampa's patch behaves exactly as described: > > [...] > If a file is moved by copy/remove the progress bar is advanced twice. On > the other hand, if a file is moved by renaming the progress bar is never > updated. > [...] I got confused by bug 10507 that doesn't distinguish clearly between copy and move. The copy progress bar behaves as expected. (copy_dir_dir() and move_dir_dir() do not show a bytes or count bar, but this is expected as they do not attempt to make an estimate of the number and size of the copied/moved files.) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Thu Jun 22 08:51:18 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C4EB23B06E1 for ; Thu, 22 Jun 2006 08:51:18 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27256-05 for ; Thu, 22 Jun 2006 08:51:17 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 562D33B066E for ; Thu, 22 Jun 2006 08:51:17 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtOdb-0000vu-00; Thu, 22 Jun 2006 08:50:23 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 14:50:22 +0200 Date: Thu, 22 Jun 2006 14:50:22 +0200 To: Gergely =?UTF-8?B?U3rDoXN6?= , Leonard den Ottolander , Pavel Tsekov , Oswald Buddenhagen , mc-devel@gnome.org Subject: [patch #4970] add label highlighting to c.syntax From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: patch X-Savane-Item-ID: 4970 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-145022.sv26390.88876@savannah.gnu.org> References: <20060312-194248.sv8412.23459@savannah.gnu.org> <20060317-170214.sv36205.75631@savannah.gnu.org> <20060317-161352.sv41304.82068@savannah.gnu.org> <20060317-211325.sv41304.63756@savannah.gnu.org> <20060318-120849.sv36205.36817@savannah.gnu.org> <20060318-144031.sv26390.61472@savannah.gnu.org> <20060319-090924.sv8412.83221@savannah.gnu.org> <20060319-164645.sv26390.22214@savannah.gnu.org> <20060319-204823.sv8412.33015@savannah.gnu.org> In-Reply-To: <20060319-204823.sv8412.33015@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.567 tagged_above=-999 required=2 tests=[AWL=0.033, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.567 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:51:19 -0000 Update of patch #4970 (project mc): Status: None => Done Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #9: Committed. Closing. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 08:59:11 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C623A3B071C for ; Thu, 22 Jun 2006 08:59:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28144-04 for ; Thu, 22 Jun 2006 08:59:10 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 8A51C3B0719 for ; Thu, 22 Jun 2006 08:59:10 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtOm3-0001Ef-00; Thu, 22 Jun 2006 08:59:07 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 14:59:07 +0200 Date: Thu, 22 Jun 2006 14:59:07 +0200 To: Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org Subject: [patch #4991] add .ipk extension to mc.ext From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: patch X-Savane-Item-ID: 4991 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-145906.sv26390.95959@savannah.gnu.org> References: <20060323-173337.sv36205.23406@savannah.gnu.org> <20060323-195337.sv26390.31728@savannah.gnu.org> In-Reply-To: <20060323-195337.sv26390.31728@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.568 tagged_above=-999 required=2 tests=[AWL=0.032, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.568 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:59:12 -0000 Update of patch #4991 (project mc): Category: None => Menu and associations Status: None => Done Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #2: Committed. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 09:01:57 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5704B3B0720 for ; Thu, 22 Jun 2006 09:01:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28587-02 for ; Thu, 22 Jun 2006 09:01:50 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id F38BE3B078C for ; Thu, 22 Jun 2006 09:00:53 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtOne-0001HY-00; Thu, 22 Jun 2006 09:00:46 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 15:00:44 +0200 Date: Thu, 22 Jun 2006 15:00:44 +0200 To: Sorin Sbarnea , Roland Illig , Leonard den Ottolander , mc-devel@gnome.org Subject: [patch #4741] Syntax Support for config files (conf,ini,cfg,...) From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: patch X-Savane-Item-ID: 4741 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-150044.sv26390.89917@savannah.gnu.org> References: <20051228-210650.sv46405.46961@savannah.gnu.org> <20051228-210735.sv46405.17938@savannah.gnu.org> <20060128-105039.sv20990.3126@savannah.gnu.org> In-Reply-To: <20060128-105039.sv20990.3126@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.568 tagged_above=-999 required=2 tests=[AWL=0.032, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.568 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:01:57 -0000 Follow-up Comment #2, patch #4741 (project mc): Ping. Sorin, if you do not fix these patches this report will be closed. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 08:40:20 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CEB323B06CE for ; Thu, 22 Jun 2006 08:40:20 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26231-01 for ; Thu, 22 Jun 2006 08:40:19 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 197813B0677 for ; Thu, 22 Jun 2006 08:40:19 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtOSt-00007u-00; Thu, 22 Jun 2006 08:39:19 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 15:39:19 +0300 Date: Thu, 22 Jun 2006 15:39:19 +0300 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060622-153919.sv36205.75620@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> <20060621-194845.sv26390.25842@savannah.gnu.org> In-Reply-To: <20060621-194845.sv26390.25842@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.567 tagged_above=-999 required=2 tests=[AWL=0.033, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.567 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 09:09:11 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:40:21 -0000 Follow-up Comment #26, bug #14155 (project mc): I guess we can safely close that one . If anyone has any kind of objections she/he could request that we reopen the bug report. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From irusskih@gmail.com Thu Jun 22 09:30:41 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72E753B06B5 for ; Thu, 22 Jun 2006 09:30:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30485-04 for ; Thu, 22 Jun 2006 09:30:40 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.204]) by menubar.gnome.org (Postfix) with ESMTP id BAB223B0559 for ; Thu, 22 Jun 2006 09:30:39 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id 18so390211nzp for ; Thu, 22 Jun 2006 06:30:39 -0700 (PDT) Received: by 10.37.22.14 with SMTP id z14mr1920162nzi; Thu, 22 Jun 2006 06:30:38 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Thu, 22 Jun 2006 06:30:38 -0700 (PDT) Message-ID: <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> Date: Thu, 22 Jun 2006 17:30:38 +0400 From: "Igor Russkih" To: "Leonard den Ottolander" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150978143.2807.11.camel@athlon> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.531 tagged_above=-999 required=2 tests=[AWL=0.069, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.531 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:30:41 -0000 > > already implemented. > I should look for that switch then :) . It's a runtime option in editor's settings dialog. You'll find it easily ;) > > No, just clean mc snapshot from ibiblio.org. > Can you make it available to me? I am quite curious where the changes I The latest one I've got from http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/snapshots/mc-2006-06-17-02.tar.gz The previous I've used (mc-2006-05-30-15.tar.gz) > > plain C API from library side - however this'll take more time and I > > see no reason in doing this. > My question was if it is technically possible to rewrite the cpp code > for *mc* in c and (through trickery) still keep interface compatibility. No. that's particular action is not possible as far as I know. Surely it is possible to make a kind of c++ API 'emulation' from pure C code - so that pure C component (mc) will start using pure C++ component (libcolorer). But this is just in theory and it's not a production solution. Hope I've answered your question ;) -- Igor From leonard@den.ottolander.nl Thu Jun 22 09:41:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 19F2E3B042A for ; Thu, 22 Jun 2006 09:41:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31154-10 for ; Thu, 22 Jun 2006 09:41:18 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id AAE543B00DE for ; Thu, 22 Jun 2006 09:41:18 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id C22344023 for ; Thu, 22 Jun 2006 15:41:17 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id sYin0FGGCowf for ; Thu, 22 Jun 2006 15:41:12 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 41DF34021 for ; Thu, 22 Jun 2006 15:41:12 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> Content-Type: text/plain Date: Thu, 22 Jun 2006 15:41:11 +0200 Message-Id: <1150983671.2807.29.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:41:21 -0000 Hello Igor, On Thu, 2006-06-22 at 17:30 +0400, Igor Russkih wrote: > The previous I've used (mc-2006-05-30-15.tar.gz) I cannot find that version anymore. Can you make it available to me somewhere so I can have a look? > No. that's particular action is not possible as far as I know. > Surely it is possible to make a kind of c++ API 'emulation' from pure > C code - so that pure C component (mc) will start using pure C++ > component (libcolorer). But this is just in theory and it's not a > production solution. > > Hope I've answered your question ;) Yup. Thanks :) . (No big deal, just curious.) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From irusskih@gmail.com Thu Jun 22 09:55:05 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 821D33B038B for ; Thu, 22 Jun 2006 09:55:05 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32339-08 for ; Thu, 22 Jun 2006 09:55:02 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.206]) by menubar.gnome.org (Postfix) with ESMTP id BC25B3B03A4 for ; Thu, 22 Jun 2006 09:55:01 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id s18so421398nze for ; Thu, 22 Jun 2006 06:55:01 -0700 (PDT) Received: by 10.37.13.43 with SMTP id q43mr2012277nzi; Thu, 22 Jun 2006 06:55:01 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Thu, 22 Jun 2006 06:55:01 -0700 (PDT) Message-ID: <861727ef0606220655o5a195eb2ub12e508c313f7779@mail.gmail.com> Date: Thu, 22 Jun 2006 17:55:01 +0400 From: "Igor Russkih" To: "Leonard den Ottolander" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150983671.2807.29.camel@athlon> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <1150983671.2807.29.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:55:05 -0000 > > The previous I've used (mc-2006-05-30-15.tar.gz) > I cannot find that version anymore. Can you make it available to me > somewhere so I can have a look? I've placed it at http://colorer.sourceforge.net/files/mc-2006-05-30-15.tar.gz -- Igor From leonard@den.ottolander.nl Thu Jun 22 10:10:01 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 74CA33B081D for ; Thu, 22 Jun 2006 10:10:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01047-02 for ; Thu, 22 Jun 2006 10:10:00 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 57E513B07DF for ; Thu, 22 Jun 2006 10:10:00 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id D18C44023 for ; Thu, 22 Jun 2006 16:09:58 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id lUd8k95cotkD for ; Thu, 22 Jun 2006 16:09:54 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 4FCBC4021 for ; Thu, 22 Jun 2006 16:09:54 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606220655o5a195eb2ub12e508c313f7779@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <1150983671.2807.29.camel@athlon> <861727ef0606220655o5a195eb2ub12e508c313f7779@mail.gmail.com> Content-Type: text/plain Date: Thu, 22 Jun 2006 16:09:48 +0200 Message-Id: <1150985388.2807.32.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 14:10:01 -0000 Hello Igor, On Thu, 2006-06-22 at 17:55 +0400, Igor Russkih wrote: > I've placed it at > http://colorer.sourceforge.net/files/mc-2006-05-30-15.tar.gz Thanks. Well, that clears things up for me :-) . It turns out all the changes I observed are caused by the autogen step used to create the snapshots. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Thu Jun 22 10:32:26 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D276D3B041B for ; Thu, 22 Jun 2006 10:32:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02378-03 for ; Thu, 22 Jun 2006 10:32:25 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id AADAE3B0658 for ; Thu, 22 Jun 2006 10:32:25 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id B61094023 for ; Thu, 22 Jun 2006 16:32:24 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id uGEZi1J4kOTe for ; Thu, 22 Jun 2006 16:32:23 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 3F85C4021 for ; Thu, 22 Jun 2006 16:32:23 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> Content-Type: text/plain Date: Thu, 22 Jun 2006 16:32:22 +0200 Message-Id: <1150986742.2807.34.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 14:32:27 -0000 Hi Igor, On Thu, 2006-06-22 at 17:30 +0400, Igor Russkih wrote: > It's a runtime option in editor's settings dialog. You'll find it easily ;) Yes, got it. But you've introduced a duplicate hotkey C. Please choose another one. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Thu Jun 22 11:11:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 551443B0501 for ; Thu, 22 Jun 2006 11:11:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04503-07 for ; Thu, 22 Jun 2006 11:11:20 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 158503B0331 for ; Thu, 22 Jun 2006 11:11:20 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 0F4434023; Thu, 22 Jun 2006 17:11:19 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 5-UDyn51ImKM; Thu, 22 Jun 2006 17:11:15 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 9317F4021; Thu, 22 Jun 2006 17:11:15 +0200 (CEST) Subject: Where to report issues with mccolorer? From: Leonard den Ottolander To: Igor Russkih Content-Type: text/plain Date: Thu, 22 Jun 2006 17:11:15 +0200 Message-Id: <1150989075.2807.39.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 15:11:21 -0000 Hello Igor, Where do you want us to report issues with mccolorer? In the colorer bug system? (I'm seeing a crash when opening the syntax highlighting dialog for the old syntax highlighting.) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From ossi@kde.org Thu Jun 22 12:10:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C556D3B01D2 for ; Thu, 22 Jun 2006 12:10:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08495-02 for ; Thu, 22 Jun 2006 12:10:20 -0400 (EDT) Received: from ktown.kde.org (ktown.kde.org [131.246.120.250]) by menubar.gnome.org (Postfix) with SMTP id 97E283B07A2 for ; Thu, 22 Jun 2006 12:10:19 -0400 (EDT) Received: (qmail 3801 invoked from network); 22 Jun 2006 16:10:17 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 22 Jun 2006 16:10:17 -0000 Received: from ossi by ugly.local with local (masqmail 0.2.21) id 1FtRkx-0uH-00 for ; Thu, 22 Jun 2006 18:10:11 +0200 Date: Thu, 22 Jun 2006 18:10:11 +0200 From: Oswald Buddenhagen To: mc-devel@gnome.org Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine Message-ID: <20060622161011.GC3368@ugly.local> Mail-Followup-To: mc-devel@gnome.org References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.586 tagged_above=-999 required=2 tests=[AWL=0.013, BAYES_00=-2.599] X-Spam-Score: -2.586 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 16:10:22 -0000 On Thu, Jun 22, 2006 at 05:30:38PM +0400, Igor Russkih wrote: > > > already implemented. > > I should look for that switch then :) . > It's a runtime option in editor's settings dialog. You'll find it easily ;) > fwiw, i think this is silly. typical example of over-configurability. if it has to be runtime-switchable (why?), don't put it in the dialog at least. -- Hi! I'm a .signature virus! Copy me into your ~/.signature, please! -- Chaos, panic, and disorder - my work here is done. From proski@gnu.org Thu Jun 22 14:15:51 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0453A3B0750 for ; Thu, 22 Jun 2006 14:15:51 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16309-05 for ; Thu, 22 Jun 2006 14:15:48 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id E86833B082D for ; Thu, 22 Jun 2006 14:15:47 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FtTiV-0003Lh-2P for mc-devel@gnome.org; Thu, 22 Jun 2006 14:15:47 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FtTiL-0008PV-3w; Thu, 22 Jun 2006 14:15:37 -0400 Subject: Re: Snapshots availability From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150924866.2801.100.camel@athlon> References: <1150924866.2801.100.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Thu, 22 Jun 2006 14:15:37 -0400 Message-Id: <1151000137.3539.23.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.595 tagged_above=-999 required=2 tests=[AWL=0.005, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.595 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 18:15:51 -0000 Hello, Leonard! On Wed, 2006-06-21 at 23:21 +0200, Leonard den Ottolander wrote: > Hi, > > Who is the creator of the two weekly snapshots found at > http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/snapshots/ ? > Pavel? Miguel? I generate them using maint/mcsnap > Could you please keep a couple of months worth of snapshots around? I > couldn't find the May 30th snapshot when I wanted to compare it with > mccolorer. Snapshots are not intended for developers. Developers should be using proper version control systems. Snapshots are for users who want to try the latest features and check if some bug has been fixed, but who don't intend to keep the sources up-to-date. -- Regards, Pavel Roskin From ptsekov@gmx.net Fri Jun 23 03:10:45 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EBAB33B0646 for ; Fri, 23 Jun 2006 03:10:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21658-09 for ; Fri, 23 Jun 2006 03:10:39 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id D4E653B00ED for ; Fri, 23 Jun 2006 03:10:38 -0400 (EDT) Received: (qmail invoked by alias); 23 Jun 2006 07:10:36 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp019) with SMTP; 23 Jun 2006 09:10:36 +0200 X-Authenticated: #14308112 Date: Fri, 23 Jun 2006 10:09:20 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole Cc: MC development Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.477 tagged_above=-999 required=2 tests=[AWL=-0.012, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.477 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 07:10:45 -0000 Hello Igor, On Thu, 22 Jun 2006, Igor Russkih wrote: > Here attached the patch over mc-2006-06-17-02 (snapshot from > ibiblio.org). Please don't make direct diffs between mc-colorer and > cvs snapshot since they are different versions. Use this patch for > reviewing. > > I've separated the patch for easier understanding: > build.diff - make/configs changes There is no need to include configure, config.h.in, Makefile.in and and any other autogenerated files in your patches. Next time, please, submit only your changes to configure.ac and Makefile.am. From ptsekov@gmx.net Fri Jun 23 03:59:56 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0322F3B0393 for ; Fri, 23 Jun 2006 03:59:56 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25386-04 for ; Fri, 23 Jun 2006 03:59:54 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id F0DE13B013B for ; Fri, 23 Jun 2006 03:59:53 -0400 (EDT) Received: (qmail invoked by alias); 23 Jun 2006 07:59:49 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp033) with SMTP; 23 Jun 2006 09:59:49 +0200 X-Authenticated: #14308112 Date: Fri, 23 Jun 2006 10:58:32 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 07:59:56 -0000 Hello Igor, On Thu, 22 Jun 2006, Igor Russkih wrote: > Here attached the patch over mc-2006-06-17-02 (snapshot from > ibiblio.org). Please don't make direct diffs between mc-colorer and > cvs snapshot since they are different versions. Use this patch for > reviewing. > > I've separated the patch for easier understanding: > build.diff - make/configs changes Index: edit/Makefile.am =================================================================== --- edit/Makefile.am (.../branches/MC-VENDOR/mccolorer) (revision 776) +++ edit/Makefile.am (.../trunk/mccolorer) (revision 776) @@ -6,10 +6,19 @@ noinst_LIBRARIES = endif +if USE_COLORER libedit_a_SOURCES = \ bookmark.c edit.c editcmd.c editwidget.c editdraw.c editkeys.c \ editmenu.c editoptions.c editcmddef.h edit.h edit-widget.h \ + editlock.c editlock.h syntax.c usermap.h usermap.cwordproc.c \ ^^^^^^^^^^^^^^^^^^^ JFYI, there is a missing space here. From ptsekov@gmx.net Fri Jun 23 05:07:03 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 598393B01BA for ; Fri, 23 Jun 2006 05:07:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30249-08 for ; Fri, 23 Jun 2006 05:07:02 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 83B173B012A for ; Fri, 23 Jun 2006 05:07:01 -0400 (EDT) Received: (qmail invoked by alias); 23 Jun 2006 09:06:59 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp035) with SMTP; 23 Jun 2006 11:06:59 +0200 X-Authenticated: #14308112 Date: Fri, 23 Jun 2006 12:05:39 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Where to report issues with mccolorer? In-Reply-To: <1150989075.2807.39.camel@athlon> Message-ID: References: <1150989075.2807.39.camel@athlon> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="-559023410-851401618-1151053539=:24144" X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 09:07:03 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. ---559023410-851401618-1151053539=:24144 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed On Thu, 22 Jun 2006, Leonard den Ottolander wrote: > Where do you want us to report issues with mccolorer? In the colorer bug > system? > > (I'm seeing a crash when opening the syntax highlighting dialog for the > old syntax highlighting.) Find attached a patch. ---559023410-851401618-1151053539=:24144 Content-Type: TEXT/PLAIN; charset=US-ASCII; name=edit_free_syntax_rules_fix.diff Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: attachment; filename=edit_free_syntax_rules_fix.diff SW5kZXg6IGVkaXQvc3ludGF4LmMNCj09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0N ClJDUyBmaWxlOiAvY3Zzcm9vdC9tYy9tYy9lZGl0L3N5bnRheC5jLHYNCnJl dHJpZXZpbmcgcmV2aXNpb24gMS44MA0KZGlmZiAtdSAtcCAtcjEuODAgc3lu dGF4LmMNCi0tLSBlZGl0L3N5bnRheC5jCTMgQXByIDIwMDYgMjE6MjI6MDkg LTAwMDAJMS44MA0KKysrIGVkaXQvc3ludGF4LmMJMjMgSnVuIDIwMDYgMDk6 MDI6NDMgLTAwMDANCkBAIC05NjksNiArOTgzLDEyIEBAIHZvaWQgZWRpdF9m cmVlX3N5bnRheF9ydWxlcyAoV0VkaXQgKiBlZGkNCiANCiAgICAgaWYgKCFl ZGl0KQ0KIAlyZXR1cm47DQorDQorI2lmIFVTRV9DT0xPUkVSDQorICAgIGNv bG9yZXJfZnJlZV9zeW50YXhfcnVsZXMoZWRpdCk7DQorICAgIHJldHVybjsN CisjZW5kaWYgICAgDQorDQogICAgIGlmIChlZGl0LT5kZWZpbmVzKQ0KIAlk ZXN0cm95X2RlZmluZXMgKCZlZGl0LT5kZWZpbmVzKTsNCiAgICAgaWYgKCFl ZGl0LT5ydWxlcykNCg== ---559023410-851401618-1151053539=:24144-- From irusskih@gmail.com Fri Jun 23 07:08:31 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 679073B069B for ; Fri, 23 Jun 2006 07:08:31 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05406-10 for ; Fri, 23 Jun 2006 07:08:29 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.204]) by menubar.gnome.org (Postfix) with ESMTP id 229933B00EF for ; Fri, 23 Jun 2006 07:08:29 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id 9so741233nzo for ; Fri, 23 Jun 2006 04:08:28 -0700 (PDT) Received: by 10.36.252.42 with SMTP id z42mr3610654nzh; Fri, 23 Jun 2006 04:08:28 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Fri, 23 Jun 2006 04:08:28 -0700 (PDT) Message-ID: <861727ef0606230408p69fe14dbhf846cedd458dfb0e@mail.gmail.com> Date: Fri, 23 Jun 2006 15:08:28 +0400 From: "Igor Russkih" To: "Pavel Tsekov" Subject: Re: Where to report issues with mccolorer? In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <1150989075.2807.39.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 11:08:31 -0000 > > (I'm seeing a crash when opening the syntax highlighting dialog for the > > old syntax highlighting.) > > Find attached a patch. > Thanks, Pavel! -- Igor From INVALID.NOREPLY@gnu.org Thu Jun 22 09:43:19 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9E7BD3B04F0 for ; Thu, 22 Jun 2006 09:43:19 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31278-09 for ; Thu, 22 Jun 2006 09:43:18 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 109113B00E0 for ; Thu, 22 Jun 2006 09:43:18 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtPSa-0003x3-00; Thu, 22 Jun 2006 09:43:04 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 15:43:04 +0200 Date: Thu, 22 Jun 2006 15:43:04 +0200 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-154303.sv26390.2544@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> <20060621-194845.sv26390.25842@savannah.gnu.org> <20060622-153919.sv36205.75620@savannah.gnu.org> In-Reply-To: <20060622-153919.sv36205.75620@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.569 tagged_above=-999 required=2 tests=[AWL=0.031, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.569 X-Spam-Level: X-Mailman-Approved-At: Fri, 23 Jun 2006 08:55:54 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:43:19 -0000 Update of bug #14155 (project mc): Status: Need Info => Fixed Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #27: Not sure why you didn't close it then. You should be able to. Closing. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 10:21:29 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0BCC83B0331 for ; Thu, 22 Jun 2006 10:21:29 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01617-09 for ; Thu, 22 Jun 2006 10:21:27 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 97F493B055E for ; Thu, 22 Jun 2006 10:21:27 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtQ3Y-0005T3-00; Thu, 22 Jun 2006 10:21:16 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 17:21:15 +0300 Date: Thu, 22 Jun 2006 17:21:15 +0300 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060622-172115.sv36205.4532@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> <20060621-194845.sv26390.25842@savannah.gnu.org> <20060622-153919.sv36205.75620@savannah.gnu.org> <20060622-154303.sv26390.2544@savannah.gnu.org> In-Reply-To: <20060622-154303.sv26390.2544@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.569 tagged_above=-999 required=2 tests=[AWL=0.031, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.569 X-Spam-Level: X-Mailman-Approved-At: Fri, 23 Jun 2006 08:55:54 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 14:21:29 -0000 Follow-up Comment #28, bug #14155 (project mc): This is getting annoying. I didn't close it because of comment #24. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 10:35:57 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9C2443B0578 for ; Thu, 22 Jun 2006 10:35:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02525-02 for ; Thu, 22 Jun 2006 10:35:56 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 0E9E23B06AE for ; Thu, 22 Jun 2006 10:35:56 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtQHD-0006LN-00; Thu, 22 Jun 2006 10:35:23 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 16:35:22 +0200 Date: Thu, 22 Jun 2006 16:35:22 +0200 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-163522.sv26390.98931@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> <20060621-194845.sv26390.25842@savannah.gnu.org> <20060622-153919.sv36205.75620@savannah.gnu.org> <20060622-154303.sv26390.2544@savannah.gnu.org> <20060622-172115.sv36205.4532@savannah.gnu.org> In-Reply-To: <20060622-172115.sv36205.4532@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.569 tagged_above=-999 required=2 tests=[AWL=0.031, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.569 X-Spam-Level: X-Mailman-Approved-At: Fri, 23 Jun 2006 08:55:54 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 14:35:57 -0000 Follow-up Comment #29, bug #14155 (project mc): Sorry. I took comment #26 as a "we can close this report", and thought you still weren't aware you could close bugs. Well, you can reopen it yourself if you want. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Fri Jun 23 16:11:47 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A0C263B04C1 for ; Fri, 23 Jun 2006 16:11:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02632-04 for ; Fri, 23 Jun 2006 16:11:43 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 458263B06F5 for ; Fri, 23 Jun 2006 16:11:43 -0400 (EDT) Received: (qmail invoked by alias); 23 Jun 2006 20:11:41 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp027) with SMTP; 23 Jun 2006 22:11:41 +0200 X-Authenticated: #14308112 Date: Fri, 23 Jun 2006 23:10:28 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <20060622161011.GC3368@ugly.local> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <20060622161011.GC3368@ugly.local> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 20:11:47 -0000 On Thu, 22 Jun 2006, Oswald Buddenhagen wrote: > On Thu, Jun 22, 2006 at 05:30:38PM +0400, Igor Russkih wrote: >>>> already implemented. >>> I should look for that switch then :) . >> It's a runtime option in editor's settings dialog. You'll find it easily ;) >> > fwiw, i think this is silly. typical example of over-configurability. if > it has to be runtime-switchable (why?), don't put it in the dialog at > least. Today I've modified Igor's patch as follows: 1) The part of his patch which depends on libcolorer is built as shared library (libcolorer_glue). The library exports a single method which is used to get an array of function pointers - these are methods from the library that the editor calls. 2) The part of his patch which doesn't directly depend on libcolorer remains in the editor source tree (only C code). It exports a set of functions which the code in libcolorer_glue needs to query to the editor, again passed as an array of functions pointers. 3) The editor tries to dynamically load libcolorer_glue.so and if it fails it fallbacks to the default syntax highlighting code. Otherwise colorer is used. These changes allow one to build MC with colorer support but doesn't require libcolorer to be present on the target system. I've made also some other changes - mainly related to the autoconf stuff. Since I am to tired to diff now I'll post patches tomorrow. From INVALID.NOREPLY@gnu.org Fri Jun 23 19:07:00 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EB3193B0968 for ; Fri, 23 Jun 2006 19:06:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10295-10 for ; Fri, 23 Jun 2006 19:06:56 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id C31D33B0957 for ; Fri, 23 Jun 2006 19:06:56 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ftujd-0000Pu-00; Fri, 23 Jun 2006 19:06:45 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Fri, 23 Jun 2006 23:06:44 +0000 Date: Fri, 23 Jun 2006 23:06:44 +0000 To: SGh , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16303] More functionally u7z From: SGh X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16303 User-Agent: Opera/8.51 (X11; Linux i686; U; ru) X-Apparently-From: 80.91.160.214 (Savane authenticated user sgh) Message-Id: <20060623-230644.sv45177.8861@savannah.gnu.org> References: <20060408-134359.sv45177.11632@savannah.gnu.org> <20060408-134508.sv45177.86924@savannah.gnu.org> <20060408-134854.sv45177.29103@savannah.gnu.org> <20060518-165152.sv36205.74443@savannah.gnu.org> <20060530-195233.sv45177.57929@savannah.gnu.org> <20060621-193556.sv26390.77497@savannah.gnu.org> <20060621-191535.sv45177.54566@savannah.gnu.org> In-Reply-To: <20060621-191535.sv45177.54566@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.571 tagged_above=-999 required=2 tests=[AWL=0.029, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.571 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 23:07:00 -0000 Follow-up Comment #6, bug #16303 (project mc): Here is my patch to original u7z, fixed things: 1) Detection if we have 7z or only 7za installed. (With 7z we can work with all 7z-supported archives, i.e. CABs, etc... Only have to rename this script in ucab.) 2) Workaround for old version p7zip archives with prefix ./ in filenames. 3) Fixed directory creation in mcu7zip_mkdir, now it works properly. _______________________________________________________ Additional Item Attachment: File name: u7z.patch Size:1 KB u7z patch _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Sun Jun 25 11:04:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 440133B0079 for ; Sun, 25 Jun 2006 11:04:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18607-01 for ; Sun, 25 Jun 2006 11:04:13 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 4E6B43B008C for ; Sun, 25 Jun 2006 11:04:12 -0400 (EDT) Received: (qmail invoked by alias); 25 Jun 2006 15:03:15 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp041) with SMTP; 25 Jun 2006 17:03:15 +0200 X-Authenticated: #14308112 Date: Sun, 25 Jun 2006 18:02:00 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Where to report issues with mccolorer? In-Reply-To: <861727ef0606230408p69fe14dbhf846cedd458dfb0e@mail.gmail.com> Message-ID: References: <1150989075.2807.39.camel@athlon> <861727ef0606230408p69fe14dbhf846cedd458dfb0e@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jun 2006 15:04:16 -0000 On Fri, 23 Jun 2006, Igor Russkih wrote: >>> (I'm seeing a crash when opening the syntax highlighting dialog for the >>> old syntax highlighting.) >> >> Find attached a patch. >> > Thanks, Pavel! There are some issues with edit_syntax_colorer_dialog() too: 1) The number of elements allocated for 'groups' is one less than it should be. The extra element is needed for the NULL terminator. Memory could be overwritten if the number of groups is equal to the number of syntax types i.e. unique groups. This is unlikely to happen but still... 2) This one is worse because it trashes memory every time :) The memory allocated for 'types' in the while loop is used to store the descriptions of the syntax types and the names of the syntax types. Syntax type names are stored starting at the end of the array and syntax names are stored at the beginning. Now this line is wrong : types[types_list[0].items_number * 2 - types_num] = types_list[idx].name The first time it is invoked it trashes the memory after the last element of the 'types' array. I fixed it like this: types = g_malloc(sizeof(char*) * ((types_list[0].items_number * 2) + 1)); i.e. allocat one more element. It makes sense to do so because you use a NULL terminator for which no space is allocated again and this extra bytes makes the wrong indexing above work as expected. From ptsekov@gmx.net Sun Jun 25 16:16:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72FA33B02DF for ; Sun, 25 Jun 2006 16:16:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31539-10 for ; Sun, 25 Jun 2006 16:16:25 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id E6E853B016D for ; Sun, 25 Jun 2006 16:04:45 -0400 (EDT) Received: (qmail invoked by alias); 25 Jun 2006 20:04:23 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp022) with SMTP; 25 Jun 2006 22:04:23 +0200 X-Authenticated: #14308112 Date: Sun, 25 Jun 2006 23:03:09 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <20060622161011.GC3368@ugly.local> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jun 2006 20:16:36 -0000 Hello, Find attached the patch. In order to build MC you have to run libtoolize in the MC source tree. I've added the ability to tell configure where you colorer is installed. You can pass the colorer directory via the --with-colorer configure option - for example: --with-colorer=/home/ptsekov/colorer This command line option defaults to /usr/local. This patch is just a proof of concept thing. I am posting it so that you can test it and then we can discuss it. Igor, do you mind moving the declarations of the classes found in syntax-colorer.cpp to syntax-colorer.h ? This way we could move all the C functions from syntax-colorer.cpp to syntax-colorer-interface.cpp and make them static and only accessible thru colorer_interface_t. On Fri, 23 Jun 2006, Pavel Tsekov wrote: > On Thu, 22 Jun 2006, Oswald Buddenhagen wrote: > >> On Thu, Jun 22, 2006 at 05:30:38PM +0400, Igor Russkih wrote: >>>>> already implemented. >>>> I should look for that switch then :) . >>> It's a runtime option in editor's settings dialog. You'll find it easily ;) >>> >> fwiw, i think this is silly. typical example of over-configurability. if >> it has to be runtime-switchable (why?), don't put it in the dialog at >> least. > > > Today I've modified Igor's patch as follows: > > 1) The part of his patch which depends on libcolorer > is built as shared library (libcolorer_glue). The library > exports a single method which is used to get an array > of function pointers - these are methods from the library > that the editor calls. > > 2) The part of his patch which doesn't directly depend > on libcolorer remains in the editor source tree (only > C code). It exports a set of functions which the code > in libcolorer_glue needs to query to the editor, again > passed as an array of functions pointers. > > 3) The editor tries to dynamically load libcolorer_glue.so > and if it fails it fallbacks to the default syntax highlighting > code. Otherwise colorer is used. > > These changes allow one to build MC with colorer support but > doesn't require libcolorer to be present on the target system. > > I've made also some other changes - mainly related to the autoconf > stuff. > > Since I am to tired to diff now I'll post patches tomorrow. From ptsekov@gmx.net Sun Jun 25 16:17:03 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8F76F3B035B for ; Sun, 25 Jun 2006 16:17:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31756-01 for ; Sun, 25 Jun 2006 16:16:47 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id A94903B0018 for ; Sun, 25 Jun 2006 16:06:13 -0400 (EDT) Received: (qmail invoked by alias); 25 Jun 2006 20:05:56 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp039) with SMTP; 25 Jun 2006 22:05:56 +0200 X-Authenticated: #14308112 Date: Sun, 25 Jun 2006 23:04:36 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <20060622161011.GC3368@ugly.local> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="-559023410-851401618-1151265835=:10990" Content-ID: X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jun 2006 20:17:03 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. ---559023410-851401618-1151265835=:10990 Content-Type: TEXT/PLAIN; CHARSET=US-ASCII; FORMAT=flowed Content-ID: I forgot to attach the patch :( ---559023410-851401618-1151265835=:10990 Content-Type: APPLICATION/octet-stream; name=colorer-dynload.patch.gz Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: attachment; filename=colorer-dynload.patch.gz H4sICArGnkQCA2NvbG9yZXItZHlubG9hZC5wYXRjaADsPWt32zayn+1fgbq3 qSRLsuRXGil26yp24nucOFd2tu3J5uhQJCRxQ4lakrLju/X+9juDB4kXJdlN 2rP3JNu1SQAzGAxmBjMDEA7C0Yg03iSLOWl8Ir2/XeGv72vNOAnH34vnhP5D PP6b/25+W2MP3iKLp/sZbfqeP6HEj6g325n6O34cxQlNBuNoQXdeex/pKIxo 05uSJXWbjUZjNYaN9rOnrUarDf+R1m6n1YL/mi35j2y3dlutze3t7WU9bUCb wwb8t7tP2nud3YPO/tPmD3sHh/uHHMce4PjpJ9Jo1eGtXW+3yU8/bW73Li8u +6f9wfmb3sW7F6dX5Ij8ZJYpzS7Of9aa4DtUR+FQpWsQeYPe2cXJS2z7XxUT XxXKXgKkaFN1w//660MwMByDi2so7J/0z9lADKzNyBPtzL6uLt/1ewzk75vb G+ndLPM+NUSjpj+fE72oEc4ymow8H0SkBOPFC5t45FWVNCLRdjP44kJaTjZZ v+kSES4HerREL0GZC/gBaf/Q2Xvaae02dw/29/Z3nQK+v8cEfKe2uU0I6cXz O+DrJCOVXpUgKnI+jhPSX6Tpx3BCnoeJePIyMp56YUSCOCN+PD3GKQYM15Mw JfMkHieg8vA4SiglaTzKbr2EdsldvCC+NyMJDcI0S8LhIqMkzIg3C3agn2kM 033HEEHhYhbQhGQwcTC8aUriEXt5+eYdeUlnNPEi8nYxjEKfXIQ+naWUeNA3 lqQTGpAhR4QgZ0jFlaCCnMWA2cvCeNYlNIT6hNzQJIV3sis7ERjrJE4YlgoM GIhPSDxHwCpQfEciLytgmyUcKAYakHDGkE/iOYxpAihhlLdhFJEhJYuUjhZR neGA1uSX8+tXl++uycmb38gvJ/3+yZvr37rQOpvEUEtvKMcVTudRCKhhZIk3 y+5gAAzF69N+7xXAnPx8fnF+/RuMg5ydX785vboiZ5d9ckLenvSvz3vvLk76 5O27/tvLq9MmIVcUCaMMwxI+j9hcASsDmoEQpHLsv8H0pkBfFJCJd0Nhmn0a 3gB1HsjI/G71DDIsXhTPxmyk0LpgZpeEIzKLszq5TUIQmyy255bBF/NbJ+cz v1knB21o5s0+RjABVxkAAJKzcAQdnEVxnNTJz3GaYfPXJwxDa7fdbjXae612 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 5OS+D/GYiwKgaFxtV2Mio2x5++12zh2jBymEBiJZnEtwDsZKJTNyKJeDqeqm 9bnUuh9LlWyrvf9AJDVWRSlBJZ/PWR/tLVnDDVDXxSn6roCWccKjlqBylUa7 znOA7p0E864WdfnS6t7rO4iNYyxlGbJKdbv9wYm87DjWElRlK5xOC1ss8BGw msiAxedQIxaLLP5IZ0tWIAdesYO0HG80i1djwmzRSkz6OfX7kqlZxv6cFflu uPRQXTKTr2fabQbGN8MOsWQbjGVnMh7uFRoNHnraw+V6W1dNVaxvnJ2j0p3C f6191I21d2en7PzzkvGmynjl8sOoreY5th8ZRtLR0vlOz4R/BbvkjMBIoYsf w9SOEJtH2/VvYtRtDrneF6dVSI1v6bj3t0d4jEru+QzZwZwf83f22smPjXR1 0KEGyg7iFKDstZOfMzFAE+3WrOJwJ6DcJpXR+Pnzfc0TR4FgMK6jvhzZiqM1 yqGa0fiDdshmOP5QtU6P2ZRtS7rYqLNVB6cQ6Lu08x2mpr8LPvCTM8upqBN1 /PVV/Fme1ixI1ORHXQzNb4T4P/VkfnF+FSus4yj5ITYG5zzNon0hULMOraAw WEfD7ONJypkjAZin31nX5hkboXuWF6985GXUWc69arn5/4pLbPgHdpvb9vf0 6g1n5BHHuIVoO3Ly8kYs7KDD9nG1+yHE90y5xSyWG+00lk2xGR3rn+iDedWa 6Wee5GiKEQhofSeW3XZm3ndo3yznup5gHY4gpq1iVyc/VIxEm9zIW8nPN4xh dl21TvqtKw0ffKtGPjYXxXZmSndoa8Y9ivkIlAvsKvqJFXsM2mWKqy/z+EME 23Sqp7XUC0Puza8+nTvsy4RlPfqsnR9dahVK3Vv8LlLVLPmfSaGWne9yI28R Z+xnfQb6WmuSZ+6kdVdSl29F/GVUFpshZROtZ5T/7Ok28tmSSFeyueSqzEpB oOjJWAWt9uWWvOhu1YUsxQW2Ml63snu5/XCb3cfm+Fzff3c6FkaBo7irxT3i xyUz3DTYCJ1EWH6D45pf8jkE0f6Acako6kGqW7lXU+m4/eqLKZBJT76TcK97 dka6p/S63b+A6UbGqlxQVxFaXyu55dBbM5Fh91/EvW65l/UF4//8a3FXXob7 gCtwP9vFt9Z1t/utTnu/edA+OCj7CxW77YddQ0Qm1Avwg4qvtxF9vY3o621E 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 y2mbJ45ElOiZzwb3vf589KDQY43hoZv8CxKzrI02JBt9NGGAi6klaWXiOXxA bsACpV6Bw8wNbTdwHAG9eEKRKDNMMN974GcX0Mb5sVvOgW4rGoOVMafcFFc7 aKA/s6xBNBiobDlhFBMmr5svp3HhR1nL4X2a2Ppyusyqdos+jRqaC52b4vl0 cZTc8vI1ZnLUZo9qo7FMCbbKCGRZJdPFNP4wPa0Rjf5F+Hu9Kv4KhRT8nTnw VzCE+l/A36IFOzxNVe55wMbqeojnrB5LmUawLFSCCkL6Kf/rYGxdtZLQ9SxU oj22bbtbyixU6S3tPFTp2agWpw9bMpnHXY6pT3SXawyn/LeeuNpsJ7JWy9nJ DnyW4dTRcVEX/n8MqHI2uhnMr8LzWVEeajftY+7CXoNYr8ESveRBy+qqnb+S +2uqDsZDOc5nC7rzw5Y2tHyU2k+dlcwT1sJPtcaSj5bqJ2K1XKeoxeTEk/ym +4Sf2lmeV+zO8vnCkUWNvs0kAZQKQEkVrb96ltqTfKcirhML1aFTjmdBMh4L GHeRH0gtLh1u+8mKXadZ4q8WmeqvlncPXP1d7oGEBDCVUqPhO90D5foP78AP 78AP78C/rBz2b4cYIplaFltr8p1m7/Z32rDb0oy7nBW3vZRxNqFtkrW1vZwJ tb26Ka79nebQ9tJmend6QicAtcHHASQO6Dg6qA5LnApY4rGg/Y/ULFUFMe0H idupcopXMGMn7J0+7KDpSbGsjurua7lVrhe9WrPkVayybzznXs2RszMq1Jh8 V+3vTOWZcusuVvfNciCuxRyILMmBuGb6D1my/3DNdh/S7fYGJZirNH2RfVfP 7IzFrWe401GYCSb+inJnImr/nhSfqybMl/nyn5tBKkZU/59/sucRAvGqiLzB 9VLmHNPw60z4Fezsb3c/sxa/f2XEQNMFr4SYZx0L7vo7Bh5USrHUfDKyZlLh Fx7vs76uAWGvbccfvH/GEv9JQRvA1bBG9ZgSeSAybUe1LLIxf2L0hZTNsNbk 6QwrIsn/shlljeovIoG/flNr1exzSXFhxoW5xIRzrhdR9GACJblR1KanqD6K n3MOuvk0fAhkQdLsutmkHStNRdPkSX09r0Go9XxP1pZNTOmrMvrihYWXE1E+ 6/lL02FL9a4o8gsa6OwfBQSvnlsJgZL1JJZryYFPB5H0S4tmL37QdN5ATVld gh4XNNq435sH58NpABMQtbtQrOKjvJ66VFJCnm8DrE8mWSeq+ZVnE3Hb6YKv E5AzFopBuOQBu6J0HmNcQZvCMhbnZq5TEMPzoMrcE6XCiDYo2tC1n+Z2rr1Q afr8Mka4lf2W10g6C8e78a2cjtCVcrFcq1btwLhyned6qtdF4hWVFsRIn8Yf E6WzLLM3nPXRsQ1Hr8moh8mezwcT2PEyIvkIoJpfnOaPg+F5ltltGeAaDh5I pYDIhASP4h2pnCUcsA4xkaI4HMSXgTYtls2IA3tGq6AYMWjGxbVqCvGKQLLg Y9RAIgKT3HMMqXo31QqvGVr1ReojvoRiaLyYTy5mAYC8fwBlgu4QnYdCfMiv kMiFtlpLiiOADSIToSkxIagJbxFWMiIBKK8v6URS8p1tLYMmiV4WH199D4Yg DC/HAB0X+yzD09aIFDTiVjONh4tVlWiMvzdKKcVfs5PSae6p1++Vud6uktYv maAqBc8vlMqYZhZrvNcXr98Ey1W9XvWs9evzMjKS7/Ts13HUnJxGCa75Jc/B 9Ca9BX8pLoCM9FZp+Y6T+IXVKlGq7IR8FadGVlYtHTcdwOCLRoMLqihpZeuW r8m+5nj/bTA9C2fw0CAVj0K8nQ6KvUholupYswCEpldKOjg5+4Gw9UtI45JX rPplkAp2PtQyT4hazpd5snLKVMvjxG9ml5uZcQgnpwvUxDbOxyP6I7JD8pxB RfGqsxV0Dt8FaMaSqkA+8tCdMFYooIlHHpw2o0Ti3XHvbDRQcMUFVpnQipbQ ycNgdnqKTuNnG0pZBSDjMKrZrCa8AXwwR5vn/U84omyM6sf9OGyjFWnMjxPU KmM2y4AQvIfhVDulN2Jt4c3Mq9vZ9NUo7PdGGdRiyBNrtzEBwntA4QZbAxR9 PDx4F2x9/qz/3N15c3xwsAvN4MnRpzdHx1nJsTv7W7uftrtHIJsKOz/pg7wS Rz55OM3kXP0BNPXdNfuOhmey/Xb37c5+N6utG6r2dbLNl848ZAODPEiDNZ0E gCq9OjMSAR5lOPS9o3dwvjre2epmT25nw8ie5byWzU3aOALiC3c+4rerQf8a hSta/w6O0MYqWI+MvjzmJBzPQkxYBRvwtMiLm1OytelmJsN5vUZGgmqzJGrW CeoXxizzE37P7ObsYpYRVOc8zzp7gJR9OCbuHOx3dglJeGgE9Jh9KeM9ztvR QWHV6iPpBt1c4/z69kh2AQbFDt9geoI3k/sE+101vXs+0FioPtR5Pr0dJPT+ BEff3SAaVs0U7fIjGPyUnzqq3HpQgzMHYRKY6dVe73qAaskzhpuG9mvUG1+q 34yX8tN+bximFa0fcYf24Kai/cARb/pFEKY0oVqllK/ChGp1XttkS8hCMgm3 cG/+DLsRWtDnWqYz+c9Pf6CVjXLy3XteIN4/Yrff0CQ9uz2bXQ1GI6vnT3/I F9R0B48rsCMJ31dLP3v/9IcUqBR+sJWwAlrUVFtIBPiIj8pdO7BFwS7aigCL J6J1xtxLJMKKvRuRmB53BdS/K03Q3JO2EqubvpPUcCdp+o0mpaXXt31KSS/z agN7fTo+2Ot86IqiNEcY01bE2jUb9h4N8gp2AmwAm+KITUIgNQNW56zDdP7g 5ylgMGQAUFT7AoWwhdO+tQBUcm+pZ3c/Hx92gu2do2O6+/0f0Pq3PoC2wHb2 j447u7vFtx14tdfZgVMhCE0Y6rDb2d7rFv+z/5kdH2wfsMk1SLCLsDgcoyY/ D/H0hj+AW79OLvF/s8mg/+z/AByqCwGL+gAA ---559023410-851401618-1151265835=:10990-- From irusskih@gmail.com Mon Jun 26 09:42:38 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 111A63B03DD for ; Mon, 26 Jun 2006 09:42:38 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21373-08 for ; Mon, 26 Jun 2006 09:42:37 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.207]) by menubar.gnome.org (Postfix) with ESMTP id 041D23B030E for ; Mon, 26 Jun 2006 09:42:36 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id 40so1223015nzk for ; Mon, 26 Jun 2006 06:42:36 -0700 (PDT) Received: by 10.64.114.10 with SMTP id m10mr4858289qbc; Mon, 26 Jun 2006 06:42:36 -0700 (PDT) Received: by 10.65.150.4 with HTTP; Mon, 26 Jun 2006 06:42:36 -0700 (PDT) Message-ID: <861727ef0606260642j2e005a12u9b73c9183fcca227@mail.gmail.com> Date: Mon, 26 Jun 2006 17:42:36 +0400 From: "Igor Russkih" To: "Pavel Tsekov" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620060123.GD99474@inode.hvn> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <20060622161011.GC3368@ugly.local> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.463 tagged_above=-999 required=2 tests=[AWL=-0.063, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -2.463 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jun 2006 13:42:38 -0000 Hello, > This command line option defaults to /usr/local. This patch is > just a proof of concept thing. I am posting it so that you can > test it and then we can discuss it. For me this patch looks fine, its good idea for MC to detect colorer's library presence in runtime. However the implementation is not rather straightforward because of that separate glue library. If such a dynamic loading is best case for MC, maybe it is worth implementing it in more 'valid' way? I mean I can develop a set of 'neutral' C API, which will be included directly into libcolorer. Then MC can dynamically load libcolorer and import all the required API functionality as it imports 'colorer_get_interface' via gmodule in Pavel's version. Surely it will require additional efforts as on my side, as on MC side, but with this we'll get better colorer's integration with MC. Moreover colorer will get a general C-based API, which it doesn't have now. Pavel, whats your opinion on this? > Igor, do you mind moving the declarations of the classes found in > syntax-colorer.cpp to syntax-colorer.h ? This way we could move > all the C functions from syntax-colorer.cpp to > syntax-colorer-interface.cpp and make them static and only accessible > thru colorer_interface_t. Within this model surely it can be changed in this way. -- Igor From ptsekov@gmx.net Mon Jun 26 12:23:54 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2F7093B036C for ; Mon, 26 Jun 2006 12:23:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32045-09 for ; Mon, 26 Jun 2006 12:23:52 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 049713B0196 for ; Mon, 26 Jun 2006 12:23:51 -0400 (EDT) Received: (qmail invoked by alias); 26 Jun 2006 16:23:50 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp023) with SMTP; 26 Jun 2006 18:23:50 +0200 X-Authenticated: #14308112 Date: Mon, 26 Jun 2006 19:22:35 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <861727ef0606260642j2e005a12u9b73c9183fcca227@mail.gmail.com> Message-ID: References: <20060620060123.GD99474@inode.hvn> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <20060622161011.GC3368@ugly.local> <861727ef0606260642j2e005a12u9b73c9183fcca227@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jun 2006 16:23:54 -0000 Hello, On Mon, 26 Jun 2006, Igor Russkih wrote: > For me this patch looks fine, its good idea for MC to detect colorer's > library presence in runtime. > > However the implementation is not rather straightforward because of > that separate glue library. Yes, it adds another level, but at the moment it is the only working solution. By using this library we avoid linking to libcolorer at build time. > If such a dynamic loading is best case for MC, maybe it is worth > implementing it in more 'valid' way? I mean I can develop a set of > 'neutral' C API, which will be included directly into libcolorer The dynamic loading is desired since it drops the dependency on libcolorer. For the package maintainer this means that she/he can build MC with colorer support but the package will not pull libcolorer unless specifically requested to do so (by the user). This is very important IMHO. > Then MC can dynamically load libcolorer and import all the required > API functionality as it imports 'colorer_get_interface' via gmodule in > Pavel's version. Yes. > Surely it will require additional efforts as on my side, as on MC > side, but with this we'll get better colorer's integration with MC. > Moreover colorer will get a general C-based API, which it doesn't have > now. > > Pavel, whats your opinion on this? If you are willing to change colorer so that it will become C-friendly you are more than welcome. Providing a generic interface seems a better solution than writing a new plugin for every editor in the wild. Of course custom plugins could be tuned better to fit the specific requirements of XYZ editor. I think it is up to you after all - either way I'll try to help getting colorer support into MC. From leonard@den.ottolander.nl Tue Jun 27 09:09:09 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72ACC3B008D for ; Tue, 27 Jun 2006 09:09:09 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30079-04 for ; Tue, 27 Jun 2006 09:09:08 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id D41E73B0084 for ; Tue, 27 Jun 2006 09:09:07 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 2E6DC4026 for ; Tue, 27 Jun 2006 15:08:30 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id xShjqIOGYA0c for ; Tue, 27 Jun 2006 15:08:26 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 948134021 for ; Tue, 27 Jun 2006 15:08:26 +0200 (CEST) Subject: Crash in mccolorer when choosing old syntax highlighting From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Tue, 27 Jun 2006 15:08:21 +0200 Message-Id: <1151413701.2841.22.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 13:09:09 -0000 Hi, (The patch by Pavel Tsekov did not fix the issue I was seeing, but then I didn't yet report what it was exactly.) How to reproduce: Edit a file Choose options->general menu Disable colorer Choose options->syntax highlighting boom (Backtrace is for mccolorer with Pavel's patch applied.) I suppose the switching to the menu's necessary for the old syntax highlighting doesn't yet work correctly. #0 0x080aaf1e in colorer_get_handle (edit=0x0) at syntax-colorer-wrapper.c:50 #1 0x080a97ab in colorer_free_syntax_rules (edit=0x0) at syntax-colorer.cpp:493 #2 0x080a7839 in edit_load_syntax (edit=0x0, pnames=0xbfaee638, type=0x0) at syntax.c:1203 #3 0x080a8ca5 in edit_syntax_dialog () at choosesyntax.c:66 #4 0x0807952c in menubar_execute (menubar=Variable "menubar" is not available. ) at menu.c:242 #5 0x08079d98 in menubar_callback (w=0x9697268, msg=WIDGET_HOTKEY, parm=10) at menu.c:326 #6 0x08063ebe in dlg_process_event (h=0x96722b8, key=10, event=0xbfaee6e4) at dialog.c:603 #7 0x080640d4 in run_dlg (h=0x96722b8) at dialog.c:785 #8 0x080a25f5 in edit_file (_file=0x9667908 "Makefile", line=0) at editwidget.c:217 #9 0x0805e39a in do_edit_at_line (what=0x9667908 "Makefile", start_line=0) at cmd.c:270 #10 0x0805e3e6 in do_edit (what=Variable "what" is not available. ) at cmd.c:289 #11 0x08095643 in buttonbar_call (bb=Variable "bb" is not available. ) at widget.c:2279 #12 0x08095831 in buttonbar_callback (w=0x966e0a8, msg=WIDGET_HOTKEY, parm=1004) at widget.c:2301 #13 0x08063d17 in dlg_process_event (h=0x9658298, key=1004, event=0xbfaee804) at dialog.c:614 #14 0x080640d4 in run_dlg (h=0x9658298) at dialog.c:785 #15 0x08078c16 in main (argc=1, argv=0xbfaefa24) at main.c:1675 Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Tue Jun 27 09:11:43 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E1A1C3B0084 for ; Tue, 27 Jun 2006 09:11:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30031-10 for ; Tue, 27 Jun 2006 09:11:40 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 728063B012D for ; Tue, 27 Jun 2006 09:11:36 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id BEB36403C; Tue, 27 Jun 2006 15:11:21 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id UkhQHR1PwEmH; Tue, 27 Jun 2006 15:11:21 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 46DBC4026; Tue, 27 Jun 2006 15:11:21 +0200 (CEST) Subject: Re: Snapshots availability From: Leonard den Ottolander To: Pavel Roskin In-Reply-To: <1151000137.3539.23.camel@dv> References: <1150924866.2801.100.camel@athlon> <1151000137.3539.23.camel@dv> Content-Type: text/plain Date: Tue, 27 Jun 2006 15:11:16 +0200 Message-Id: <1151413876.2841.25.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 13:11:43 -0000 Hello Pavel, On Thu, 2006-06-22 at 14:15 -0400, Pavel Roskin wrote: > Snapshots are not intended for developers. Developers should be using > proper version control systems. Snapshots are for users who want to try > the latest features and check if some bug has been fixed, but who don't > intend to keep the sources up-to-date. Which doesn't contradict the fact that in circumstances it might be useful for me to take a look at a snapshot somebody used to create a mod, like in the case of mccolorer where I did not have the correct snapshot available to diff against. Hence my request. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Tue Jun 27 10:39:56 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EAF473B0500 for ; Tue, 27 Jun 2006 10:39:55 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03870-10 for ; Tue, 27 Jun 2006 10:39:55 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id C50273B04FC for ; Tue, 27 Jun 2006 10:39:54 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 444054026; Tue, 27 Jun 2006 16:39:33 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id DujbSwckqNA4; Tue, 27 Jun 2006 16:39:32 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id C395E4021; Tue, 27 Jun 2006 16:39:32 +0200 (CEST) Subject: Re: Crash in mccolorer when choosing old syntax highlighting From: Leonard den Ottolander To: Igor Russkih In-Reply-To: <861727ef0606270708j12fe8828p9d5464aa9f426071@mail.gmail.com> References: <1151413701.2841.22.camel@athlon> <861727ef0606270708j12fe8828p9d5464aa9f426071@mail.gmail.com> Content-Type: text/plain Date: Tue, 27 Jun 2006 16:39:26 +0200 Message-Id: <1151419167.2841.42.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 14:39:56 -0000 Hello Igor, On Tue, 2006-06-27 at 18:08 +0400, Igor Russkih wrote: > For me Pavel's patch fixes the problem. > > However Pavel diff-ed it with original mc source I believe because > this it can fail to apply. > + if (!edit) > + return; > + > #if USE_COLORER > colorer_free_syntax_rules(edit); > return; > #endif After applying Pavel's patch the if (!edit) ended up *after the (first) #if USE_COLORER. Bringing it to the front indeed fixes this crash. Thanks you both. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From proski@gnu.org Tue Jun 27 11:46:24 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3404A3B02AF for ; Tue, 27 Jun 2006 11:46:24 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06517-02 for ; Tue, 27 Jun 2006 11:46:23 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id D7CB33B015C for ; Tue, 27 Jun 2006 11:46:22 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FvFkw-0003lu-7L for mc-devel@gnome.org; Tue, 27 Jun 2006 11:45:39 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FvFkW-0004lr-Dl; Tue, 27 Jun 2006 11:45:12 -0400 Subject: Re: Snapshots availability From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1151413876.2841.25.camel@athlon> References: <1150924866.2801.100.camel@athlon> <1151000137.3539.23.camel@dv> <1151413876.2841.25.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 27 Jun 2006 11:45:12 -0400 Message-Id: <1151423112.18089.7.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.595 tagged_above=-999 required=2 tests=[AWL=0.005, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.595 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 15:46:24 -0000 On Tue, 2006-06-27 at 15:11 +0200, Leonard den Ottolander wrote: > Hello Pavel, > > On Thu, 2006-06-22 at 14:15 -0400, Pavel Roskin wrote: > > Snapshots are not intended for developers. Developers should be using > > proper version control systems. Snapshots are for users who want to try > > the latest features and check if some bug has been fixed, but who don't > > intend to keep the sources up-to-date. > > Which doesn't contradict the fact that in circumstances it might be > useful for me to take a look at a snapshot somebody used to create a > mod, like in the case of mccolorer where I did not have the correct > snapshot available to diff against. Hence my request. Contributors should send patches and make sure that the patches only contains their modifications and that the modifications are intended. They should also be able to explain the reasons for every change. If they cannot do it, I would not consider such changes for committing to CVS, for the reason that either the contributor is too sloppy, has problems with memory or is not the original author of all the changes. -- Regards, Pavel Roskin From INVALID.NOREPLY@gnu.org Thu Jun 29 06:41:30 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CE1033B0286 for ; Thu, 29 Jun 2006 06:41:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04510-06 for ; Thu, 29 Jun 2006 06:41:29 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 142013B020C for ; Thu, 29 Jun 2006 06:41:29 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fvtxf-00018T-00; Thu, 29 Jun 2006 06:41:27 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 29 Jun 2006 10:41:27 +0000 Date: Thu, 29 Jun 2006 10:41:27 +0000 To: Denis Vlasenko , mc-devel@gnome.org Subject: [bug #16967] unrar passworded_file.rar hangs From: Denis Vlasenko X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16967 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.9) Gecko/20050711 Firefox/1.0.5 (CK-IBM) X-Apparently-From: 195.212.29.187 (Savane authenticated user vda) Message-Id: <20060629-104126.sv50573.85488@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.805 tagged_above=-999 required=2 tests=[AWL=-0.738, BAYES_00=-2.599, RCVD_IN_SORBS_WEB=1.456, SPF_PASS=-0.001, TW_TX=0.077] X-Spam-Score: -1.805 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 10:41:31 -0000 URL: Summary: unrar passworded_file.rar hangs Project: GNU Midnight Commander Submitted by: vda Submitted on: Thursday 06/29/2006 at 10:41 Category: None Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Linux _______________________________________________________ Details: unrar of password-protected archives hangs (unrar opens /dev/tty and sits there, waiting for the password) The patch adds -p- switch. A few unsafe "$var" expansions are fixed in several etxfs scripts. _______________________________________________________ File Attachments: ------------------------------------------------------- Date: Thursday 06/29/2006 at 10:41 Name: 1.diff Size: 6.49KB By: vda _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From master@iaas.msu.ru Thu Jun 29 16:24:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D8EE23B00D0 for ; Thu, 29 Jun 2006 16:24:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07075-05 for ; Thu, 29 Jun 2006 16:24:36 -0400 (EDT) Received: from serv.iaas.msu.ru (serv.iaas.msu.ru [212.192.224.252]) by menubar.gnome.org (Postfix) with ESMTP id 808AA3B007B for ; Thu, 29 Jun 2006 16:24:35 -0400 (EDT) Received: from isaa.radio-msu.net (isaa.radio-msu.net [194.67.81.166]) by serv.iaas.msu.ru (8.13.4/8.13.1) with ESMTP id k5TKOWZR043918; Fri, 30 Jun 2006 00:24:33 +0400 (MSD) (envelope-from master@iaas.msu.ru) Date: Fri, 30 Jun 2006 00:24:06 +0400 (MSD) From: Michail Vidiassov X-X-Sender: master@isaa.radio-msu.net To: Egmont Koblinger Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <20060614131621.GE29389@cs.bme.hu> Message-ID: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: ClamAV version 0.88.2, clamav-milter version 0.88.2 on serv.iaas.msu.ru X-Virus-Status: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.524 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_DN=0.077] X-Spam-Score: -2.524 X-Spam-Level: Cc: mc-devel@gnome.org, Tomasz =?iso-8859-2?Q?K=B3oczko?= X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 20:24:40 -0000 Dear All, On Wed, 14 Jun 2006, Egmont Koblinger wrote: > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > I don't think so, and I don't think it is worth it. Maintaining two backends > IMHO just causes headaches while it doesn't make mc better. I still can't > see why developers do not decide which one to use and drop the other one. > > With Unicode support maintaining the two will be much harder since AFAIK > slang works with UTF-8 while ncurses uses UCS-4. Hence a completely > different patch would be required for the two cases. > Why not to follow the way used in non-UTF mc, and use curses-like calls (translated to ncurses calls or emulated by slang calls in myslang.h)? I have made mc 4.6.1 with UTF patches compile and run when linked against ncrurses 5.4 by replacing SLsmg_write_nwchars by addnwstr. Thus, it may be a good idea to use addnwstr as the wide character output routine, addnwstr being a ncurses call or a wrapper around SLsmg_write_nwchars (along the lines addch is implemented now). Sincerely, Michail From ptsekov@gmx.net Thu Jun 1 08:53:31 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E31023B01AD for ; Thu, 1 Jun 2006 08:53:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03324-10 for ; Thu, 1 Jun 2006 08:53:29 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by menubar.gnome.org (Postfix) with SMTP id D77263B017F for ; Thu, 1 Jun 2006 08:53:28 -0400 (EDT) Received: (qmail invoked by alias); 01 Jun 2006 12:53:27 -0000 Received: from 87-126-39-234.btc-net.bg (EHLO sole) [87.126.39.234] by mail.gmx.net (mp040) with SMTP; 01 Jun 2006 14:53:27 +0200 X-Authenticated: #14308112 Date: Thu, 1 Jun 2006 15:52:18 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: mc@rigacci.org In-Reply-To: Message-ID: References: <20060529075733.GD12204@rigacci.org> <20060530085432.GB15022@rigacci.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.555 tagged_above=-999 required=2 tests=[AWL=0.045, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.555 X-Spam-Level: Cc: MC dev Subject: Re: Blocking DNS lookup on MC startup X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Jun 2006 12:53:31 -0000 On Wed, 31 May 2006, Pavel Tsekov wrote: > There are more calls to gethostbyname() after the get_myname () call. > load_interfaces() is doing gethostbyname() for every single value of the > "interfaces" parameter of smb.conf. If interfaces doesn't contain an > ip_address/netmask pair load_interfaces() tries to resolve the value > via gethostbyname() :( Another solution would be to delay the samba lib initialization until the first samba request. This way it will be clearly visible for the user that the hang is due to a samba request. Of course the initialization must be made interruptable. Opinions ? From ptsekov@gmx.net Fri Jun 2 09:09:02 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 74C403B01DB for ; Fri, 2 Jun 2006 09:09:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27932-10 for ; Fri, 2 Jun 2006 09:09:01 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by menubar.gnome.org (Postfix) with SMTP id 8AF793B000C for ; Fri, 2 Jun 2006 09:09:00 -0400 (EDT) Received: (qmail invoked by alias); 02 Jun 2006 13:08:58 -0000 Received: from 87-126-39-234.btc-net.bg (EHLO sole) [87.126.39.234] by mail.gmx.net (mp032) with SMTP; 02 Jun 2006 15:08:58 +0200 X-Authenticated: #14308112 Date: Fri, 2 Jun 2006 16:07:49 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: vadim In-Reply-To: <200605051503.27061.vadim-lvv@yandex.ru> Message-ID: References: <200605051503.27061.vadim-lvv@yandex.ru> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: [patch] for gnome & kde trash X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 13:09:02 -0000 Hello Vadim, On Fri, 5 May 2006, vadim wrote: > This patch being proposed is created for support of the trash in gnome or in kde. > The files get into the trash only from /home directory and while mc is run in gnome or kde. > I think that root does not need the trash but users must not delete files outside home directory > and not work without GUI. This patch is not acceptable as is. I suppose both GNOME and KDE provide means for moving a file to the trash. I'd be happy to review patches which delete a file to the trash with the appropriate interfaces. Btw note that both GNOME and KDE are supported on systems other than Linux. Next time when you submit a patch for review, please, remove any debugging output that you've used while developing the patch. Patches should be stripped off any information which is not related to the patch. Also avoid whitespace changes, formating changes, etc - they make the patch harder to read. Thanks! From leonard@den.ottolander.nl Fri Jun 2 12:38:53 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 04A363B045F for ; Fri, 2 Jun 2006 12:38:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08517-02 for ; Fri, 2 Jun 2006 12:38:52 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 6EB3C3B00A5 for ; Fri, 2 Jun 2006 12:38:50 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id ECE05402A for ; Fri, 2 Jun 2006 18:38:48 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id agae4SbZ5JJN for ; Fri, 2 Jun 2006 18:38:44 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 5E80C4023 for ; Fri, 2 Jun 2006 18:38:44 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <20060601184743.E643513D16@server8.alinet.sk> References: <20060601184743.E643513D16@server8.alinet.sk> Content-Type: text/plain Date: Fri, 02 Jun 2006 18:40:21 +0200 Message-Id: <1149266421.2605.17.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.306 tagged_above=-999 required=2 tests=[AWL=-0.150, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_RW=0.077, TW_SR=0.077, TW_WX=0.077, TW_XR=0.077] X-Spam-Score: -2.306 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 16:38:53 -0000 Hello Dusan, You are slightly overdoing it with the info. Not sure what the ps, mount and dmesg output are needed for for example... Plus the use of multipart html mail causes quite some waste of disk space and bandwidth. Please be a bit more considerate next time you ask a question. O, and please ask user questions on the user list. On Thu, 2006-06-01 at 20:47 +0200, rekcah wrote: > # ls -l /usr/lib/mc/cons.saver > -rwsrwxrwx 1 root root 5696 May 5 2005 /usr/lib/mc/cons.saver Well that binary is suid root which should work - although suid vcsa is preferred, assuming the /dev/vcsa devices are owned by a user vcsa. Please take a look just below the header of src/cons.saver.c -, but I am wondering if you are actually looking at the correct binary. The latest FC4 mc rpm I checked has cons.saver located in /usr/libexec/mc/. By the way, you do *not* want suid binaries world writable!!! Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Fri Jun 2 12:40:25 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4F39A3B012E for ; Fri, 2 Jun 2006 12:40:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08459-09 for ; Fri, 2 Jun 2006 12:40:24 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 441803B00C8 for ; Fri, 2 Jun 2006 12:40:24 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 6374C4023 for ; Fri, 2 Jun 2006 18:40:23 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id Sv8OzhsaaR-J for ; Fri, 2 Jun 2006 18:40:23 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 0150A4021 for ; Fri, 2 Jun 2006 18:40:22 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <1149266421.2605.17.camel@athlon> References: <20060601184743.E643513D16@server8.alinet.sk> <1149266421.2605.17.camel@athlon> Content-Type: text/plain Date: Fri, 02 Jun 2006 18:42:00 +0200 Message-Id: <1149266520.2605.18.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.714 tagged_above=-999 required=2 tests=[AWL=-0.739, BAYES_05=-1.11, FORGED_RCVD_HELO=0.135] X-Spam-Score: -1.714 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 16:40:25 -0000 On Fri, 2006-06-02 at 18:40 +0200, Leonard den Ottolander wrote: > O, and please ask user questions on the user list. Duh! It was not sent to this list in the first place. Scuze me ;) . Leonard. -- mount -t life -o ro /dev/dna /genetic/research From egmont@uhulinux.hu Fri Jun 2 12:43:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 32D323B0135 for ; Fri, 2 Jun 2006 12:43:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08798-05 for ; Fri, 2 Jun 2006 12:43:33 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id E8D213B0507 for ; Fri, 2 Jun 2006 12:43:32 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id 4CE6B7FA5 for ; Fri, 2 Jun 2006 18:43:31 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25536-07 for ; Fri, 2 Jun 2006 18:43:27 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id 99CA67F4E for ; Fri, 2 Jun 2006 18:43:27 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Fri, 2 Jun 2006 18:43:27 +0200 Date: Fri, 2 Jun 2006 18:43:27 +0200 From: Egmont Koblinger To: mc-devel@gnome.org Message-ID: <20060602164326.GB5134@cs.bme.hu> References: <20060601184743.E643513D16@server8.alinet.sk> <1149266421.2605.17.camel@athlon> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1149266421.2605.17.camel@athlon> User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.855 tagged_above=-999 required=2 tests=[AWL=-0.745, BAYES_05=-1.11] X-Spam-Score: -1.855 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 16:43:36 -0000 On Fri, Jun 02, 2006 at 06:40:21PM +0200, Leonard den Ottolander wrote: > By the way, you do *not* want suid binaries world writable!!! OT: The linux kernel removes the set[ug]id bit as soon as you modify the file. However, other systems may not do so. -- Egmont From leonard@den.ottolander.nl Fri Jun 2 12:50:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1FBE63B0325 for ; Fri, 2 Jun 2006 12:50:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09252-02 for ; Fri, 2 Jun 2006 12:50:26 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 174AD3B0135 for ; Fri, 2 Jun 2006 12:50:26 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 1F6824023 for ; Fri, 2 Jun 2006 18:50:25 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 9HbEI4Iozrqp for ; Fri, 2 Jun 2006 18:50:23 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 3AD194021 for ; Fri, 2 Jun 2006 18:50:23 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <20060602164326.GB5134@cs.bme.hu> References: <20060601184743.E643513D16@server8.alinet.sk> <1149266421.2605.17.camel@athlon> <20060602164326.GB5134@cs.bme.hu> Content-Type: text/plain Date: Fri, 02 Jun 2006 18:52:00 +0200 Message-Id: <1149267120.2605.23.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 16:50:27 -0000 Hello Egmont, On Fri, 2006-06-02 at 18:43 +0200, Egmont Koblinger wrote: > OT: > The linux kernel removes the set[ug]id bit as soon as you modify the file. > However, other systems may not do so. Ok. I didn't know that. Does this only happen with 2.6 kernels or also with 2.4 kernels? Leonard. -- mount -t life -o ro /dev/dna /genetic/research From egmont@uhulinux.hu Fri Jun 2 13:03:12 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3E6D63B00A5 for ; Fri, 2 Jun 2006 13:03:12 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09674-09 for ; Fri, 2 Jun 2006 13:03:09 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id A4DE33B026C for ; Fri, 2 Jun 2006 13:03:09 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id 88C9E803E for ; Fri, 2 Jun 2006 19:03:08 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25507-04 for ; Fri, 2 Jun 2006 19:03:04 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id C51957F4E for ; Fri, 2 Jun 2006 19:03:04 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Fri, 2 Jun 2006 19:03:04 +0200 Date: Fri, 2 Jun 2006 19:03:04 +0200 From: Egmont Koblinger To: mc-devel@gnome.org Message-ID: <20060602170304.GC5134@cs.bme.hu> References: <20060601184743.E643513D16@server8.alinet.sk> <1149266421.2605.17.camel@athlon> <20060602164326.GB5134@cs.bme.hu> <1149267120.2605.23.camel@athlon> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1149267120.2605.23.camel@athlon> User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.58 tagged_above=-999 required=2 tests=[AWL=0.019, BAYES_00=-2.599] X-Spam-Score: -2.58 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 17:03:12 -0000 On Fri, Jun 02, 2006 at 06:52:00PM +0200, Leonard den Ottolander wrote: > Ok. I didn't know that. Does this only happen with 2.6 kernels or also > with 2.4 kernels? I think it's a really very old feature. BTW a world-writable binary (even without a setuid bit) that is likely to be executed by many different users _is_ a big security hole. Anyone can easily replace it with a binary that removes your files or similar... -- Egmont From ossi@kde.org Fri Jun 2 14:51:49 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A82423B0B87 for ; Fri, 2 Jun 2006 14:51:49 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15831-06 for ; Fri, 2 Jun 2006 14:51:45 -0400 (EDT) Received: from ktown.kde.org (ktown.kde.org [131.246.120.250]) by menubar.gnome.org (Postfix) with SMTP id 90FC63B0414 for ; Fri, 2 Jun 2006 14:51:44 -0400 (EDT) Received: (qmail 27395 invoked from network); 2 Jun 2006 18:51:43 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 2 Jun 2006 18:51:43 -0000 Received: from ossi by ugly.local with local (masqmail 0.2.21) id 1FmEhZ-0yc-00 for ; Fri, 02 Jun 2006 20:48:53 +0200 Date: Fri, 2 Jun 2006 20:48:53 +0200 From: Oswald Buddenhagen To: mc-devel@gnome.org Message-ID: <20060602184853.GB3439@ugly.local> Mail-Followup-To: mc-devel@gnome.org References: <200605051503.27061.vadim-lvv@yandex.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.585 tagged_above=-999 required=2 tests=[AWL=0.014, BAYES_00=-2.599] X-Spam-Score: -2.585 X-Spam-Level: Subject: Re: [patch] for gnome & kde trash X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 18:51:49 -0000 On Fri, Jun 02, 2006 at 04:07:49PM +0300, Pavel Tsekov wrote: > This patch is not acceptable as is. > indeed. > I suppose both GNOME and KDE provide means for moving a file to the > trash. > who cares? the authoritative reference is http://www.ramendik.ru/docs/trashspec.html -- Hi! I'm a .signature virus! Copy me into your ~/.signature, please! -- Chaos, panic, and disorder - my work here is done. From nerijus@users.sourceforge.net Sun Jun 4 14:45:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4D6763B02F2 for ; Sun, 4 Jun 2006 14:45:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03996-07 for ; Sun, 4 Jun 2006 14:45:14 -0400 (EDT) Received: from mx.dtiltas.lt (mx.dt.lt [84.32.38.8]) by menubar.gnome.org (Postfix) with ESMTP id 4BE163B02D7 for ; Sun, 4 Jun 2006 14:45:14 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by mx.dtiltas.lt (UAB "Duomenu Tiltas" Mail service) with ESMTP id E3E8BC6D5 for ; Sun, 4 Jun 2006 21:45:11 +0300 (EEST) Received: from mx.dtiltas.lt ([84.32.38.8]) by localhost (mx.dt.lt [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05781-01-4 for ; Sun, 4 Jun 2006 21:45:10 +0300 (EEST) Received: from nerijus.sat.lt (clt-84-32-63-24.dtiltas.lt [84.32.63.24]) by mx.dtiltas.lt (UAB "Duomenu Tiltas" Mail service) with ESMTP id 6D96FCEAC for ; Sun, 4 Jun 2006 21:20:11 +0300 (EEST) Received: (qmail 25458 invoked from network); 4 Jun 2006 18:18:56 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 4 Jun 2006 18:18:56 -0000 Date: Sun, 4 Jun 2006 21:18:56 +0300 From: Nerijus Baliunas To: Leonard den Ottolander MIME-Version: 1.0 Content-Type: TEXT/PLAIN; CHARSET=US-ASCII Content-Disposition: INLINE X-Mailer: Mahogany 0.66.0 'Clio', compiled for Linux 2.6.16-1.2080_3.rhfc5.cubbi_suspend2 i686 Message-Id: <20060604182011.6D96FCEAC@mx.dtiltas.lt> X-Virus-Scanned: amavisd-new at dt.lt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.49 tagged_above=-999 required=2 tests=[AWL=-0.885, BAYES_20=-0.74, FORGED_RCVD_HELO=0.135] X-Spam-Score: -1.49 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Open mailboxes with mailfs X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jun 2006 18:45:16 -0000 Hello, I see you added it to mc.ext.in (very nice btw!): +# Mailboxes +type/^ASCII\ mail\ text$ + Open=%cd %p#mailfs But 'file' on some of my mailboxes gives: ASCII mail text, with very long lines So I suggest removing "$" from the end. Regards, Nerijus From leonard@den.ottolander.nl Mon Jun 5 06:25:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 71A173B0152 for ; Mon, 5 Jun 2006 06:25:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21866-05 for ; Mon, 5 Jun 2006 06:25:20 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 1F2F03B002C for ; Mon, 5 Jun 2006 06:25:19 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 5F3184023 for ; Mon, 5 Jun 2006 12:25:14 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id lf2l-E6+Tgqm for ; Mon, 5 Jun 2006 12:25:13 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id DE0E34021 for ; Mon, 5 Jun 2006 12:25:12 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <20060604182011.6D96FCEAC@mx.dtiltas.lt> References: <20060604182011.6D96FCEAC@mx.dtiltas.lt> Content-Type: text/plain Date: Mon, 05 Jun 2006 12:26:51 +0200 Message-Id: <1149503211.2473.5.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.526 tagged_above=-999 required=2 tests=[AWL=-0.921, BAYES_20=-0.74, FORGED_RCVD_HELO=0.135] X-Spam-Score: -1.526 X-Spam-Level: Subject: Re: Open mailboxes with mailfs X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 10:25:21 -0000 Hi Nerijus, On Sun, 2006-06-04 at 21:18 +0300, Nerijus Baliunas wrote: > So I suggest removing "$" from the end. Sure. Done. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Mon Jun 5 07:06:58 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 89C683B0382 for ; Mon, 5 Jun 2006 07:06:58 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24348-01 for ; Mon, 5 Jun 2006 07:06:57 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 35A883B00CC for ; Mon, 5 Jun 2006 07:06:57 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id E530E4023 for ; Mon, 5 Jun 2006 13:06:55 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id hdr8SfqyTbj0 for ; Mon, 5 Jun 2006 13:06:54 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 55EE44021 for ; Mon, 5 Jun 2006 13:06:54 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: References: <20060529075733.GD12204@rigacci.org> <20060530085432.GB15022@rigacci.org> Content-Type: text/plain Date: Mon, 05 Jun 2006 13:08:29 +0200 Message-Id: <1149505709.2473.19.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.454 tagged_above=-999 required=2 tests=[AWL=0.010, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.454 X-Spam-Level: Subject: Re: Blocking DNS lookup on MC startup X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 11:06:58 -0000 Hello Pavel, On Thu, 2006-06-01 at 15:52 +0300, Pavel Tsekov wrote: > On Wed, 31 May 2006, Pavel Tsekov wrote: > > load_interfaces() is doing gethostbyname() for every single value of the > > "interfaces" parameter of smb.conf. If interfaces doesn't contain an > > ip_address/netmask pair load_interfaces() tries to resolve the value > > via gethostbyname() :( Are you referring to interpret_addr()? I'd say the case where the interface is identified by a name is a bit of a corner case. > Another solution would be to delay the samba lib initialization until the > first samba request. This way it will be clearly visible for the user that > the hang is due to a samba request. Of course the initialization must be > made interruptable. > > Opinions ? I don't have any fundamental objections against delaying the initialization of smbfs, but is it really worth the effort? Don't you think we catch most cases with making the call to Get_Hostbyname() in get_myname() conditional? Leonard. -- mount -t life -o ro /dev/dna /genetic/research From ptsekov@gmx.net Mon Jun 5 07:42:54 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id DF5603B027B for ; Mon, 5 Jun 2006 07:42:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26687-06 for ; Mon, 5 Jun 2006 07:42:52 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.20]) by menubar.gnome.org (Postfix) with SMTP id A04B23B0704 for ; Mon, 5 Jun 2006 07:42:51 -0400 (EDT) Received: (qmail invoked by alias); 05 Jun 2006 11:42:49 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp039) with SMTP; 05 Jun 2006 13:42:49 +0200 X-Authenticated: #14308112 Date: Mon, 5 Jun 2006 14:41:39 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander In-Reply-To: <1149505709.2473.19.camel@athlon> Message-ID: References: <20060529075733.GD12204@rigacci.org> <20060530085432.GB15022@rigacci.org> <1149505709.2473.19.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.489 tagged_above=-999 required=2 tests=[AWL=-0.024, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.489 X-Spam-Level: Cc: MC development Subject: Re: Blocking DNS lookup on MC startup X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 11:42:54 -0000 On Mon, 5 Jun 2006, Leonard den Ottolander wrote: >>> load_interfaces() is doing gethostbyname() for every single value of the >>> "interfaces" parameter of smb.conf. If interfaces doesn't contain an >>> ip_address/netmask pair load_interfaces() tries to resolve the value >>> via gethostbyname() :( > > Are you referring to interpret_addr()? Yes. > I'd say the case where the interface is identified by a name is a bit of > a corner case. Not really. Please, look here: http://mail.gnome.org/archives/mc-devel/2006-April/msg00036.html http://mail.gnome.org/archives/mc/2006-May/msg00005.html It seems historic samba didn't allow interface names in the "interfaces" directive. However newer samba versions allow the use of interface names and it is used by people. If you think about it - it makes a lot of sense. >> Another solution would be to delay the samba lib initialization until the >> first samba request. This way it will be clearly visible for the user that >> the hang is due to a samba request. Of course the initialization must be >> made interruptable. >> >> Opinions ? > > I don't have any fundamental objections against delaying the > initialization of smbfs, but is it really worth the effort? Don't you > think we catch most cases with making the call to Get_Hostbyname() in > get_myname() conditional? Unfortunately not. Switching to a newer samba lib is another option. It has been discussed in the past - at least in bugzilla there is an entry discussing a switch to newer samba. Of course we can hack the intree samba lib but I think it is not worth doing it. From INVALID.NOREPLY@gnu.org Tue Jun 6 02:43:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 153953B00E1 for ; Tue, 6 Jun 2006 02:43:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28705-10 for ; Tue, 6 Jun 2006 02:43:35 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id EA2AB3B0750 for ; Tue, 6 Jun 2006 02:43:34 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnVHn-0005rO-00; Tue, 06 Jun 2006 02:43:31 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 6 Jun 2006 10:43:31 +0400 Date: Tue, 6 Jun 2006 10:43:31 +0400 To: Oleg Broytmann , mc-devel@gnome.org From: Oleg Broytmann X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16757 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060516 SeaMonkey/1.0.2 X-Apparently-From: 80.252.150.251 (Savane authenticated user phd) Message-Id: <20060606-104330.sv47300.22684@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.591 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.591 X-Spam-Level: Cc: Subject: [bug #16757] Environment variables in a subshell X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 06:43:39 -0000 URL: Summary: Environment variables in a subshell Project: GNU Midnight Commander Submitted by: phd Submitted on: Вторник 06.06.2006 at 10:43 Category: Subshell Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Linux _______________________________________________________ Details: I have a lot of different environments (Python, Java, Postgres and so on), and I source a config file when I want to change the environment; for example running "include svn" runs . $HOME/lib/config/svn that adds SVN directories to PATH, LD_LIBRARY_PATH and MANPATH. When I do this under Midnight Commander I have a minor problem with subshell (at least I think the problem is in the subshell). When I run a program in the mc command line (type "./a_script", press [Enter]) mc (subshell?) passes the modified env vars to the program. But if I just press [Enter] on the program mc passes an old environment as if I didn't source any config file; it seems after pressing [Enter] on a program mc passes its own original environment, not the subshell's environment. I think that's a bug; I'd like mc to pass the modified environment to all programs regardless of the way I start them. Debian GNU/Linux 3.1, mc 4.6.1-pre3. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 6 10:18:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 67F1F3B0189 for ; Tue, 6 Jun 2006 10:18:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27630-03 for ; Tue, 6 Jun 2006 10:18:38 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id BBD723B0184 for ; Tue, 6 Jun 2006 10:18:37 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FncO9-0007M9-00; Tue, 06 Jun 2006 10:18:33 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 6 Jun 2006 14:18:33 +0000 Date: Tue, 6 Jun 2006 14:18:33 +0000 To: yaroslav , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060606-141833.sv47365.36914@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.591 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.591 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:18:39 -0000 URL: Summary: Cannot compile mc-2006-06-05-20 Project: GNU Midnight Commander Submitted by: s68 Submitted on: Вторник 06.06.2006 at 14:18 Category: Core Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: current (CVS or snapshot) Operating System: FreeBSD _______________________________________________________ Details: mountlist.c: In function 'fstype_to_string': mountlist.c:186: error: 'MOUNT_UFS' undeclared (first use in this function) Operating systems are: Darwin Kernel Version 8.4.1: Tue Jan 3 18:23:53 PST 2006; root:xnu-792.7.90.obj~1/RELEASE_I386 i386 i386 and FreeBSD 4.10-RELEASE Configure options are "--with-subshell=optional" _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 6 15:46:07 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BEA503B0AE1 for ; Tue, 6 Jun 2006 15:46:07 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17438-06 for ; Tue, 6 Jun 2006 15:46:06 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 5191C3B0B37 for ; Tue, 6 Jun 2006 15:46:06 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnhUx-00034K-00; Tue, 06 Jun 2006 15:45:55 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 6 Jun 2006 21:45:55 +0200 Date: Tue, 6 Jun 2006 21:45:55 +0200 To: yaroslav , Leonard den Ottolander , mc-devel@gnome.org From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060606-214555.sv26390.24839@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> In-Reply-To: <20060606-141833.sv47365.36914@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 19:46:07 -0000 Follow-up Comment #1, bug #16762 (project mc): Does this fix your issue? _______________________________________________________ Additional Item Attachment: File name: mountlist.c.patch Size:0 KB Define HAVE_F_FSTYPE if HAVE_STRUCT_STATFS_F_FSTYPENAME is defined (regardless of HAVE_STATVFS) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Tue Jun 6 16:12:49 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7DD663B0B94 for ; Tue, 6 Jun 2006 16:12:49 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19120-04 for ; Tue, 6 Jun 2006 16:12:47 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 3125D3B0236 for ; Tue, 6 Jun 2006 16:12:47 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 55F6A4023 for ; Tue, 6 Jun 2006 22:12:45 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 8yy9hanIHWkZ for ; Tue, 6 Jun 2006 22:12:44 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id DCC014021 for ; Tue, 6 Jun 2006 22:12:43 +0200 (CEST) From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Tue, 06 Jun 2006 22:14:23 +0200 Message-Id: <1149624863.2506.3.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Subject: FTP: Cannot change to write-only directory X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 20:12:49 -0000 >From Red Hat's bugzilla: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=194277 Leonard. -- mount -t life -o ro /dev/dna /genetic/research From niccolo@rigacci.org Tue Jun 6 19:21:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 015E33B032C for ; Tue, 6 Jun 2006 19:21:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28814-10 for ; Tue, 6 Jun 2006 19:21:38 -0400 (EDT) Received: from paros.rigacci.org (host50-109.pool8838.interbusiness.it [88.38.109.50]) by menubar.gnome.org (Postfix) with ESMTP id 0704C3B012A for ; Tue, 6 Jun 2006 19:21:37 -0400 (EDT) Received: from niccolo by paros.rigacci.org with local (Exim 4.61) (envelope-from ) id 1Fnkrg-0000eR-Pe for mc-devel@gnome.org; Wed, 07 Jun 2006 01:21:36 +0200 Date: Wed, 7 Jun 2006 01:21:36 +0200 From: mc@rigacci.org To: MC dev Message-ID: <20060606232136.GB2405@rigacci.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11+cvs20060403 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.516 tagged_above=-999 required=2 tests=[AWL=-0.872, BAYES_20=-0.74, FORGED_RCVD_HELO=0.135, NO_REAL_NAME=0.961] X-Spam-Score: -0.516 X-Spam-Level: Subject: Re: Blocking DNS lookup on MC startup X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 23:21:39 -0000 > Another solution would be to delay the samba lib initialization until the > first samba request. This way it will be clearly visible for the user that > the hang is due to a samba request. Is the problem related only to smbfs support? If so, my preference will be an option (or a config file parameter) to start mc with smbfs disabled. Delaying samba lib initialization can be a good solution too, but I think more hard to implement. -- Niccolo Rigacci Firenze - Italy Iraq, missione di pace: 38254 morti - www.iraqbodycount.net From INVALID.NOREPLY@gnu.org Wed Jun 7 04:08:31 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 922DF3B02FF for ; Wed, 7 Jun 2006 04:08:31 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25660-03 for ; Wed, 7 Jun 2006 04:08:28 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 8C01F3B0164 for ; Wed, 7 Jun 2006 04:08:28 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fnt5M-0005Iz-00; Wed, 07 Jun 2006 04:08:16 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 08:08:16 +0000 Date: Wed, 7 Jun 2006 08:08:16 +0000 To: yaroslav , Leonard den Ottolander , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060607-080816.sv47365.26756@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> In-Reply-To: <20060606-214555.sv26390.24839@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 08:08:31 -0000 Follow-up Comment #2, bug #16762 (project mc): > Does this fix your issue? No :( _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 7 05:36:46 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E80643B00A8 for ; Wed, 7 Jun 2006 05:36:45 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31652-05 for ; Wed, 7 Jun 2006 05:36:43 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id D094D3B0BBC for ; Wed, 7 Jun 2006 05:36:42 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnuSs-0001hc-00; Wed, 07 Jun 2006 05:36:38 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 12:36:37 +0300 Date: Wed, 7 Jun 2006 12:36:37 +0300 To: yaroslav , Leonard den Ottolander , Pavel Tsekov , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060607-123637.sv36205.98656@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> In-Reply-To: <20060607-080816.sv47365.26756@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001, UPPERCASE_25_50=0] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 09:36:46 -0000 Follow-up Comment #3, bug #16762 (project mc): The real problem here is that noone sets HAVE_STRUCT_STATFS_F_FSTYPENAME. I.e. there is no test at configure time which sets this. Before Leonard's changes to configure there was a test which used to set HAVE_F_FSTYPENAME. #if defined(HAVE_STATVFS) # if defined(HAVE_STRUCT_STATVFS_F_FSTYPENAME) # define HAVE_F_FSTYPENAME # endif #else # if defined(HAVE_STRUCT_STATFS_F_FSTYPENAME) # define HAVE_F_FSTYPENAME # endif #endif So what happens is that on FreeBSD we take the second branch and since HAVE_F_FSTYPENAME is not set the fstype_to_string() routine is compiled in. Apparently MOUNT_UFS is not available on FreeBSD and the build fails. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 7 05:46:33 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 935FB3B0AE7 for ; Wed, 7 Jun 2006 05:46:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32285-09 for ; Wed, 7 Jun 2006 05:46:32 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3B1893B00A8 for ; Wed, 7 Jun 2006 05:46:32 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnuXU-0001tO-00; Wed, 07 Jun 2006 05:41:24 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 12:41:24 +0300 Date: Wed, 7 Jun 2006 12:41:24 +0300 To: yaroslav , Leonard den Ottolander , Pavel Tsekov , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060607-124124.sv36205.81804@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> In-Reply-To: <20060607-123637.sv36205.98656@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.593 tagged_above=-999 required=2 tests=[AWL=0.007, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.593 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 09:46:33 -0000 Follow-up Comment #4, bug #16762 (project mc): In fact in the past the code used to check whether MOUNT_UFS was defined but the check was removed later and the code assumed the availability of MOUNT_UFS for granted: http://cvs.savannah.gnu.org/viewcvs/mc/mc/src/mountlist.c?sortby=date&r2=1.5&r1=1.4&diff_format=u In my opinion this issue should be handled carefully. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From nadvornik@suse.cz Wed Jun 7 06:18:40 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CEC4B3B08CC for ; Wed, 7 Jun 2006 06:18:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02299-01 for ; Wed, 7 Jun 2006 06:18:37 -0400 (EDT) Received: from mail.suse.cz (styx.suse.cz [82.119.242.94]) by menubar.gnome.org (Postfix) with ESMTP id B22FA3B0B10 for ; Wed, 7 Jun 2006 06:18:36 -0400 (EDT) Received: from sphinx.suse.cz (sphinx.suse.cz [10.20.1.5]) by mail.suse.cz (SUSE CR ESMTP Mailer) with ESMTP id A60356283DB for ; Wed, 7 Jun 2006 12:18:33 +0200 (CEST) From: Vladimir Nadvornik To: mc-devel@gnome.org Date: Wed, 7 Jun 2006 12:18:31 +0200 User-Agent: KMail/1.9.1 References: <200509191419.01556.arekm@pld-linux.org> <1131825589.2735.24.camel@athlon> In-Reply-To: <1131825589.2735.24.camel@athlon> MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_4fqhE9aq8TcWQqY" Message-Id: <200606071218.32428.nadvornik@suse.cz> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 10:18:40 -0000 --Boundary-00=_4fqhE9aq8TcWQqY Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline On Saturday 12 November 2005 20:59, Leonard den Ottolander wrote: > Hi Bart, list, > > On Tue, 2005-09-20 at 08:14 +1200, Bart Oldeman wrote: > > Basically you'd need to apply Fedora's patch, and then (sorry no proper > > patch here but it's not a big deal) > > Attached you'll find a proper patch. I've moved the hunk from global.h > to myslang.h (and dropped the inclusion of slang.h as it is redundant). > > Jindrich, please merge this patch with the UTF8 patch. You might even > consider to build the next mc for FC --with-screen=mcslang, as I see the > FC development tree does not yet feature slang-2. > Hi all, In non-UTF-8 mode slang2 behaves a bit different than the patched slang1. As a result, mc does work with 8bit encodings, like 8859-2 or KOI8. The attached patch fixes the SLsmg_write_nwchars() function to 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. e-mail: nadvornik@suse.cz Drahobejlova 27 tel:+420 2 9654 2373 190 00 Praha 9 fax:+420 2 9654 2374 Ceska republika http://www.suse.cz --Boundary-00=_4fqhE9aq8TcWQqY Content-Type: text/x-diff; charset="iso-8859-6"; name="mc-slang2-fix.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="mc-slang2-fix.patch" diff -ruN mc-4.6.1.orig/edit/editdraw.c mc-4.6.1/edit/editdraw.c --- mc-4.6.1.orig/edit/editdraw.c 2006-06-07 11:57:19.000000000 +0200 +++ mc-4.6.1/edit/editdraw.c 2006-06-07 11:56:30.000000000 +0200 @@ -234,7 +234,7 @@ lowlevel_set_color (color); } #ifdef UTF8 - SLsmg_write_char(textchar); + SLsmg_write_nwchars(&textchar, 1); #else addch (textchar); #endif diff -ruN mc-4.6.1.orig/src/help.c mc-4.6.1/src/help.c --- mc-4.6.1.orig/src/help.c 2006-06-07 11:57:19.000000000 +0200 +++ mc-4.6.1/src/help.c 2006-06-07 11:56:30.000000000 +0200 @@ -461,7 +461,7 @@ len = mbrtowc(&wc, p, MB_CUR_MAX, &mbs); if (len <= 0) len = 1; /* skip broken multibyte chars */ - SLsmg_write_char(wc); + SLsmg_write_nwchars(&wc, 1); p += len - 1; } else #endif diff -ruN mc-4.6.1.orig/src/util.c mc-4.6.1/src/util.c --- mc-4.6.1.orig/src/util.c 2006-06-07 11:57:19.000000000 +0200 +++ mc-4.6.1/src/util.c 2006-06-07 11:56:30.000000000 +0200 @@ -58,8 +58,26 @@ #if SLANG_VERSION >= 20000 void SLsmg_write_nwchars(wchar_t *s, size_t n) { - while(n--) - SLsmg_write_char(*s++); + if (SLsmg_is_utf8_mode()) { /* slang can handle it directly */ + while(n-- && *s) + SLsmg_write_char(*s++); + } + else { /* convert wchars back to 8bit encoding */ + mbstate_t mbs; + memset (&mbs, 0, sizeof (mbs)); + while (n-- && *s) { + char buf[MB_LEN_MAX + 1]; /* should use 1 char, but to be sure */ + if (*s < 0x80) { + SLsmg_write_char(*s++); /* ASCII */ + } + else { + if (wcrtomb(buf, *s++, &mbs) == 1) + SLsmg_write_char((wchar_t)(buf[0])); + else + SLsmg_write_char('?'); /* should not happen */ + } + } + } } #endif diff -ruN mc-4.6.1.orig/src/view.c mc-4.6.1/src/view.c --- mc-4.6.1.orig/src/view.c 2006-06-07 11:57:19.000000000 +0200 +++ mc-4.6.1/src/view.c 2006-06-07 11:56:30.000000000 +0200 @@ -852,7 +852,7 @@ #ifndef UTF8 #define view_add_character(view,c) addch (c) #else /* UTF8 */ -#define view_add_character(view,c) SLsmg_write_char(c) +#define view_add_character(view,c) {wchar_t tmp=c; SLsmg_write_nwchars(&tmp, 1);} #endif /* UTF8 */ #define view_add_one_vline() one_vline() #define view_add_string(view,s) addstr (s) --Boundary-00=_4fqhE9aq8TcWQqY-- From INVALID.NOREPLY@gnu.org Wed Jun 7 07:11:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CBAC03B02C0 for ; Wed, 7 Jun 2006 07:11:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05334-02 for ; Wed, 7 Jun 2006 07:11:24 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id A80AC3B01EA for ; Wed, 7 Jun 2006 07:11:24 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnvwN-0004SN-00; Wed, 07 Jun 2006 07:11:11 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 14:11:10 +0300 Date: Wed, 7 Jun 2006 14:11:10 +0300 To: yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060607-141110.sv36205.29236@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> In-Reply-To: <20060607-124124.sv36205.81804@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.593 tagged_above=-999 required=2 tests=[AWL=0.007, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.593 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 11:11:28 -0000 Update of bug #16762 (project mc): Assigned to: None => ptsekov _______________________________________________________ Follow-up Comment #5: I'll fix this. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From adel@uaemet.gov.ae Tue Jun 6 10:12:04 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6DE6E3B0151 for ; Tue, 6 Jun 2006 10:12:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27387-02 for ; Tue, 6 Jun 2006 10:12:02 -0400 (EDT) Received: from www.uaemet.gov.ae (unknown [213.42.139.195]) by menubar.gnome.org (Postfix) with ESMTP id 90B9A3B00A1 for ; Tue, 6 Jun 2006 10:12:00 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by www.uaemet.gov.ae (Postfix) with ESMTP id A68531DF170 for ; Tue, 6 Jun 2006 18:11:57 +0400 (GST) Received: from uaemet.gov.ae (localhost.localdomain [127.0.0.1]) by www.uaemet.gov.ae (Postfix) with ESMTP id 8116B1DF16F for ; Tue, 6 Jun 2006 10:11:55 -0400 (EDT) From: "Adel Gabr" To: mc-devel@gnome.org Date: Tue, 6 Jun 2006 18:11:55 +0400 Message-Id: <20060606140640.M23835@uaemet.gov.ae> X-Mailer: Open WebMail 1.90 20030212 X-OriginatingIP: 213.42.139.195 (adel) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 X-Virus-Scanned: by AMaViS perl-11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.36 tagged_above=-999 required=2 tests=[BAYES_20=-0.74, DEAR_SOMETHING=2.1] X-Spam-Score: 1.36 X-Spam-Level: * X-Mailman-Approved-At: Wed, 07 Jun 2006 08:10:53 -0400 Subject: mc bug X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: adel@uaemet.gov.ae List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:12:04 -0000 Dear Sir, I have installed Suse in my machine,when I try to use Midnight Commander 4.6.0 using the command 'mc' is not working.But if I use mc -x it is working. The output of `mc -V'is :- master:/rhome> mc -V GNU Midnight Commander 4.6.0 Virtual File System: tarfs, extfs, cpiofs, ftpfs, fish With builtin Editor Using system-installed S-Lang library with terminfo database With subshell support as default With support for background operations With mouse support on xterm and Linux console With support for X11 events With internationalization support With multiple codepages support Please advise and send me the good way to reinstall th mc again. Best regards Adel -- Open WebMail Project (http://openwebmail.org) From jnovy@redhat.com Wed Jun 7 08:58:57 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C33CB3B0599 for ; Wed, 7 Jun 2006 08:58:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 13391-09 for ; Wed, 7 Jun 2006 08:58:52 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 88D823B0CD3 for ; Wed, 7 Jun 2006 08:58:52 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k57CwpAG011897; Wed, 7 Jun 2006 08:58:51 -0400 Received: from pobox.stuttgart.redhat.com (pobox.stuttgart.redhat.com [172.16.2.10]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k57CwpR1031982; Wed, 7 Jun 2006 08:58:51 -0400 Received: from vpn-4-41.stuttgart.redhat.com (vpn-4-41.stuttgart.redhat.com [10.32.4.41]) by pobox.stuttgart.redhat.com (8.12.8/8.12.8) with ESMTP id k57CwoY5017421; Wed, 7 Jun 2006 14:58:50 +0200 From: Jindrich Novy To: Vladimir Nadvornik In-Reply-To: <200606071218.32428.nadvornik@suse.cz> References: <200509191419.01556.arekm@pld-linux.org> <1131825589.2735.24.camel@athlon> <200606071218.32428.nadvornik@suse.cz> Content-Type: text/plain Date: Wed, 07 Jun 2006 14:58:51 +0200 Message-Id: <1149685131.2269.10.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.601 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.601 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 12:58:57 -0000 Hi, On Wed, 2006-06-07 at 12:18 +0200, Vladimir Nadvornik wrote: > On Saturday 12 November 2005 20:59, Leonard den Ottolander wrote: > > Hi Bart, list, > > > > On Tue, 2005-09-20 at 08:14 +1200, Bart Oldeman wrote: > > > Basically you'd need to apply Fedora's patch, and then (sorry no proper > > > patch here but it's not a big deal) > > > > Attached you'll find a proper patch. I've moved the hunk from global.h > > to myslang.h (and dropped the inclusion of slang.h as it is redundant). > > > > Jindrich, please merge this patch with the UTF8 patch. You might even > > consider to build the next mc for FC --with-screen=mcslang, as I see the > > FC development tree does not yet feature slang-2. > > slang-2.0.5 is used since FC5 so only FC4 now uses the old slang-1.4.9. > Hi all, > > In non-UTF-8 mode slang2 behaves a bit different than the patched slang1. > As a result, mc does work with 8bit encodings, like 8859-2 or KOI8. > The attached patch fixes the SLsmg_write_nwchars() function to 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. Thanks for the patch. The last hunk didn't apply as there's no view_add_character used in editdraw.c. Jindrich From INVALID.NOREPLY@gnu.org Wed Jun 7 10:42:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 53FEF3B0CC1 for ; Wed, 7 Jun 2006 10:42:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21355-08 for ; Wed, 7 Jun 2006 10:42:37 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 9ADAF3B0CC8 for ; Wed, 7 Jun 2006 10:42:37 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnzEr-0003qw-00; Wed, 07 Jun 2006 10:42:29 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 17:42:29 +0300 Date: Wed, 7 Jun 2006 17:42:29 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060607-174228.sv36205.47259@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> In-Reply-To: <20060607-141110.sv36205.29236@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.555 tagged_above=-999 required=2 tests=[AWL=-0.032, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.555 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 14:42:39 -0000 Follow-up Comment #6, bug #16762 (project mc): Hello yaroslav, Fetch the latest CVS version of MC and apply the attached patch. Let us know wheter it fixes your problem or not. _______________________________________________________ Additional Item Attachment: File name: getmntinfo-fix.patch Size:3 KB _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 7 15:21:42 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 686D93B029F for ; Wed, 7 Jun 2006 15:21:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07968-09 for ; Wed, 7 Jun 2006 15:21:41 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id CF6CD3B0288 for ; Wed, 7 Jun 2006 15:21:40 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fo3aq-0005OI-00; Wed, 07 Jun 2006 15:21:28 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 21:21:28 +0200 Date: Wed, 7 Jun 2006 21:21:28 +0200 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060607-212128.sv26390.34564@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> In-Reply-To: <20060607-174228.sv36205.47259@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 19:21:42 -0000 Follow-up Comment #7, bug #16762 (project mc): Having the essential code moved into acinclude.m4 instead of mountlist.c seems appropriate as this is where it dissappeared from in the first place. And the inclusion of fstypename.m4 also reintroduces the tests that got lost when I introduced ls-mntd-fs.m4 and fsusage.m4. Haven't tested but appears ok. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Wed Jun 7 16:00:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 29F343B03C4 for ; Wed, 7 Jun 2006 16:00:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10546-07 for ; Wed, 7 Jun 2006 16:00:40 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id DCEC73B0546 for ; Wed, 7 Jun 2006 16:00:39 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id CAC5F4023 for ; Wed, 7 Jun 2006 22:00:38 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id LefPSXgX7Ft3 for ; Wed, 7 Jun 2006 22:00:35 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 5B03B4021 for ; Wed, 7 Jun 2006 22:00:35 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <1149624863.2506.3.camel@athlon> References: <1149624863.2506.3.camel@athlon> Content-Type: text/plain Date: Wed, 07 Jun 2006 22:02:15 +0200 Message-Id: <1149710535.2481.2.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Subject: Re: FTP: Cannot change to write-only directory X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 20:00:44 -0000 Hi, On Tue, 2006-06-06 at 22:14 +0200, Leonard den Ottolander wrote: > https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=194277 False alarm. The issue seems to be recently fixed. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From nadvornik@suse.cz Thu Jun 8 06:02:54 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B12DC3B0619 for ; Thu, 8 Jun 2006 06:02:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24798-05 for ; Thu, 8 Jun 2006 06:02:53 -0400 (EDT) Received: from mail.suse.cz (styx.suse.cz [82.119.242.94]) by menubar.gnome.org (Postfix) with ESMTP id 3DE9D3B0CF2 for ; Thu, 8 Jun 2006 06:02:53 -0400 (EDT) Received: from sphinx.suse.cz (sphinx.suse.cz [10.20.1.5]) by mail.suse.cz (SUSE CR ESMTP Mailer) with ESMTP id A084A62853A; Thu, 8 Jun 2006 12:02:51 +0200 (CEST) From: Vladimir Nadvornik To: Jindrich Novy Date: Thu, 8 Jun 2006 12:02:50 +0200 User-Agent: KMail/1.9.1 References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> In-Reply-To: <1149685131.2269.10.camel@localhost.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606081202.51002.nadvornik@suse.cz> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jun 2006 10:02:54 -0000 > > > > In non-UTF-8 mode slang2 behaves a bit different than the patched slang1. > > As a result, mc does work with 8bit encodings, like 8859-2 or KOI8. > > The attached patch fixes the SLsmg_write_nwchars() function to 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. > > Thanks for the patch. The last hunk didn't apply as there's no > view_add_character used in editdraw.c. > My patch is based on mc-4.6.1 The 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 From ptsekov@gmx.net Thu Jun 8 09:10:57 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 080363B0433 for ; Thu, 8 Jun 2006 09:10:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06345-06 for ; Thu, 8 Jun 2006 09:10:53 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.20]) by menubar.gnome.org (Postfix) with SMTP id 765B03B04FD for ; Thu, 8 Jun 2006 09:10:21 -0400 (EDT) Received: (qmail invoked by alias); 08 Jun 2006 13:10:20 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp029) with SMTP; 08 Jun 2006 15:10:20 +0200 X-Authenticated: #14308112 Date: Thu, 8 Jun 2006 16:09:10 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: MC dev Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.477 tagged_above=-999 required=2 tests=[AWL=-0.012, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.477 X-Spam-Level: Subject: Directory Tree feature X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jun 2006 13:10:57 -0000 Hello, I find the directory tree feature quite obscure and unusable ? Does anyone here feel the same way ? If this is the case I'd like that we discuss how it could be improved. There are several things which I think make the directory tree totally unusable: * When I invoke the "Directory Tree" command and the mode is "Static" I cannot easily navigate trough the directory structure. I'd expect that I'd be able to move around the tree using the arrow keys but it doesn't work this way. To enter a directory and list it contents I have to press Enter which closes the dialog box i.e. I cannot use left and right to navigate the subdirectories. So if I start from the root directory and want to go to /home/ptsekov it will take to invocations of the Directory Tree dialog to do so. * The directory tree remebers its state and if I navigate the directory hierarchy more and more directories become expanded I cannot close them - this makes the tree pretty hard to navigate. * The dynamic mode - I fee totally confused when using it. To some degree it is improvement over the static mode in terms of navigation but all the tree changes just confuse me too much and at some point I just become lost. * The whole dynamic/static mode thing is just too much - I'd prefer a single user friendly mode. From egmont@uhulinux.hu Thu Jun 8 14:13:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6ACE53B0F8F for ; Thu, 8 Jun 2006 14:13:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27351-01 for ; Thu, 8 Jun 2006 14:13:11 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id 7EF663B0F64 for ; Thu, 8 Jun 2006 14:13:11 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id 0A26A7DCA; Thu, 8 Jun 2006 20:13:10 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20809-07; Thu, 8 Jun 2006 20:13:03 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id 735F27EB8; Thu, 8 Jun 2006 20:13:03 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Thu, 8 Jun 2006 20:13:02 +0200 Date: Thu, 8 Jun 2006 20:13:02 +0200 From: Egmont Koblinger To: Vladimir Nadvornik Message-ID: <20060608181302.GA6254@cs.bme.hu> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200606081202.51002.nadvornik@suse.cz> User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.583 tagged_above=-999 required=2 tests=[AWL=0.016, BAYES_00=-2.599] X-Spam-Score: -2.583 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jun 2006 18:13:16 -0000 Hi Vladimir (and others), I've just upgraded to slang-2 in our distro and also updated the UTF-8 patches to mc-4.6.1 (based on SUSE's version). It was easier than I thought it would be. I was glad to see that you had applied plenty of my patches in SUSE (those named "00-*"). Please take a look at here again: https://svn.uhulinux.hu/packages/dev/mc/patches/ 00-77 had to be updated to slang-2. When a user searches for a file by ^S, panel->search_buffer is filled up individually with every single byte pressed. Hence it often contains partial UTF-8 string. Displaying it just happened to work with slang-1, but slang-2 prints the partial UTF-8 as "" or similar. As a result, the cyan box overflows: if you search in the left panel for an existing accented filename, two cyan blocks appear in the right panel. The updated patch first finds the longest valid UTF-8 prefix of the string and only prints that part. You might find 00-79 useful too, it fixes an off-by-one bug introduced by the UTF-8 patches that causes Alt+Backspace to behave differently (erase a whole word and one more character, usually a space) than in bash or in vanilla mc (erase only the word). bye, Egmont From INVALID.NOREPLY@gnu.org Sun Jun 11 04:01:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 29B6A3B0547 for ; Sun, 11 Jun 2006 04:01:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15580-01 for ; Sun, 11 Jun 2006 04:01:14 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 97FD53B00D8 for ; Sun, 11 Jun 2006 04:01:14 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FpKr9-0004mk-00; Sun, 11 Jun 2006 03:59:35 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 11 Jun 2006 10:59:34 +0300 Date: Sun, 11 Jun 2006 10:59:34 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Opera/8.51 (Windows ME; U; en) X-Apparently-From: 87.126.52.205 (Savane authenticated user ptsekov) Message-Id: <20060611-105933.sv36205.22318@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> In-Reply-To: <20060607-212128.sv26390.34564@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 08:01:16 -0000 Follow-up Comment #8, bug #16762 (project mc): Ping! _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Sun Jun 11 07:25:25 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1E7143B062A for ; Sun, 11 Jun 2006 07:25:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06549-04 for ; Sun, 11 Jun 2006 07:25:20 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id B6AB13B0635 for ; Sun, 11 Jun 2006 07:25:19 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id C683B4023; Sun, 11 Jun 2006 13:07:10 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id heh8eT5zCX4n; Sun, 11 Jun 2006 13:07:05 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 258354021; Sun, 11 Jun 2006 13:07:05 +0200 (CEST) From: Leonard den Ottolander To: Jindrich Novy In-Reply-To: <20060608181302.GA6254@cs.bme.hu> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> Content-Type: text/plain Date: Sun, 11 Jun 2006 13:08:46 +0200 Message-Id: <1150024126.2478.14.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 11:25:25 -0000 Hello Jindrich, On Thu, 2006-06-08 at 20:13 +0200, Egmont Koblinger wrote: > I've just upgraded to slang-2 in our distro and also updated the UTF-8 > patches to mc-4.6.1 (based on SUSE's version). It was easier than I thought > it would be. I was glad to see that you had applied plenty of my patches in > SUSE (those named "00-*"). Please take a look at here again: > > https://svn.uhulinux.hu/packages/dev/mc/patches/ Please take notice. It would probably be good if Vladimir and you could keep your UTF-8 patch sets in sync. It just seems wasted effort to do this in two places independently. Some inter-distro communication is not going to hurt. Maybe these patches should be centrally maintained in a contribs tree. Egmonts patches are worth looking at. I've blatantly ignored pushing them to you as I'd expected you to integrate them over time. I've probably not made it clear enough to you before that these patches are worth considering. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Sun Jun 11 08:00:33 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 70A6A3B057C for ; Sun, 11 Jun 2006 08:00:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08035-03 for ; Sun, 11 Jun 2006 08:00:30 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id DDF813B062F for ; Sun, 11 Jun 2006 08:00:29 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 6293F4023 for ; Sun, 11 Jun 2006 13:25:30 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id eSqOxfQ23SQl for ; Sun, 11 Jun 2006 13:25:27 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 44AED4021 for ; Sun, 11 Jun 2006 13:25:27 +0200 (CEST) From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Sun, 11 Jun 2006 13:27:09 +0200 Message-Id: <1150025229.2478.17.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Subject: [Fwd: [Bug 194777] New: mc hangs when copying file with no read perm over fish] X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 12:00:33 -0000 Hi, I can confirm this behaviour. Probably fish needs to test permissions before attempting to copy. Leonard. -------- Forwarded Message -------- From: bugzilla at redhat.com To: leonard-rh-bugzilla at den.ottolander.nl Subject: [Bug 194777] New: mc hangs when copying file with no read perm over fish Date: Sat, 10 Jun 2006 09:19:40 -0400 Please do not reply directly to this email. All additional comments should be made in the comments box of this bug report. https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=194777 Summary: mc hangs when copying file with no read perm over fish Product: Fedora Core Version: fc5 Platform: All OS/Version: Linux Status: NEW Severity: normal Priority: normal Component: mc AssignedTo: jnovy at redhat.com ReportedBy: stsp at aknet.ru CC: leonard-rh-bugzilla at den.ottolander.nl Description of problem: If I try to copy the file over the ssh connection (fish) for which there is no read permission, mc hangs. Version-Release number of selected component (if applicable): mc-4.6.1a-13.FC5 How reproducible: always Steps to Reproduce: 1. Make an ssh connection with mc, log is as user, not root 2. Try to read/copy some file, like /etc/shadow, for which you don't have the read permission. Actual results: mc hangs Expected results: mc displays the "permission denied" error. -- mount -t life -o ro /dev/dna /genetic/research From ptsekov@gmx.net Sun Jun 11 11:31:14 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72D893B0138 for ; Sun, 11 Jun 2006 11:31:14 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16333-02 for ; Sun, 11 Jun 2006 11:31:13 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 5CB043B008B for ; Sun, 11 Jun 2006 11:31:12 -0400 (EDT) Received: (qmail invoked by alias); 11 Jun 2006 15:30:20 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp010) with SMTP; 11 Jun 2006 17:30:20 +0200 X-Authenticated: #14308112 Date: Sun, 11 Jun 2006 18:29:08 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander In-Reply-To: <1150025229.2478.17.camel@athlon> Message-ID: References: <1150025229.2478.17.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development Subject: Re: [Fwd: [Bug 194777] New: mc hangs when copying file with no read perm over fish] X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 15:31:14 -0000 On Sun, 11 Jun 2006, Leonard den Ottolander wrote: > I can confirm this behaviour. Probably fish needs to test permissions > before attempting to copy. > > Leonard. I have a patch for this issue for quite some time. It just needs to be polished a bit. I'll try to post it in the next few days. From egmont@uhulinux.hu Mon Jun 12 04:31:53 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 301113B000D for ; Mon, 12 Jun 2006 04:31:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26350-02 for ; Mon, 12 Jun 2006 04:31:47 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id 5A2A33B00A7 for ; Mon, 12 Jun 2006 04:31:46 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id 9D1A07EE0 for ; Mon, 12 Jun 2006 10:30:48 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02190-01 for ; Mon, 12 Jun 2006 10:30:45 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id 5387C7EBA for ; Mon, 12 Jun 2006 10:30:45 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Mon, 12 Jun 2006 10:30:45 +0200 Date: Mon, 12 Jun 2006 10:30:45 +0200 From: Egmont Koblinger To: mc-devel@gnome.org Message-ID: <20060612083045.GA22700@cs.bme.hu> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1150024126.2478.14.camel@athlon> User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.585 tagged_above=-999 required=2 tests=[AWL=0.014, BAYES_00=-2.599] X-Spam-Score: -2.585 X-Spam-Level: Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 08:31:53 -0000 On Sun, Jun 11, 2006 at 01:08:46PM +0200, Leonard den Ottolander wrote: > Egmonts patches are worth looking at. I've blatantly ignored pushing > them to you as I'd expected you to integrate them over time. I've > probably not made it clear enough to you before that these patches are > worth considering. These patches hardly change nowadays. They only change if: - I face a new utf8 related bug in mc. It didn't happen in the last ~1.5 years (except for the off-by-one fix), and I always use the same small subset of mc's features, so it's unlikely for this to happen. - Something else (e.g. slang) is upgraded which introduces or triggers new bugs. - mc is upgraded in our distro. This will only happen if a new mainstream version is released. I don't want to bother with CVS snapshots, 4.6.1 is working reasonably well. After all, I'll try not to forget to mention it here if anything noticable changes in these patches. It's much simpler this way than for anyone to keep track of our changes. Finally, note that while these patches fix many issues with single-width UTF-8 characters, they may be really buggy with double-width (CJK) or zero-width Unicode characters, since I often assume that each Unicode entity occupies one column. I know it is totally false and I already knew it when I created these patches, but doing these things right would have required much more efforts. -- Egmont From jnovy@redhat.com Mon Jun 12 05:17:34 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 096F03B008D for ; Mon, 12 Jun 2006 05:17:34 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27996-03 for ; Mon, 12 Jun 2006 05:17:31 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 7F7723B0061 for ; Mon, 12 Jun 2006 05:17:30 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5C8tU0S007886; Mon, 12 Jun 2006 04:55:30 -0400 Received: from pobox.stuttgart.redhat.com (pobox.stuttgart.redhat.com [172.16.2.10]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5C8tTsF004862; Mon, 12 Jun 2006 04:55:29 -0400 Received: from vpn-4-29.stuttgart.redhat.com (vpn-4-29.stuttgart.redhat.com [10.32.4.29]) by pobox.stuttgart.redhat.com (8.12.8/8.12.8) with ESMTP id k5C8tSY5007832; Mon, 12 Jun 2006 10:55:28 +0200 From: Jindrich Novy To: Leonard den Ottolander In-Reply-To: <1150024126.2478.14.camel@athlon> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> Content-Type: text/plain Date: Mon, 12 Jun 2006 10:55:28 +0200 Message-Id: <1150102528.2242.17.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.5) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.601 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.601 X-Spam-Level: Cc: MC development Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 09:17:34 -0000 Hi Leonard, On Sun, 2006-06-11 at 13:08 +0200, Leonard den Ottolander wrote: > On Thu, 2006-06-08 at 20:13 +0200, Egmont Koblinger wrote: > > I've just upgraded to slang-2 in our distro and also updated the UTF-8 > > patches to mc-4.6.1 (based on SUSE's version). It was easier than I thought > > it would be. I was glad to see that you had applied plenty of my patches in > > SUSE (those named "00-*"). Please take a look at here again: > > > > https://svn.uhulinux.hu/packages/dev/mc/patches/ 00-74, 00-78 patches were helpful for me as well, thanks Egmont. They are now applied in devel FC. > Please take notice. It would probably be good if Vladimir and you could > keep your UTF-8 patch sets in sync. It just seems wasted effort to do > this in two places independently. Some inter-distro communication is not > going to hurt. Maybe these patches should be centrally maintained in a > contribs tree. The problem is that Vladimir and me use different versions of mc. My approach is to be more in sync with upstream so that there's a more recent CVS snapshot in Fedora for now because of a very rare release period of mc. This helps me to do only minimal changes when I want to send a patch to upstream. SuSE uses the stable mc-4.6.1, AFAIK. +1 for storing useful patches in contrib. It would be quite hard to keep them in sync with devel mc though. Cheers, Jindrich From leonard@den.ottolander.nl Mon Jun 12 07:54:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1D6DA3B00D4 for ; Mon, 12 Jun 2006 07:54:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00587-06 for ; Mon, 12 Jun 2006 07:54:25 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 349833B0078 for ; Mon, 12 Jun 2006 07:54:25 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 22A984023 for ; Mon, 12 Jun 2006 13:52:59 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id H8DbT-enwgdG for ; Mon, 12 Jun 2006 13:52:53 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 8D9594021 for ; Mon, 12 Jun 2006 13:52:53 +0200 (CEST) From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Mon, 12 Jun 2006 13:54:35 +0200 Message-Id: <1150113275.2520.29.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Subject: Dialogs, hotkeys and capitalization X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 11:54:27 -0000 Hi, This is a bit of a minor issue, but Pavel Tsekov brought it up when I changed a duplicate hotkey in the sort order dialog. I changed &Change time to C&Hange time thus capitalizing the hotkey, but also leaving the first letter of the phrase capitalized. Although the double capitalization might look somewhat odd it emphasizes the hotkey and I think the capitalized first letter looks nicer. The most widely used approach in the menus and dialogs is to only capitalize the (highlighted) hotkey ("c&Hange time"), but this is implemented inconsistently, which is most obvious in the Command menu. I have no idea how we should reach an agreement on this (vote??), but I think it's a good idea to decide on a format so the menus and dialogs will look more consistent. The three options I think are most appropriate are: No added capitalization of hotkeys ("C&hange time") (no emphasis apart from colourization) Add capitalization to hotkeys ("C&Hange time") (double capitalization) Only capitalize the hotkey ("c&Hange time") (missing capitals in first position) Opinions? Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Mon Jun 12 08:32:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6B86F3B00D8 for ; Mon, 12 Jun 2006 08:32:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02401-03 for ; Mon, 12 Jun 2006 08:32:43 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 58F0F3B00A7 for ; Mon, 12 Jun 2006 08:32:43 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fpla1-0003ZJ-00; Mon, 12 Jun 2006 08:31:41 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Mon, 12 Jun 2006 12:31:41 +0000 Date: Mon, 12 Jun 2006 12:31:41 +0000 To: Nick Shmyrev , mc-devel@gnome.org From: Nick Shmyrev X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; ru; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 195.98.173.2 (Savane authenticated user nshmyrev) Message-Id: <20060612-123140.sv25628.90055@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.814 tagged_above=-999 required=2 tests=[AWL=-0.772, BAYES_00=-2.599, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001] X-Spam-Score: -1.814 X-Spam-Level: Cc: Subject: [bug #16829] Crash when formatting paragraph X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 12:32:44 -0000 URL: Summary: Crash when formatting paragraph Project: GNU Midnight Commander Submitted by: nshmyrev Submitted on: Понедельник 12.06.2006 at 12:31 Category: None Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Hurd _______________________________________________________ Details: With Fedora's 5 stock mc-4.6.1a rpm I have a following crash when formatting paragraph. (gdb) bt #0 next_word_start (t=0x81fc138, q=Variable "q" is not available. ) at wordproc.c:227语言编写的插件,Gimp 还能够使用脚本。大部分现有的脚本都是用 S#1 0x080a975d in format_paragraph (edit=0x81ea598, force=1) at wordproc.c:280 #2 0x0809a035 in edit_execute_cmd (edit=0x81ea598, command=416, char_for_insertion=4294967295) at edit.c:2666 #3 0x0809aa05 in edit_execute_key_command (edit=0x81ea598, command=416, char_for_insertion=4294967295) at edit.c:2250 #4 0x080a268b in edit_callback (w=0x81ea598, msg=WIDGET_KEY, parm=8304) at editwidget.c:362 4Замена 5Копия 6Перемес7Поиск 8Удалить9МенюMC 10Вы #5 0x080599fb in dlg_process_event (h=0x81ef0a8, key=112, event=0xbff84d70) at dialog.c:659 #6 0x08059d0d in run_dlg (h=0x81ef0a8) at dialog.c:785 #7 0x080a22a4 in edit_file (_file=0x81b0850 "concepts.xml.save", line=0) at editwidget.c:225 #8 0x0806fe7b in do_nc () at main.c:1757 #9 0x08070855 in main (argc=Cannot access memory at address 0x0 ) at main.c:2293 #10 0x00af77e4 in __libc_start_main () from /lib/libc.so.6 #11 0x0804d481 in _start () _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Mon Jun 12 08:57:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5781E3B0083 for ; Mon, 12 Jun 2006 08:57:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03281-01 for ; Mon, 12 Jun 2006 08:57:43 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 553873B00E5 for ; Mon, 12 Jun 2006 08:57:43 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FplbW-0003hK-00; Mon, 12 Jun 2006 08:33:14 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Mon, 12 Jun 2006 12:33:14 +0000 Date: Mon, 12 Jun 2006 12:33:14 +0000 To: Nick Shmyrev , mc-devel@gnome.org From: Nick Shmyrev X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; ru; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 195.98.173.2 (Savane authenticated user nshmyrev) Message-Id: <20060612-123314.sv25628.73913@savannah.gnu.org> References: <20060612-123140.sv25628.90055@savannah.gnu.org> In-Reply-To: <20060612-123140.sv25628.90055@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.809 tagged_above=-999 required=2 tests=[AWL=-0.767, BAYES_00=-2.599, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001] X-Spam-Score: -1.809 X-Spam-Level: Cc: Subject: [bug #16829] Crash when formatting paragraph X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 12:57:44 -0000 Follow-up Comment #1, bug #16829 (project mc): The file that causes the crash. You have to put cursor on last in the text (line 2303 for example) and press Alt+p. _______________________________________________________ Additional Item Attachment: File name: translate-concepts.xml.patch.gz Size:9 KB _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From proski@gnu.org Mon Jun 12 16:15:26 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6B0E03B0100 for ; Mon, 12 Jun 2006 16:15:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28924-05 for ; Mon, 12 Jun 2006 16:15:25 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id 3CD0A3B00C8 for ; Mon, 12 Jun 2006 16:15:25 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1Fpsnb-0000tI-Ch for mc-devel@gnome.org; Mon, 12 Jun 2006 16:14:11 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FpsnX-0003XN-9f; Mon, 12 Jun 2006 16:14:07 -0400 From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150113275.2520.29.camel@athlon> References: <1150113275.2520.29.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Mon, 12 Jun 2006 16:14:07 -0400 Message-Id: <1150143247.4297.5.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC development Subject: Re: Dialogs, hotkeys and capitalization X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 20:15:26 -0000 Hello! On Mon, 2006-06-12 at 13:54 +0200, Leonard den Ottolander wrote: > The three options I think are most appropriate are: > No added capitalization of hotkeys ("C&hange time") (no emphasis apart > from colourization) > Add capitalization to hotkeys ("C&Hange time") (double capitalization) > Only capitalize the hotkey ("c&Hange time") (missing capitals in first > position) I suggest no capitalization. I believe capitalization was used when many terminals were unable to highlight or underline the hotkey, or mc couldn't use those capabilities. This is no longer true. -- Regards, Pavel Roskin From proski@gnu.org Mon Jun 12 18:09:18 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 85D7A3B00F5 for ; Mon, 12 Jun 2006 18:09:18 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00701-05 for ; Mon, 12 Jun 2006 18:09:16 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id AA3743B0010 for ; Mon, 12 Jun 2006 18:09:16 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FpuZr-0004zP-6S for mc-devel@gnome.org; Mon, 12 Jun 2006 18:08:07 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FpuZm-0003cR-GF; Mon, 12 Jun 2006 18:08:02 -0400 From: Pavel Roskin To: Jindrich Novy In-Reply-To: <1150102528.2242.17.camel@localhost.localdomain> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <1150102528.2242.17.camel@localhost.localdomain> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Mon, 12 Jun 2006 18:08:02 -0400 Message-Id: <1150150082.4297.34.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC development , Leonard den Ottolander Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 22:09:18 -0000 Hello! On Mon, 2006-06-12 at 10:55 +0200, Jindrich Novy wrote: > The problem is that Vladimir and me use different versions of mc. My > approach is to be more in sync with upstream so that there's a more > recent CVS snapshot in Fedora for now because of a very rare release > period of mc. This helps me to do only minimal changes when I want to > send a patch to upstream. SuSE uses the stable mc-4.6.1, AFAIK. > > +1 for storing useful patches in contrib. It would be quite hard to keep > them in sync with devel mc though. When I see a proposal to store any patches under version control, it makes me think that the version control system is inadequate. The natural representation of patches is differences between file revisions under version control. I think CVS it too centralized for the decentralized development that is done on mc. It's not possible for a non-committing user to create a separate branch. Recent years gave us several decentralized version control systems, such as Arch, BitKeeper, Monotone, Git and Mercurial. Their common feature is that every user has the complete repository of the project. Changes are exchanged between repositories in the form of changesets, either by e-mail or using other protocols. Branching is more advanced, merging is easier, and the merge history is recorded. Most importantly, branching is local. It should be possible to use an old version as the base and then rebase the patches while keeping track of what was actually merged. I think Git would be a great choice because it's free, actively developed and used by major projects such as Linux kernel and Wine. It also has a frontend called StGIT, which allows refining patches before submitting them to other developers. Git repositories work over http. Perhaps ibiblio.com would be persuaded to host the main repository. -- Regards, Pavel Roskin From INVALID.NOREPLY@gnu.org Tue Jun 13 04:02:49 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B0DCD3B00C9 for ; Tue, 13 Jun 2006 04:02:49 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15320-10 for ; Tue, 13 Jun 2006 04:02:46 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id A32783B00F5 for ; Tue, 13 Jun 2006 04:02:46 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq3U0-0002RY-00; Tue, 13 Jun 2006 03:38:40 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 07:38:39 +0000 Date: Tue, 13 Jun 2006 07:38:39 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060613-073838.sv47365.94722@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> In-Reply-To: <20060611-105933.sv36205.22318@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.504 tagged_above=-999 required=2 tests=[AWL=0.019, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.504 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 08:02:49 -0000 Follow-up Comment #9, bug #16762 (project mc): $ patch < getmntinfo-fix.patch can't find file to patch at input line 4 Perhaps you should have used the -p or --strip option? The text leading up to this was: -------------------------- |diff -Nrup mc-orig/acinclude.m4 mc/acinclude.m4 |--- mc-orig/acinclude.m4 2006-06-07 17:37:13.000000000 +0300 |+++ mc/acinclude.m4 2006-06-07 17:22:02.000000000 +0300 -------------------------- File to patch: _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 04:57:28 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3F2D43B00F5 for ; Tue, 13 Jun 2006 04:57:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17194-01 for ; Tue, 13 Jun 2006 04:57:27 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id DE4663B00AF for ; Tue, 13 Jun 2006 04:57:26 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq4MQ-000486-00; Tue, 13 Jun 2006 04:34:54 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 11:34:53 +0300 Date: Tue, 13 Jun 2006 11:34:53 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-113453.sv36205.79891@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> In-Reply-To: <20060613-073838.sv47365.94722@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.504 tagged_above=-999 required=2 tests=[AWL=0.019, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.504 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 08:57:28 -0000 Follow-up Comment #10, bug #16762 (project mc): 1) Enter in your MC directory 2) patch -p1 < getmntinfo-fix.patch _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 06:56:01 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AA2D43B000A for ; Tue, 13 Jun 2006 06:56:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20528-03 for ; Tue, 13 Jun 2006 06:56:00 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 813563B000C for ; Tue, 13 Jun 2006 06:56:00 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq6YC-0000LL-00; Tue, 13 Jun 2006 06:55:12 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 10:55:11 +0000 Date: Tue, 13 Jun 2006 10:55:11 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060613-105511.sv47365.57796@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> In-Reply-To: <20060613-113453.sv36205.79891@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.057, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 10:56:01 -0000 Follow-up Comment #11, bug #16762 (project mc): MOUNT_UFS still undeclared :( But I can fix this by undefining HAVE_INFOMOUNT_LIST in config.h before compiling. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 07:18:04 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A48483B000A for ; Tue, 13 Jun 2006 07:18:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20874-09 for ; Tue, 13 Jun 2006 07:18:03 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 207263B000C for ; Tue, 13 Jun 2006 07:18:03 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq6sz-0000bV-00; Tue, 13 Jun 2006 07:16:41 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 14:16:41 +0300 Date: Tue, 13 Jun 2006 14:16:41 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-141640.sv36205.93232@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> In-Reply-To: <20060613-105511.sv47365.57796@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.057, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 11:18:04 -0000 Follow-up Comment #12, bug #16762 (project mc): With the patch I've submitted the code which uses MOUNT_UFS shouldn't be compiled in. Can you attach your config.log to this bug report, please ? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 07:38:03 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D4A503B008F for ; Tue, 13 Jun 2006 07:38:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21364-10 for ; Tue, 13 Jun 2006 07:38:02 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 9E3293B000C for ; Tue, 13 Jun 2006 07:38:02 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq6tQ-0000c6-00; Tue, 13 Jun 2006 07:17:08 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 14:17:08 +0300 Date: Tue, 13 Jun 2006 14:17:08 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-141708.sv36205.99230@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> In-Reply-To: <20060613-141640.sv36205.93232@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.057, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 11:38:04 -0000 Follow-up Comment #13, bug #16762 (project mc): .. and your config.h too. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 08:55:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 611923B0114 for ; Tue, 13 Jun 2006 08:55:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23753-04 for ; Tue, 13 Jun 2006 08:55:40 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id DC9023B000A for ; Tue, 13 Jun 2006 08:55:39 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq8Q2-0004jO-00; Tue, 13 Jun 2006 08:54:54 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 14:54:54 +0200 Date: Tue, 13 Jun 2006 14:54:54 +0200 To: Nick Shmyrev , Leonard den Ottolander , mc-devel@gnome.org From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060613-145453.sv26390.71423@savannah.gnu.org> References: <20060612-123140.sv25628.90055@savannah.gnu.org> <20060612-123314.sv25628.73913@savannah.gnu.org> In-Reply-To: <20060612-123314.sv25628.73913@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.544 tagged_above=-999 required=2 tests=[AWL=0.056, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.544 X-Spam-Level: Cc: Subject: [bug #16829] Crash when formatting paragraph X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 12:55:44 -0000 Update of bug #16829 (project mc): Category: None => Editor Status: None => Invalid Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #2: This is an issue with the utf8ization of mcedit. The UTF-8 patches are no part of the official mc. Please report your issue in Red Hats bugzilla (http://bugzilla.redhat.com). _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 09:25:37 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7D6C53B00AF for ; Tue, 13 Jun 2006 09:25:37 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24676-05 for ; Tue, 13 Jun 2006 09:25:35 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 01AE43B000A for ; Tue, 13 Jun 2006 09:25:34 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq8sK-0005Bc-00; Tue, 13 Jun 2006 09:24:08 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 16:24:08 +0300 Date: Tue, 13 Jun 2006 16:24:08 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-162408.sv36205.31330@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> In-Reply-To: <20060613-141708.sv36205.99230@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.544 tagged_above=-999 required=2 tests=[AWL=0.056, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.544 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 13:25:37 -0000 Follow-up Comment #14, bug #16762 (project mc): My bad. I see what's wrong - will fix it and attach a new patch. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 09:51:11 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9CA853B00E5 for ; Tue, 13 Jun 2006 09:51:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24974-08 for ; Tue, 13 Jun 2006 09:51:09 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 0FF243B008F for ; Tue, 13 Jun 2006 09:51:09 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq9Hc-0006nV-00; Tue, 13 Jun 2006 09:50:16 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 16:50:16 +0300 Date: Tue, 13 Jun 2006 16:50:16 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-165016.sv36205.72008@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> In-Reply-To: <20060613-162408.sv36205.31330@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.506 tagged_above=-999 required=2 tests=[AWL=0.017, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.506 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 13:51:11 -0000 Follow-up Comment #15, bug #16762 (project mc): Ok. Attaching the new patch. Before applying this one - apply the old patch with -R: patch -p1 -R < getmntinfo-fix.patch and then apply the new one: patch -p1 < getmntinfo-fix-1.patch _______________________________________________________ Additional Item Attachment: File name: getmntinfo-fix-1.patch Size:3 KB _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 10:01:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 85AA33B00AF for ; Tue, 13 Jun 2006 10:01:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25629-05 for ; Tue, 13 Jun 2006 10:01:20 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 53A013B008F for ; Tue, 13 Jun 2006 10:01:20 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq9Qw-0006uf-00; Tue, 13 Jun 2006 09:59:54 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 13:59:54 +0000 Date: Tue, 13 Jun 2006 13:59:54 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060613-135953.sv47365.47118@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> In-Reply-To: <20060613-165016.sv36205.72008@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.506 tagged_above=-999 required=2 tests=[AWL=0.017, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.506 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 14:01:21 -0000 Follow-up Comment #16, bug #16762 (project mc): With getmntinfo-fix-1.patch compilation process finished successfully. 10x! Will you include this patch into source tree? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 10:22:29 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 912F33B00A5 for ; Tue, 13 Jun 2006 10:22:29 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26410-04 for ; Tue, 13 Jun 2006 10:22:26 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 45D1D3B00E5 for ; Tue, 13 Jun 2006 10:22:26 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq9lr-0007EE-00; Tue, 13 Jun 2006 10:21:31 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 17:21:31 +0300 Date: Tue, 13 Jun 2006 17:21:31 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-172130.sv36205.64124@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> In-Reply-To: <20060613-135953.sv47365.47118@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.544 tagged_above=-999 required=2 tests=[AWL=0.056, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.544 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 14:22:29 -0000 Follow-up Comment #17, bug #16762 (project mc): Yes. I just wanted to hear from Rolland Illig before commiting. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From kloczek@rudy.mif.pg.gda.pl Tue Jun 13 13:16:01 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 86F433B0438 for ; Tue, 13 Jun 2006 13:16:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31972-09 for ; Tue, 13 Jun 2006 13:16:00 -0400 (EDT) Received: from rudy.mif.pg.gda.pl (rudy.mif.pg.gda.pl [153.19.42.16]) by menubar.gnome.org (Postfix) with ESMTP id 26D0B3B0407 for ; Tue, 13 Jun 2006 13:16:00 -0400 (EDT) X-Virus-Scanned: at rudy.mif.pg.gda.pl Received: by rudy.mif.pg.gda.pl (plum, from userid 2732) id A1066233D5; Tue, 13 Jun 2006 19:14:41 +0200 (CEST) Date: Tue, 13 Jun 2006 19:14:41 +0200 (CEST) From: =?ISO-8859-2?Q?Tomasz_K=B3oczko?= To: Egmont Koblinger In-Reply-To: <20060612083045.GA22700@cs.bme.hu> Message-ID: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <20060612083045.GA22700@cs.bme.hu> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-59671104-1150218881=:31655" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.541 tagged_above=-999 required=2 tests=[AWL=-0.017, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_SG=0.077] X-Spam-Score: -2.541 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 17:16:01 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --0-59671104-1150218881=:31655 Content-Type: TEXT/PLAIN; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 8BIT On Mon, 12 Jun 2006, Egmont Koblinger wrote: [..] BTW: anyone is working on UFT-8 support for ncurses(w) backend ? BTW2: few monts ago was on this list about converting in source tree alle po/*.po files to UTF-8 .. still not done. Any reasons ? It can be performed by: [mc]$ for i in po/*.po; do msgconv -t UTF-8 $i -o $i; done and commiting changes. kloczek -- ----------------------------------------------------------- *Ludzie nie mają problemów, tylko sobie sami je stwarzają* ----------------------------------------------------------- Tomasz Kłoczko, sys adm @zie.pg.gda.pl|*e-mail: kloczek@rudy.mif.pg.gda.pl* --0-59671104-1150218881=:31655-- From egmont@uhulinux.hu Wed Jun 14 09:17:10 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1073B3B0406 for ; Wed, 14 Jun 2006 09:17:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31014-06 for ; Wed, 14 Jun 2006 09:17:08 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id 32A1D3B0081 for ; Wed, 14 Jun 2006 09:17:08 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id F42397F9A; Wed, 14 Jun 2006 15:16:24 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26249-05; Wed, 14 Jun 2006 15:16:21 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id BB0867E02; Wed, 14 Jun 2006 15:16:21 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Wed, 14 Jun 2006 15:16:21 +0200 Date: Wed, 14 Jun 2006 15:16:21 +0200 From: Egmont Koblinger To: Tomasz =?iso-8859-2?Q?K=B3oczko?= Subject: Re: utf8 patch for mc, slang 2 version Message-ID: <20060614131621.GE29389@cs.bme.hu> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <20060612083045.GA22700@cs.bme.hu> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.548 tagged_above=-999 required=2 tests=[AWL=-0.026, BAYES_00=-2.599, TW_SG=0.077] X-Spam-Score: -2.548 X-Spam-Level: Cc: mc-devel@gnome.org X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 13:17:10 -0000 On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz Kłoczko wrote: > BTW: anyone is working on UFT-8 support for ncurses(w) backend ? I don't think so, and I don't think it is worth it. Maintaining two backends IMHO just causes headaches while it doesn't make mc better. I still can't see why developers do not decide which one to use and drop the other one. With Unicode support maintaining the two will be much harder since AFAIK slang works with UTF-8 while ncurses uses UCS-4. Hence a completely different patch would be required for the two cases. > BTW2: few monts ago was on this list about converting in source > tree alle po/*.po files to UTF-8 .. still not done. Any reasons ? > > It can be performed by: > > [mc]$ for i in po/*.po; do msgconv -t UTF-8 $i -o $i; done Are you sure it is safe to use the same output file? I'd rather use a tmp file. It depends on msgconv's internal implementation, but I can easily imagine a situation where the writing file descriptor's position exceeds the reading position (since UTF-8 is longer than the 8-bit version) and this may cause invalid results. Due to buffered read and write requests I guess it needs larger files (with approx. 4096 -- 8192 accented characters) for this bug to occur. I'm not sure, though, just reasonably paranoid :-) -- Egmont From nadvornik@suse.cz Wed Jun 14 10:23:23 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3724F3B041B for ; Wed, 14 Jun 2006 10:23:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03772-05 for ; Wed, 14 Jun 2006 10:23:09 -0400 (EDT) Received: from mail.suse.cz (styx.suse.cz [82.119.242.94]) by menubar.gnome.org (Postfix) with ESMTP id A494D3B0570 for ; Wed, 14 Jun 2006 10:23:09 -0400 (EDT) Received: from sphinx.suse.cz (sphinx.suse.cz [10.20.1.5]) by mail.suse.cz (SUSE CR ESMTP Mailer) with ESMTP id 9710C628067 for ; Wed, 14 Jun 2006 16:22:51 +0200 (CEST) From: Vladimir Nadvornik To: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version Date: Wed, 14 Jun 2006 16:22:49 +0200 User-Agent: KMail/1.9.1 References: <200509191419.01556.arekm@pld-linux.org> <1150024126.2478.14.camel@athlon> <1150102528.2242.17.camel@localhost.localdomain> In-Reply-To: <1150102528.2242.17.camel@localhost.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606141622.50049.nadvornik@suse.cz> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 14:23:23 -0000 On Monday 12 June 2006 10:55, Jindrich Novy wrote: > > > Please take notice. It would probably be good if Vladimir and you could > > keep your UTF-8 patch sets in sync. It just seems wasted effort to do > > this in two places independently. Some inter-distro communication is not > > going to hurt. Maybe these patches should be centrally maintained in a > > contribs tree. > > The problem is that Vladimir and me use different versions of mc. My > approach is to be more in sync with upstream so that there's a more > recent CVS snapshot in Fedora for now because of a very rare release > period of mc. This helps me to do only minimal changes when I want to > send a patch to upstream. SuSE uses the stable mc-4.6.1, AFAIK. > It would not be a problem to have a more recent mc snapshot in openSUSE Factory. Even better, if it is synced 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 From bartoldeman@users.sourceforge.net Wed Jun 14 17:52:11 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CBF073B0433 for ; Wed, 14 Jun 2006 17:52:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31602-06 for ; Wed, 14 Jun 2006 17:52:08 -0400 (EDT) Received: from mail2.woosh.co.nz (webmail.woosh.co.nz [202.74.207.2]) by menubar.gnome.org (Postfix) with ESMTP id 9AAF83B041B for ; Wed, 14 Jun 2006 17:52:07 -0400 (EDT) Received: from enm-bo-lt.localnet (202-74-212-77.ue.woosh.co.nz [202.74.212.77]) by woosh.co.nz (Rockliffe SMTPRA 6.1.22) with ESMTP id ; Thu, 15 Jun 2006 09:51:23 +1200 Received: from enbeo (helo=localhost) by enm-bo-lt.localnet with local-esmtp (Exim 4.62) (envelope-from ) id 1FqdB0-000326-Ma; Thu, 15 Jun 2006 09:45:26 +1200 Date: Thu, 15 Jun 2006 09:45:26 +1200 (NZST) From: Bart Oldeman X-X-Sender: enbeo@enm-bo-lt.localnet To: Egmont Koblinger Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <20060614131621.GE29389@cs.bme.hu> Message-ID: References: <200509191419.01556.arekm@pld-linux.org><200606071218.32428.nadv ornik@suse.cz><1149685131.2269.10.camel@localhost.localdomain><200606081202 .51002.nadvornik@suse.cz><20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon><20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: Cc: mc-devel@gnome.org, Tomasz =?iso-8859-2?Q?K=B3oczko?= X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 21:52:12 -0000 On Wed, 14 Jun 2006, Egmont Koblinger wrote: > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > I don't think so, and I don't think it is worth it. Maintaining two backends > IMHO just causes headaches while it doesn't make mc better. I still can't > see why developers do not decide which one to use and drop the other one. Maybe compatibility with older UN*Xes with curses but no slang? > With Unicode support maintaining the two will be much harder since AFAIK > slang works with UTF-8 while ncurses uses UCS-4. Hence a completely > different patch would be required for the two cases. Last time I played with it ncursesw (but not plain ncurses) handled UTF-8 just fine. e.g. you can pass a UTF-8 encoded string to addstr(), and provided the locale is set correctly, ncursesw will compute its width correctly. It is *also* possible to use addwstr() with UCS-4, but not compulsory. Bart From proski@gnu.org Wed Jun 14 18:12:25 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 13D573B0145 for ; Wed, 14 Jun 2006 18:12:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08738-03 for ; Wed, 14 Jun 2006 18:12:23 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id 67B653B00D6 for ; Wed, 14 Jun 2006 18:12:23 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FqdaT-0000qj-3U for mc-devel@gnome.org; Wed, 14 Jun 2006 18:11:45 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FqdaL-00062m-Lp; Wed, 14 Jun 2006 18:11:37 -0400 Subject: Re: utf8 patch for mc, slang 2 version From: Pavel Roskin To: Bart Oldeman In-Reply-To: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadv ornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202 .51002.nadvornik@suse.cz><20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon><20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Wed, 14 Jun 2006 18:11:37 -0400 Message-Id: <1150323097.23144.2.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: Egmont Koblinger , mc-devel@gnome.org, Tomasz =?iso-8859-2?Q?K=B3oczko?= X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 22:12:25 -0000 Hello! On Thu, 2006-06-15 at 09:45 +1200, Bart Oldeman wrote: > On Wed, 14 Jun 2006, Egmont Koblinger wrote: > > > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: > > > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > > > I don't think so, and I don't think it is worth it. Maintaining two backends > > IMHO just causes headaches while it doesn't make mc better. I still can't > > see why developers do not decide which one to use and drop the other one. > > Maybe compatibility with older UN*Xes with curses but no slang? It's a bogus argument. UNIX curses was removed long ago, and it had never worked well anyway. I don't remember a single person complaining. Besides, S-Lang is included with mc and it's quite portable. -- Regards, Pavel Roskin From ossi@kde.org Wed Jun 14 18:23:28 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 168E43B000E for ; Wed, 14 Jun 2006 18:23:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00410-04 for ; Wed, 14 Jun 2006 18:23:24 -0400 (EDT) Received: from ktown.kde.org (ktown.kde.org [131.246.120.250]) by menubar.gnome.org (Postfix) with SMTP id 194493B0099 for ; Wed, 14 Jun 2006 18:23:24 -0400 (EDT) Received: (qmail 6653 invoked from network); 14 Jun 2006 22:22:34 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 14 Jun 2006 22:22:34 -0000 Received: from ossi by ugly.local with local (masqmail 0.2.21) id 1Fqdkw-2f5-00 for ; Thu, 15 Jun 2006 00:22:34 +0200 Date: Thu, 15 Jun 2006 00:22:34 +0200 From: Oswald Buddenhagen To: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version Message-ID: <20060614222234.GA9122@ugly.local> Mail-Followup-To: mc-devel@gnome.org References: <20060614131621.GE29389@cs.bme.hu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.585 tagged_above=-999 required=2 tests=[AWL=0.014, BAYES_00=-2.599] X-Spam-Score: -2.585 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 22:23:28 -0000 On Thu, Jun 15, 2006 at 09:45:26AM +1200, Bart Oldeman wrote: > On Wed, 14 Jun 2006, Egmont Koblinger wrote: > > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > > > I don't think so, and I don't think it is worth it. Maintaining two backends > > IMHO just causes headaches while it doesn't make mc better. I still can't > > see why developers do not decide which one to use and drop the other one. > > Maybe compatibility with older UN*Xes with curses but no slang? > that doesn't sound too convincing. > > With Unicode support maintaining the two will be much harder since AFAIK > > slang works with UTF-8 while ncurses uses UCS-4. Hence a completely > > different patch would be required for the two cases. > > Last time I played with it ncursesw (but not plain ncurses) handled UTF-8 > just fine. > good. i'm all for killing slang support. why that one? libslang is twice as big as libncursesw. probably because it was meant to be much more than just a display lib. -- Hi! I'm a .signature virus! Copy me into your ~/.signature, please! -- Chaos, panic, and disorder - my work here is done. From kloczek@rudy.mif.pg.gda.pl Thu Jun 15 00:21:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2CCA43B002B for ; Thu, 15 Jun 2006 00:21:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10727-08 for ; Thu, 15 Jun 2006 00:21:33 -0400 (EDT) Received: from rudy.mif.pg.gda.pl (rudy.mif.pg.gda.pl [153.19.42.16]) by menubar.gnome.org (Postfix) with ESMTP id D320E3B00B5 for ; Thu, 15 Jun 2006 00:21:32 -0400 (EDT) X-Virus-Scanned: at rudy.mif.pg.gda.pl Received: by rudy.mif.pg.gda.pl (plum, from userid 2732) id DE57C233C2; Thu, 15 Jun 2006 06:20:42 +0200 (CEST) Date: Thu, 15 Jun 2006 06:20:42 +0200 (CEST) From: =?ISO-8859-2?Q?Tomasz_K=B3oczko?= To: Egmont Koblinger Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <20060614131621.GE29389@cs.bme.hu> Message-ID: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-590361060-1150344476=:31655" Content-ID: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.54 tagged_above=-999 required=2 tests=[AWL=-0.016, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_SG=0.077] X-Spam-Score: -2.54 X-Spam-Level: Cc: mc-devel@gnome.org X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 04:21:36 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --0-590361060-1150344476=:31655 Content-Type: TEXT/PLAIN; CHARSET=ISO-8859-2; FORMAT=flowed Content-Transfer-Encoding: 8BIT Content-ID: On Wed, 14 Jun 2006, Egmont Koblinger wrote: > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz Kłoczko wrote: > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > I don't think so, and I don't think it is worth it. Maintaining two backends > IMHO just causes headaches while it doesn't make mc better. I still can't > see why developers do not decide which one to use and drop the other one. If someone want ask which backend is more importand and will be better keep as major IMO answer tn this kind question is very simple: # rpm -q --whatrequires libslang.so.2 | grep -v slang | wc -l 4 # rpm -q --whatrequires libncurses.so.5 libncursesw.so.5 | grep -v ncurses |wc -l 55 Above slang list contain only packages which do not have now ncurses backend and are not importand as mc :) Also current state have other sick points on Linux. In case using mc with gpm it causes runtime linking with more than one term toolkit library (slang or internal slang and ncurses used by libgpm). [..] >> [mc]$ for i in po/*.po; do msgconv -t UTF-8 $i -o $i; done > > Are you sure it is safe to use the same output file? I'd rather use a tmp > file. I'm sure. msgconv cumulates output in memory and aftewr finish conversion writes output to file name passed in -o parameter in single step. kloczek -- ----------------------------------------------------------- *Ludzie nie mają problemów, tylko sobie sami je stwarzają* ----------------------------------------------------------- Tomasz Kłoczko, sys adm @zie.pg.gda.pl|*e-mail: kloczek@rudy.mif.pg.gda.pl* --0-590361060-1150344476=:31655-- From ptsekov@gmx.net Thu Jun 15 00:35:07 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 45C963B0324 for ; Thu, 15 Jun 2006 00:35:07 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11437-01 for ; Thu, 15 Jun 2006 00:34:58 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 4B94E3B0184 for ; Thu, 15 Jun 2006 00:34:56 -0400 (EDT) Received: (qmail invoked by alias); 15 Jun 2006 04:34:23 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp036) with SMTP; 15 Jun 2006 06:34:23 +0200 X-Authenticated: #14308112 Date: Thu, 15 Jun 2006 07:33:12 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole Cc: MC dev Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <1150323097.23144.2.camel@dv> Message-ID: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadv ornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202 .51002.nadvornik@suse.cz><20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon><20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> <1150323097.23144.2.camel@dv> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.546 tagged_above=-999 required=2 tests=[AWL=0.054, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.546 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 04:35:07 -0000 On Wed, 14 Jun 2006, Pavel Roskin wrote: > Hello! > > On Thu, 2006-06-15 at 09:45 +1200, Bart Oldeman wrote: >> On Wed, 14 Jun 2006, Egmont Koblinger wrote: >> >>> On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: >>> >>>> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? >>> >>> I don't think so, and I don't think it is worth it. Maintaining two backends >>> IMHO just causes headaches while it doesn't make mc better. I still can't >>> see why developers do not decide which one to use and drop the other one. >> >> Maybe compatibility with older UN*Xes with curses but no slang? > > It's a bogus argument. UNIX curses was removed long ago, and it had > never worked well anyway. I don't remember a single person complaining. > Besides, S-Lang is included with mc and it's quite portable. We had that argument once already. curses is not that old and it is standard. And it has unicode support. Its just a matter of using it. From egmont@uhulinux.hu Thu Jun 15 06:33:33 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5B1473B0440 for ; Thu, 15 Jun 2006 06:33:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30159-02 for ; Thu, 15 Jun 2006 06:33:28 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id 78AEC3B03EB for ; Thu, 15 Jun 2006 06:33:28 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id DC5CA8036 for ; Thu, 15 Jun 2006 12:33:20 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12764-06 for ; Thu, 15 Jun 2006 12:33:17 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id 281557FF0 for ; Thu, 15 Jun 2006 12:33:17 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Thu, 15 Jun 2006 12:33:14 +0200 Date: Thu, 15 Jun 2006 12:33:14 +0200 From: Egmont Koblinger To: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version Message-ID: <20060615103314.GA14523@cs.bme.hu> References: <20060614131621.GE29389@cs.bme.hu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.584 tagged_above=-999 required=2 tests=[AWL=0.015, BAYES_00=-2.599] X-Spam-Score: -2.584 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 10:33:36 -0000 Hi, > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > > > I don't think so, and I don't think it is worth it. Maintaining two backends > > IMHO just causes headaches while it doesn't make mc better. I still can't > > see why developers do not decide which one to use and drop the other one. > > Maybe compatibility with older UN*Xes with curses but no slang? Asking these sysadmins to install slang (or compile mc to its bundled slang) is IMHO easier than to do double work in mc. > Last time I played with it ncursesw (but not plain ncurses) handled UTF-8 > just fine. > > e.g. you can pass a UTF-8 encoded string to addstr(), and provided the > locale is set correctly, ncursesw will compute its width correctly. It is > *also* possible to use addwstr() with UCS-4, but not compulsory. It's clear now, thanks! Anyway, there are plenty of apps (e.g. vim, joe) that perfectly support UTF-8 and use ncurses (not the w version). I wonder how it is possible... -- Egmont From INVALID.NOREPLY@gnu.org Wed Jun 14 15:03:01 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D204A3B0190 for ; Wed, 14 Jun 2006 15:03:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15652-08 for ; Wed, 14 Jun 2006 15:03:00 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3A7723B00C7 for ; Wed, 14 Jun 2006 15:03:00 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fqad3-0005RO-00; Wed, 14 Jun 2006 15:02:13 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 14 Jun 2006 19:02:13 +0000 Date: Wed, 14 Jun 2006 19:02:13 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: purportex X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.0.4) Gecko/20060508 Firefox/1.5.0.4 X-Apparently-From: 81.31.39.117 (Savane authenticated user purportex) Message-Id: <20060614-190212.sv50251.32349@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> In-Reply-To: <20060613-172130.sv36205.64124@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 08:58:02 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 19:03:02 -0000 Follow-up Comment #18, bug #16762 (project mc): Hi, when I compiling current cvs version, I have such problem.. $ ./autogen ; make ... mountlist.c: In function 'fstype_to_string': mountlist.c:176: error: 'MOUNT_UFS' undeclared (first use in this function) mountlist.c:176: error: (Each undeclared identifier is reported only once mountlist.c:176: error: for each function it appears in.) mountlist.c:178: error: 'MOUNT_NFS' undeclared (first use in this function) $ uname -a Darwin MacBookPro.local 8.6.1 Darwin Kernel Version 8.6.1: Tue Mar 7 16:55:45 PST 2006; root:xnu-792.9.22.obj~1/RELEASE_I386 i386 i386 _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 15 00:37:55 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E3FD13B00CA for ; Thu, 15 Jun 2006 00:37:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11437-06 for ; Thu, 15 Jun 2006 00:37:53 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id A34FB3B00BA for ; Thu, 15 Jun 2006 00:37:53 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FqjbZ-0008C3-00; Thu, 15 Jun 2006 00:37:17 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 15 Jun 2006 07:37:16 +0300 Date: Thu, 15 Jun 2006 07:37:16 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Opera/8.51 (Windows ME; U; en) X-Apparently-From: 87.126.52.205 (Savane authenticated user ptsekov) Message-Id: <20060615-073715.sv36205.52677@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> In-Reply-To: <20060614-190212.sv50251.32349@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 08:58:02 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 04:37:55 -0000 Follow-up Comment #19, bug #16762 (project mc): purportex, have you tried to fix the problem by applying the suggested patch ? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From bartoldeman@users.sourceforge.net Thu Jun 15 17:15:00 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 891BA3B01FF for ; Thu, 15 Jun 2006 17:15:00 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01106-01 for ; Thu, 15 Jun 2006 17:14:59 -0400 (EDT) Received: from mail2.woosh.co.nz (webmail.woosh.co.nz [202.74.207.2]) by menubar.gnome.org (Postfix) with ESMTP id 5C5023B00DD for ; Thu, 15 Jun 2006 17:14:58 -0400 (EDT) Received: from enm-bo-lt.localnet (202-74-216-93.ue.woosh.co.nz [202.74.216.93]) by woosh.co.nz (Rockliffe SMTPRA 6.1.22) with ESMTP id for ; Fri, 16 Jun 2006 09:14:10 +1200 Received: from enbeo (helo=localhost) by enm-bo-lt.localnet with local-esmtp (Exim 4.62) (envelope-from ) id 1Fqz4P-0003ds-F4 for mc-devel@gnome.org; Fri, 16 Jun 2006 09:08:05 +1200 Date: Fri, 16 Jun 2006 09:08:04 +1200 (NZST) From: Bart Oldeman X-X-Sender: enbeo@enm-bo-lt.localnet To: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <20060615103314.GA14523@cs.bme.hu> Message-ID: References: <20060614131621.GE29389@cs.bme.hu> <20060615103314.GA14523@cs.bme.hu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 21:15:00 -0000 On Thu, 15 Jun 2006, Egmont Koblinger wrote: > Anyway, there are plenty of apps (e.g. vim, joe) that perfectly support > UTF-8 and use ncurses (not the w version). I wonder how it is possible... Because they only use the terminfo (low-level) parts of ncurses, see "man 3ncurses terminfo". Those parts do not care about UTF-8. MC uses a higher level part of ncurses (the display routines), but restricted to "stdscr". There's an even higher level part of ncurses that supports managing (overlapping) windows, but MC does not use it. SLang (without the newt library) does not support that. So one advantage of using ncurses over slang is that MC could make use of ncurses' windowing code, thereby simplifying its own code. In the way that MC uses SLang and ncurses right now there is very little difference between the two libraries. If you google (groups) for it (Miguel's posts) you'll find that around '95/'96 SLang was preferred over ncurses because it was faster, smaller, and less buggy. But that is no longer the case, there is not much difference now. Bart From leonard@den.ottolander.nl Thu Jun 15 19:55:20 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E1A6F3B00DD for ; Thu, 15 Jun 2006 19:55:19 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06118-09 for ; Thu, 15 Jun 2006 19:55:14 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id AE7613B0011 for ; Thu, 15 Jun 2006 19:55:14 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id ABA4E4023 for ; Fri, 16 Jun 2006 01:54:08 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id Maxju7m2nPkZ for ; Fri, 16 Jun 2006 01:54:02 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id ED55C4021 for ; Fri, 16 Jun 2006 01:54:01 +0200 (CEST) Subject: Symlink attack in file.c? From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Fri, 16 Jun 2006 01:53:56 +0200 Message-Id: <1150415636.2615.24.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 23:55:20 -0000 Hi, Something I came across a couple of times this week, just now in relation to an RFE regarding file permissions on copying fat files in RHs bugzilla (https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=195614): http://cvs.savannah.gnu.org/viewcvs/mc/src/file.c?root=mc&r1=1.28&r2=1.29 A commit by "pavel" (Machek?) who added the remark "FIXME: You have security hole here, btw. Imagine copying to /tmp and symlink attack :-(" Is there anybody that can explain to me what he's concerned about and if that is still an issue? If so this is a rather long standing hole... If not, let's get rid of that warning. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Thu Jun 15 18:27:59 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C15DE3B01A1 for ; Thu, 15 Jun 2006 18:27:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03783-05 for ; Thu, 15 Jun 2006 18:27:58 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 02FDC3B0007 for ; Thu, 15 Jun 2006 18:27:57 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fr0JH-0002nT-00; Thu, 15 Jun 2006 18:27:31 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 15 Jun 2006 22:27:30 +0000 Date: Thu, 15 Jun 2006 22:27:30 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: purportex X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.0.4) Gecko/20060508 Firefox/1.5.0.4 X-Apparently-From: 81.31.39.117 (Savane authenticated user purportex) Message-Id: <20060615-222730.sv50251.60290@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > In-Reply-To: <20060615-073715.sv36205.52677@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.548 tagged_above=-999 required=2 tests=[AWL=0.052, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.548 X-Spam-Level: X-Mailman-Approved-At: Fri, 16 Jun 2006 05:26:01 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 22:28:00 -0000 Follow-up Comment #20, bug #16762 (project mc): Yeah, great! I can't compile it with tuesday's version, but with yesterday's I can, thanx :] _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Fri Jun 16 09:43:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 40C913B0076 for ; Fri, 16 Jun 2006 09:43:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30254-02 for ; Fri, 16 Jun 2006 09:43:41 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3835D3B000B for ; Fri, 16 Jun 2006 09:43:41 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrEbH-0000KJ-00; Fri, 16 Jun 2006 09:43:03 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Fri, 16 Jun 2006 15:43:02 +0200 Date: Fri, 16 Jun 2006 15:43:02 +0200 To: Nick Shmyrev , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16829] Crash when formatting paragraph From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060616-154301.sv26390.44190@savannah.gnu.org> References: <20060612-123140.sv25628.90055@savannah.gnu.org> <20060612-123314.sv25628.73913@savannah.gnu.org> <20060613-145453.sv26390.71423@savannah.gnu.org> In-Reply-To: <20060613-145453.sv26390.71423@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.548 tagged_above=-999 required=2 tests=[AWL=0.052, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.548 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 13:43:44 -0000 Update of bug #16829 (project mc): Status: Invalid => None Assigned to: None => leonardjo Open/Closed: Closed => Open Operating System: GNU/Hurd => All _______________________________________________________ Follow-up Comment #3: Turns out to be a general mc issue after all: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=194562 Jindrich Novy proposes the following solution: https://bugzilla.redhat.com/bugzilla/attachment.cgi?id=131038 _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From jnovy@redhat.com Fri Jun 16 10:44:35 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 295C73B0012 for ; Fri, 16 Jun 2006 10:44:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32146-01 for ; Fri, 16 Jun 2006 10:44:33 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id B4BEC3B000B for ; Fri, 16 Jun 2006 10:44:33 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5GCUXa8011193 for ; Fri, 16 Jun 2006 08:30:33 -0400 Received: from pobox.stuttgart.redhat.com (pobox.stuttgart.redhat.com [172.16.2.10]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5GCUV2V007457 for ; Fri, 16 Jun 2006 08:30:33 -0400 Received: from vpn-4-42.stuttgart.redhat.com (vpn-4-42.stuttgart.redhat.com [10.32.4.42]) by pobox.stuttgart.redhat.com (8.12.8/8.12.8) with ESMTP id k5GCUUTK005881 for ; Fri, 16 Jun 2006 14:30:30 +0200 Subject: [PATCH] segfault fix while formatting paragraph (alt-p) From: Jindrich Novy To: MC Devel Content-Type: multipart/mixed; boundary="=-2pcaSwIryKoHMMTlNz7W" Date: Fri, 16 Jun 2006 14:30:29 +0200 Message-Id: <1150461029.2294.6.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.5) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.601 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.601 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 14:44:35 -0000 --=-2pcaSwIryKoHMMTlNz7W Content-Type: text/plain Content-Transfer-Encoding: 7bit Hi, there's a segfault while formatting a paragraph with alt-p. The next_word_start() in wordproc.c misses the upper boundary check. The attached patch fixes it. References/Reproducer: http://bugzilla.redhat.com/194562 Jindrich --=-2pcaSwIryKoHMMTlNz7W Content-Disposition: attachment; filename=mc-segfault.patch Content-Type: text/x-patch; name=mc-segfault.patch; charset=UTF-8 Content-Transfer-Encoding: 7bit --- mc/edit/wordproc.c.jn 2005-05-27 05:35:12.000000000 +0200 +++ mc/edit/wordproc.c 2006-06-16 14:19:38.000000000 +0200 @@ -198,10 +198,10 @@ } static int -next_word_start (unsigned char *t, int q) +next_word_start (unsigned char *t, int q, int size) { int i; - for (i = q;; i++) { + for (i = q; i < size; i++) { switch (t[i]) { case '\n': return -1; @@ -220,11 +220,11 @@ /* find the start of a word */ static int -word_start (unsigned char *t, int q) +word_start (unsigned char *t, int q, int size) { int i = q; if (t[q] == ' ' || t[q] == '\t') - return next_word_start (t, q); + return next_word_start (t, q, size); for (;;) { int c; if (!i) @@ -253,9 +253,9 @@ break; if (t[q] == '\n') break; - p = word_start (t, q); + p = word_start (t, q, size); if (p == -1) - q = next_word_start (t, q); /* Return the end of the word if the beginning + q = next_word_start (t, q, size); /* Return the end of the word if the beginning of the word is at the beginning of a line (i.e. a very long word) */ else --=-2pcaSwIryKoHMMTlNz7W-- From ptsekov@gmx.net Fri Jun 16 11:59:15 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 55D4D3B0005 for ; Fri, 16 Jun 2006 11:59:15 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01930-07 for ; Fri, 16 Jun 2006 11:59:12 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 01C653B000B for ; Fri, 16 Jun 2006 11:59:11 -0400 (EDT) Received: (qmail invoked by alias); 16 Jun 2006 15:58:30 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp028) with SMTP; 16 Jun 2006 17:58:30 +0200 X-Authenticated: #14308112 Date: Fri, 16 Jun 2006 18:57:18 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: MC dev Subject: Problems with the mailing list ? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.549 tagged_above=-999 required=2 tests=[AWL=-0.943, BAYES_20=-0.74, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -1.549 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 15:59:15 -0000 Hello, Does anyone miss messages from the mc-devel list ? It seems like some messages do not reach the mailing list at all while others don't reach the mailing list subcsribers. Can anyone confirm or deny this ? Thanks! From jnovy@redhat.com Fri Jun 16 12:57:33 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E085B3B033E for ; Fri, 16 Jun 2006 12:57:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06357-08 for ; Fri, 16 Jun 2006 12:57:25 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 838633B050A for ; Fri, 16 Jun 2006 12:55:21 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5GGsPDw006893 for ; Fri, 16 Jun 2006 12:54:25 -0400 Received: from pobox.stuttgart.redhat.com (pobox.stuttgart.redhat.com [172.16.2.10]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5GGsOK7007658 for ; Fri, 16 Jun 2006 12:54:24 -0400 Received: from vpn-4-3.stuttgart.redhat.com (vpn-4-3.stuttgart.redhat.com [10.32.4.3]) by pobox.stuttgart.redhat.com (8.12.8/8.12.8) with ESMTP id k5GGsNTK026570 for ; Fri, 16 Jun 2006 18:54:23 +0200 Subject: better [PATCH] segfault fix while formatting paragraph (alt-p) From: Jindrich Novy To: MC Devel Content-Type: multipart/mixed; boundary="=-3u5KXe3b23+1fD2VbBs1" Date: Fri, 16 Jun 2006 18:54:23 +0200 Message-Id: <1150476863.19192.3.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.5) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.601 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.601 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 16:57:33 -0000 --=-3u5KXe3b23+1fD2VbBs1 Content-Type: text/plain Content-Transfer-Encoding: 7bit Hi, after some refinement I'm sending a better patch that rewrites next_word_start() and fixes the segfault. Jindrich --=-3u5KXe3b23+1fD2VbBs1 Content-Disposition: attachment; filename=mc-segfault.patch Content-Type: text/x-patch; name=mc-segfault.patch; charset=UTF-8 Content-Transfer-Encoding: 7bit --- mc/edit/wordproc.c.jn 2005-05-27 05:35:12.000000000 +0200 +++ mc/edit/wordproc.c 2006-06-16 18:48:42.000000000 +0200 @@ -198,33 +198,25 @@ } static int -next_word_start (unsigned char *t, int q) +next_word_start (unsigned char *t, int q, int size) { int i; - for (i = q;; i++) { - switch (t[i]) { - case '\n': + for (i = q; i X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6AA2F3B04C9 for ; Fri, 16 Jun 2006 16:21:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19862-05 for ; Fri, 16 Jun 2006 16:21:41 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 7B4BC3B03B3 for ; Fri, 16 Jun 2006 16:21:41 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrKoG-0007SH-00; Fri, 16 Jun 2006 16:20:52 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Fri, 16 Jun 2006 22:20:52 +0200 Date: Fri, 16 Jun 2006 22:20:52 +0200 To: Nick Shmyrev , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16829] Crash when formatting paragraph From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060616-222051.sv26390.93326@savannah.gnu.org> References: <20060612-123140.sv25628.90055@savannah.gnu.org> <20060612-123314.sv25628.73913@savannah.gnu.org> <20060613-145453.sv26390.71423@savannah.gnu.org> <20060616-154301.sv26390.44190@savannah.gnu.org> In-Reply-To: <20060616-154301.sv26390.44190@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.55 tagged_above=-999 required=2 tests=[AWL=0.050, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.55 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 20:21:44 -0000 Update of bug #16829 (project mc): Status: None => Fixed Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #4: Pavel Tsekov committed patches to fix this issue. Closing. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From proski@gnu.org Fri Jun 16 23:17:46 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AFAEF3B00C5 for ; Fri, 16 Jun 2006 23:17:46 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00723-05 for ; Fri, 16 Jun 2006 23:17:45 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id B49B33B0137 for ; Fri, 16 Jun 2006 23:17:45 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FrRIQ-0002kb-1Z for mc-devel@gnome.org; Fri, 16 Jun 2006 23:16:26 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FrRIJ-00025L-VK; Fri, 16 Jun 2006 23:16:19 -0400 Subject: Re: Problems with the mailing list ? From: Pavel Roskin To: Pavel Tsekov In-Reply-To: References: Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Fri, 16 Jun 2006 23:16:19 -0400 Message-Id: <1150514179.29738.20.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 03:17:46 -0000 Hello! On Fri, 2006-06-16 at 18:57 +0300, Pavel Tsekov wrote: > Hello, > > Does anyone miss messages from the mc-devel list ? It seems like some > messages do not reach the mailing list at all while others don't reach > the mailing list subcsribers. Can anyone confirm or deny this ? I have sent an email to the GNOME mailing list administrator. I don't see any delays or mail loss, but let's see what would happen to this message. -- Regards, Pavel Roskin From proski@gnu.org Sat Jun 17 00:33:48 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 099BB3B015A for ; Sat, 17 Jun 2006 00:33:48 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01828-10 for ; Sat, 17 Jun 2006 00:33:46 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id 8FE6D3B00CB for ; Sat, 17 Jun 2006 00:33:46 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FrRT5-0002yB-Q6 for mc-devel@gnome.org; Fri, 16 Jun 2006 23:27:27 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FrRT0-00025j-D6; Fri, 16 Jun 2006 23:27:22 -0400 Subject: Re: Symlink attack in file.c? From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150415636.2615.24.camel@athlon> References: <1150415636.2615.24.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Fri, 16 Jun 2006 23:27:22 -0400 Message-Id: <1150514842.29738.32.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 04:33:48 -0000 Hello, Leonard! On Fri, 2006-06-16 at 01:53 +0200, Leonard den Ottolander wrote: > Something I came across a couple of times this week, just now in > relation to an RFE regarding file permissions on copying fat files in > RHs bugzilla > (https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=195614): > http://cvs.savannah.gnu.org/viewcvs/mc/src/file.c?root=mc&r1=1.28&r2=1.29 > > A commit by "pavel" (Machek?) who added the remark > "FIXME: You have security hole here, btw. Imagine copying to /tmp and > symlink attack :-(" > > Is there anybody that can explain to me what he's concerned about and if > that is still an issue? If so this is a rather long standing hole... If > not, let's get rid of that warning. I think it's still an issue. Suppose the target doesn't exist. Then mc decides that it's OK to create the file and creates it. In the meantime, somebody could have created a symlink, so mc truncates the file pointed to by the symlink. It is a hole indeed, but it needs a good timing to be exploited. The attacker should know which file is about to be overwritten and the symlink should be created after mc has checked that the target doesn't exist, but before mc opens the file for writing. Since mc needs to be interactive, it's hard to avoid accessing the target file more than once. The simplest fix would be to use O_EXCL is there was no target file initially. If it fails for the reason that the file exists, there should be a huge warning that no user should be able to ignore. -- Regards, Pavel Roskin From niko_2501@yahoo.co.jp Wed Jun 14 02:52:08 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3C1A73B00A4 for ; Wed, 14 Jun 2006 02:52:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19764-06 for ; Wed, 14 Jun 2006 02:52:07 -0400 (EDT) Received: from web3704.mail.tnz.yahoo.co.jp (web3704.mail.tnz.yahoo.co.jp [203.216.226.186]) by menubar.gnome.org (Postfix) with SMTP id 5C6D73B000C for ; Wed, 14 Jun 2006 02:52:06 -0400 (EDT) Received: (qmail 50747 invoked by uid 60001); 14 Jun 2006 06:50:59 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=yj20050223; d=yahoo.co.jp; h=Message-ID:Received:Date:From:Subject:To:MIME-Version:Content-Type; b=fKfMo4MtcFdN3Oi44x+rUCTdRh804D+vSygKDCE2SnLqfIE0VSjG32inB55EtTlWaKDRmUId67rQxnl7zaB+WjYH1rDaTntn7UzdA4w9jA/f4iZEZp/9P9n5p/oH5Exk ; Message-ID: <20060614065059.50745.qmail@web3704.mail.tnz.yahoo.co.jp> Received: from [220.98.134.208] by web3704.mail.tnz.yahoo.co.jp via HTTP; Wed, 14 Jun 2006 15:50:59 JST Date: Wed, 14 Jun 2006 15:50:59 +0900 (JST) From: sipieter nicolas Subject: mc bugs To: mc-devel@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-2022-jp X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.709 tagged_above=-999 required=2 tests=[BAYES_50=0.001, DNS_FROM_RFC_POST=1.708] X-Spam-Score: 1.709 X-Spam-Level: * X-Mailman-Approved-At: Thu, 15 Jun 2006 08:58:02 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 06:52:08 -0000 hi there, i would like to say i use a lot mc, it's just great. lately i've been updating my website, and i discovered i could edit my document remotely with mc. (cd /#ftp:bleh:pass@some.ftp.net then push f4 key on the document i wish to edit....) it's really nice but, i've been experiencing problems, at least with the ftp server i use: when i edit documents it take some time, enough to be disconnected from ftp server. in that case mc just re-log me in and properly save the document .. so far so good, but, after a while working like that, mc seems unable from time to time to connect to the ftp server. i even get seg fault, or it just fail to connect randomly.. when this happen, the only choice left is to quit mc and re-launch it .. i would say, i spend between 1 and 10minutes on a document, and i do lots of em per day (maybe 100 or 200minimum) and i have to restart mc at least 20times... i would say something is wrong in the ftp code inside mc. thanks for your time and efforts, mc is really cool to use. -------------------------------------- Let's start Yahoo! Auction - Free Campaign Now! http://pr.mail.yahoo.co.jp/auction/ From ptsekov@gmx.net Sat Jun 17 02:59:14 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 42DB83B0744 for ; Sat, 17 Jun 2006 02:59:14 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11195-01 for ; Sat, 17 Jun 2006 02:59:12 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 7F8FF3B0302 for ; Sat, 17 Jun 2006 02:59:11 -0400 (EDT) Received: (qmail invoked by alias); 17 Jun 2006 06:58:19 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp020) with SMTP; 17 Jun 2006 08:58:19 +0200 X-Authenticated: #14308112 Date: Sat, 17 Jun 2006 09:57:06 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Pavel Roskin Subject: Re: Problems with the mailing list ? In-Reply-To: <1150514179.29738.20.camel@dv> Message-ID: References: <1150514179.29738.20.camel@dv> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 06:59:14 -0000 Hello Pavel, On Fri, 16 Jun 2006, Pavel Roskin wrote: > On Fri, 2006-06-16 at 18:57 +0300, Pavel Tsekov wrote: >> Hello, >> >> Does anyone miss messages from the mc-devel list ? It seems like some >> messages do not reach the mailing list at all while others don't reach >> the mailing list subcsribers. Can anyone confirm or deny this ? > > I have sent an email to the GNOME mailing list administrator. > > I don't see any delays or mail loss, but let's see what would happen to > this message. I got a copy of your reply which you CC-ed directly to me. The message destined to the mailing list is still not here though. I see that the mailing list software at mail.gnome.org has been changed - maybe the administrators are doing some kind of upgrade... From leonard@den.ottolander.nl Sat Jun 17 08:47:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C72863B075D for ; Sat, 17 Jun 2006 08:47:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22117-06 for ; Sat, 17 Jun 2006 08:47:18 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id BDA1E3B03E5 for ; Sat, 17 Jun 2006 08:47:18 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 788374023 for ; Sat, 17 Jun 2006 14:46:35 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id tXpVqRKSrvlX for ; Sat, 17 Jun 2006 14:46:33 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id EA55E4021 for ; Sat, 17 Jun 2006 14:46:32 +0200 (CEST) Subject: Re: mc bugs From: Leonard den Ottolander To: MC development In-Reply-To: <20060614065059.50745.qmail@web3704.mail.tnz.yahoo.co.jp> References: <20060614065059.50745.qmail@web3704.mail.tnz.yahoo.co.jp> Content-Type: text/plain Date: Sat, 17 Jun 2006 14:46:33 +0200 Message-Id: <1150548393.2528.12.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 12:47:22 -0000 Hello Sipieter, On Wed, 2006-06-14 at 15:50 +0900, sipieter nicolas wrote: > but, after a while working like that, mc seems unable from > time to time to connect to the ftp server. i even get seg > fault, or it just fail to connect randomly.. Connection failures are not necessarily a problem with mc (not saying the ftp code is perfect though ;) ). However, if you do see segmentation faults please open a bug report at http://savannah.gnu.org/bugs/?group=mc and attach a backtrace. Don't forget to mention system information and please do *not* report bugs against mc versions before 4.6.1. (Use ulimit -c 99999 to enable core dumps on your system. Use gdb and the bt command to get a backtrace.) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Sat Jun 17 08:54:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9B7C83B03E5 for ; Sat, 17 Jun 2006 08:54:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22162-08 for ; Sat, 17 Jun 2006 08:54:26 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 81F0C3B0165 for ; Sat, 17 Jun 2006 08:54:25 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id AAF4B4023; Sat, 17 Jun 2006 14:52:42 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id MvD+6iJVdikt; Sat, 17 Jun 2006 14:52:39 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 205F44021; Sat, 17 Jun 2006 14:52:39 +0200 (CEST) Subject: Bugzilla submits only against >= 4.6.1 From: Leonard den Ottolander To: Pavel Roskin Content-Type: text/plain Date: Sat, 17 Jun 2006 14:52:38 +0200 Message-Id: <1150548759.2528.20.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 12:54:27 -0000 Hello Pavel, IMO it doesn't make much sense for people to be able to report bugs against mc versions older than 4.6.1. I presume most developers will agree with me (please protest if not). Could you please update the Savannah bugs "Release" drop down menu to only contain the following elements? older than 4.6.1 (upgrade first!) 4.6.1 current (CVS or snapshot) I don't think we need the entries "All versions" and "None" but these might be hard coded default entries. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Sat Jun 17 09:02:22 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B72163B0165 for ; Sat, 17 Jun 2006 09:02:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22628-01 for ; Sat, 17 Jun 2006 09:02:21 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3F8343B000D for ; Sat, 17 Jun 2006 09:02:21 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FraOq-0003fU-00; Sat, 17 Jun 2006 08:59:40 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sat, 17 Jun 2006 14:59:39 +0200 Date: Sat, 17 Jun 2006 14:59:39 +0200 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060617-145938.sv26390.15283@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > <20060615-222730.sv50251.60290@savannah.gnu.org> In-Reply-To: <20060615-222730.sv50251.60290@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.552 tagged_above=-999 required=2 tests=[AWL=0.048, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.552 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 09:19:08 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 13:02:22 -0000 Follow-up Comment #21, bug #16762 (project mc): If Roland doesn't feel the need to add any remarks to this approach I suppose this patch can be submitted and this report closed. (I did not verify the code other than glancing over it, but I trust it to be ok ;) .) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sat Jun 17 11:52:37 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id DC5333B00A7 for ; Sat, 17 Jun 2006 11:52:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26174-02 for ; Sat, 17 Jun 2006 11:52:35 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 81C363B000D for ; Sat, 17 Jun 2006 11:52:35 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Frd56-0001Zf-00; Sat, 17 Jun 2006 11:51:28 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sat, 17 Jun 2006 18:51:25 +0300 Date: Sat, 17 Jun 2006 18:51:25 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Opera/8.51 (Windows ME; U; en) X-Apparently-From: 87.126.52.205 (Savane authenticated user ptsekov) Message-Id: <20060617-185125.sv36205.47362@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > <20060615-222730.sv50251.60290@savannah.gnu.org> <20060617-145938.sv26390.15283@savannah.gnu.org> In-Reply-To: <20060617-145938.sv26390.15283@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.514 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TV=0.077] X-Spam-Score: -2.514 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 09:19:08 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 15:52:37 -0000 Update of bug #16762 (project mc): Status: None => Fixed Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #22: I've just commited the patch. It should be OK. It was tested and reported to work by Pavel Shirshov, purportex and yaroslav. If coreutils configure tests are modified to include tests for: 1) the presence of field f_fstypename in struct statvfs 2) the type of the first argument ot getmntinfo() we will remove the homebrew tests from AC_GET_FS_INFO and use those provided by coreutils. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sat Jun 17 15:48:22 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4F4D33B074C for ; Sat, 17 Jun 2006 15:48:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05618-08 for ; Sat, 17 Jun 2006 15:48:21 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id C83323B01A6 for ; Sat, 17 Jun 2006 15:48:20 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrgRN-0008Lb-00; Sat, 17 Jun 2006 15:26:41 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sat, 17 Jun 2006 21:26:40 +0200 Date: Sat, 17 Jun 2006 21:26:40 +0200 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060617-212640.sv26390.65809@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > <20060615-222730.sv50251.60290@savannah.gnu.org> <20060617-145938.sv26390.15283@savannah.gnu.org> <20060617-185125.sv36205.47362@savannah.gnu.org> In-Reply-To: <20060617-185125.sv36205.47362@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.514 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TV=0.077] X-Spam-Score: -2.514 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 09:19:08 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 19:48:22 -0000 Follow-up Comment #23, bug #16762 (project mc): > If coreutils configure tests are modified to include tests for: > > 1) the presence of field f_fstypename in struct statvfs > > 2) the type of the first argument ot getmntinfo() > > we will remove the homebrew tests from AC_GET_FS_INFO and use > those provided by coreutils. Have you contacted the coreutils maintainers about this? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sat Jun 17 15:48:23 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9AC3F3B033C for ; Sat, 17 Jun 2006 15:48:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05730-03 for ; Sat, 17 Jun 2006 15:48:21 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 688E63B02E2 for ; Sat, 17 Jun 2006 15:48:21 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrgZ2-0001NR-00; Sat, 17 Jun 2006 15:34:36 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sat, 17 Jun 2006 22:34:36 +0300 Date: Sat, 17 Jun 2006 22:34:36 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Opera/8.51 (Windows ME; U; en) X-Apparently-From: 87.126.52.205 (Savane authenticated user ptsekov) Message-Id: <20060617-223436.sv36205.11011@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > <20060615-222730.sv50251.60290@savannah.gnu.org> <20060617-145938.sv26390.15283@savannah.gnu.org> <20060617-185125.sv36205.47362@savannah.gnu.org> <20060617-212640.sv26390.65809@savannah.gnu.org> In-Reply-To: <20060617-212640.sv26390.65809@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.552 tagged_above=-999 required=2 tests=[AWL=0.048, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.552 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 09:19:08 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 19:48:23 -0000 Follow-up Comment #24, bug #16762 (project mc): No. Maybe you can drop them a message ? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 10:58:13 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B73953B08E2 for ; Sun, 18 Jun 2006 10:58:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31385-03 for ; Sun, 18 Jun 2006 10:58:12 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id DED683B0078 for ; Sun, 18 Jun 2006 10:58:11 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrygF-0006eY-00; Sun, 18 Jun 2006 10:55:15 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 14:55:15 +0000 Date: Sun, 18 Jun 2006 14:55:15 +0000 To: hajma , mc-devel@gnome.org Subject: [bug #16871] czech translation - description overlaps in the chmod dialogue From: hajma X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16871 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060531 Mandriva/1.5.0.4-1mdv2007.0 (2007.0) Firefox/1.5.0.4 X-Apparently-From: 82.208.37.13 (Savane authenticated user tropikhajma) Message-Id: <20060618-145515.sv50336.41107@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.555 tagged_above=-999 required=2 tests=[AWL=0.045, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.555 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 14:58:13 -0000 URL: Summary: czech translation - description overlaps in the chmod dialogue Project: GNU Midnight Commander Submitted by: tropikhajma Submitted on: Sunday 06/18/2006 at 14:55 Category: None Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Linux _______________________________________________________ Details: see screenshot: ftp://tropikhajma.vserver.cz/bugs/mc.png the first two lines of the "File" rectangle get overwritten by text from the "mode" rectangle. IMHO replacing číslo uĹživatele with UID would make it. Side note: caron is missing above the second e in "změne" and the word "nastavenĂ­" should follow the word "změně" _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 11:22:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 468D33B0CB2 for ; Sun, 18 Jun 2006 11:22:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00310-01 for ; Sun, 18 Jun 2006 11:22:30 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 482A53B0CD0 for ; Sun, 18 Jun 2006 11:22:29 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Frymc-0007y2-00; Sun, 18 Jun 2006 11:01:50 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 15:01:50 +0000 Date: Sun, 18 Jun 2006 15:01:50 +0000 To: Istvan Kispal , mc-devel@gnome.org Subject: [bug #16872] ftpfs lists directories begining with '2006 ' incorrectly From: Istvan Kispal X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16872 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.4) Gecko/20060508 Firefox/1.5.0.4 X-Apparently-From: 81.183.183.18 (Savane authenticated user kispaljr) Message-Id: <20060618-150150.sv50338.79195@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.554 tagged_above=-999 required=2 tests=[AWL=0.046, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.554 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 15:22:36 -0000 URL: Summary: ftpfs lists directories begining with '2006 ' incorrectly Project: GNU Midnight Commander Submitted by: kispaljr Submitted on: Sunday 06/18/2006 at 15:01 Category: VFS Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Linux _______________________________________________________ Details: if a directory on an ftp server has the following subdirectories: 1990 06 19 hetfo 2005 06 23 akarmi 2006 06 23 akarmi then they are listed in mc (console mode version, using ftpfs) incorrectly as: 06 19 hetfo 06 23 akarmi 06 23 akarmi if you type cd 2006 06 19 hetfo manually then you can cd into the subdir, but not with taping enter on the (incorrectly listed) directory name. it's rather uncomofortable. _______________________________________________________ Carbon-Copy List: CC Address | Comment ------------------------------------+----------------------------- kispaljr | _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 11:34:10 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D616B3B0CB1 for ; Sun, 18 Jun 2006 11:34:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00460-07 for ; Sun, 18 Jun 2006 11:34:09 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 78DD03B0C2B for ; Sun, 18 Jun 2006 11:34:09 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrzGu-0005Zh-00; Sun, 18 Jun 2006 11:33:08 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 17:33:07 +0200 Date: Sun, 18 Jun 2006 17:33:07 +0200 To: hajma , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16871] czech translation - description overlaps in the chmod dialogue From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16871 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060618-173307.sv26390.76425@savannah.gnu.org> References: <20060618-145515.sv50336.41107@savannah.gnu.org> In-Reply-To: <20060618-145515.sv50336.41107@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.554 tagged_above=-999 required=2 tests=[AWL=0.046, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.554 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 15:34:11 -0000 Update of bug #16871 (project mc): Status: None => Need Info Assigned to: None => leonardjo _______________________________________________________ Follow-up Comment #1: Please provide a patch. Mske sure you use the correct character set in the file. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 12:09:52 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3B8693B0CD1 for ; Sun, 18 Jun 2006 12:09:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01904-07 for ; Sun, 18 Jun 2006 12:09:51 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 113B43B0CD5 for ; Sun, 18 Jun 2006 12:09:51 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Frzol-0007KE-00; Sun, 18 Jun 2006 12:08:07 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 18:08:05 +0200 Date: Sun, 18 Jun 2006 18:08:05 +0200 To: Istvan Kispal , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16872] ftpfs lists directories begining with '2006 ' incorrectly From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16872 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060618-180805.sv26390.79688@savannah.gnu.org> References: <20060618-150150.sv50338.79195@savannah.gnu.org> In-Reply-To: <20060618-150150.sv50338.79195@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 16:09:52 -0000 Update of bug #16872 (project mc): Status: None => Duplicate Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #1: Be so kind to check for exisiting reports before submitting new reports. This is a duplicate of 10645 and 4327. This issue has been fixed in CVS. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 12:13:08 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8693F3B0CC5 for ; Sun, 18 Jun 2006 12:12:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02109-10 for ; Sun, 18 Jun 2006 12:12:49 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id E95503B0AA3 for ; Sun, 18 Jun 2006 12:12:48 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Frzpt-0007L8-00; Sun, 18 Jun 2006 12:09:17 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 16:09:17 +0000 Date: Sun, 18 Jun 2006 16:09:17 +0000 To: hajma , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16871] czech translation - description overlaps in the chmod dialogue From: hajma X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16871 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060531 Mandriva/1.5.0.4-1mdv2007.0 (2007.0) Firefox/1.5.0.4 X-Apparently-From: 82.208.37.13 (Savane authenticated user tropikhajma) Message-Id: <20060618-160916.sv50336.88803@savannah.gnu.org> References: <20060618-145515.sv50336.41107@savannah.gnu.org> <20060618-173307.sv26390.76425@savannah.gnu.org> In-Reply-To: <20060618-173307.sv26390.76425@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 16:13:09 -0000 Follow-up Comment #2, bug #16871 (project mc): I found out that the bug was fixed in revision 1.67 of cs.po, it just didn't make it into mc-4.6.1 in Mandriva Cooker I'm using. as regards the side note I attach corrected cs.po that fixes it. _______________________________________________________ Additional Item Attachment: File name: cs.po Size:73 KB cs.po _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 12:13:09 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 82DF63B0C4F for ; Sun, 18 Jun 2006 12:12:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01996-09 for ; Sun, 18 Jun 2006 12:12:49 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 690A33B0C35 for ; Sun, 18 Jun 2006 12:12:48 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrzsE-0007MO-00; Sun, 18 Jun 2006 12:11:42 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 18:11:42 +0200 Date: Sun, 18 Jun 2006 18:11:42 +0200 To: hajma , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16871] czech translation - description overlaps in the chmod dialogue From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16871 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060618-181142.sv26390.23707@savannah.gnu.org> References: <20060618-145515.sv50336.41107@savannah.gnu.org> <20060618-173307.sv26390.76425@savannah.gnu.org> <20060618-160916.sv50336.88803@savannah.gnu.org> In-Reply-To: <20060618-160916.sv50336.88803@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 16:13:09 -0000 Update of bug #16871 (project mc): Status: Need Info => Invalid Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #3: Ok. Closing "invalid" as the issue didn't exist anymore when the issue was reported. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From proski@gnu.org Mon Jun 19 17:50:46 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 51A1F3B05A8 for ; Mon, 19 Jun 2006 17:50:46 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02882-07 for ; Mon, 19 Jun 2006 17:50:45 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id A34B13B03BA for ; Mon, 19 Jun 2006 17:50:44 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FsRcm-00020v-BN for mc-devel@gnome.org; Mon, 19 Jun 2006 17:49:36 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FsRcg-0003zX-7s; Mon, 19 Jun 2006 17:49:30 -0400 Subject: Re: Bugzilla submits only against >= 4.6.1 From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150548759.2528.20.camel@athlon> References: <1150548759.2528.20.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Mon, 19 Jun 2006 17:49:30 -0400 Message-Id: <1150753770.12841.19.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 21:50:46 -0000 Hello! On Sat, 2006-06-17 at 14:52 +0200, Leonard den Ottolander wrote: > Hello Pavel, > > IMO it doesn't make much sense for people to be able to report bugs > against mc versions older than 4.6.1. I presume most developers will > agree with me (please protest if not). > > Could you please update the Savannah bugs "Release" drop down menu to > only contain the following elements? > > older than 4.6.1 (upgrade first!) > 4.6.1 > current (CVS or snapshot) I think that would be solving a social problem using technical means. If you check Red Hat's Bugzilla you'll see that it's possible to enter a bug e.g. for Fedora Core 1. Some bugs can be more long-lived than you may think. I believe the quality of the bug report should be judged not only by the version. Bugs against old versions should be discouraged, but not outright forbidden. Besides, there is only one bug filed for "older than 4.5.55". > I don't think we need the entries "All versions" and "None" but these > might be hard coded default entries. "None" is hardcoded, "All versions" is not. I think "all version" is a valid value in some cases. -- Regards, Pavel Roskin From leonard@den.ottolander.nl Mon Jun 19 19:04:28 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5EEEE3B0A79 for ; Mon, 19 Jun 2006 19:04:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06061-07 for ; Mon, 19 Jun 2006 19:04:27 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id DF06B3B0335 for ; Mon, 19 Jun 2006 19:04:26 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id BFCB94023; Tue, 20 Jun 2006 01:02:55 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 752vGUiocrMK; Tue, 20 Jun 2006 01:02:50 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 25F3E4021; Tue, 20 Jun 2006 01:02:50 +0200 (CEST) Subject: Re: Bugzilla submits only against >= 4.6.1 From: Leonard den Ottolander To: Pavel Roskin In-Reply-To: <1150753770.12841.19.camel@dv> References: <1150548759.2528.20.camel@athlon> <1150753770.12841.19.camel@dv> Content-Type: text/plain Date: Tue, 20 Jun 2006 01:02:49 +0200 Message-Id: <1150758169.2571.7.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 23:04:28 -0000 Hello Pavel, On Mon, 2006-06-19 at 17:49 -0400, Pavel Roskin wrote: > Some bugs can be more long-lived than you may think. I believe the > quality of the bug report should be judged not only by the version. > Bugs against old versions should be discouraged, but not outright > forbidden. > > Besides, there is only one bug filed for "older than 4.5.55". I didn't mean old bugs should be removed from the bug list. I just feel it doesn't make much sense for people to file new bugs against anything older than 4.6.1. There is no added value to let people add bugs against older versions. If the issue no longer exists it's just wasted time, and if it does still exist the reporter should make the effort to verify the issue indeed still exists in 4.6.1 or later. > "None" is hardcoded, "All versions" is not. I think "all version" is a > valid value in some cases. Yes, but only if you keep all the other versions as valid options. If we'd drop anything but latest stable and CVS there's not much use leaving "all versions" around. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From proski@gnu.org Tue Jun 20 14:08:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1A9943B02AC for ; Tue, 20 Jun 2006 14:08:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02911-01 for ; Tue, 20 Jun 2006 14:08:18 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id 921CB3B000C for ; Tue, 20 Jun 2006 14:08:18 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1Fskdk-00031J-4G for mc-devel@gnome.org; Tue, 20 Jun 2006 14:08:01 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FskdX-0005Ef-Ch; Tue, 20 Jun 2006 14:07:39 -0400 Subject: Re: Bugzilla submits only against >= 4.6.1 From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150758169.2571.7.camel@athlon> References: <1150548759.2528.20.camel@athlon> <1150753770.12841.19.camel@dv> <1150758169.2571.7.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 20 Jun 2006 14:07:39 -0400 Message-Id: <1150826859.1969.7.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.595 tagged_above=-999 required=2 tests=[AWL=0.005, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.595 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 18:08:27 -0000 On Tue, 2006-06-20 at 01:02 +0200, Leonard den Ottolander wrote: > I didn't mean old bugs should be removed from the bug list. I just feel > it doesn't make much sense for people to file new bugs against anything > older than 4.6.1. > > There is no added value to let people add bugs against older versions. Anyone who takes time to file a new bug is adding some value to the project. It may be more or less valuable, but we shouldn't give the impression that we don't want to hear about the problem. > If the issue no longer exists it's just wasted time, and if it does > still exist the reporter should make the effort to verify the issue > indeed still exists in 4.6.1 or later. Ideally, yes. But not everyone can do it. It's better to have 10 reports for already fixed bugs and one for a bug that still exists than to have neither of them. If you have an example where time was wasted as a result of the availability of the older versions in the bug tracker, I may reconsider. > > "None" is hardcoded, "All versions" is not. I think "all version" is a > > valid value in some cases. > > Yes, but only if you keep all the other versions as valid options. If > we'd drop anything but latest stable and CVS there's not much use > leaving "all versions" around. I generally assume the bug reporters to be intelligent persons who can make there own judgment how to file a bug. -- Regards, Pavel Roskin From ptsekov@gmx.net Tue Jun 20 14:28:43 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 409073B08C6 for ; Tue, 20 Jun 2006 14:28:43 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04451-05 for ; Tue, 20 Jun 2006 14:28:38 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 586743B06E3 for ; Tue, 20 Jun 2006 14:28:33 -0400 (EDT) Received: (qmail invoked by alias); 20 Jun 2006 18:28:32 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp034) with SMTP; 20 Jun 2006 20:28:32 +0200 X-Authenticated: #14308112 Date: Tue, 20 Jun 2006 21:27:19 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: "Stan. S. Krupoderov" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <20060620060123.GD99474@inode.hvn> Message-ID: References: <20060620060123.GD99474@inode.hvn> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: mc@gnome.org, MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 18:28:43 -0000 Hello Stan, On Tue, 20 Jun 2006, Stan. S. Krupoderov wrote: > This Midnight Commander build is modified to use Colorer-take5 as a syntax highlighting engine in standard mc editor. > http://colorer.sourceforge.net/mc.html That's just great! > Maybe it can be useful for someone. Any opinions? Sure it will! Some time ago I tried myself to get colorer to work with MC. Unfortunately due to time constraints I abandoned the idea - I just didn't have enough time to study how colorer works properly. I've downloaded MC-Colorer's source tarball today and I took a look at the code. Though I haven't studied the code in depth I can say that it seems pretty high quality. After all it is written by the colorer's author himself - who could understand better how colorer works :) I'll try to contact him and see what he thinks about integrating his work into MC's source tree. It would be also very useful if we could use the work done on MC-Colorer to get syntax highlighting in the viewer too - this was one of the tasks I was trying to achieve when I started investigating colorer. Thanks! From irusskih@gmail.com Wed Jun 21 08:50:40 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6E7343B0F9B for ; Wed, 21 Jun 2006 08:50:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05808-06 for ; Wed, 21 Jun 2006 08:50:35 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.198]) by menubar.gnome.org (Postfix) with ESMTP id 0490A3B0FE0 for ; Wed, 21 Jun 2006 08:50:33 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id s1so170251nze for ; Wed, 21 Jun 2006 05:50:33 -0700 (PDT) Received: by 10.37.13.61 with SMTP id q61mr445036nzi; Wed, 21 Jun 2006 05:50:33 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Wed, 21 Jun 2006 05:50:33 -0700 (PDT) Message-ID: <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> Date: Wed, 21 Jun 2006 16:50:33 +0400 From: "Igor Russkih" To: mc@gnome.org, mc-devel@gnome.org Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_Part_1775_638873.1150894233203" References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.225 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, HTML_30_40=0.374, HTML_MESSAGE=0.001, SPF_PASS=-0.001] X-Spam-Score: -2.225 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 12:50:40 -0000 ------=_Part_1775_638873.1150894233203 Content-Type: multipart/alternative; boundary="----=_Part_1776_131830.1150894233203" ------=_Part_1776_131830.1150894233203 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi Pavel, Hi All, I'll be really glad to help to improve MC in this area, I've downloaded MC-Colorer's source tarball today and I took > a look at the code. Though I haven't studied the code in depth > I can say that it seems pretty high quality. After all it is > written by the colorer's author himself - who could understand > better how colorer works :) I'll try to contact him and see what > he thinks about integrating his work into MC's source tree. It If somebody is interested, attached is a full diff on MC tree to support colorer. For now I'm using sf.net SVN repository to store modified MC code. Information on how to access it: http://sourceforge.net/svn/?group_id=34855 There are also some questions which I believe should be discussed. At first there is one C++ file in this mod (to link with c++ colorer code). As far as I understand MC uses C only. Is this a problem? Another is that this mod dynamically links to the libcolorer - this means that to use it, colorer library should be installed in system. This introduces MC additional dependency. would be also very useful if we could use the work done on MC-Colorer > to get syntax highlighting in the viewer too - this was one of the > tasks I was trying to achieve when I started investigating colorer. > That's a good idea, I'll try investigate it in near time. -- Igor ------=_Part_1776_131830.1150894233203 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline
Hi Pavel, Hi All,

I'll be really glad to help to improve MC in this area,

I've downloaded MC-Colorer's source tarball today and I took
a look at the code. Though I haven't studied the code in depth
I can say that it seems pretty high quality. After all it is
written by the colorer's author himself - who could understand
better how colorer works :) I'll try to contact him and see what
he thinks about integrating his work into MC's source tree. It

If somebody is interested, attached is a full diff on MC tree to support colorer.

For now I'm using sf.net SVN repository to store modified MC code.
Information on how to access it: http://sourceforge.net/svn/?group_id=34855

There are also some questions which I believe should be discussed.
At first there is one C++ file in this mod (to link with c++ colorer code). As far as I understand MC uses C only. Is this a problem?
Another is that this mod dynamically links to the libcolorer - this means that to use it, colorer library should be installed in system. This introduces MC additional dependency.

would be also very useful if we could use the work done on MC-Colorer
to get syntax highlighting in the viewer too - this was one of the
tasks I was trying to achieve when I started investigating colorer.

That's a good idea, I'll try investigate it in near time.

--
  Igor


------=_Part_1776_131830.1150894233203-- ------=_Part_1775_638873.1150894233203 Content-Type: application/x-gzip; name=mccolorer.diff.gz Content-Transfer-Encoding: base64 X-Attachment-Id: f_eopn4lol Content-Disposition: attachment; filename="mccolorer.diff.gz" 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 /wGW3psI2yABAA== ------=_Part_1775_638873.1150894233203-- From leonard@den.ottolander.nl Wed Jun 21 10:03:05 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E951D3B103C for ; Wed, 21 Jun 2006 10:03:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10784-07 for ; Wed, 21 Jun 2006 10:03:01 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 0180D3B1033 for ; Wed, 21 Jun 2006 10:03:00 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id DDE3C4023; Wed, 21 Jun 2006 16:02:57 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id M5kjYx2Phqne; Wed, 21 Jun 2006 16:02:54 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 05A1E4021; Wed, 21 Jun 2006 16:02:53 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: Igor Russkih In-Reply-To: <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> Content-Type: text/plain Date: Wed, 21 Jun 2006 16:02:52 +0200 Message-Id: <1150898573.2801.45.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 14:03:05 -0000 Hello Igor, On Wed, 2006-06-21 at 16:50 +0400, Igor Russkih wrote: > I'll be really glad to help to improve MC in this area, This looks really nice. I'm very exited. With just minor patching to the xml (introduction of ControlKeyword, eg "if", "else" etc.) and a custom colour scheme I've already got the php syntax looking much like the original in mc (where can I send patches? Is there a mailing list for colorer?). Only have to look at the String type as we normally distinguish between single quoted (FixedString) and double quoted (VariableString) in php (and perl too for that matter). Although the startup of the viewer seems a bit slow with colorer this has much added value over the default syntax highlighting, and although I think we could well include the colorer hooks in the main mc tree I don't believe we should drop the existing highlighting, over even make colorer the default. Firstly the default syntax is more lightweight, which some people might prefer. Secondly the use of colorer requires the installation of a(n extra) third party library. > If somebody is interested, attached is a full diff on MC tree to > support colorer. Is this a fully functional patch? Much lighter than the diff I got diffing your tarball against CVS :) . In that patch I noticed a couple of things: - You got rid of the COPYING.LGPL file in vfs. I think this might be a mistake on your part. You might want to rectify that for your version. - In your version you got rid of the pipethrough files. This has no bearing on us as it's not in your patch. - There are a lot of fixes to the po files and some to the Russian and Serbian(?) man page. Please submit these to this list separately. - I noticed a CR here and there. There seem to be even more in the patch you sent. Please get rid of those (fe with dos2unix). - You made some fixes to the config files as well that seem same. Please submit those separately for review. - I noticed changes in vfs/samba/configure. Most of this are somewhat odd whitespace changes, but there appear to be some hunks at the top and bottom to actually do something. Please submit (not the whitespace) :) . - Why did you get rid of vfs/extfs/README.it? (not much of an issue) - There are a lot of added comments/fixes in config.h.in that I do not see in your patch. Please submit separately. > For now I'm using sf.net SVN repository to store modified MC code. > Information on how to access it: > http://sourceforge.net/svn/?group_id=34855 Good to know. > There are also some questions which I believe should be discussed. > At first there is one C++ file in this mod (to link with c++ colorer > code). As far as I understand MC uses C only. Is this a problem? Yes, it might. The overall approach towards accepted language constructs is a bit conservative to maintain compatibility with older systems. Would it be much work to rewrite these parts? > Another is that this mod dynamically links to the libcolorer - this > means that to use it, colorer library should be installed in system. > This introduces MC additional dependency. This is why I do not want to make colorer the default. I think this is something we should leave to the distributions. > to get syntax highlighting in the viewer too > That's a good idea, I'll try investigate it in near time. That would be great. Thanks a lot! Leonard. P.S. Could you please set your mail client to produce plain text mails and use an indentation character and a "replying to" line for quotes? -- mount -t life -o ro /dev/dna /genetic/research From ptsekov@gmx.net Wed Jun 21 10:28:00 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8E9D53B106A for ; Wed, 21 Jun 2006 10:28:00 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12487-02 for ; Wed, 21 Jun 2006 10:27:59 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 7C4863B106C for ; Wed, 21 Jun 2006 10:27:58 -0400 (EDT) Received: (qmail invoked by alias); 21 Jun 2006 14:27:57 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp032) with SMTP; 21 Jun 2006 16:27:57 +0200 X-Authenticated: #14308112 Date: Wed, 21 Jun 2006 17:26:43 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole Cc: MC development Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150898573.2801.45.camel@athlon> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 14:28:00 -0000 On Wed, 21 Jun 2006, Leonard den Ottolander wrote: >> There are also some questions which I believe should be discussed. >> At first there is one C++ file in this mod (to link with c++ colorer >> code). As far as I understand MC uses C only. Is this a problem? > > Yes, it might. The overall approach towards accepted language constructs > is a bit conservative to maintain compatibility with older systems. > Would it be much work to rewrite these parts? Yes it will take a lot of work - colorer is written entirely in C++ . Thus there is a thin wrapper to translate from C to C++ and vice versa. In my opinion this is not a big deal and a necessary sacrifice. For system which do not have C++ support obviously colorer syntax highlighting would be disabled by configure. Since I have tried to embed colorer in MC in the past I have configure code that deals with those issues. >> Another is that this mod dynamically links to the libcolorer - this >> means that to use it, colorer library should be installed in system. >> This introduces MC additional dependency. > > This is why I do not want to make colorer the default. I think this is > something we should leave to the distributions. This we are not going to make it the default (at least not at this time). This can be achieved with configure too - I have code for that too. I still haven't looked at the patch that Igor sent today but I'll do that as soon as I get some free time. I am willing to make the necessary changes to MC to adopt Igor's patch. I think patch has great value. From leonard@den.ottolander.nl Wed Jun 21 11:04:35 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 10A383B0FA5 for ; Wed, 21 Jun 2006 11:04:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15002-05 for ; Wed, 21 Jun 2006 11:04:34 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id CE3943B0FDD for ; Wed, 21 Jun 2006 11:04:33 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id BE3F44023 for ; Wed, 21 Jun 2006 17:04:32 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id nGjmWqt66RAz for ; Wed, 21 Jun 2006 17:04:31 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 428F34021 for ; Wed, 21 Jun 2006 17:04:31 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> Content-Type: text/plain Date: Wed, 21 Jun 2006 17:04:30 +0200 Message-Id: <1150902270.2801.52.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 15:04:35 -0000 Hello Pavel, On Wed, 2006-06-21 at 17:26 +0300, Pavel Tsekov wrote: > Yes it will take a lot of work - colorer is written entirely in C++ . > Thus there is a thin wrapper to translate from C to C++ and vice > versa. In my opinion this is not a big deal and a necessary sacrifice. I'm not sure what you say here: Is it a necessary sacrifice to port syntax-colorer.cpp to c or is it a necessary sacrifice to include c++ code into the tree? I'd rather go for the first option. > This can be achieved with configure too - I have code for that too. All it needs is the current default in the patch to change. > I still haven't looked at the patch that Igor sent today but I'll > do that as soon as I get some free time. I am willing to make the > necessary changes to MC to adopt Igor's patch. Maybe Igor is just as willing to make some changes to the patch for mc to adopt it ;) . > I think patch has great value. We totally agree then :-) . Leonard. -- mount -t life -o ro /dev/dna /genetic/research From ptsekov@gmx.net Wed Jun 21 11:46:22 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6005D3B106E for ; Wed, 21 Jun 2006 11:46:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18001-02 for ; Wed, 21 Jun 2006 11:46:20 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 72F443B1076 for ; Wed, 21 Jun 2006 11:46:19 -0400 (EDT) Received: (qmail invoked by alias); 21 Jun 2006 15:46:17 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp036) with SMTP; 21 Jun 2006 17:46:17 +0200 X-Authenticated: #14308112 Date: Wed, 21 Jun 2006 18:45:04 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150902270.2801.52.camel@athlon> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <1150902270.2801.52.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 15:46:22 -0000 On Wed, 21 Jun 2006, Leonard den Ottolander wrote: > Hello Pavel, > > On Wed, 2006-06-21 at 17:26 +0300, Pavel Tsekov wrote: >> Yes it will take a lot of work - colorer is written entirely in C++ . >> Thus there is a thin wrapper to translate from C to C++ and vice >> versa. In my opinion this is not a big deal and a necessary sacrifice. > > I'm not sure what you say here: Is it a necessary sacrifice to port > syntax-colorer.cpp to c or is it a necessary sacrifice to include c++ > code into the tree? I'd rather go for the first option. You cannot avoid the inclusion of C++ code. colorer is written in C++ and as such it cannot be linked directly with MC. You'll need a wrapper which must be compiled with C++ compiler. We can discuss however where to put that code ? It can be moved into a directory of its own or it can be left where it is now. From INVALID.NOREPLY@gnu.org Wed Jun 21 13:36:11 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B39933B0646 for ; Wed, 21 Jun 2006 13:36:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25350-05 for ; Wed, 21 Jun 2006 13:36:07 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 95CA53B0578 for ; Wed, 21 Jun 2006 13:36:05 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6cP-0008Df-00; Wed, 21 Jun 2006 13:35:57 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:35:56 +0200 Date: Wed, 21 Jun 2006 19:35:56 +0200 To: SGh , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16303] More functionally u7z From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16303 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-193556.sv26390.77497@savannah.gnu.org> References: <20060408-134359.sv45177.11632@savannah.gnu.org> <20060408-134508.sv45177.86924@savannah.gnu.org> <20060408-134854.sv45177.29103@savannah.gnu.org> <20060518-165152.sv36205.74443@savannah.gnu.org> <20060530-195233.sv45177.57929@savannah.gnu.org> In-Reply-To: <20060530-195233.sv45177.57929@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.558 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.558 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:36:11 -0000 Follow-up Comment #4, bug #16303 (project mc): It's easier to see what changed (and if there are unwanted regressions) if you patch the existing version instead of writing a new version from scratch. So if you want to get any improvements considered for inclusion you will have to rewrite your patch. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 13:37:06 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 36E093B014E for ; Wed, 21 Jun 2006 13:37:06 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25325-10 for ; Wed, 21 Jun 2006 13:37:04 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 66A103B059D for ; Wed, 21 Jun 2006 13:37:04 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6cj-0008JI-00; Wed, 21 Jun 2006 13:36:17 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:36:17 +0200 Date: Wed, 21 Jun 2006 19:36:17 +0200 To: Rudolf Polzer , Oswald Buddenhagen , Roland Illig , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16452] mcedit forgets POSIX newline at end of file From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16452 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-193617.sv26390.27833@savannah.gnu.org> References: <20060427-072754.sv49027.45360@savannah.gnu.org> <20060427-180523.sv41304.99027@savannah.gnu.org> <20060427-214753.sv49027.21116@savannah.gnu.org> <20060427-215010.sv49027.73709@savannah.gnu.org> <20060429-101230.sv20990.85981@savannah.gnu.org> <20060429-102521.sv41304.56758@savannah.gnu.org> <20060429-091823.sv49027.23806@savannah.gnu.org> In-Reply-To: <20060429-091823.sv49027.23806@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.559 tagged_above=-999 required=2 tests=[AWL=0.041, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.559 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:37:06 -0000 Follow-up Comment #7, bug #16452 (project mc): Any patches forthcoming? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 13:37:35 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 426863B04F6 for ; Wed, 21 Jun 2006 13:37:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25593-02 for ; Wed, 21 Jun 2006 13:37:34 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id E733D3B0494 for ; Wed, 21 Jun 2006 13:37:33 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6dv-0008Pw-00; Wed, 21 Jun 2006 13:37:31 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:37:31 +0200 Date: Wed, 21 Jun 2006 19:37:31 +0200 To: Rolf Offermanns , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16383] Build system does not allow cross compiling From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16383 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-193731.sv26390.16849@savannah.gnu.org> References: <20060419-132319.sv48822.2441@savannah.gnu.org> In-Reply-To: <20060419-132319.sv48822.2441@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.56 tagged_above=-999 required=2 tests=[AWL=0.040, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.56 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:37:35 -0000 Follow-up Comment #1, bug #16383 (project mc): Please provide a patch. Thanks. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 13:47:41 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1B4753B063E for ; Wed, 21 Jun 2006 13:47:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26098-05 for ; Wed, 21 Jun 2006 13:47:39 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 2A6D33B00B0 for ; Wed, 21 Jun 2006 13:47:39 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6nT-0001MS-00; Wed, 21 Jun 2006 13:47:23 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:47:23 +0200 Date: Wed, 21 Jun 2006 19:47:23 +0200 To: PB , Leonard den Ottolander , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #15621] file/dir entries with international characters mess up the columns From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 15621 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-194722.sv26390.13446@savannah.gnu.org> References: <20060204-101232.sv47152.80354@savannah.gnu.org> <20060211-093708.sv47312.65124@savannah.gnu.org> In-Reply-To: <20060211-093708.sv47312.65124@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.561 tagged_above=-999 required=2 tests=[AWL=0.039, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.561 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:47:41 -0000 Update of bug #15621 (project mc): Status: None => Duplicate Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #2: This is a duplicate of bug 7936 and bug 15100. Please check for existing bug reports before submitting. If you do submit please specify your platform, the version of mc used and if any patches have been applied. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Wed Jun 21 14:07:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5C2753B0706 for ; Wed, 21 Jun 2006 14:07:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27026-09 for ; Wed, 21 Jun 2006 14:07:15 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 1053F3B0733 for ; Wed, 21 Jun 2006 14:07:15 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 257144023; Wed, 21 Jun 2006 20:07:14 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id tHnFxEPUHYqg; Wed, 21 Jun 2006 20:07:12 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 513C24021; Wed, 21 Jun 2006 20:07:12 +0200 (CEST) Subject: Progress bar From: Leonard den Ottolander To: Pavel Tsekov Content-Type: text/plain Date: Wed, 21 Jun 2006 20:07:11 +0200 Message-Id: <1150913231.2801.73.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 18:07:16 -0000 Hello Pavel, Looking at bugs 10507 and 13100. The patch from Hampa Hug that you've committed should fix the issue for moving files. Does it also fix the issue when copying files? Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Wed Jun 21 14:07:52 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 025663B06D1 for ; Wed, 21 Jun 2006 14:07:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27422-01 for ; Wed, 21 Jun 2006 14:07:49 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id DD4563B05EB for ; Wed, 21 Jun 2006 14:07:48 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft778-00051S-00; Wed, 21 Jun 2006 14:07:42 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 20:07:42 +0200 Date: Wed, 21 Jun 2006 20:07:42 +0200 To: Thomas Zajic , Leonard den Ottolander , Oleg Broytmann , Rihards , mc-devel@gnome.org Subject: [bug #13100] Bytes and Count progess bars when moving multiple files From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 13100 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-200741.sv26390.85621@savannah.gnu.org> References: <20050516-170931.sv14402.91225@savannah.gnu.org> In-Reply-To: <20050516-170931.sv14402.91225@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.562 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.562 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 18:07:52 -0000 Update of bug #13100 (project mc): Status: None => Duplicate Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #1: This is a duplicate of bug 10507. Should be fixed by the patch from Hampa Hug to file_move_move() in file.c. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Wed Jun 21 14:56:53 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7BFFF3B0235 for ; Wed, 21 Jun 2006 14:56:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30644-03 for ; Wed, 21 Jun 2006 14:56:52 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id A71023B02AF for ; Wed, 21 Jun 2006 14:56:51 -0400 (EDT) Received: (qmail invoked by alias); 21 Jun 2006 18:56:50 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp042) with SMTP; 21 Jun 2006 20:56:50 +0200 X-Authenticated: #14308112 Date: Wed, 21 Jun 2006 21:55:37 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Progress bar In-Reply-To: <1150913231.2801.73.camel@athlon> Message-ID: References: <1150913231.2801.73.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 18:56:53 -0000 On Wed, 21 Jun 2006, Leonard den Ottolander wrote: > Looking at bugs 10507 and 13100. The patch from Hampa Hug that you've > committed should fix the issue for moving files. Does it also fix the > issue when copying files? No. From INVALID.NOREPLY@gnu.org Wed Jun 21 14:58:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A18373B02AF for ; Wed, 21 Jun 2006 14:58:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30612-07 for ; Wed, 21 Jun 2006 14:58:33 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3D90C3B02A3 for ; Wed, 21 Jun 2006 14:58:33 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft7uI-0006zh-00; Wed, 21 Jun 2006 14:58:30 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 20:58:30 +0200 Date: Wed, 21 Jun 2006 20:58:30 +0200 To: Leonard den Ottolander , Rihards , mc-devel@gnome.org Subject: [bug #10507] copy/move progress bar show none/bad values on big transactions From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 10507 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-205829.sv26390.48736@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.562 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.562 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 18:58:36 -0000 Update of bug #10507 (project mc): Status: None => Fixed Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #1: The poor counting appears to be fixed in CVS. Closing this bug as FIXED. The progress counter only calculates estimates per file. If you want a progress counter for the total time for all files you should file this as an RFE. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 15:15:43 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 433423B03D6 for ; Wed, 21 Jun 2006 15:15:43 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31772-04 for ; Wed, 21 Jun 2006 15:15:42 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 0CB6A3B0397 for ; Wed, 21 Jun 2006 15:15:41 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft8Aq-0007zn-00; Wed, 21 Jun 2006 15:15:36 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:15:35 +0000 Date: Wed, 21 Jun 2006 19:15:35 +0000 To: SGh , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16303] More functionally u7z From: SGh X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16303 User-Agent: Opera/8.51 (X11; Linux i686; U; ru) X-Apparently-From: 80.91.160.214 (Savane authenticated user sgh) Message-Id: <20060621-191535.sv45177.54566@savannah.gnu.org> References: <20060408-134359.sv45177.11632@savannah.gnu.org> <20060408-134508.sv45177.86924@savannah.gnu.org> <20060408-134854.sv45177.29103@savannah.gnu.org> <20060518-165152.sv36205.74443@savannah.gnu.org> <20060530-195233.sv45177.57929@savannah.gnu.org> <20060621-193556.sv26390.77497@savannah.gnu.org> In-Reply-To: <20060621-193556.sv26390.77497@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.563 tagged_above=-999 required=2 tests=[AWL=0.037, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.563 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 19:15:43 -0000 Follow-up Comment #5, bug #16303 (project mc): OK, Understand. I will download latest CVS, and see if I have something to patch un u7z. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From irusskih@gmail.com Wed Jun 21 15:26:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7DF953B01F3 for ; Wed, 21 Jun 2006 15:26:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32350-07 for ; Wed, 21 Jun 2006 15:26:40 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.193]) by menubar.gnome.org (Postfix) with ESMTP id ABDF33B0536 for ; Wed, 21 Jun 2006 15:26:33 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id s1so277067nze for ; Wed, 21 Jun 2006 12:26:33 -0700 (PDT) Received: by 10.36.227.49 with SMTP id z49mr847594nzg; Wed, 21 Jun 2006 12:26:33 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Wed, 21 Jun 2006 12:26:32 -0700 (PDT) Message-ID: <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> Date: Wed, 21 Jun 2006 23:26:32 +0400 From: "Igor Russkih" To: "Leonard den Ottolander" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150898573.2801.45.camel@athlon> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.412 tagged_above=-999 required=2 tests=[AWL=0.188, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.412 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 19:26:44 -0000 On 6/21/06, Leonard den Ottolander wrote: > Hello Igor, > > original in mc (where can I send patches? Is there a mailing list for > colorer?). Only have to look at the String type as we normally Sure, you can use colorer-talks@lists.sourceforge.net (http://lists.sourceforge.net/mailman/listinfo/colorer-talks) > Although the startup of the viewer seems a bit slow with colorer this > has much added value over the default syntax highlighting, and although Yep, the startup time is a bit heavier. Basically this depends on a syntax complexity and dependencies. > I think we could well include the colorer hooks in the main mc tree I > don't believe we should drop the existing highlighting, over even make > colorer the default. Firstly the default syntax is more lightweight, > which some people might prefer. Secondly the use of colorer requires the > installation of a(n extra) third party library. This was one of the ideas I've tried to reach in my patch. Colorer library can be disabled either during compilation time (thus making no dependencies on libcolorer) or in runtime (in this case regular mc syntax highlighter can work). > Is this a fully functional patch? Much lighter than the diff I got > diffing your tarball against CVS :) . Tarball can contain some additional generated files or codes which are not included into SVN repository. From the other side, colorer's SVN repository contains the only files from MC-2006-05-30-15 snapshot which I've altered. This can be a reason. > In that patch I noticed a couple of things: > - There are a lot of fixes to the po files and some to the Russian and > Serbian(?) man page. Please submit these to this list separately. Just a single ru.po file with a few additions. > - I noticed a CR here and there. There seem to be even more in the patch > you sent. Please get rid of those (fe with dos2unix). thanks, that's because of windows-based SVN client. For all the next comments it seems to be a misunderstanding (possibly because my diff is based on MC-2006-05-30-15 snapshot, not the latest one). > - There are a lot of added comments/fixes in config.h.in that I do not > see in your patch. Please submit separately. > - You got rid of the COPYING.LGPL file in vfs. I think this might be a > mistake on your part. You might want to rectify that for your version. > - In your version you got rid of the pipethrough files. This has no > bearing on us as it's not in your patch. > - You made some fixes to the config files as well that seem same. Please > submit those separately for review. > - I noticed changes in vfs/samba/configure. Most of this are somewhat > odd whitespace changes, but there appear to be some hunks at the top and > bottom to actually do something. Please submit (not the whitespace) :) . > - Why did you get rid of vfs/extfs/README.it? (not much of an issue) I'll upmerge with latest CVS MC revision and resend it. > > code). As far as I understand MC uses C only. Is this a problem? > Yes, it might. The overall approach towards accepted language constructs > is a bit conservative to maintain compatibility with older systems. > Would it be much work to rewrite these parts? The main problem with this is that syntax-colorer.cpp file makes direct connection between mc editor data and colorer's code. Technically it is possible to extract a kind of 'generic' C API and include it on library side. In this case MC will have pure C codes. >From the other side this will not release MC from libcolorer dependency - and this means that if user wants to compile and use mc-colorer, he anyway should have C++ environment. I mean I see no reason to eliminate that C++ code from MC: those who have C-only environments can just disable colorer's support in compile time. > This is why I do not want to make colorer the default. I think this is > something we should leave to the distributions. Agreed. > P.S. Could you please set your mail client to produce plain text mails > and use an indentation character and a "replying to" line for quotes? sorry, fixed. -- Igor From leonard@den.ottolander.nl Wed Jun 21 16:05:47 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0DEE23B056F for ; Wed, 21 Jun 2006 16:05:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02395-09 for ; Wed, 21 Jun 2006 16:05:45 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 4133B3B0556 for ; Wed, 21 Jun 2006 16:05:45 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 048E54023 for ; Wed, 21 Jun 2006 22:05:44 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id XchkQtXZk6gl for ; Wed, 21 Jun 2006 22:05:43 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id C653F4021 for ; Wed, 21 Jun 2006 22:05:43 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> Content-Type: text/plain Date: Wed, 21 Jun 2006 22:05:43 +0200 Message-Id: <1150920343.2801.92.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 20:05:47 -0000 Hello Igor, On Wed, 2006-06-21 at 23:26 +0400, Igor Russkih wrote: > On 6/21/06, Leonard den Ottolander wrote: > Colorer library can be disabled either during compilation time Switching at run time would be nice. At least as a startup option. > Just a single ru.po file with a few additions. And sr.po. > For all the next comments it seems to be a misunderstanding (possibly > because my diff is based on MC-2006-05-30-15 snapshot, not the latest > one). These are no misunderstandings, just differences I noticed between mccolorer and mc-CVS. I already filtered out some m4 related makefile issues. > > - There are a lot of added comments/fixes in config.h.in that I do not > > see in your patch. Please submit separately. These are comments and fixes in your mccolorer, not available in CVS. Are you using patches from others? > > - You got rid of the COPYING.LGPL file in vfs. I think this might be a > > mistake on your part. You might want to rectify that for your version. For some reason this file got lost in your mccolorer tarball. > > - You made some fixes to the config files as well that seem same. Please > > submit those separately for review. > > - I noticed changes in vfs/samba/configure. Most of this are somewhat > > odd whitespace changes, but there appear to be some hunks at the top and > > bottom to actually do something. Please submit (not the whitespace) :) . These are patches you seem to be using that are not in CVS. This is why I ask you to submit them for review. > I'll upmerge with latest CVS MC revision and resend it. The CVS tarball I'm using is only 2 weeks newer than yours. I'm not speaking of the recent changes to CVS. > The main problem with this is that syntax-colorer.cpp file makes > direct connection between mc editor data and colorer's code. > Technically it is possible to extract a kind of 'generic' C API and > include it on library side. In this case MC will have pure C codes. Is it technically possible to reimplement that c++ code in c? (This is just theoretical question, I don't ask you to do it.) > >From the other side this will not release MC from libcolorer > dependency - and this means that if user wants to compile and use > mc-colorer, he anyway should have C++ environment. > > I mean I see no reason to eliminate that C++ code from MC: those who > have C-only environments can just disable colorer's support in compile > time. Yes, I guess you are right. We might want to put the colorer code in a different directory though. > > P.S. Could you please set your mail client to produce plain text mails > > and use an indentation character and a "replying to" line for quotes? > sorry, fixed. Thanks :) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Wed Jun 21 16:06:51 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5314E3B0573 for ; Wed, 21 Jun 2006 16:06:51 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02504-10 for ; Wed, 21 Jun 2006 16:06:50 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 537BD3B056B for ; Wed, 21 Jun 2006 16:06:50 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 8C1574023 for ; Wed, 21 Jun 2006 22:06:44 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id HM0rfGtmzMsH for ; Wed, 21 Jun 2006 22:06:43 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id B9AD84021 for ; Wed, 21 Jun 2006 22:06:43 +0200 (CEST) Subject: Re: Progress bar From: Leonard den Ottolander To: MC development In-Reply-To: References: <1150913231.2801.73.camel@athlon> Content-Type: text/plain Date: Wed, 21 Jun 2006 22:06:43 +0200 Message-Id: <1150920403.2801.95.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 20:06:51 -0000 On Wed, 2006-06-21 at 21:55 +0300, Pavel Tsekov wrote: > > Does it also fix the > > issue when copying files? > > No. Seems to work fine though. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Wed Jun 21 17:21:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F34E73B00E8 for ; Wed, 21 Jun 2006 17:21:15 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06624-06 for ; Wed, 21 Jun 2006 17:21:14 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 925423B00F2 for ; Wed, 21 Jun 2006 17:21:14 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id B529F4023 for ; Wed, 21 Jun 2006 23:21:13 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id tbmp1FvQgFwr for ; Wed, 21 Jun 2006 23:21:07 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 4373F4021 for ; Wed, 21 Jun 2006 23:21:07 +0200 (CEST) Subject: Snapshots availability From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Wed, 21 Jun 2006 23:21:06 +0200 Message-Id: <1150924866.2801.100.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 21:21:16 -0000 Hi, Who is the creator of the two weekly snapshots found at http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/snapshots/ ? Pavel? Miguel? Could you please keep a couple of months worth of snapshots around? I couldn't find the May 30th snapshot when I wanted to compare it with mccolorer. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Wed Jun 21 19:05:41 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2C4D23B0138 for ; Wed, 21 Jun 2006 19:05:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11604-09 for ; Wed, 21 Jun 2006 19:05:39 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 756083B006C for ; Wed, 21 Jun 2006 19:05:39 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtBlM-0000CL-00; Wed, 21 Jun 2006 19:05:32 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 01:05:32 +0200 Date: Thu, 22 Jun 2006 01:05:32 +0200 To: Leonard den Ottolander , mc-devel@gnome.org Subject: [task #5671] Data Export #2 (bugs) From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: task X-Savane-Item-ID: 5671 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-010531.sv26390.89793@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.564 tagged_above=-999 required=2 tests=[AWL=0.036, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.564 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 23:05:41 -0000 URL: Summary: Data Export #2 (bugs) Project: GNU Midnight Commander Submitted by: leonardjo Submitted on: Thursday 22/06/06 at 01:05 Should Start On: Thursday 22/06/06 at 00:00 Should be Finished on: Friday 23/06/06 at 00:00 Category: None Priority: 5 - Normal Status: None Privacy: Private Assigned to: None Percent Complete: 0% Open/Closed: Open Effort: 0.00 _______________________________________________________ Details: A new export job has been registered. This task has been created to keep the project informed. However, only Leonard den Ottolander, that created the job, can remove the job itself. ######### JOB URL ######### Once the job will be done, it will be available at: ######### JOB REMOVAL ######### Closing this task will not remove the job. To remove the job, Leonard den Ottolander must go at ######### JOB DETAILS ######### The SQL query will be: SELECT bug_id FROM bugs WHERE group_id=3521 (Note: We are aware this information is not tremendously user-friendly. This will be improved in future Savane releases) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Thu Jun 22 00:53:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8FED23B0377 for ; Thu, 22 Jun 2006 00:53:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28223-01 for ; Thu, 22 Jun 2006 00:53:37 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 25D633B027A for ; Thu, 22 Jun 2006 00:53:36 -0400 (EDT) Received: (qmail invoked by alias); 22 Jun 2006 04:53:35 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp016) with SMTP; 22 Jun 2006 06:53:35 +0200 X-Authenticated: #14308112 Date: Thu, 22 Jun 2006 07:52:21 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Progress bar In-Reply-To: <1150920403.2801.95.camel@athlon> Message-ID: References: <1150913231.2801.73.camel@athlon> <1150920403.2801.95.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 04:53:39 -0000 On Wed, 21 Jun 2006, Leonard den Ottolander wrote: > On Wed, 2006-06-21 at 21:55 +0300, Pavel Tsekov wrote: >>> Does it also fix the >>> issue when copying files? >> >> No. > > Seems to work fine though. Hampa's patch behaves exactly as described: [...] If a file is moved by copy/remove the progress bar is advanced twice. On the other hand, if a file is moved by renaming the progress bar is never updated. [...] I don't see how it could possibly fix other issues. From INVALID.NOREPLY@gnu.org Thu Jun 22 02:16:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7DB7B3B014A for ; Thu, 22 Jun 2006 02:16:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32693-10 for ; Thu, 22 Jun 2006 02:16:42 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 885D53B026A for ; Thu, 22 Jun 2006 02:16:42 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtIUZ-000551-00; Thu, 22 Jun 2006 02:16:39 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 06:16:38 +0000 Date: Thu, 22 Jun 2006 06:16:38 +0000 To: Rolf Offermanns , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16383] Build system does not allow cross compiling From: Rolf Offermanns X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16383 User-Agent: Mozilla/5.0 (compatible; Konqueror/3.5; Linux) KHTML/3.5.2 (like Gecko) Kubuntu 6.06 Dapper X-Apparently-From: 84.58.135.66 (Savane authenticated user roffermanns) Message-Id: <20060622-061638.sv48822.49212@savannah.gnu.org> References: <20060419-132319.sv48822.2441@savannah.gnu.org> <20060621-193731.sv26390.16849@savannah.gnu.org> In-Reply-To: <20060621-193731.sv26390.16849@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.564 tagged_above=-999 required=2 tests=[AWL=0.036, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.564 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 06:16:44 -0000 Follow-up Comment #2, bug #16383 (project mc): I would, but I have no clue about the auto* stuff. Sorry. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 02:56:50 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C01823B02D2 for ; Thu, 22 Jun 2006 02:56:50 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02668-05 for ; Thu, 22 Jun 2006 02:56:49 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 61ED03B00C2 for ; Thu, 22 Jun 2006 02:56:49 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtJ7N-0000cX-00; Thu, 22 Jun 2006 02:56:45 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 09:56:45 +0300 Date: Thu, 22 Jun 2006 09:56:45 +0300 To: Rolf Offermanns , Leonard den Ottolander , Pavel Tsekov , mc-devel@gnome.org Subject: [bug #16383] Build system does not allow cross compiling From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16383 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060622-095644.sv36205.99030@savannah.gnu.org> References: <20060419-132319.sv48822.2441@savannah.gnu.org> <20060621-193731.sv26390.16849@savannah.gnu.org> <20060622-061638.sv48822.49212@savannah.gnu.org> In-Reply-To: <20060622-061638.sv48822.49212@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.565 tagged_above=-999 required=2 tests=[AWL=0.035, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.565 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 06:56:51 -0000 Follow-up Comment #3, bug #16383 (project mc): The major problem here is that man2hlp relies on glib. This complicates the task of making it build in cross environment. One way to fix this is to drop the glib dependency - there are tree or four functions which need to be replaced. When I have time I'll do this if noone beats me to it. I have already made some changes to the auto stuff so that MC will build properly in cross environment but whithout changing man2hlp they are of no use. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From irusskih@gmail.com Thu Jun 22 06:17:30 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 84BC73B0191 for ; Thu, 22 Jun 2006 06:17:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15568-03 for ; Thu, 22 Jun 2006 06:17:27 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.195]) by menubar.gnome.org (Postfix) with ESMTP id 9A6723B02D2 for ; Thu, 22 Jun 2006 06:17:26 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id l8so363567nzf for ; Thu, 22 Jun 2006 03:17:25 -0700 (PDT) Received: by 10.36.252.49 with SMTP id z49mr1712665nzh; Thu, 22 Jun 2006 03:17:25 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Thu, 22 Jun 2006 03:17:25 -0700 (PDT) Message-ID: <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> Date: Thu, 22 Jun 2006 14:17:25 +0400 From: "Igor Russkih" To: "Leonard den Ottolander" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150920303.2801.89.camel@athlon> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_Part_3415_13609534.1150971445577" References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.499 tagged_above=-999 required=2 tests=[AWL=0.101, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.499 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 10:17:30 -0000 ------=_Part_3415_13609534.1150971445577 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Leonard, all, Here attached the patch over mc-2006-06-17-02 (snapshot from ibiblio.org). Please don't make direct diffs between mc-colorer and cvs snapshot since they are different versions. Use this patch for reviewing. I've separated the patch for easier understanding: build.diff - make/configs changes edit.diff - changes in existing edit/* files mccolorer.diff - new colorer's code edit/syntax-colorer-* lang.diff - ru.po additions for colorer > > Colorer library can be disabled either during compilation time > Switching at run time would be nice. At least as a startup option. "either during compilation time or in runtime" - I meant this is already implemented. > These are comments and fixes in your mccolorer, not available in CVS. > Are you using patches from others? No, just clean mc snapshot from ibiblio.org. > > > odd whitespace changes, but there appear to be some hunks at the top and > > > bottom to actually do something. Please submit (not the whitespace) :) . > These are patches you seem to be using that are not in CVS. This is why > I ask you to submit them for review. Sorry, it seems to be a difference in our original MC tarballs. I didn't touch it. See the patch attached for all the files changed. > > The main problem with this is that syntax-colorer.cpp file makes > > direct connection between mc editor data and colorer's code. > > Technically it is possible to extract a kind of 'generic' C API and > > include it on library side. In this case MC will have pure C codes. > Is it technically possible to reimplement that c++ code in c? (This is > just theoretical question, I don't ask you to do it.) It is possible to move this code to libcolorer side and implement plain C API from library side - however this'll take more time and I see no reason in doing this. > Yes, I guess you are right. We might want to put the colorer code in a > different directory though. That's easy. -- Igor ------=_Part_3415_13609534.1150971445577 Content-Type: application/x-gzip; name=mccolorer.diff.tgz Content-Transfer-Encoding: base64 X-Attachment-Id: f_eoqy6k46 Content-Disposition: attachment; filename="mccolorer.diff.tgz" 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 PaPn4z3/Fzf5qE4AQAEA ------=_Part_3415_13609534.1150971445577-- From INVALID.NOREPLY@gnu.org Thu Jun 22 07:54:37 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 138DC3B02A8 for ; Thu, 22 Jun 2006 07:54:37 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21553-06 for ; Thu, 22 Jun 2006 07:54:35 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 73FAA3B02F9 for ; Thu, 22 Jun 2006 07:54:35 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtNlY-0005Il-00; Thu, 22 Jun 2006 07:54:32 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 13:54:32 +0200 Date: Thu, 22 Jun 2006 13:54:32 +0200 To: Leonard den Ottolander , mc-devel@gnome.org Subject: [task #5673] Data Export #3 (bugs) From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: task X-Savane-Item-ID: 5673 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-135432.sv26390.82990@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.566 tagged_above=-999 required=2 tests=[AWL=0.034, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.566 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 11:54:37 -0000 URL: Summary: Data Export #3 (bugs) Project: GNU Midnight Commander Submitted by: leonardjo Submitted on: Thursday 22/06/06 at 13:54 Should Start On: Thursday 22/06/06 at 00:00 Should be Finished on: Friday 23/06/06 at 00:00 Category: None Priority: 5 - Normal Status: None Privacy: Private Assigned to: None Percent Complete: 0% Open/Closed: Open Effort: 0.00 _______________________________________________________ Details: A new export job has been registered. This task has been created to keep the project informed. However, only Leonard den Ottolander, that created the job, can remove the job itself. ######### JOB URL ######### Once the job will be done, it will be available at: ######### JOB REMOVAL ######### Closing this task will not remove the job. To remove the job, Leonard den Ottolander must go at ######### JOB DETAILS ######### The SQL query will be: SELECT bug_id FROM bugs WHERE group_id=3521 (Note: We are aware this information is not tremendously user-friendly. This will be improved in future Savane releases) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Thu Jun 22 08:09:08 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5CB333B0421 for ; Thu, 22 Jun 2006 08:09:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23152-01 for ; Thu, 22 Jun 2006 08:09:06 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 7DAD03B0401 for ; Thu, 22 Jun 2006 08:09:06 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 6AC464023 for ; Thu, 22 Jun 2006 14:09:05 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id xMGRfFcFP945 for ; Thu, 22 Jun 2006 14:09:03 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id CB99E4021 for ; Thu, 22 Jun 2006 14:09:03 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> Content-Type: text/plain Date: Thu, 22 Jun 2006 14:09:03 +0200 Message-Id: <1150978143.2807.11.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:09:08 -0000 Hello Igor, On Thu, 2006-06-22 at 14:17 +0400, Igor Russkih wrote: > "either during compilation time or in runtime" - I meant this is > already implemented. I should look for that switch then :) . > No, just clean mc snapshot from ibiblio.org. Can you make it available to me? I am quite curious where the changes I observe came from. They are quite a few, and if they are not in CVS I'm curious how they ended up in the tarball. > > Is it technically possible to reimplement that c++ code in c? (This is > > just theoretical question, I don't ask you to do it.) > It is possible to move this code to libcolorer side and implement > plain C API from library side - however this'll take more time and I > see no reason in doing this. My question was if it is technically possible to rewrite the cpp code for *mc* in c and (through trickery) still keep interface compatibility. A bit like linking Delphi (Pascal) to C code. This is possible through compiler switches changing the stack cleanup behaviour (and probably some alignment tricks). Again, I'm not asking you to do this, just inquiring about the theoretical possibility. It's a bit OT, I know ;) . Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Thu Jun 22 08:10:22 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CF08F3B0484 for ; Thu, 22 Jun 2006 08:10:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23399-04 for ; Thu, 22 Jun 2006 08:10:19 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id BBE813B0570 for ; Thu, 22 Jun 2006 08:10:19 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtO0n-00064f-00; Thu, 22 Jun 2006 08:10:17 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 14:10:17 +0200 Date: Thu, 22 Jun 2006 14:10:17 +0200 To: Leonard den Ottolander , mc-devel@gnome.org Subject: [task #5674] Data Export #4 (bugs) From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: task X-Savane-Item-ID: 5674 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-141017.sv26390.14093@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.566 tagged_above=-999 required=2 tests=[AWL=0.034, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.566 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:10:23 -0000 URL: Summary: Data Export #4 (bugs) Project: GNU Midnight Commander Submitted by: leonardjo Submitted on: Thursday 22/06/06 at 14:10 Should Start On: Thursday 22/06/06 at 00:00 Should be Finished on: Saturday 24/06/06 at 00:00 Category: None Priority: 5 - Normal Status: None Privacy: Private Assigned to: None Percent Complete: 0% Open/Closed: Open Effort: 0.00 _______________________________________________________ Details: A new export job has been registered. This task has been created to keep the project informed. However, only Leonard den Ottolander, that created the job, can remove the job itself. ######### JOB URL ######### Once the job will be done, it will be available at: ######### JOB REMOVAL ######### Closing this task will not remove the job. To remove the job, Leonard den Ottolander must go at ######### JOB DETAILS ######### The SQL query will be: SELECT bug_id FROM bugs WHERE group_id=3521 AND status_id IN (1) (Note: We are aware this information is not tremendously user-friendly. This will be improved in future Savane releases) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 13:49:13 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 721AA3B0733 for ; Wed, 21 Jun 2006 13:49:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26116-05 for ; Wed, 21 Jun 2006 13:49:11 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 8F2E03B06F1 for ; Wed, 21 Jun 2006 13:49:11 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6on-0001Zw-00; Wed, 21 Jun 2006 13:48:45 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:48:45 +0200 Date: Wed, 21 Jun 2006 19:48:45 +0200 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-194845.sv26390.25842@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> In-Reply-To: <20060306-153157.sv36205.31998@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.562 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.562 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 08:25:17 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:49:13 -0000 Follow-up Comment #25, bug #14155 (project mc): Ping. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Thu Jun 22 08:36:12 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 062EA3B0606 for ; Thu, 22 Jun 2006 08:36:12 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25706-05 for ; Thu, 22 Jun 2006 08:36:10 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id F034E3B03FD for ; Thu, 22 Jun 2006 08:36:09 -0400 (EDT) Received: (qmail invoked by alias); 22 Jun 2006 12:36:08 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp042) with SMTP; 22 Jun 2006 14:36:08 +0200 X-Authenticated: #14308112 Date: Thu, 22 Jun 2006 15:34:54 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150978143.2807.11.camel@athlon> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.477 tagged_above=-999 required=2 tests=[AWL=-0.012, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.477 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:36:12 -0000 On Thu, 22 Jun 2006, Leonard den Ottolander wrote: >>> Is it technically possible to reimplement that c++ code in c? (This is >>> just theoretical question, I don't ask you to do it.) >> It is possible to move this code to libcolorer side and implement >> plain C API from library side - however this'll take more time and I >> see no reason in doing this. > > My question was if it is technically possible to rewrite the cpp code > for *mc* in c and (through trickery) still keep interface compatibility. Not unless colorer exports C interfaces and it doesn't. The way it is implemented colorer exports a set of interfaces that one has to implement in terms of C++ classes. Theoretically it could be possible to create an C++ implementation of those interfaces, one that delegates the work to pure C functions. Again that means that colorer has to export a C. I don't see why this is such a big deal to you ? > A bit like linking Delphi (Pascal) to C code. This is possible through > compiler switches changing the stack cleanup behaviour (and probably > some alignment tricks). What about name mangling issues ? As I said above - you cannot avoid the C++ code. From leonard@den.ottolander.nl Thu Jun 22 08:36:29 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AFADE3B06C8 for ; Thu, 22 Jun 2006 08:36:29 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25640-08 for ; Thu, 22 Jun 2006 08:36:27 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id B69843B0677 for ; Thu, 22 Jun 2006 08:36:27 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 774334023 for ; Thu, 22 Jun 2006 14:36:21 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id XkAbOexUxtt9 for ; Thu, 22 Jun 2006 14:36:17 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id AA3E44021 for ; Thu, 22 Jun 2006 14:36:17 +0200 (CEST) Subject: Re: Progress bar From: Leonard den Ottolander To: MC development In-Reply-To: References: <1150913231.2801.73.camel@athlon> <1150920403.2801.95.camel@athlon> Content-Type: text/plain Date: Thu, 22 Jun 2006 14:36:17 +0200 Message-Id: <1150979777.2807.25.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:36:29 -0000 Hello Pavel, On Thu, 2006-06-22 at 07:52 +0300, Pavel Tsekov wrote: > Hampa's patch behaves exactly as described: > > [...] > If a file is moved by copy/remove the progress bar is advanced twice. On > the other hand, if a file is moved by renaming the progress bar is never > updated. > [...] I got confused by bug 10507 that doesn't distinguish clearly between copy and move. The copy progress bar behaves as expected. (copy_dir_dir() and move_dir_dir() do not show a bytes or count bar, but this is expected as they do not attempt to make an estimate of the number and size of the copied/moved files.) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Thu Jun 22 08:51:18 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C4EB23B06E1 for ; Thu, 22 Jun 2006 08:51:18 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27256-05 for ; Thu, 22 Jun 2006 08:51:17 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 562D33B066E for ; Thu, 22 Jun 2006 08:51:17 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtOdb-0000vu-00; Thu, 22 Jun 2006 08:50:23 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 14:50:22 +0200 Date: Thu, 22 Jun 2006 14:50:22 +0200 To: Gergely =?UTF-8?B?U3rDoXN6?= , Leonard den Ottolander , Pavel Tsekov , Oswald Buddenhagen , mc-devel@gnome.org Subject: [patch #4970] add label highlighting to c.syntax From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: patch X-Savane-Item-ID: 4970 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-145022.sv26390.88876@savannah.gnu.org> References: <20060312-194248.sv8412.23459@savannah.gnu.org> <20060317-170214.sv36205.75631@savannah.gnu.org> <20060317-161352.sv41304.82068@savannah.gnu.org> <20060317-211325.sv41304.63756@savannah.gnu.org> <20060318-120849.sv36205.36817@savannah.gnu.org> <20060318-144031.sv26390.61472@savannah.gnu.org> <20060319-090924.sv8412.83221@savannah.gnu.org> <20060319-164645.sv26390.22214@savannah.gnu.org> <20060319-204823.sv8412.33015@savannah.gnu.org> In-Reply-To: <20060319-204823.sv8412.33015@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.567 tagged_above=-999 required=2 tests=[AWL=0.033, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.567 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:51:19 -0000 Update of patch #4970 (project mc): Status: None => Done Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #9: Committed. Closing. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 08:59:11 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C623A3B071C for ; Thu, 22 Jun 2006 08:59:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28144-04 for ; Thu, 22 Jun 2006 08:59:10 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 8A51C3B0719 for ; Thu, 22 Jun 2006 08:59:10 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtOm3-0001Ef-00; Thu, 22 Jun 2006 08:59:07 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 14:59:07 +0200 Date: Thu, 22 Jun 2006 14:59:07 +0200 To: Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org Subject: [patch #4991] add .ipk extension to mc.ext From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: patch X-Savane-Item-ID: 4991 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-145906.sv26390.95959@savannah.gnu.org> References: <20060323-173337.sv36205.23406@savannah.gnu.org> <20060323-195337.sv26390.31728@savannah.gnu.org> In-Reply-To: <20060323-195337.sv26390.31728@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.568 tagged_above=-999 required=2 tests=[AWL=0.032, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.568 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:59:12 -0000 Update of patch #4991 (project mc): Category: None => Menu and associations Status: None => Done Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #2: Committed. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 09:01:57 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5704B3B0720 for ; Thu, 22 Jun 2006 09:01:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28587-02 for ; Thu, 22 Jun 2006 09:01:50 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id F38BE3B078C for ; Thu, 22 Jun 2006 09:00:53 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtOne-0001HY-00; Thu, 22 Jun 2006 09:00:46 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 15:00:44 +0200 Date: Thu, 22 Jun 2006 15:00:44 +0200 To: Sorin Sbarnea , Roland Illig , Leonard den Ottolander , mc-devel@gnome.org Subject: [patch #4741] Syntax Support for config files (conf,ini,cfg,...) From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: patch X-Savane-Item-ID: 4741 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-150044.sv26390.89917@savannah.gnu.org> References: <20051228-210650.sv46405.46961@savannah.gnu.org> <20051228-210735.sv46405.17938@savannah.gnu.org> <20060128-105039.sv20990.3126@savannah.gnu.org> In-Reply-To: <20060128-105039.sv20990.3126@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.568 tagged_above=-999 required=2 tests=[AWL=0.032, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.568 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:01:57 -0000 Follow-up Comment #2, patch #4741 (project mc): Ping. Sorin, if you do not fix these patches this report will be closed. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 08:40:20 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CEB323B06CE for ; Thu, 22 Jun 2006 08:40:20 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26231-01 for ; Thu, 22 Jun 2006 08:40:19 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 197813B0677 for ; Thu, 22 Jun 2006 08:40:19 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtOSt-00007u-00; Thu, 22 Jun 2006 08:39:19 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 15:39:19 +0300 Date: Thu, 22 Jun 2006 15:39:19 +0300 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060622-153919.sv36205.75620@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> <20060621-194845.sv26390.25842@savannah.gnu.org> In-Reply-To: <20060621-194845.sv26390.25842@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.567 tagged_above=-999 required=2 tests=[AWL=0.033, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.567 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 09:09:11 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:40:21 -0000 Follow-up Comment #26, bug #14155 (project mc): I guess we can safely close that one . If anyone has any kind of objections she/he could request that we reopen the bug report. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From irusskih@gmail.com Thu Jun 22 09:30:41 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72E753B06B5 for ; Thu, 22 Jun 2006 09:30:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30485-04 for ; Thu, 22 Jun 2006 09:30:40 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.204]) by menubar.gnome.org (Postfix) with ESMTP id BAB223B0559 for ; Thu, 22 Jun 2006 09:30:39 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id 18so390211nzp for ; Thu, 22 Jun 2006 06:30:39 -0700 (PDT) Received: by 10.37.22.14 with SMTP id z14mr1920162nzi; Thu, 22 Jun 2006 06:30:38 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Thu, 22 Jun 2006 06:30:38 -0700 (PDT) Message-ID: <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> Date: Thu, 22 Jun 2006 17:30:38 +0400 From: "Igor Russkih" To: "Leonard den Ottolander" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150978143.2807.11.camel@athlon> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.531 tagged_above=-999 required=2 tests=[AWL=0.069, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.531 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:30:41 -0000 > > already implemented. > I should look for that switch then :) . It's a runtime option in editor's settings dialog. You'll find it easily ;) > > No, just clean mc snapshot from ibiblio.org. > Can you make it available to me? I am quite curious where the changes I The latest one I've got from http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/snapshots/mc-2006-06-17-02.tar.gz The previous I've used (mc-2006-05-30-15.tar.gz) > > plain C API from library side - however this'll take more time and I > > see no reason in doing this. > My question was if it is technically possible to rewrite the cpp code > for *mc* in c and (through trickery) still keep interface compatibility. No. that's particular action is not possible as far as I know. Surely it is possible to make a kind of c++ API 'emulation' from pure C code - so that pure C component (mc) will start using pure C++ component (libcolorer). But this is just in theory and it's not a production solution. Hope I've answered your question ;) -- Igor From leonard@den.ottolander.nl Thu Jun 22 09:41:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 19F2E3B042A for ; Thu, 22 Jun 2006 09:41:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31154-10 for ; Thu, 22 Jun 2006 09:41:18 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id AAE543B00DE for ; Thu, 22 Jun 2006 09:41:18 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id C22344023 for ; Thu, 22 Jun 2006 15:41:17 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id sYin0FGGCowf for ; Thu, 22 Jun 2006 15:41:12 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 41DF34021 for ; Thu, 22 Jun 2006 15:41:12 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> Content-Type: text/plain Date: Thu, 22 Jun 2006 15:41:11 +0200 Message-Id: <1150983671.2807.29.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:41:21 -0000 Hello Igor, On Thu, 2006-06-22 at 17:30 +0400, Igor Russkih wrote: > The previous I've used (mc-2006-05-30-15.tar.gz) I cannot find that version anymore. Can you make it available to me somewhere so I can have a look? > No. that's particular action is not possible as far as I know. > Surely it is possible to make a kind of c++ API 'emulation' from pure > C code - so that pure C component (mc) will start using pure C++ > component (libcolorer). But this is just in theory and it's not a > production solution. > > Hope I've answered your question ;) Yup. Thanks :) . (No big deal, just curious.) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From irusskih@gmail.com Thu Jun 22 09:55:05 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 821D33B038B for ; Thu, 22 Jun 2006 09:55:05 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32339-08 for ; Thu, 22 Jun 2006 09:55:02 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.206]) by menubar.gnome.org (Postfix) with ESMTP id BC25B3B03A4 for ; Thu, 22 Jun 2006 09:55:01 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id s18so421398nze for ; Thu, 22 Jun 2006 06:55:01 -0700 (PDT) Received: by 10.37.13.43 with SMTP id q43mr2012277nzi; Thu, 22 Jun 2006 06:55:01 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Thu, 22 Jun 2006 06:55:01 -0700 (PDT) Message-ID: <861727ef0606220655o5a195eb2ub12e508c313f7779@mail.gmail.com> Date: Thu, 22 Jun 2006 17:55:01 +0400 From: "Igor Russkih" To: "Leonard den Ottolander" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150983671.2807.29.camel@athlon> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <1150983671.2807.29.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:55:05 -0000 > > The previous I've used (mc-2006-05-30-15.tar.gz) > I cannot find that version anymore. Can you make it available to me > somewhere so I can have a look? I've placed it at http://colorer.sourceforge.net/files/mc-2006-05-30-15.tar.gz -- Igor From leonard@den.ottolander.nl Thu Jun 22 10:10:01 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 74CA33B081D for ; Thu, 22 Jun 2006 10:10:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01047-02 for ; Thu, 22 Jun 2006 10:10:00 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 57E513B07DF for ; Thu, 22 Jun 2006 10:10:00 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id D18C44023 for ; Thu, 22 Jun 2006 16:09:58 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id lUd8k95cotkD for ; Thu, 22 Jun 2006 16:09:54 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 4FCBC4021 for ; Thu, 22 Jun 2006 16:09:54 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606220655o5a195eb2ub12e508c313f7779@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <1150983671.2807.29.camel@athlon> <861727ef0606220655o5a195eb2ub12e508c313f7779@mail.gmail.com> Content-Type: text/plain Date: Thu, 22 Jun 2006 16:09:48 +0200 Message-Id: <1150985388.2807.32.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 14:10:01 -0000 Hello Igor, On Thu, 2006-06-22 at 17:55 +0400, Igor Russkih wrote: > I've placed it at > http://colorer.sourceforge.net/files/mc-2006-05-30-15.tar.gz Thanks. Well, that clears things up for me :-) . It turns out all the changes I observed are caused by the autogen step used to create the snapshots. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Thu Jun 22 10:32:26 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D276D3B041B for ; Thu, 22 Jun 2006 10:32:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02378-03 for ; Thu, 22 Jun 2006 10:32:25 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id AADAE3B0658 for ; Thu, 22 Jun 2006 10:32:25 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id B61094023 for ; Thu, 22 Jun 2006 16:32:24 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id uGEZi1J4kOTe for ; Thu, 22 Jun 2006 16:32:23 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 3F85C4021 for ; Thu, 22 Jun 2006 16:32:23 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> Content-Type: text/plain Date: Thu, 22 Jun 2006 16:32:22 +0200 Message-Id: <1150986742.2807.34.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 14:32:27 -0000 Hi Igor, On Thu, 2006-06-22 at 17:30 +0400, Igor Russkih wrote: > It's a runtime option in editor's settings dialog. You'll find it easily ;) Yes, got it. But you've introduced a duplicate hotkey C. Please choose another one. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Thu Jun 22 11:11:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 551443B0501 for ; Thu, 22 Jun 2006 11:11:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04503-07 for ; Thu, 22 Jun 2006 11:11:20 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 158503B0331 for ; Thu, 22 Jun 2006 11:11:20 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 0F4434023; Thu, 22 Jun 2006 17:11:19 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 5-UDyn51ImKM; Thu, 22 Jun 2006 17:11:15 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 9317F4021; Thu, 22 Jun 2006 17:11:15 +0200 (CEST) Subject: Where to report issues with mccolorer? From: Leonard den Ottolander To: Igor Russkih Content-Type: text/plain Date: Thu, 22 Jun 2006 17:11:15 +0200 Message-Id: <1150989075.2807.39.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 15:11:21 -0000 Hello Igor, Where do you want us to report issues with mccolorer? In the colorer bug system? (I'm seeing a crash when opening the syntax highlighting dialog for the old syntax highlighting.) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From ossi@kde.org Thu Jun 22 12:10:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C556D3B01D2 for ; Thu, 22 Jun 2006 12:10:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08495-02 for ; Thu, 22 Jun 2006 12:10:20 -0400 (EDT) Received: from ktown.kde.org (ktown.kde.org [131.246.120.250]) by menubar.gnome.org (Postfix) with SMTP id 97E283B07A2 for ; Thu, 22 Jun 2006 12:10:19 -0400 (EDT) Received: (qmail 3801 invoked from network); 22 Jun 2006 16:10:17 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 22 Jun 2006 16:10:17 -0000 Received: from ossi by ugly.local with local (masqmail 0.2.21) id 1FtRkx-0uH-00 for ; Thu, 22 Jun 2006 18:10:11 +0200 Date: Thu, 22 Jun 2006 18:10:11 +0200 From: Oswald Buddenhagen To: mc-devel@gnome.org Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine Message-ID: <20060622161011.GC3368@ugly.local> Mail-Followup-To: mc-devel@gnome.org References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.586 tagged_above=-999 required=2 tests=[AWL=0.013, BAYES_00=-2.599] X-Spam-Score: -2.586 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 16:10:22 -0000 On Thu, Jun 22, 2006 at 05:30:38PM +0400, Igor Russkih wrote: > > > already implemented. > > I should look for that switch then :) . > It's a runtime option in editor's settings dialog. You'll find it easily ;) > fwiw, i think this is silly. typical example of over-configurability. if it has to be runtime-switchable (why?), don't put it in the dialog at least. -- Hi! I'm a .signature virus! Copy me into your ~/.signature, please! -- Chaos, panic, and disorder - my work here is done. From proski@gnu.org Thu Jun 22 14:15:51 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0453A3B0750 for ; Thu, 22 Jun 2006 14:15:51 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16309-05 for ; Thu, 22 Jun 2006 14:15:48 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id E86833B082D for ; Thu, 22 Jun 2006 14:15:47 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FtTiV-0003Lh-2P for mc-devel@gnome.org; Thu, 22 Jun 2006 14:15:47 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FtTiL-0008PV-3w; Thu, 22 Jun 2006 14:15:37 -0400 Subject: Re: Snapshots availability From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150924866.2801.100.camel@athlon> References: <1150924866.2801.100.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Thu, 22 Jun 2006 14:15:37 -0400 Message-Id: <1151000137.3539.23.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.595 tagged_above=-999 required=2 tests=[AWL=0.005, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.595 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 18:15:51 -0000 Hello, Leonard! On Wed, 2006-06-21 at 23:21 +0200, Leonard den Ottolander wrote: > Hi, > > Who is the creator of the two weekly snapshots found at > http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/snapshots/ ? > Pavel? Miguel? I generate them using maint/mcsnap > Could you please keep a couple of months worth of snapshots around? I > couldn't find the May 30th snapshot when I wanted to compare it with > mccolorer. Snapshots are not intended for developers. Developers should be using proper version control systems. Snapshots are for users who want to try the latest features and check if some bug has been fixed, but who don't intend to keep the sources up-to-date. -- Regards, Pavel Roskin From ptsekov@gmx.net Fri Jun 23 03:10:45 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EBAB33B0646 for ; Fri, 23 Jun 2006 03:10:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21658-09 for ; Fri, 23 Jun 2006 03:10:39 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id D4E653B00ED for ; Fri, 23 Jun 2006 03:10:38 -0400 (EDT) Received: (qmail invoked by alias); 23 Jun 2006 07:10:36 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp019) with SMTP; 23 Jun 2006 09:10:36 +0200 X-Authenticated: #14308112 Date: Fri, 23 Jun 2006 10:09:20 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole Cc: MC development Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.477 tagged_above=-999 required=2 tests=[AWL=-0.012, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.477 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 07:10:45 -0000 Hello Igor, On Thu, 22 Jun 2006, Igor Russkih wrote: > Here attached the patch over mc-2006-06-17-02 (snapshot from > ibiblio.org). Please don't make direct diffs between mc-colorer and > cvs snapshot since they are different versions. Use this patch for > reviewing. > > I've separated the patch for easier understanding: > build.diff - make/configs changes There is no need to include configure, config.h.in, Makefile.in and and any other autogenerated files in your patches. Next time, please, submit only your changes to configure.ac and Makefile.am. From ptsekov@gmx.net Fri Jun 23 03:59:56 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0322F3B0393 for ; Fri, 23 Jun 2006 03:59:56 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25386-04 for ; Fri, 23 Jun 2006 03:59:54 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id F0DE13B013B for ; Fri, 23 Jun 2006 03:59:53 -0400 (EDT) Received: (qmail invoked by alias); 23 Jun 2006 07:59:49 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp033) with SMTP; 23 Jun 2006 09:59:49 +0200 X-Authenticated: #14308112 Date: Fri, 23 Jun 2006 10:58:32 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 07:59:56 -0000 Hello Igor, On Thu, 22 Jun 2006, Igor Russkih wrote: > Here attached the patch over mc-2006-06-17-02 (snapshot from > ibiblio.org). Please don't make direct diffs between mc-colorer and > cvs snapshot since they are different versions. Use this patch for > reviewing. > > I've separated the patch for easier understanding: > build.diff - make/configs changes Index: edit/Makefile.am =================================================================== --- edit/Makefile.am (.../branches/MC-VENDOR/mccolorer) (revision 776) +++ edit/Makefile.am (.../trunk/mccolorer) (revision 776) @@ -6,10 +6,19 @@ noinst_LIBRARIES = endif +if USE_COLORER libedit_a_SOURCES = \ bookmark.c edit.c editcmd.c editwidget.c editdraw.c editkeys.c \ editmenu.c editoptions.c editcmddef.h edit.h edit-widget.h \ + editlock.c editlock.h syntax.c usermap.h usermap.cwordproc.c \ ^^^^^^^^^^^^^^^^^^^ JFYI, there is a missing space here. From ptsekov@gmx.net Fri Jun 23 05:07:03 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 598393B01BA for ; Fri, 23 Jun 2006 05:07:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30249-08 for ; Fri, 23 Jun 2006 05:07:02 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 83B173B012A for ; Fri, 23 Jun 2006 05:07:01 -0400 (EDT) Received: (qmail invoked by alias); 23 Jun 2006 09:06:59 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp035) with SMTP; 23 Jun 2006 11:06:59 +0200 X-Authenticated: #14308112 Date: Fri, 23 Jun 2006 12:05:39 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Where to report issues with mccolorer? In-Reply-To: <1150989075.2807.39.camel@athlon> Message-ID: References: <1150989075.2807.39.camel@athlon> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="-559023410-851401618-1151053539=:24144" X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 09:07:03 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. ---559023410-851401618-1151053539=:24144 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed On Thu, 22 Jun 2006, Leonard den Ottolander wrote: > Where do you want us to report issues with mccolorer? In the colorer bug > system? > > (I'm seeing a crash when opening the syntax highlighting dialog for the > old syntax highlighting.) Find attached a patch. ---559023410-851401618-1151053539=:24144 Content-Type: TEXT/PLAIN; charset=US-ASCII; name=edit_free_syntax_rules_fix.diff Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: attachment; filename=edit_free_syntax_rules_fix.diff SW5kZXg6IGVkaXQvc3ludGF4LmMNCj09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0N ClJDUyBmaWxlOiAvY3Zzcm9vdC9tYy9tYy9lZGl0L3N5bnRheC5jLHYNCnJl dHJpZXZpbmcgcmV2aXNpb24gMS44MA0KZGlmZiAtdSAtcCAtcjEuODAgc3lu dGF4LmMNCi0tLSBlZGl0L3N5bnRheC5jCTMgQXByIDIwMDYgMjE6MjI6MDkg LTAwMDAJMS44MA0KKysrIGVkaXQvc3ludGF4LmMJMjMgSnVuIDIwMDYgMDk6 MDI6NDMgLTAwMDANCkBAIC05NjksNiArOTgzLDEyIEBAIHZvaWQgZWRpdF9m cmVlX3N5bnRheF9ydWxlcyAoV0VkaXQgKiBlZGkNCiANCiAgICAgaWYgKCFl ZGl0KQ0KIAlyZXR1cm47DQorDQorI2lmIFVTRV9DT0xPUkVSDQorICAgIGNv bG9yZXJfZnJlZV9zeW50YXhfcnVsZXMoZWRpdCk7DQorICAgIHJldHVybjsN CisjZW5kaWYgICAgDQorDQogICAgIGlmIChlZGl0LT5kZWZpbmVzKQ0KIAlk ZXN0cm95X2RlZmluZXMgKCZlZGl0LT5kZWZpbmVzKTsNCiAgICAgaWYgKCFl ZGl0LT5ydWxlcykNCg== ---559023410-851401618-1151053539=:24144-- From irusskih@gmail.com Fri Jun 23 07:08:31 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 679073B069B for ; Fri, 23 Jun 2006 07:08:31 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05406-10 for ; Fri, 23 Jun 2006 07:08:29 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.204]) by menubar.gnome.org (Postfix) with ESMTP id 229933B00EF for ; Fri, 23 Jun 2006 07:08:29 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id 9so741233nzo for ; Fri, 23 Jun 2006 04:08:28 -0700 (PDT) Received: by 10.36.252.42 with SMTP id z42mr3610654nzh; Fri, 23 Jun 2006 04:08:28 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Fri, 23 Jun 2006 04:08:28 -0700 (PDT) Message-ID: <861727ef0606230408p69fe14dbhf846cedd458dfb0e@mail.gmail.com> Date: Fri, 23 Jun 2006 15:08:28 +0400 From: "Igor Russkih" To: "Pavel Tsekov" Subject: Re: Where to report issues with mccolorer? In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <1150989075.2807.39.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 11:08:31 -0000 > > (I'm seeing a crash when opening the syntax highlighting dialog for the > > old syntax highlighting.) > > Find attached a patch. > Thanks, Pavel! -- Igor From INVALID.NOREPLY@gnu.org Thu Jun 22 09:43:19 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9E7BD3B04F0 for ; Thu, 22 Jun 2006 09:43:19 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31278-09 for ; Thu, 22 Jun 2006 09:43:18 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 109113B00E0 for ; Thu, 22 Jun 2006 09:43:18 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtPSa-0003x3-00; Thu, 22 Jun 2006 09:43:04 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 15:43:04 +0200 Date: Thu, 22 Jun 2006 15:43:04 +0200 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-154303.sv26390.2544@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> <20060621-194845.sv26390.25842@savannah.gnu.org> <20060622-153919.sv36205.75620@savannah.gnu.org> In-Reply-To: <20060622-153919.sv36205.75620@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.569 tagged_above=-999 required=2 tests=[AWL=0.031, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.569 X-Spam-Level: X-Mailman-Approved-At: Fri, 23 Jun 2006 08:55:54 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:43:19 -0000 Update of bug #14155 (project mc): Status: Need Info => Fixed Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #27: Not sure why you didn't close it then. You should be able to. Closing. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 10:21:29 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0BCC83B0331 for ; Thu, 22 Jun 2006 10:21:29 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01617-09 for ; Thu, 22 Jun 2006 10:21:27 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 97F493B055E for ; Thu, 22 Jun 2006 10:21:27 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtQ3Y-0005T3-00; Thu, 22 Jun 2006 10:21:16 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 17:21:15 +0300 Date: Thu, 22 Jun 2006 17:21:15 +0300 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060622-172115.sv36205.4532@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> <20060621-194845.sv26390.25842@savannah.gnu.org> <20060622-153919.sv36205.75620@savannah.gnu.org> <20060622-154303.sv26390.2544@savannah.gnu.org> In-Reply-To: <20060622-154303.sv26390.2544@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.569 tagged_above=-999 required=2 tests=[AWL=0.031, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.569 X-Spam-Level: X-Mailman-Approved-At: Fri, 23 Jun 2006 08:55:54 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 14:21:29 -0000 Follow-up Comment #28, bug #14155 (project mc): This is getting annoying. I didn't close it because of comment #24. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 10:35:57 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9C2443B0578 for ; Thu, 22 Jun 2006 10:35:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02525-02 for ; Thu, 22 Jun 2006 10:35:56 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 0E9E23B06AE for ; Thu, 22 Jun 2006 10:35:56 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtQHD-0006LN-00; Thu, 22 Jun 2006 10:35:23 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 16:35:22 +0200 Date: Thu, 22 Jun 2006 16:35:22 +0200 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-163522.sv26390.98931@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> <20060621-194845.sv26390.25842@savannah.gnu.org> <20060622-153919.sv36205.75620@savannah.gnu.org> <20060622-154303.sv26390.2544@savannah.gnu.org> <20060622-172115.sv36205.4532@savannah.gnu.org> In-Reply-To: <20060622-172115.sv36205.4532@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.569 tagged_above=-999 required=2 tests=[AWL=0.031, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.569 X-Spam-Level: X-Mailman-Approved-At: Fri, 23 Jun 2006 08:55:54 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 14:35:57 -0000 Follow-up Comment #29, bug #14155 (project mc): Sorry. I took comment #26 as a "we can close this report", and thought you still weren't aware you could close bugs. Well, you can reopen it yourself if you want. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Fri Jun 23 16:11:47 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A0C263B04C1 for ; Fri, 23 Jun 2006 16:11:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02632-04 for ; Fri, 23 Jun 2006 16:11:43 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 458263B06F5 for ; Fri, 23 Jun 2006 16:11:43 -0400 (EDT) Received: (qmail invoked by alias); 23 Jun 2006 20:11:41 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp027) with SMTP; 23 Jun 2006 22:11:41 +0200 X-Authenticated: #14308112 Date: Fri, 23 Jun 2006 23:10:28 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <20060622161011.GC3368@ugly.local> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <20060622161011.GC3368@ugly.local> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 20:11:47 -0000 On Thu, 22 Jun 2006, Oswald Buddenhagen wrote: > On Thu, Jun 22, 2006 at 05:30:38PM +0400, Igor Russkih wrote: >>>> already implemented. >>> I should look for that switch then :) . >> It's a runtime option in editor's settings dialog. You'll find it easily ;) >> > fwiw, i think this is silly. typical example of over-configurability. if > it has to be runtime-switchable (why?), don't put it in the dialog at > least. Today I've modified Igor's patch as follows: 1) The part of his patch which depends on libcolorer is built as shared library (libcolorer_glue). The library exports a single method which is used to get an array of function pointers - these are methods from the library that the editor calls. 2) The part of his patch which doesn't directly depend on libcolorer remains in the editor source tree (only C code). It exports a set of functions which the code in libcolorer_glue needs to query to the editor, again passed as an array of functions pointers. 3) The editor tries to dynamically load libcolorer_glue.so and if it fails it fallbacks to the default syntax highlighting code. Otherwise colorer is used. These changes allow one to build MC with colorer support but doesn't require libcolorer to be present on the target system. I've made also some other changes - mainly related to the autoconf stuff. Since I am to tired to diff now I'll post patches tomorrow. From INVALID.NOREPLY@gnu.org Fri Jun 23 19:07:00 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EB3193B0968 for ; Fri, 23 Jun 2006 19:06:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10295-10 for ; Fri, 23 Jun 2006 19:06:56 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id C31D33B0957 for ; Fri, 23 Jun 2006 19:06:56 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ftujd-0000Pu-00; Fri, 23 Jun 2006 19:06:45 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Fri, 23 Jun 2006 23:06:44 +0000 Date: Fri, 23 Jun 2006 23:06:44 +0000 To: SGh , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16303] More functionally u7z From: SGh X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16303 User-Agent: Opera/8.51 (X11; Linux i686; U; ru) X-Apparently-From: 80.91.160.214 (Savane authenticated user sgh) Message-Id: <20060623-230644.sv45177.8861@savannah.gnu.org> References: <20060408-134359.sv45177.11632@savannah.gnu.org> <20060408-134508.sv45177.86924@savannah.gnu.org> <20060408-134854.sv45177.29103@savannah.gnu.org> <20060518-165152.sv36205.74443@savannah.gnu.org> <20060530-195233.sv45177.57929@savannah.gnu.org> <20060621-193556.sv26390.77497@savannah.gnu.org> <20060621-191535.sv45177.54566@savannah.gnu.org> In-Reply-To: <20060621-191535.sv45177.54566@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.571 tagged_above=-999 required=2 tests=[AWL=0.029, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.571 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 23:07:00 -0000 Follow-up Comment #6, bug #16303 (project mc): Here is my patch to original u7z, fixed things: 1) Detection if we have 7z or only 7za installed. (With 7z we can work with all 7z-supported archives, i.e. CABs, etc... Only have to rename this script in ucab.) 2) Workaround for old version p7zip archives with prefix ./ in filenames. 3) Fixed directory creation in mcu7zip_mkdir, now it works properly. _______________________________________________________ Additional Item Attachment: File name: u7z.patch Size:1 KB u7z patch _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Sun Jun 25 11:04:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 440133B0079 for ; Sun, 25 Jun 2006 11:04:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18607-01 for ; Sun, 25 Jun 2006 11:04:13 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 4E6B43B008C for ; Sun, 25 Jun 2006 11:04:12 -0400 (EDT) Received: (qmail invoked by alias); 25 Jun 2006 15:03:15 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp041) with SMTP; 25 Jun 2006 17:03:15 +0200 X-Authenticated: #14308112 Date: Sun, 25 Jun 2006 18:02:00 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Where to report issues with mccolorer? In-Reply-To: <861727ef0606230408p69fe14dbhf846cedd458dfb0e@mail.gmail.com> Message-ID: References: <1150989075.2807.39.camel@athlon> <861727ef0606230408p69fe14dbhf846cedd458dfb0e@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jun 2006 15:04:16 -0000 On Fri, 23 Jun 2006, Igor Russkih wrote: >>> (I'm seeing a crash when opening the syntax highlighting dialog for the >>> old syntax highlighting.) >> >> Find attached a patch. >> > Thanks, Pavel! There are some issues with edit_syntax_colorer_dialog() too: 1) The number of elements allocated for 'groups' is one less than it should be. The extra element is needed for the NULL terminator. Memory could be overwritten if the number of groups is equal to the number of syntax types i.e. unique groups. This is unlikely to happen but still... 2) This one is worse because it trashes memory every time :) The memory allocated for 'types' in the while loop is used to store the descriptions of the syntax types and the names of the syntax types. Syntax type names are stored starting at the end of the array and syntax names are stored at the beginning. Now this line is wrong : types[types_list[0].items_number * 2 - types_num] = types_list[idx].name The first time it is invoked it trashes the memory after the last element of the 'types' array. I fixed it like this: types = g_malloc(sizeof(char*) * ((types_list[0].items_number * 2) + 1)); i.e. allocat one more element. It makes sense to do so because you use a NULL terminator for which no space is allocated again and this extra bytes makes the wrong indexing above work as expected. From ptsekov@gmx.net Sun Jun 25 16:16:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72FA33B02DF for ; Sun, 25 Jun 2006 16:16:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31539-10 for ; Sun, 25 Jun 2006 16:16:25 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id E6E853B016D for ; Sun, 25 Jun 2006 16:04:45 -0400 (EDT) Received: (qmail invoked by alias); 25 Jun 2006 20:04:23 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp022) with SMTP; 25 Jun 2006 22:04:23 +0200 X-Authenticated: #14308112 Date: Sun, 25 Jun 2006 23:03:09 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <20060622161011.GC3368@ugly.local> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jun 2006 20:16:36 -0000 Hello, Find attached the patch. In order to build MC you have to run libtoolize in the MC source tree. I've added the ability to tell configure where you colorer is installed. You can pass the colorer directory via the --with-colorer configure option - for example: --with-colorer=/home/ptsekov/colorer This command line option defaults to /usr/local. This patch is just a proof of concept thing. I am posting it so that you can test it and then we can discuss it. Igor, do you mind moving the declarations of the classes found in syntax-colorer.cpp to syntax-colorer.h ? This way we could move all the C functions from syntax-colorer.cpp to syntax-colorer-interface.cpp and make them static and only accessible thru colorer_interface_t. On Fri, 23 Jun 2006, Pavel Tsekov wrote: > On Thu, 22 Jun 2006, Oswald Buddenhagen wrote: > >> On Thu, Jun 22, 2006 at 05:30:38PM +0400, Igor Russkih wrote: >>>>> already implemented. >>>> I should look for that switch then :) . >>> It's a runtime option in editor's settings dialog. You'll find it easily ;) >>> >> fwiw, i think this is silly. typical example of over-configurability. if >> it has to be runtime-switchable (why?), don't put it in the dialog at >> least. > > > Today I've modified Igor's patch as follows: > > 1) The part of his patch which depends on libcolorer > is built as shared library (libcolorer_glue). The library > exports a single method which is used to get an array > of function pointers - these are methods from the library > that the editor calls. > > 2) The part of his patch which doesn't directly depend > on libcolorer remains in the editor source tree (only > C code). It exports a set of functions which the code > in libcolorer_glue needs to query to the editor, again > passed as an array of functions pointers. > > 3) The editor tries to dynamically load libcolorer_glue.so > and if it fails it fallbacks to the default syntax highlighting > code. Otherwise colorer is used. > > These changes allow one to build MC with colorer support but > doesn't require libcolorer to be present on the target system. > > I've made also some other changes - mainly related to the autoconf > stuff. > > Since I am to tired to diff now I'll post patches tomorrow. From ptsekov@gmx.net Sun Jun 25 16:17:03 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8F76F3B035B for ; Sun, 25 Jun 2006 16:17:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31756-01 for ; Sun, 25 Jun 2006 16:16:47 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id A94903B0018 for ; Sun, 25 Jun 2006 16:06:13 -0400 (EDT) Received: (qmail invoked by alias); 25 Jun 2006 20:05:56 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp039) with SMTP; 25 Jun 2006 22:05:56 +0200 X-Authenticated: #14308112 Date: Sun, 25 Jun 2006 23:04:36 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <20060622161011.GC3368@ugly.local> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="-559023410-851401618-1151265835=:10990" Content-ID: X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jun 2006 20:17:03 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. ---559023410-851401618-1151265835=:10990 Content-Type: TEXT/PLAIN; CHARSET=US-ASCII; FORMAT=flowed Content-ID: I forgot to attach the patch :( ---559023410-851401618-1151265835=:10990 Content-Type: APPLICATION/octet-stream; name=colorer-dynload.patch.gz Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: attachment; filename=colorer-dynload.patch.gz H4sICArGnkQCA2NvbG9yZXItZHlubG9hZC5wYXRjaADsPWt32zayn+1fgbq3 qSRLsuRXGil26yp24nucOFd2tu3J5uhQJCRxQ4lakrLju/X+9juDB4kXJdlN 2rP3JNu1SQAzGAxmBjMDEA7C0Yg03iSLOWl8Ir2/XeGv72vNOAnH34vnhP5D PP6b/25+W2MP3iKLp/sZbfqeP6HEj6g325n6O34cxQlNBuNoQXdeex/pKIxo 05uSJXWbjUZjNYaN9rOnrUarDf+R1m6n1YL/mi35j2y3dlutze3t7WU9bUCb wwb8t7tP2nud3YPO/tPmD3sHh/uHHMce4PjpJ9Jo1eGtXW+3yU8/bW73Li8u +6f9wfmb3sW7F6dX5Ij8ZJYpzS7Of9aa4DtUR+FQpWsQeYPe2cXJS2z7XxUT XxXKXgKkaFN1w//660MwMByDi2so7J/0z9lADKzNyBPtzL6uLt/1ewzk75vb G+ndLPM+NUSjpj+fE72oEc4ymow8H0SkBOPFC5t45FWVNCLRdjP44kJaTjZZ v+kSES4HerREL0GZC/gBaf/Q2Xvaae02dw/29/Z3nQK+v8cEfKe2uU0I6cXz O+DrJCOVXpUgKnI+jhPSX6Tpx3BCnoeJePIyMp56YUSCOCN+PD3GKQYM15Mw JfMkHieg8vA4SiglaTzKbr2EdsldvCC+NyMJDcI0S8LhIqMkzIg3C3agn2kM 033HEEHhYhbQhGQwcTC8aUriEXt5+eYdeUlnNPEi8nYxjEKfXIQ+naWUeNA3 lqQTGpAhR4QgZ0jFlaCCnMWA2cvCeNYlNIT6hNzQJIV3sis7ERjrJE4YlgoM GIhPSDxHwCpQfEciLytgmyUcKAYakHDGkE/iOYxpAihhlLdhFJEhJYuUjhZR neGA1uSX8+tXl++uycmb38gvJ/3+yZvr37rQOpvEUEtvKMcVTudRCKhhZIk3 y+5gAAzF69N+7xXAnPx8fnF+/RuMg5ydX785vboiZ5d9ckLenvSvz3vvLk76 5O27/tvLq9MmIVcUCaMMwxI+j9hcASsDmoEQpHLsv8H0pkBfFJCJd0Nhmn0a 3gB1HsjI/G71DDIsXhTPxmyk0LpgZpeEIzKLszq5TUIQmyy255bBF/NbJ+cz v1knB21o5s0+RjABVxkAAJKzcAQdnEVxnNTJz3GaYfPXJwxDa7fdbjXae612 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 5OS+D/GYiwKgaFxtV2Mio2x5++12zh2jBymEBiJZnEtwDsZKJTNyKJeDqeqm 9bnUuh9LlWyrvf9AJDVWRSlBJZ/PWR/tLVnDDVDXxSn6roCWccKjlqBylUa7 znOA7p0E864WdfnS6t7rO4iNYyxlGbJKdbv9wYm87DjWElRlK5xOC1ss8BGw msiAxedQIxaLLP5IZ0tWIAdesYO0HG80i1djwmzRSkz6OfX7kqlZxv6cFflu uPRQXTKTr2fabQbGN8MOsWQbjGVnMh7uFRoNHnraw+V6W1dNVaxvnJ2j0p3C f6191I21d2en7PzzkvGmynjl8sOoreY5th8ZRtLR0vlOz4R/BbvkjMBIoYsf w9SOEJtH2/VvYtRtDrneF6dVSI1v6bj3t0d4jEru+QzZwZwf83f22smPjXR1 0KEGyg7iFKDstZOfMzFAE+3WrOJwJ6DcJpXR+Pnzfc0TR4FgMK6jvhzZiqM1 yqGa0fiDdshmOP5QtU6P2ZRtS7rYqLNVB6cQ6Lu08x2mpr8LPvCTM8upqBN1 /PVV/Fme1ixI1ORHXQzNb4T4P/VkfnF+FSus4yj5ITYG5zzNon0hULMOraAw WEfD7ONJypkjAZin31nX5hkboXuWF6985GXUWc69arn5/4pLbPgHdpvb9vf0 6g1n5BHHuIVoO3Ly8kYs7KDD9nG1+yHE90y5xSyWG+00lk2xGR3rn+iDedWa 6Wee5GiKEQhofSeW3XZm3ndo3yznup5gHY4gpq1iVyc/VIxEm9zIW8nPN4xh dl21TvqtKw0ffKtGPjYXxXZmSndoa8Y9ivkIlAvsKvqJFXsM2mWKqy/z+EME 23Sqp7XUC0Puza8+nTvsy4RlPfqsnR9dahVK3Vv8LlLVLPmfSaGWne9yI28R Z+xnfQb6WmuSZ+6kdVdSl29F/GVUFpshZROtZ5T/7Ok28tmSSFeyueSqzEpB oOjJWAWt9uWWvOhu1YUsxQW2Ml63snu5/XCb3cfm+Fzff3c6FkaBo7irxT3i xyUz3DTYCJ1EWH6D45pf8jkE0f6Acako6kGqW7lXU+m4/eqLKZBJT76TcK97 dka6p/S63b+A6UbGqlxQVxFaXyu55dBbM5Fh91/EvW65l/UF4//8a3FXXob7 gCtwP9vFt9Z1t/utTnu/edA+OCj7CxW77YddQ0Qm1Avwg4qvtxF9vY3o621E j7ofd8mtuK8e8HcCVl2aS7Rbc+UdFULFv09JGkIXLOXFxr4T0OJF3tfwmVMV 3UcG9F39gp1X/R5hpwOI9DVRF0/enguyH+TPFhcG/jEPVbsJJM9xFUQ91Dko Z8QXW6y1IUiF67PVti6y0Skyvw4/XrC8dyoG51q/C7ZKlH36zwVNs5TZA48w FoKKezdgE/B7PfXrcSdm65b9B93DWBCCNgDtBL0J40Ua3QmfCQ0PWMU7Z9/2 Vf0PuLlR5QFYd7DGqbwvmQUybFtSmnv2fQL7Cxb8vFMuQI/047X+exNvNn5E 75/BL1fpYLRgohhUOEs8dvFMjH2AlU64mAhpYJfnTMDJYLeK4YGE9C4FcZVY dj57ik3j1xU7bw0Mg5mksIaKhI486CycDn7gnF2+E4J8Y2a56WDcujkpNwVj dugbpJXdH8b9nE8Z64zmJ69d3a7IL/2B3hgIjnrqfaR42xkeJyRDWEY+crjQ SdDqnNKXpSkl8k+p0E+41KJUCeh0Nb3Lsky6rgGt6GpNQG54wpSvruDszOfg vqDKaUr2R/Ksbksr8j0E90XwSNYskGoVJ7kNKFX0tfJVf/21sUi/+dcCzTI9 GjNrMW46aLSesr/sd4h/+OzgBy0A2ysCMBes/KuAu7udg0P4r/ms3T48ONBj rnarfghBF/6E1ygcshnW/zQe++rrI0ps02fzIn7500A83WIYJouDxLsVjx/p XQqPiAJfp+DmiBoegqQFJpgpiF8Zdv6rIZBOcnDUFgHAHiciJoQyCDySqTeH Ivnkk9s4CcDt9hkBjQ2+uy4h8FyUVmD+rb/bhF1JYlcEIfj2Y8BANsnpr9f9 k8GL86trYBRfxS7i8RcUKJ0xzlKHUGn1QjT2Gu2npP20s9/u7LbL4vpSaC5Y 7c4+IDhsHrQODtvPdMHaRbnarT/DUJ6YocUv5y9enl5DZAE8LCKLZnMnTfwd weDJ1sbGTo38wjomInZBfX53dSpjEzUuAeg1//7OltR8vCRIwYadKORwWdxi NEr6T34dvD7p9S8HF6dvXl6/Iu3W7j4b7h7To729ehvvUCbGffxMqUAZcOub eyf/2iT5H7LAO1Jhbehuknu7JZS6Ry5Qs5v79FtC879AIFJV/HI/uRuO28a5 CSQqFkmUYDmfcuyfG4o9Zina+/V2C4foghRlSuxE8EeX13K3S1SysbEZDorj keh5izhO864Yy4YUH0G/AzZR+O/lNQbONT47KUd3ITx4UchvfHIxkLi3kQf8 StMu4pK5J3FJIa9Jikuk7FhTXSj56QLBa7Ipr6Waen4S/197z9rcxq3rZ+dX MJrWkWJJ0a7eUtw7iq0knviRYzttejyeHVmWbcWyVpHk2L6t//sFwMeSXO5K SuvefkinTaNdEuQCIAgCIACougUhIT8ENzh6Hgz5V/Dr/KB40tOT0zzeUuG2 A7RIgGijBK4CGIB5WpnDK4dqPxOkjCrX6QPDMK/S8putcm2heLGqfDZbpWbL LxWbZa9ct2pilRu00BpSshjLlW8LGfuxkl6xN3LjyTyBdNHHUvtTxinycCcV 8u7bcHAXhGjQC+BpNoe0xe+ue/jddVh9+OHEMHwP5TrZWTgHEgageU4HFJxf gkWnn3ZE47sr4NgAH80Cfm0Tk0+VPL9cqdbqjWbvrA9YuLwafrke3YzDydcp MOq3u/uH/w0yCFGHhfrb7STgd/kx3VmirBLP3nd+7Qbv9g62P+12DaPS60vQ KUFQiFzQIujl3R49jBYVb9RWDZJLCkQR9HpRgbZuhjFKDbibSjEZictXLwuw YF/ifwxINHiBuvzX2yGo8TPQwgGbwjw46j2Et/MWy56HmCZ5eiuSp2KW2dvL K1rf43kxR7StNCtI3CqoYX4dqSsKxYBgzWrCO6rdMxN6diQ85iEZAwThKb6T EwmXdlS+0GujBDocwGmZC9aQ1j4D0Qvn/+kDwPoWXvMDAcqmFchp+YcEsdBN RJnwKC780rQU8CbBhaiNteZ6DpO+lA/Oboej82DSm1+xLAKNQmdoUWZUMk0n oOf6THC2YjYUFrOmbwZy6tHIIRyN3GDz7F3AURC82dnfDnY7//09F0sLGMcH pnmgYCQ1BmVTY1nV+ZJT1DmqjIF3fq/jS2Xn2cPNWTiyO+h41FcRJi9fW1vj 95fpHPgyx9adSyunXfh4dK0ciY7nlHwSFQbBRd39zhtA3v7uEaj5r17SgqiW q7Qg6n7eK6++IHgEJQiJ/nWAtxMwrdpx5/A4gD+3PgRHO//ttt0tQe2aXTua swJex9O6wKEVltWc52wD9JKZmmWzsaE3QEcEIc7wR4ipYkDjowseSSqJvKIa RzGRk6sb6h38ECcVptJ6rsW60hwx6s1VaCXP+JUK56COHlpwtNzo9MA9bo2/ oAs8NCMiNm5t1tveaDronT+wyyFaHnsggWgB3PCsZiR+iLmFaOOisuE1kTMa NdC0fa6G0lYwHFNcPU8jHBkphG0DmMbiQK0kLyZh4Y+4P5hmlxNnTqz/2r+m DI9i+kDY6OMwokqUkTPYQ6v36y2gdQKdY481oGJoU2Hla5VWq3h9O50FVvIw SbBHVEPEYmvUSvk622jC7tPU1hpmbXestn5OKbIizQkaBgbTmdJlBQbgqcc2 NlV2evr9izY3z0IZNPCtDn6sg3Jg6bjUoIAePichRoePCJr5PA7VVtJ75+jw wyXDk6Ijqe4GL8gfiDryOe3ymKpBbfh47BgPIpUeWS2rjcPW2R4//r759Jak So7zdLPkEQGqZU6AiIk5FYIeOrgVLVQBPDndVIRvrozxzadB+WY6zjm6NHzR 3bOcE2lyaXLSzPyTeLdffmFHZr9TQ1CbINucDj5fCKBkKx2byCCCaA0C5FzY L6zK7oW/ld0L38fuE3XpwI3QQgJCT4yf0Cwb7xYnHz4/lVaFZrWBKPdKXkUT PniwmE1o91kd5Zsr43zzaZC+uRjrL7MG3r0TQ14k4R1vTsQbOhZKO2FpJfeA rYeMPRWPRJJXqTXzdCIZzoKzUW98be0IZL/iedCIOripqKT0KBZFjjQQkrQ/ D1E8FsSejZ2fbdCfnO7kiqJ2bi0PhvgjOvIM8+wLP++QvbFUJ53R99AIV9ZU A5oj0SYqc4/hdeyZcbMpmoFsZjPfH8QZK+3izlcJYdiuTT2XExq8UDZCvHzy 5yY77G4fdn4LPnbeddv6lQCHXiY4TH06fafmfWPi8oMH/6KJRucaA2vPN01Y kRx2T4tTpVFBRvK9SjPvVTWqLMS5gzqXIeiCN3g7Bs6usS6KSpFl9Wt7dZJ9 1e5zaSTT/ZVOSknsq/wmOhG+piC+lOdVcZwTdSjZX7F6DSJfUj2RzGK1S1I0 uU3eq1XzlbKTFAkIjkYQWcxAu/42kPP/qlKWKZH7KCwHtsXaGk66MMkNapJx Q68Q/bWdQjXztOugnOXYTSKetYhiaWqWIaEW8apRygKt71ab7GY41iUzoDMX a+dju9693W7DM1rCJ93ejL2I9vTb19KhpAqRR83y5iaR9DF/N6mWJJHyZf/7 SWWRIIVYfzOpIic2neOYrJo0uB/0b+cUYiDcShhQivGWl1e0IaMlmqHdYEhF 2oCM0iTZY9eDB4I0mcIZvMgoVoCuv1Ico3Dafej+jiB76qCOBZZESabeBZCU S5tqpU7Splat573IqCnmh7Zt1+ESpyycRRiHs/UhoMuQwRuRwk9sOUmCSlhA 2JpM5uGUqRL0Eee6N8jbLWlaMWWSMqnouXxc/YMtzrNOONHCSYUnvE2y4EIr YmjD6CPj47ifVBgM1Qdrm4WE+wlIHuwNxreIPqR/gI74OLae2IVk+qsTHdXK x+wXShT4UPFaFX+xC8mMM6+2KtCzWqxVq6AZWq5prihWuSPTcMi8ns3PhyG6 Idg/42/eiJzL+0SWGavqHuejbudw632wvdPZPXgXHHw83jnYD/YPgqOtzv7b tazHXpPcos/yfK5q1XgwRyTEjfhY04rQv4L1puli8dBXQwlu643jUW0m7PR4 NvasIIBhdElAOd8sqxMz1X9pgIK+dGtfdft6O5g+uOewZF+sEZfa82VfGAl8 v0bc4zeFAVLlY087Io3QWqPsCdz5E9wNz9GTEW89MfEsrEC8l0Nq8hdmHxFf o4SEDHx18XTUS4mYhN6OlpYwirfUOQQ6LAZpGrV1VUOTbzH4FlzdEtwbjtRr E5zI6EO1EYNJb9q7hGGvHCimjVhyQJM4oFwSAoSJ8PYE3yiMIhoo+sN2cDGc 3gSz3reB+ZorAoEe/JDoVJXDLuvP1L2YlPqO5x3iUS9C3JA5YHvnUMsHkSne 9DPsY+f4fXDU/RgcHR+yTB8/I6NJqd/3jzufg7c7u13ZTUEyex4RtTJPvNeo eDLXw4R9R76Odh+PIhHqLW9xfJTVmcKjvHLLh22oXmx6pZq9BzUpjAH+JFNF hEnYrrv3862b87W1il/RdwJ9I8eXVRHiaO1PUWtdPVHUrPi1xEZSh4FGdaOR pZhISA2Lp2DFjqTHBTWeaTgymAuHA44Ptgez63k4gY+oesbb/cFd8BtIs/AO 3/lPzCQiTjH+KIFB+EsRldkslKqsVG1RiEtqVKbZVYudq4Je0yjW/FpN78p3 8prcyb0GSpjJdIhh7WHAA1lce8Y0vMuzyDj2gLldwju2wRficffzcfBrF29L dXaDg7dvj7rH7ag1iIsZgp9dD9Es2TuDff8+13ae4hdZvBCcldLBtqOY4buJ pzyKVLi8HYFYnUnfpCo8fRdOrykEo1gskiK1NgrvRoNvg1EQNc7KmVCS3/8h XBwcgv50uAdooE9iLTHduAFnTQPk6Gm41bBMHw+BW9jH9IkLZyWaU+7hoPgg zW9X3A76gr3Io5sJYaJngxU0gr4/ONz57wGIXklSeHtPBpgnXjoirjf+KGHp 8JffJVmNrrZcbdSrDXPpVCkOE/706BIpIwGkct5iOFQ8FlNF8YmnovI8r6HC OrvHQIazF7l87DjKHvMJC0R2OxXdDFn8mDcbTRyNlCy2G7dFY1sm01S0w59s f6MmPhxhI/Hy89bx4S68vpBjo2BW07MajUUjkM/49ml5SwSJxx8l8BZ/ycWy 58G/rAQyudYqVRbyVtRVnRsbcNaE3sVas1lu2GK5VuEmjUreJ8UP+3NThLJA kPrJ8Udvyc5h881SJtJnGwTAtEdw8NLiZoygc0/OYc9zwIvsEkvClVyZs4xQ uiX5Ge8+Qj0XQQiMcMeS3+Bn76Y8PVFbcdxQbePQ5OFVAVthXzINxGlnktwy vhT7wCGJyY8GFCRd9soiTJMmr0wuFkIiLgHBw7Ifur8Hb1nW83Ic5DLcoS4D UdVZi4ypR7oUFrHOdulgHcaoR93VKcATYLxW90BHD1RiUcxKvijXyDdRbla5 4HZ0A51Y78VFFG2P+0E2s/4uxGBGnAsqBNo/e4URJtl98Q5aRgsWGypBp6Bw INKuyNblskYoZwTljQFFvE/eBhRkvoroxtf6NTPnd0qQP0jI+gpV0t8F6Bp2 rnW+gDmgCQHadwGSSz0OEDeQ9TjaCGCbAO5IgBbRY1sOwcxkoAv+pRTH7w63 76yDcMB7vNGQW4WvNNSuHEqIDxOEAZoHg9NRHE5Ki9ime9Prz37wzg/eUbxT 8UjkVKpVHnkSZ52DyTySOBbLoL6E9yfx02n0I4U51KTwTXwO2HN30JuO2foH VGtFV6TeCB/jPjCLd+E2E7b+XrMKyb7v1bDUaAluWt+ie2/8bgvPryqBbdnE om1ldVIRcuAgdLs+kaAn8Iowg48nhBrY457S55BwbY8teO/QMhNarpIgJxWO lR/Ha5XLRb/pV5qeMz+O75eXyY+zt8XISMCHmbHZ7WQSTuct0TDPUxqIujlo skFfoVidP1Lp/Eil8yOVzoJUOvr9JbLoX4rrSwv9hnjli6cNEDfPkm7AOt7d zcMQMOx8R7I1/moFN2Xs8utG4k06vEqFHg9luKOCDZhd/ERlDjrcRqv/zv47 cV/2NMoVs9jfFGWdQx9XO55VXqY3ETlNRAu8/3kW3suLployxrQzonYtxzgA iizMChQaNacDTNQz4uMEd2SwZtlKKc+8Rp7B/sfiWyzDXZBGaLvqOFgGUiOB 4rr4zHUtc0tU/oAXPpBlMLQaHLs7R8dvDj4HnY8fu/vbZDBk2ehDKBJGlsmI pkYRi0DG/s2EZSXUvIPIlJO/JMMTJTKk2vggy+BoI2LVUxx3GM+uDx+BV+Qk TvVeel7oIQbVliI782wEUo8KIMBf1Gyjz8DX0CORHaMLUgJSYktKx0hFR2Cw cX/ykI1jJM8ifCE84yqOtjrw3amsdMPN3Dw7ETA6r15D1/Imk9EDMjplxiED t9tDn71TQSW2s5+/4sTNywuB2v3rnDOxsRGoulw6z6U9w+aa5iVA26klTfTa Eu6lveqyFu1FRZKEFWhmr7pLi/gkzuTQ1Gix/NHfJ0ekcTdBePCqsXfWdR+Z TD8uJUTtEF7QY0VRYfS15AVNBBaaaiNqnwu8nAw3PFlEhGMI6y1Sp9dMa8Gr 5v2/iRS9rMO8N0UuiGr5RrHpclEZH4vF/tQDs+SKHTYr++tjFHQieno5hLvU QMAlFu8SjCy+RVvN6lLdHMMMBv3AZfh0bcUi+w9m8LGSbQ3no8EES9i6t3Vs RG1O/Gr1NFow5Pm8yNIrOHT+PDthP8/YacbYZ10pI3DJRIMqgA4RkrwU/Qpf imJ0yfMC0qJF86Lzgmb5mnXwivUv9iJeDOBQAuD57tiWyI0kDAIGxL9NJ4g2 MX2ygstWWZSCDzb8aHqyokfCuoR14Lu2lLQQIpOdzuFc+wWGpkp/omwRfFMf dzv506VJUvuZSmMQb8DTMia+pwFAE+3Tvoh/IYhabRA+AqKLT4lnaRQ/41Ut kgpsOpa5K7d5JOD03pofJKnAgZiGqIeZpJ7q+aYT90YOSmE2unvHr0Jnqegc Xo3OppRRxMt85q6XXMvSBcBV8IvisO6HmIpsk73t7B517VKZ/F4R+wKgI7rB b0flsEhfzvKmJ19O8+7Kk0JltiHQJiGnc3z4qWsV5HlMHJAzWZ6pgVNGMJbE l+QhHs1aRXIkzt+uQqAJY/bNYp5WkU+7SpFZmdPCWztxds853mKDC4REtDtd AnbUEXtsbMSHfdRZ2oIuBINke1HB0ixSrxXh06mRsMMKftKlWV6g1V1sj1Sx CPBrB1XskrRG/VxFBfGBEaxTo1KvLbpUf0vKRm94Kgu+zmVoz28DNh6gLWiM AZDTHpyZQgq0VCa+4biH9ZpUtiU5tCZM4rIkTZi8ZH5OSZRlquMuK1ES1uWq UoDanyj0ni65euyuSd8O22sqbJGGxQb9l8SAizfUJByDPSZ8WmxJJostBxa1 Xdtah9q0kpYhQdJ0CH0RWosvgrbJCuW4TAzHoJuapft4tJnZ27VyDYmhmrYX LG9nsXXnBaxldvX8smym5herR+cQQLpkteSE9ozLpFw7/bSjpca202A7JCRS ydfCQhy3H5Rxha3Fr1Isb15JHN5bdvhk2mmlJ/7qJB9Tbqr8Y566KPPmogaL fXWq6V911kWA9EjEegvjeEvFZqXUaFbd1SwaS3nrtpgYgScix4tw4Vj58GT2 aXLRTURy+dkPL90PL90PL933eelW8seREIBXlPRoJgziM5GT1moL62uMTSnT Zz+4Cm8G7obKkceb8su0PN9jmmfPeqndf8wkvTKddn/ZNZggGTl0kdBWy/HO 082pnLT6nQWhccSKt4mMliOZWEVcVRStpYUoNtTge4caLBpKzz8eXSx/mA8S x9MKVtKQr145a+tKOJs/n1OKEvF3eKXfm9TSy+BjqzapMSHjMxxVM7m5ykCb zGAW+xQnsjjsKO+ZC0XzcN4bkbF8pgNdAqrWk67WO0BPuBV+pcnO5r3pXDpH YjCvBrh7pkDExryRurHP/xQLi+arORVkWzoQiel4JtF4k6R6jGSxR8eAg72i ZDgL+EoB0ZDKeSuGa90jQr4bOIGgj4b+/ksShXKxYnU6R0YOE50lE0ujKjfJ 6tTVPV/CduxCaBIyAUUxv+QXzbRBuZnht6/UxVg8wXNjOqjizoJvvRGZp61S 5YY/DvC8H+zu7IOi3dl63z2KTPWGcVADTkTlZy000lv8SG95yiXxtmSetWCn mV/h3isacYXmDrao63F495KhpkW4KqGyWCKFE/Zr0B7md2HLMMUkzsqzZxXz TLp6y1mr3vENwIZpOMoSp+Pb09E4eJkJ+ctNKCadbaA6W4i0kMbhUPM1wkDG OMihxhlW+Fvd48fKMaagpm3CfM1DOhxVZ4l1cEmT+tYfYeWEOUOmGYsiOZI3 VmRw7DrWUDaW9w/T+LogUaJbX8Yw2E1s8eDKHVtGCFzdw0QjBMK6kdEty6Ly y2mbJ45ElOiZzwb3vf589KDQY43hoZv8CxKzrI02JBt9NGGAi6klaWXiOXxA bsACpV6Bw8wNbTdwHAG9eEKRKDNMMN974GcX0Mb5sVvOgW4rGoOVMafcFFc7 aKA/s6xBNBiobDlhFBMmr5svp3HhR1nL4X2a2Ppyusyqdos+jRqaC52b4vl0 cZTc8vI1ZnLUZo9qo7FMCbbKCGRZJdPFNP4wPa0Rjf5F+Hu9Kv4KhRT8nTnw VzCE+l/A36IFOzxNVe55wMbqeojnrB5LmUawLFSCCkL6Kf/rYGxdtZLQ9SxU oj22bbtbyixU6S3tPFTp2agWpw9bMpnHXY6pT3SXawyn/LeeuNpsJ7JWy9nJ DnyW4dTRcVEX/n8MqHI2uhnMr8LzWVEeajftY+7CXoNYr8ESveRBy+qqnb+S +2uqDsZDOc5nC7rzw5Y2tHyU2k+dlcwT1sJPtcaSj5bqJ2K1XKeoxeTEk/ym +4Sf2lmeV+zO8vnCkUWNvs0kAZQKQEkVrb96ltqTfKcirhML1aFTjmdBMh4L GHeRH0gtLh1u+8mKXadZ4q8WmeqvlncPXP1d7oGEBDCVUqPhO90D5foP78AP 78AP78C/rBz2b4cYIplaFltr8p1m7/Z32rDb0oy7nBW3vZRxNqFtkrW1vZwJ tb26Ka79nebQ9tJmend6QicAtcHHASQO6Dg6qA5LnApY4rGg/Y/ULFUFMe0H idupcopXMGMn7J0+7KDpSbGsjurua7lVrhe9WrPkVayybzznXs2RszMq1Jh8 V+3vTOWZcusuVvfNciCuxRyILMmBuGb6D1my/3DNdh/S7fYGJZirNH2RfVfP 7IzFrWe401GYCSb+inJnImr/nhSfqybMl/nyn5tBKkZU/59/sucRAvGqiLzB 9VLmHNPw60z4Fezsb3c/sxa/f2XEQNMFr4SYZx0L7vo7Bh5USrHUfDKyZlLh Fx7vs76uAWGvbccfvH/GEv9JQRvA1bBG9ZgSeSAybUe1LLIxf2L0hZTNsNbk 6QwrIsn/shlljeovIoG/flNr1exzSXFhxoW5xIRzrhdR9GACJblR1KanqD6K n3MOuvk0fAhkQdLsutmkHStNRdPkSX09r0Go9XxP1pZNTOmrMvrihYWXE1E+ 6/lL02FL9a4o8gsa6OwfBQSvnlsJgZL1JJZryYFPB5H0S4tmL37QdN5ATVld gh4XNNq435sH58NpABMQtbtQrOKjvJ66VFJCnm8DrE8mWSeq+ZVnE3Hb6YKv E5AzFopBuOQBu6J0HmNcQZvCMhbnZq5TEMPzoMrcE6XCiDYo2tC1n+Z2rr1Q afr8Mka4lf2W10g6C8e78a2cjtCVcrFcq1btwLhyned6qtdF4hWVFsRIn8Yf E6WzLLM3nPXRsQ1Hr8moh8mezwcT2PEyIvkIoJpfnOaPg+F5ltltGeAaDh5I pYDIhASP4h2pnCUcsA4xkaI4HMSXgTYtls2IA3tGq6AYMWjGxbVqCvGKQLLg Y9RAIgKT3HMMqXo31QqvGVr1ReojvoRiaLyYTy5mAYC8fwBlgu4QnYdCfMiv kMiFtlpLiiOADSIToSkxIagJbxFWMiIBKK8v6URS8p1tLYMmiV4WH199D4Yg DC/HAB0X+yzD09aIFDTiVjONh4tVlWiMvzdKKcVfs5PSae6p1++Vud6uktYv maAqBc8vlMqYZhZrvNcXr98Ey1W9XvWs9evzMjKS7/Ts13HUnJxGCa75Jc/B 9Ca9BX8pLoCM9FZp+Y6T+IXVKlGq7IR8FadGVlYtHTcdwOCLRoMLqihpZeuW r8m+5nj/bTA9C2fw0CAVj0K8nQ6KvUholupYswCEpldKOjg5+4Gw9UtI45JX rPplkAp2PtQyT4hazpd5snLKVMvjxG9ml5uZcQgnpwvUxDbOxyP6I7JD8pxB RfGqsxV0Dt8FaMaSqkA+8tCdMFYooIlHHpw2o0Ti3XHvbDRQcMUFVpnQipbQ ycNgdnqKTuNnG0pZBSDjMKrZrCa8AXwwR5vn/U84omyM6sf9OGyjFWnMjxPU KmM2y4AQvIfhVDulN2Jt4c3Mq9vZ9NUo7PdGGdRiyBNrtzEBwntA4QZbAxR9 PDx4F2x9/qz/3N15c3xwsAvN4MnRpzdHx1nJsTv7W7uftrtHIJsKOz/pg7wS Rz55OM3kXP0BNPXdNfuOhmey/Xb37c5+N6utG6r2dbLNl848ZAODPEiDNZ0E gCq9OjMSAR5lOPS9o3dwvjre2epmT25nw8ie5byWzU3aOALiC3c+4rerQf8a hSta/w6O0MYqWI+MvjzmJBzPQkxYBRvwtMiLm1OytelmJsN5vUZGgmqzJGrW CeoXxizzE37P7ObsYpYRVOc8zzp7gJR9OCbuHOx3dglJeGgE9Jh9KeM9ztvR QWHV6iPpBt1c4/z69kh2AQbFDt9geoI3k/sE+101vXs+0FioPtR5Pr0dJPT+ BEff3SAaVs0U7fIjGPyUnzqq3HpQgzMHYRKY6dVe73qAaskzhpuG9mvUG1+q 34yX8tN+bximFa0fcYf24Kai/cARb/pFEKY0oVqllK/ChGp1XttkS8hCMgm3 cG/+DLsRWtDnWqYz+c9Pf6CVjXLy3XteIN4/Yrff0CQ9uz2bXQ1GI6vnT3/I F9R0B48rsCMJ31dLP3v/9IcUqBR+sJWwAlrUVFtIBPiIj8pdO7BFwS7aigCL J6J1xtxLJMKKvRuRmB53BdS/K03Q3JO2EqubvpPUcCdp+o0mpaXXt31KSS/z agN7fTo+2Ot86IqiNEcY01bE2jUb9h4N8gp2AmwAm+KITUIgNQNW56zDdP7g 5ylgMGQAUFT7AoWwhdO+tQBUcm+pZ3c/Hx92gu2do2O6+/0f0Pq3PoC2wHb2 j447u7vFtx14tdfZgVMhCE0Y6rDb2d7rFv+z/5kdH2wfsMk1SLCLsDgcoyY/ D/H0hj+AW79OLvF/s8mg/+z/AByqCwGL+gAA ---559023410-851401618-1151265835=:10990-- From irusskih@gmail.com Mon Jun 26 09:42:38 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 111A63B03DD for ; Mon, 26 Jun 2006 09:42:38 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21373-08 for ; Mon, 26 Jun 2006 09:42:37 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.207]) by menubar.gnome.org (Postfix) with ESMTP id 041D23B030E for ; Mon, 26 Jun 2006 09:42:36 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id 40so1223015nzk for ; Mon, 26 Jun 2006 06:42:36 -0700 (PDT) Received: by 10.64.114.10 with SMTP id m10mr4858289qbc; Mon, 26 Jun 2006 06:42:36 -0700 (PDT) Received: by 10.65.150.4 with HTTP; Mon, 26 Jun 2006 06:42:36 -0700 (PDT) Message-ID: <861727ef0606260642j2e005a12u9b73c9183fcca227@mail.gmail.com> Date: Mon, 26 Jun 2006 17:42:36 +0400 From: "Igor Russkih" To: "Pavel Tsekov" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620060123.GD99474@inode.hvn> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <20060622161011.GC3368@ugly.local> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.463 tagged_above=-999 required=2 tests=[AWL=-0.063, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -2.463 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jun 2006 13:42:38 -0000 Hello, > This command line option defaults to /usr/local. This patch is > just a proof of concept thing. I am posting it so that you can > test it and then we can discuss it. For me this patch looks fine, its good idea for MC to detect colorer's library presence in runtime. However the implementation is not rather straightforward because of that separate glue library. If such a dynamic loading is best case for MC, maybe it is worth implementing it in more 'valid' way? I mean I can develop a set of 'neutral' C API, which will be included directly into libcolorer. Then MC can dynamically load libcolorer and import all the required API functionality as it imports 'colorer_get_interface' via gmodule in Pavel's version. Surely it will require additional efforts as on my side, as on MC side, but with this we'll get better colorer's integration with MC. Moreover colorer will get a general C-based API, which it doesn't have now. Pavel, whats your opinion on this? > Igor, do you mind moving the declarations of the classes found in > syntax-colorer.cpp to syntax-colorer.h ? This way we could move > all the C functions from syntax-colorer.cpp to > syntax-colorer-interface.cpp and make them static and only accessible > thru colorer_interface_t. Within this model surely it can be changed in this way. -- Igor From ptsekov@gmx.net Mon Jun 26 12:23:54 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2F7093B036C for ; Mon, 26 Jun 2006 12:23:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32045-09 for ; Mon, 26 Jun 2006 12:23:52 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 049713B0196 for ; Mon, 26 Jun 2006 12:23:51 -0400 (EDT) Received: (qmail invoked by alias); 26 Jun 2006 16:23:50 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp023) with SMTP; 26 Jun 2006 18:23:50 +0200 X-Authenticated: #14308112 Date: Mon, 26 Jun 2006 19:22:35 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <861727ef0606260642j2e005a12u9b73c9183fcca227@mail.gmail.com> Message-ID: References: <20060620060123.GD99474@inode.hvn> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <20060622161011.GC3368@ugly.local> <861727ef0606260642j2e005a12u9b73c9183fcca227@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jun 2006 16:23:54 -0000 Hello, On Mon, 26 Jun 2006, Igor Russkih wrote: > For me this patch looks fine, its good idea for MC to detect colorer's > library presence in runtime. > > However the implementation is not rather straightforward because of > that separate glue library. Yes, it adds another level, but at the moment it is the only working solution. By using this library we avoid linking to libcolorer at build time. > If such a dynamic loading is best case for MC, maybe it is worth > implementing it in more 'valid' way? I mean I can develop a set of > 'neutral' C API, which will be included directly into libcolorer The dynamic loading is desired since it drops the dependency on libcolorer. For the package maintainer this means that she/he can build MC with colorer support but the package will not pull libcolorer unless specifically requested to do so (by the user). This is very important IMHO. > Then MC can dynamically load libcolorer and import all the required > API functionality as it imports 'colorer_get_interface' via gmodule in > Pavel's version. Yes. > Surely it will require additional efforts as on my side, as on MC > side, but with this we'll get better colorer's integration with MC. > Moreover colorer will get a general C-based API, which it doesn't have > now. > > Pavel, whats your opinion on this? If you are willing to change colorer so that it will become C-friendly you are more than welcome. Providing a generic interface seems a better solution than writing a new plugin for every editor in the wild. Of course custom plugins could be tuned better to fit the specific requirements of XYZ editor. I think it is up to you after all - either way I'll try to help getting colorer support into MC. From leonard@den.ottolander.nl Tue Jun 27 09:09:09 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72ACC3B008D for ; Tue, 27 Jun 2006 09:09:09 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30079-04 for ; Tue, 27 Jun 2006 09:09:08 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id D41E73B0084 for ; Tue, 27 Jun 2006 09:09:07 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 2E6DC4026 for ; Tue, 27 Jun 2006 15:08:30 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id xShjqIOGYA0c for ; Tue, 27 Jun 2006 15:08:26 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 948134021 for ; Tue, 27 Jun 2006 15:08:26 +0200 (CEST) Subject: Crash in mccolorer when choosing old syntax highlighting From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Tue, 27 Jun 2006 15:08:21 +0200 Message-Id: <1151413701.2841.22.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 13:09:09 -0000 Hi, (The patch by Pavel Tsekov did not fix the issue I was seeing, but then I didn't yet report what it was exactly.) How to reproduce: Edit a file Choose options->general menu Disable colorer Choose options->syntax highlighting boom (Backtrace is for mccolorer with Pavel's patch applied.) I suppose the switching to the menu's necessary for the old syntax highlighting doesn't yet work correctly. #0 0x080aaf1e in colorer_get_handle (edit=0x0) at syntax-colorer-wrapper.c:50 #1 0x080a97ab in colorer_free_syntax_rules (edit=0x0) at syntax-colorer.cpp:493 #2 0x080a7839 in edit_load_syntax (edit=0x0, pnames=0xbfaee638, type=0x0) at syntax.c:1203 #3 0x080a8ca5 in edit_syntax_dialog () at choosesyntax.c:66 #4 0x0807952c in menubar_execute (menubar=Variable "menubar" is not available. ) at menu.c:242 #5 0x08079d98 in menubar_callback (w=0x9697268, msg=WIDGET_HOTKEY, parm=10) at menu.c:326 #6 0x08063ebe in dlg_process_event (h=0x96722b8, key=10, event=0xbfaee6e4) at dialog.c:603 #7 0x080640d4 in run_dlg (h=0x96722b8) at dialog.c:785 #8 0x080a25f5 in edit_file (_file=0x9667908 "Makefile", line=0) at editwidget.c:217 #9 0x0805e39a in do_edit_at_line (what=0x9667908 "Makefile", start_line=0) at cmd.c:270 #10 0x0805e3e6 in do_edit (what=Variable "what" is not available. ) at cmd.c:289 #11 0x08095643 in buttonbar_call (bb=Variable "bb" is not available. ) at widget.c:2279 #12 0x08095831 in buttonbar_callback (w=0x966e0a8, msg=WIDGET_HOTKEY, parm=1004) at widget.c:2301 #13 0x08063d17 in dlg_process_event (h=0x9658298, key=1004, event=0xbfaee804) at dialog.c:614 #14 0x080640d4 in run_dlg (h=0x9658298) at dialog.c:785 #15 0x08078c16 in main (argc=1, argv=0xbfaefa24) at main.c:1675 Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Tue Jun 27 09:11:43 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E1A1C3B0084 for ; Tue, 27 Jun 2006 09:11:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30031-10 for ; Tue, 27 Jun 2006 09:11:40 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 728063B012D for ; Tue, 27 Jun 2006 09:11:36 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id BEB36403C; Tue, 27 Jun 2006 15:11:21 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id UkhQHR1PwEmH; Tue, 27 Jun 2006 15:11:21 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 46DBC4026; Tue, 27 Jun 2006 15:11:21 +0200 (CEST) Subject: Re: Snapshots availability From: Leonard den Ottolander To: Pavel Roskin In-Reply-To: <1151000137.3539.23.camel@dv> References: <1150924866.2801.100.camel@athlon> <1151000137.3539.23.camel@dv> Content-Type: text/plain Date: Tue, 27 Jun 2006 15:11:16 +0200 Message-Id: <1151413876.2841.25.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 13:11:43 -0000 Hello Pavel, On Thu, 2006-06-22 at 14:15 -0400, Pavel Roskin wrote: > Snapshots are not intended for developers. Developers should be using > proper version control systems. Snapshots are for users who want to try > the latest features and check if some bug has been fixed, but who don't > intend to keep the sources up-to-date. Which doesn't contradict the fact that in circumstances it might be useful for me to take a look at a snapshot somebody used to create a mod, like in the case of mccolorer where I did not have the correct snapshot available to diff against. Hence my request. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Tue Jun 27 10:39:56 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EAF473B0500 for ; Tue, 27 Jun 2006 10:39:55 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03870-10 for ; Tue, 27 Jun 2006 10:39:55 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id C50273B04FC for ; Tue, 27 Jun 2006 10:39:54 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 444054026; Tue, 27 Jun 2006 16:39:33 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id DujbSwckqNA4; Tue, 27 Jun 2006 16:39:32 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id C395E4021; Tue, 27 Jun 2006 16:39:32 +0200 (CEST) Subject: Re: Crash in mccolorer when choosing old syntax highlighting From: Leonard den Ottolander To: Igor Russkih In-Reply-To: <861727ef0606270708j12fe8828p9d5464aa9f426071@mail.gmail.com> References: <1151413701.2841.22.camel@athlon> <861727ef0606270708j12fe8828p9d5464aa9f426071@mail.gmail.com> Content-Type: text/plain Date: Tue, 27 Jun 2006 16:39:26 +0200 Message-Id: <1151419167.2841.42.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 14:39:56 -0000 Hello Igor, On Tue, 2006-06-27 at 18:08 +0400, Igor Russkih wrote: > For me Pavel's patch fixes the problem. > > However Pavel diff-ed it with original mc source I believe because > this it can fail to apply. > + if (!edit) > + return; > + > #if USE_COLORER > colorer_free_syntax_rules(edit); > return; > #endif After applying Pavel's patch the if (!edit) ended up *after the (first) #if USE_COLORER. Bringing it to the front indeed fixes this crash. Thanks you both. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From proski@gnu.org Tue Jun 27 11:46:24 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3404A3B02AF for ; Tue, 27 Jun 2006 11:46:24 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06517-02 for ; Tue, 27 Jun 2006 11:46:23 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id D7CB33B015C for ; Tue, 27 Jun 2006 11:46:22 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FvFkw-0003lu-7L for mc-devel@gnome.org; Tue, 27 Jun 2006 11:45:39 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FvFkW-0004lr-Dl; Tue, 27 Jun 2006 11:45:12 -0400 Subject: Re: Snapshots availability From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1151413876.2841.25.camel@athlon> References: <1150924866.2801.100.camel@athlon> <1151000137.3539.23.camel@dv> <1151413876.2841.25.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 27 Jun 2006 11:45:12 -0400 Message-Id: <1151423112.18089.7.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.595 tagged_above=-999 required=2 tests=[AWL=0.005, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.595 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 15:46:24 -0000 On Tue, 2006-06-27 at 15:11 +0200, Leonard den Ottolander wrote: > Hello Pavel, > > On Thu, 2006-06-22 at 14:15 -0400, Pavel Roskin wrote: > > Snapshots are not intended for developers. Developers should be using > > proper version control systems. Snapshots are for users who want to try > > the latest features and check if some bug has been fixed, but who don't > > intend to keep the sources up-to-date. > > Which doesn't contradict the fact that in circumstances it might be > useful for me to take a look at a snapshot somebody used to create a > mod, like in the case of mccolorer where I did not have the correct > snapshot available to diff against. Hence my request. Contributors should send patches and make sure that the patches only contains their modifications and that the modifications are intended. They should also be able to explain the reasons for every change. If they cannot do it, I would not consider such changes for committing to CVS, for the reason that either the contributor is too sloppy, has problems with memory or is not the original author of all the changes. -- Regards, Pavel Roskin From INVALID.NOREPLY@gnu.org Thu Jun 29 06:41:30 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CE1033B0286 for ; Thu, 29 Jun 2006 06:41:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04510-06 for ; Thu, 29 Jun 2006 06:41:29 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 142013B020C for ; Thu, 29 Jun 2006 06:41:29 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fvtxf-00018T-00; Thu, 29 Jun 2006 06:41:27 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 29 Jun 2006 10:41:27 +0000 Date: Thu, 29 Jun 2006 10:41:27 +0000 To: Denis Vlasenko , mc-devel@gnome.org Subject: [bug #16967] unrar passworded_file.rar hangs From: Denis Vlasenko X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16967 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.9) Gecko/20050711 Firefox/1.0.5 (CK-IBM) X-Apparently-From: 195.212.29.187 (Savane authenticated user vda) Message-Id: <20060629-104126.sv50573.85488@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.805 tagged_above=-999 required=2 tests=[AWL=-0.738, BAYES_00=-2.599, RCVD_IN_SORBS_WEB=1.456, SPF_PASS=-0.001, TW_TX=0.077] X-Spam-Score: -1.805 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 10:41:31 -0000 URL: Summary: unrar passworded_file.rar hangs Project: GNU Midnight Commander Submitted by: vda Submitted on: Thursday 06/29/2006 at 10:41 Category: None Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Linux _______________________________________________________ Details: unrar of password-protected archives hangs (unrar opens /dev/tty and sits there, waiting for the password) The patch adds -p- switch. A few unsafe "$var" expansions are fixed in several etxfs scripts. _______________________________________________________ File Attachments: ------------------------------------------------------- Date: Thursday 06/29/2006 at 10:41 Name: 1.diff Size: 6.49KB By: vda _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From master@iaas.msu.ru Thu Jun 29 16:24:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D8EE23B00D0 for ; Thu, 29 Jun 2006 16:24:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07075-05 for ; Thu, 29 Jun 2006 16:24:36 -0400 (EDT) Received: from serv.iaas.msu.ru (serv.iaas.msu.ru [212.192.224.252]) by menubar.gnome.org (Postfix) with ESMTP id 808AA3B007B for ; Thu, 29 Jun 2006 16:24:35 -0400 (EDT) Received: from isaa.radio-msu.net (isaa.radio-msu.net [194.67.81.166]) by serv.iaas.msu.ru (8.13.4/8.13.1) with ESMTP id k5TKOWZR043918; Fri, 30 Jun 2006 00:24:33 +0400 (MSD) (envelope-from master@iaas.msu.ru) Date: Fri, 30 Jun 2006 00:24:06 +0400 (MSD) From: Michail Vidiassov X-X-Sender: master@isaa.radio-msu.net To: Egmont Koblinger Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <20060614131621.GE29389@cs.bme.hu> Message-ID: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: ClamAV version 0.88.2, clamav-milter version 0.88.2 on serv.iaas.msu.ru X-Virus-Status: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.524 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_DN=0.077] X-Spam-Score: -2.524 X-Spam-Level: Cc: mc-devel@gnome.org, Tomasz =?iso-8859-2?Q?K=B3oczko?= X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 20:24:40 -0000 Dear All, On Wed, 14 Jun 2006, Egmont Koblinger wrote: > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > I don't think so, and I don't think it is worth it. Maintaining two backends > IMHO just causes headaches while it doesn't make mc better. I still can't > see why developers do not decide which one to use and drop the other one. > > With Unicode support maintaining the two will be much harder since AFAIK > slang works with UTF-8 while ncurses uses UCS-4. Hence a completely > different patch would be required for the two cases. > Why not to follow the way used in non-UTF mc, and use curses-like calls (translated to ncurses calls or emulated by slang calls in myslang.h)? I have made mc 4.6.1 with UTF patches compile and run when linked against ncrurses 5.4 by replacing SLsmg_write_nwchars by addnwstr. Thus, it may be a good idea to use addnwstr as the wide character output routine, addnwstr being a ncurses call or a wrapper around SLsmg_write_nwchars (along the lines addch is implemented now). Sincerely, Michail From apmah@gmx.net Fri Jun 30 00:52:03 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 00F3A3B007D for ; Fri, 30 Jun 2006 00:52:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26203-02 for ; Fri, 30 Jun 2006 00:51:59 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 2E3603B0013 for ; Fri, 30 Jun 2006 00:51:59 -0400 (EDT) Received: (qmail invoked by alias); 30 Jun 2006 04:51:58 -0000 Received: from 84-72-42-55.dclient.hispeed.ch (EHLO nostromo5) [84.72.42.55] by mail.gmx.net (mp028) with SMTP; 30 Jun 2006 06:51:58 +0200 X-Authenticated: #23139764 Date: Fri, 30 Jun 2006 06:51:57 +0200 From: Hampa Hug To: mc-devel@gnome.org Subject: [patch] Fix test for getmntinfo on NetBSD 3.0 Message-Id: <20060630065157.355f1d8c.apmah@gmx.net> X-Mailer: sylpheed Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Multipart=_Fri__30_Jun_2006_06_51_57_+0200_iufg09lLLRp0ZxFM" X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.196 tagged_above=-999 required=2 tests=[AWL=-0.816, BAYES_05=-1.11, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001, TW_TM=0.077, TW_TV=0.077, TW_UF=0.077, X_MAILER_SPAM=1.365] X-Spam-Score: -0.196 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: Hampa Hug List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 04:52:03 -0000 This is a multi-part message in MIME format. --Multipart=_Fri__30_Jun_2006_06_51_57_+0200_iufg09lLLRp0ZxFM Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Hello It would seem that the test in acinclude.m4 for a NetBSD 3.0 style getmntinfo() is wrong. The attached patch fixes this. >From the NetBSD 3.0 man page for getmntinfo(3): RETURN VALUES On successful completion, getmntinfo() returns a count of the number of elements in the array. The pointer to the array is stored into mntbufp. If an error occurs, zero is returned and the external variable errno is set to indicate the error. Although the pointer mntbufp will be unmodi- fied, any information previously returned by getmntinfo() will be lost. Hampa --Multipart=_Fri__30_Jun_2006_06_51_57_+0200_iufg09lLLRp0ZxFM Content-Type: text/plain; name="mc-getmntinfo.diff" Content-Disposition: attachment; filename="mc-getmntinfo.diff" Content-Transfer-Encoding: 7bit diff -ur mc-cvs/acinclude.m4 mc-dev/acinclude.m4 --- mc-cvs/acinclude.m4 2006-06-20 17:04:13.000000000 +0200 +++ mc-dev/acinclude.m4 2006-06-29 04:21:45.000000000 +0200 @@ -306,7 +306,7 @@ main () { struct statvfs *mntbufp; -exit (getmntinfo (&mntbufp, MNT_NOWAIT)); +exit (getmntinfo (&mntbufp, MNT_NOWAIT) == 0); }], mc_cv_sys_mounted_getmntinfo_statvfs=yes, mc_cv_sys_mounted_getmntinfo_statvfs=no, --Multipart=_Fri__30_Jun_2006_06_51_57_+0200_iufg09lLLRp0ZxFM-- From ptsekov@gmx.net Fri Jun 30 03:47:01 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B0D203B0127 for ; Fri, 30 Jun 2006 03:47:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01677-04 for ; Fri, 30 Jun 2006 03:47:00 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 430E33B00C7 for ; Fri, 30 Jun 2006 03:47:00 -0400 (EDT) Received: (qmail invoked by alias); 30 Jun 2006 07:46:58 -0000 Received: from 87-126-67-123.btc-net.bg (EHLO sole) [87.126.67.123] by mail.gmx.net (mp010) with SMTP; 30 Jun 2006 09:46:58 +0200 X-Authenticated: #14308112 Date: Fri, 30 Jun 2006 10:45:42 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Hampa Hug Subject: Re: [patch] Fix test for getmntinfo on NetBSD 3.0 In-Reply-To: <20060630065157.355f1d8c.apmah@gmx.net> Message-ID: References: <20060630065157.355f1d8c.apmah@gmx.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.401 tagged_above=-999 required=2 tests=[AWL=-0.090, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001, TW_TM=0.077, TW_UF=0.077] X-Spam-Score: -2.401 X-Spam-Level: Cc: mc-devel@gnome.org X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 07:47:01 -0000 Hello Hampa, On Fri, 30 Jun 2006, Hampa Hug wrote: > It would seem that the test in acinclude.m4 for a NetBSD 3.0 style > getmntinfo() is wrong. The attached patch fixes this. > >> From the NetBSD 3.0 man page for getmntinfo(3): > > RETURN VALUES > On successful completion, getmntinfo() returns a count of the number of > elements in the array. The pointer to the array is stored into mntbufp. > > If an error occurs, zero is returned and the external variable errno is > set to indicate the error. Although the pointer mntbufp will be unmodi- > fied, any information previously returned by getmntinfo() will be lost. I've applied your patch. Thanks! From INVALID.NOREPLY@gnu.org Fri Jun 30 05:34:56 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5E2473B01F6 for ; Fri, 30 Jun 2006 05:34:56 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08474-03 for ; Fri, 30 Jun 2006 05:34:54 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 5437B3B0127 for ; Fri, 30 Jun 2006 05:34:54 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FwFOl-0001Iy-00; Fri, 30 Jun 2006 05:34:51 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Fri, 30 Jun 2006 09:34:51 +0000 Date: Fri, 30 Jun 2006 09:34:51 +0000 To: Egmont Koblinger , mc-devel@gnome.org Subject: [patch #5217] vfs/extfs/deb.in fixes From: Egmont Koblinger X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: patch X-Savane-Item-ID: 5217 User-Agent: Opera/9.00 (X11; Linux i686; U; en) X-Apparently-From: 195.56.230.93 (Savane authenticated user egmont) Message-Id: <20060630-093451.sv20032.13837@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.522 tagged_above=-999 required=2 tests=[AWL=0.001, BAYES_00=-2.599, SPF_PASS=-0.001, TW_DP=0.077] X-Spam-Score: -2.522 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 09:34:56 -0000 URL: Summary: vfs/extfs/deb.in fixes Project: GNU Midnight Commander Submitted by: egmont Submitted on: Friday 06/30/2006 at 09:34 Category: VFS Priority: 5 - Normal Status: None Privacy: Public Assigned to: None Originator Email: Open/Closed: Open _______________________________________________________ Details: The attached patch fixes two issues with the deb vfs plugin: - Empty directories within a deb package are not shown if browsing its contents. "dpkg -c" prints a "/" suffix for these entries and the plugin filters them out (I wonder why). It seems to me that simply removing this "next if ..." is fine for mc. You may want to strip off the trailing slash, however. - The DEBIAN directory is empty if using dpkg-1.13.22 with hu_HU locale. The reason is that the second line in the output of "dpkg-deb -I" ("size ..." in English) is translated to "méret: ..." which has a colon in the first word, hence the plugin thinks it's already the end of the file list. The solution is to force the C locale for output that will be parsed later. _______________________________________________________ File Attachments: ------------------------------------------------------- Date: Friday 06/30/2006 at 09:34 Name: deb.in.patch Size: 788B By: egmont vfs/extfs/deb.in fixes _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Thu Jun 1 08:53:31 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E31023B01AD for ; Thu, 1 Jun 2006 08:53:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03324-10 for ; Thu, 1 Jun 2006 08:53:29 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by menubar.gnome.org (Postfix) with SMTP id D77263B017F for ; Thu, 1 Jun 2006 08:53:28 -0400 (EDT) Received: (qmail invoked by alias); 01 Jun 2006 12:53:27 -0000 Received: from 87-126-39-234.btc-net.bg (EHLO sole) [87.126.39.234] by mail.gmx.net (mp040) with SMTP; 01 Jun 2006 14:53:27 +0200 X-Authenticated: #14308112 Date: Thu, 1 Jun 2006 15:52:18 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: mc@rigacci.org In-Reply-To: Message-ID: References: <20060529075733.GD12204@rigacci.org> <20060530085432.GB15022@rigacci.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.555 tagged_above=-999 required=2 tests=[AWL=0.045, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.555 X-Spam-Level: Cc: MC dev Subject: Re: Blocking DNS lookup on MC startup X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Jun 2006 12:53:31 -0000 On Wed, 31 May 2006, Pavel Tsekov wrote: > There are more calls to gethostbyname() after the get_myname () call. > load_interfaces() is doing gethostbyname() for every single value of the > "interfaces" parameter of smb.conf. If interfaces doesn't contain an > ip_address/netmask pair load_interfaces() tries to resolve the value > via gethostbyname() :( Another solution would be to delay the samba lib initialization until the first samba request. This way it will be clearly visible for the user that the hang is due to a samba request. Of course the initialization must be made interruptable. Opinions ? From ptsekov@gmx.net Fri Jun 2 09:09:02 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 74C403B01DB for ; Fri, 2 Jun 2006 09:09:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27932-10 for ; Fri, 2 Jun 2006 09:09:01 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by menubar.gnome.org (Postfix) with SMTP id 8AF793B000C for ; Fri, 2 Jun 2006 09:09:00 -0400 (EDT) Received: (qmail invoked by alias); 02 Jun 2006 13:08:58 -0000 Received: from 87-126-39-234.btc-net.bg (EHLO sole) [87.126.39.234] by mail.gmx.net (mp032) with SMTP; 02 Jun 2006 15:08:58 +0200 X-Authenticated: #14308112 Date: Fri, 2 Jun 2006 16:07:49 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: vadim In-Reply-To: <200605051503.27061.vadim-lvv@yandex.ru> Message-ID: References: <200605051503.27061.vadim-lvv@yandex.ru> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: [patch] for gnome & kde trash X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 13:09:02 -0000 Hello Vadim, On Fri, 5 May 2006, vadim wrote: > This patch being proposed is created for support of the trash in gnome or in kde. > The files get into the trash only from /home directory and while mc is run in gnome or kde. > I think that root does not need the trash but users must not delete files outside home directory > and not work without GUI. This patch is not acceptable as is. I suppose both GNOME and KDE provide means for moving a file to the trash. I'd be happy to review patches which delete a file to the trash with the appropriate interfaces. Btw note that both GNOME and KDE are supported on systems other than Linux. Next time when you submit a patch for review, please, remove any debugging output that you've used while developing the patch. Patches should be stripped off any information which is not related to the patch. Also avoid whitespace changes, formating changes, etc - they make the patch harder to read. Thanks! From leonard@den.ottolander.nl Fri Jun 2 12:38:53 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 04A363B045F for ; Fri, 2 Jun 2006 12:38:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08517-02 for ; Fri, 2 Jun 2006 12:38:52 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 6EB3C3B00A5 for ; Fri, 2 Jun 2006 12:38:50 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id ECE05402A for ; Fri, 2 Jun 2006 18:38:48 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id agae4SbZ5JJN for ; Fri, 2 Jun 2006 18:38:44 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 5E80C4023 for ; Fri, 2 Jun 2006 18:38:44 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <20060601184743.E643513D16@server8.alinet.sk> References: <20060601184743.E643513D16@server8.alinet.sk> Content-Type: text/plain Date: Fri, 02 Jun 2006 18:40:21 +0200 Message-Id: <1149266421.2605.17.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.306 tagged_above=-999 required=2 tests=[AWL=-0.150, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_RW=0.077, TW_SR=0.077, TW_WX=0.077, TW_XR=0.077] X-Spam-Score: -2.306 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 16:38:53 -0000 Hello Dusan, You are slightly overdoing it with the info. Not sure what the ps, mount and dmesg output are needed for for example... Plus the use of multipart html mail causes quite some waste of disk space and bandwidth. Please be a bit more considerate next time you ask a question. O, and please ask user questions on the user list. On Thu, 2006-06-01 at 20:47 +0200, rekcah wrote: > # ls -l /usr/lib/mc/cons.saver > -rwsrwxrwx 1 root root 5696 May 5 2005 /usr/lib/mc/cons.saver Well that binary is suid root which should work - although suid vcsa is preferred, assuming the /dev/vcsa devices are owned by a user vcsa. Please take a look just below the header of src/cons.saver.c -, but I am wondering if you are actually looking at the correct binary. The latest FC4 mc rpm I checked has cons.saver located in /usr/libexec/mc/. By the way, you do *not* want suid binaries world writable!!! Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Fri Jun 2 12:40:25 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4F39A3B012E for ; Fri, 2 Jun 2006 12:40:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08459-09 for ; Fri, 2 Jun 2006 12:40:24 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 441803B00C8 for ; Fri, 2 Jun 2006 12:40:24 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 6374C4023 for ; Fri, 2 Jun 2006 18:40:23 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id Sv8OzhsaaR-J for ; Fri, 2 Jun 2006 18:40:23 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 0150A4021 for ; Fri, 2 Jun 2006 18:40:22 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <1149266421.2605.17.camel@athlon> References: <20060601184743.E643513D16@server8.alinet.sk> <1149266421.2605.17.camel@athlon> Content-Type: text/plain Date: Fri, 02 Jun 2006 18:42:00 +0200 Message-Id: <1149266520.2605.18.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.714 tagged_above=-999 required=2 tests=[AWL=-0.739, BAYES_05=-1.11, FORGED_RCVD_HELO=0.135] X-Spam-Score: -1.714 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 16:40:25 -0000 On Fri, 2006-06-02 at 18:40 +0200, Leonard den Ottolander wrote: > O, and please ask user questions on the user list. Duh! It was not sent to this list in the first place. Scuze me ;) . Leonard. -- mount -t life -o ro /dev/dna /genetic/research From egmont@uhulinux.hu Fri Jun 2 12:43:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 32D323B0135 for ; Fri, 2 Jun 2006 12:43:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08798-05 for ; Fri, 2 Jun 2006 12:43:33 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id E8D213B0507 for ; Fri, 2 Jun 2006 12:43:32 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id 4CE6B7FA5 for ; Fri, 2 Jun 2006 18:43:31 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25536-07 for ; Fri, 2 Jun 2006 18:43:27 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id 99CA67F4E for ; Fri, 2 Jun 2006 18:43:27 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Fri, 2 Jun 2006 18:43:27 +0200 Date: Fri, 2 Jun 2006 18:43:27 +0200 From: Egmont Koblinger To: mc-devel@gnome.org Message-ID: <20060602164326.GB5134@cs.bme.hu> References: <20060601184743.E643513D16@server8.alinet.sk> <1149266421.2605.17.camel@athlon> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1149266421.2605.17.camel@athlon> User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.855 tagged_above=-999 required=2 tests=[AWL=-0.745, BAYES_05=-1.11] X-Spam-Score: -1.855 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 16:43:36 -0000 On Fri, Jun 02, 2006 at 06:40:21PM +0200, Leonard den Ottolander wrote: > By the way, you do *not* want suid binaries world writable!!! OT: The linux kernel removes the set[ug]id bit as soon as you modify the file. However, other systems may not do so. -- Egmont From leonard@den.ottolander.nl Fri Jun 2 12:50:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1FBE63B0325 for ; Fri, 2 Jun 2006 12:50:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09252-02 for ; Fri, 2 Jun 2006 12:50:26 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 174AD3B0135 for ; Fri, 2 Jun 2006 12:50:26 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 1F6824023 for ; Fri, 2 Jun 2006 18:50:25 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 9HbEI4Iozrqp for ; Fri, 2 Jun 2006 18:50:23 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 3AD194021 for ; Fri, 2 Jun 2006 18:50:23 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <20060602164326.GB5134@cs.bme.hu> References: <20060601184743.E643513D16@server8.alinet.sk> <1149266421.2605.17.camel@athlon> <20060602164326.GB5134@cs.bme.hu> Content-Type: text/plain Date: Fri, 02 Jun 2006 18:52:00 +0200 Message-Id: <1149267120.2605.23.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 16:50:27 -0000 Hello Egmont, On Fri, 2006-06-02 at 18:43 +0200, Egmont Koblinger wrote: > OT: > The linux kernel removes the set[ug]id bit as soon as you modify the file. > However, other systems may not do so. Ok. I didn't know that. Does this only happen with 2.6 kernels or also with 2.4 kernels? Leonard. -- mount -t life -o ro /dev/dna /genetic/research From egmont@uhulinux.hu Fri Jun 2 13:03:12 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3E6D63B00A5 for ; Fri, 2 Jun 2006 13:03:12 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09674-09 for ; Fri, 2 Jun 2006 13:03:09 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id A4DE33B026C for ; Fri, 2 Jun 2006 13:03:09 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id 88C9E803E for ; Fri, 2 Jun 2006 19:03:08 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25507-04 for ; Fri, 2 Jun 2006 19:03:04 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id C51957F4E for ; Fri, 2 Jun 2006 19:03:04 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Fri, 2 Jun 2006 19:03:04 +0200 Date: Fri, 2 Jun 2006 19:03:04 +0200 From: Egmont Koblinger To: mc-devel@gnome.org Message-ID: <20060602170304.GC5134@cs.bme.hu> References: <20060601184743.E643513D16@server8.alinet.sk> <1149266421.2605.17.camel@athlon> <20060602164326.GB5134@cs.bme.hu> <1149267120.2605.23.camel@athlon> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1149267120.2605.23.camel@athlon> User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.58 tagged_above=-999 required=2 tests=[AWL=0.019, BAYES_00=-2.599] X-Spam-Score: -2.58 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 17:03:12 -0000 On Fri, Jun 02, 2006 at 06:52:00PM +0200, Leonard den Ottolander wrote: > Ok. I didn't know that. Does this only happen with 2.6 kernels or also > with 2.4 kernels? I think it's a really very old feature. BTW a world-writable binary (even without a setuid bit) that is likely to be executed by many different users _is_ a big security hole. Anyone can easily replace it with a binary that removes your files or similar... -- Egmont From ossi@kde.org Fri Jun 2 14:51:49 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A82423B0B87 for ; Fri, 2 Jun 2006 14:51:49 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15831-06 for ; Fri, 2 Jun 2006 14:51:45 -0400 (EDT) Received: from ktown.kde.org (ktown.kde.org [131.246.120.250]) by menubar.gnome.org (Postfix) with SMTP id 90FC63B0414 for ; Fri, 2 Jun 2006 14:51:44 -0400 (EDT) Received: (qmail 27395 invoked from network); 2 Jun 2006 18:51:43 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 2 Jun 2006 18:51:43 -0000 Received: from ossi by ugly.local with local (masqmail 0.2.21) id 1FmEhZ-0yc-00 for ; Fri, 02 Jun 2006 20:48:53 +0200 Date: Fri, 2 Jun 2006 20:48:53 +0200 From: Oswald Buddenhagen To: mc-devel@gnome.org Message-ID: <20060602184853.GB3439@ugly.local> Mail-Followup-To: mc-devel@gnome.org References: <200605051503.27061.vadim-lvv@yandex.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.585 tagged_above=-999 required=2 tests=[AWL=0.014, BAYES_00=-2.599] X-Spam-Score: -2.585 X-Spam-Level: Subject: Re: [patch] for gnome & kde trash X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 18:51:49 -0000 On Fri, Jun 02, 2006 at 04:07:49PM +0300, Pavel Tsekov wrote: > This patch is not acceptable as is. > indeed. > I suppose both GNOME and KDE provide means for moving a file to the > trash. > who cares? the authoritative reference is http://www.ramendik.ru/docs/trashspec.html -- Hi! I'm a .signature virus! Copy me into your ~/.signature, please! -- Chaos, panic, and disorder - my work here is done. From nerijus@users.sourceforge.net Sun Jun 4 14:45:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4D6763B02F2 for ; Sun, 4 Jun 2006 14:45:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03996-07 for ; Sun, 4 Jun 2006 14:45:14 -0400 (EDT) Received: from mx.dtiltas.lt (mx.dt.lt [84.32.38.8]) by menubar.gnome.org (Postfix) with ESMTP id 4BE163B02D7 for ; Sun, 4 Jun 2006 14:45:14 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by mx.dtiltas.lt (UAB "Duomenu Tiltas" Mail service) with ESMTP id E3E8BC6D5 for ; Sun, 4 Jun 2006 21:45:11 +0300 (EEST) Received: from mx.dtiltas.lt ([84.32.38.8]) by localhost (mx.dt.lt [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05781-01-4 for ; Sun, 4 Jun 2006 21:45:10 +0300 (EEST) Received: from nerijus.sat.lt (clt-84-32-63-24.dtiltas.lt [84.32.63.24]) by mx.dtiltas.lt (UAB "Duomenu Tiltas" Mail service) with ESMTP id 6D96FCEAC for ; Sun, 4 Jun 2006 21:20:11 +0300 (EEST) Received: (qmail 25458 invoked from network); 4 Jun 2006 18:18:56 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 4 Jun 2006 18:18:56 -0000 Date: Sun, 4 Jun 2006 21:18:56 +0300 From: Nerijus Baliunas To: Leonard den Ottolander MIME-Version: 1.0 Content-Type: TEXT/PLAIN; CHARSET=US-ASCII Content-Disposition: INLINE X-Mailer: Mahogany 0.66.0 'Clio', compiled for Linux 2.6.16-1.2080_3.rhfc5.cubbi_suspend2 i686 Message-Id: <20060604182011.6D96FCEAC@mx.dtiltas.lt> X-Virus-Scanned: amavisd-new at dt.lt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.49 tagged_above=-999 required=2 tests=[AWL=-0.885, BAYES_20=-0.74, FORGED_RCVD_HELO=0.135] X-Spam-Score: -1.49 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Open mailboxes with mailfs X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jun 2006 18:45:16 -0000 Hello, I see you added it to mc.ext.in (very nice btw!): +# Mailboxes +type/^ASCII\ mail\ text$ + Open=%cd %p#mailfs But 'file' on some of my mailboxes gives: ASCII mail text, with very long lines So I suggest removing "$" from the end. Regards, Nerijus From leonard@den.ottolander.nl Mon Jun 5 06:25:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 71A173B0152 for ; Mon, 5 Jun 2006 06:25:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21866-05 for ; Mon, 5 Jun 2006 06:25:20 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 1F2F03B002C for ; Mon, 5 Jun 2006 06:25:19 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 5F3184023 for ; Mon, 5 Jun 2006 12:25:14 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id lf2l-E6+Tgqm for ; Mon, 5 Jun 2006 12:25:13 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id DE0E34021 for ; Mon, 5 Jun 2006 12:25:12 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <20060604182011.6D96FCEAC@mx.dtiltas.lt> References: <20060604182011.6D96FCEAC@mx.dtiltas.lt> Content-Type: text/plain Date: Mon, 05 Jun 2006 12:26:51 +0200 Message-Id: <1149503211.2473.5.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.526 tagged_above=-999 required=2 tests=[AWL=-0.921, BAYES_20=-0.74, FORGED_RCVD_HELO=0.135] X-Spam-Score: -1.526 X-Spam-Level: Subject: Re: Open mailboxes with mailfs X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 10:25:21 -0000 Hi Nerijus, On Sun, 2006-06-04 at 21:18 +0300, Nerijus Baliunas wrote: > So I suggest removing "$" from the end. Sure. Done. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Mon Jun 5 07:06:58 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 89C683B0382 for ; Mon, 5 Jun 2006 07:06:58 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24348-01 for ; Mon, 5 Jun 2006 07:06:57 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 35A883B00CC for ; Mon, 5 Jun 2006 07:06:57 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id E530E4023 for ; Mon, 5 Jun 2006 13:06:55 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id hdr8SfqyTbj0 for ; Mon, 5 Jun 2006 13:06:54 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 55EE44021 for ; Mon, 5 Jun 2006 13:06:54 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: References: <20060529075733.GD12204@rigacci.org> <20060530085432.GB15022@rigacci.org> Content-Type: text/plain Date: Mon, 05 Jun 2006 13:08:29 +0200 Message-Id: <1149505709.2473.19.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.454 tagged_above=-999 required=2 tests=[AWL=0.010, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.454 X-Spam-Level: Subject: Re: Blocking DNS lookup on MC startup X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 11:06:58 -0000 Hello Pavel, On Thu, 2006-06-01 at 15:52 +0300, Pavel Tsekov wrote: > On Wed, 31 May 2006, Pavel Tsekov wrote: > > load_interfaces() is doing gethostbyname() for every single value of the > > "interfaces" parameter of smb.conf. If interfaces doesn't contain an > > ip_address/netmask pair load_interfaces() tries to resolve the value > > via gethostbyname() :( Are you referring to interpret_addr()? I'd say the case where the interface is identified by a name is a bit of a corner case. > Another solution would be to delay the samba lib initialization until the > first samba request. This way it will be clearly visible for the user that > the hang is due to a samba request. Of course the initialization must be > made interruptable. > > Opinions ? I don't have any fundamental objections against delaying the initialization of smbfs, but is it really worth the effort? Don't you think we catch most cases with making the call to Get_Hostbyname() in get_myname() conditional? Leonard. -- mount -t life -o ro /dev/dna /genetic/research From ptsekov@gmx.net Mon Jun 5 07:42:54 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id DF5603B027B for ; Mon, 5 Jun 2006 07:42:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26687-06 for ; Mon, 5 Jun 2006 07:42:52 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.20]) by menubar.gnome.org (Postfix) with SMTP id A04B23B0704 for ; Mon, 5 Jun 2006 07:42:51 -0400 (EDT) Received: (qmail invoked by alias); 05 Jun 2006 11:42:49 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp039) with SMTP; 05 Jun 2006 13:42:49 +0200 X-Authenticated: #14308112 Date: Mon, 5 Jun 2006 14:41:39 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander In-Reply-To: <1149505709.2473.19.camel@athlon> Message-ID: References: <20060529075733.GD12204@rigacci.org> <20060530085432.GB15022@rigacci.org> <1149505709.2473.19.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.489 tagged_above=-999 required=2 tests=[AWL=-0.024, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.489 X-Spam-Level: Cc: MC development Subject: Re: Blocking DNS lookup on MC startup X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 11:42:54 -0000 On Mon, 5 Jun 2006, Leonard den Ottolander wrote: >>> load_interfaces() is doing gethostbyname() for every single value of the >>> "interfaces" parameter of smb.conf. If interfaces doesn't contain an >>> ip_address/netmask pair load_interfaces() tries to resolve the value >>> via gethostbyname() :( > > Are you referring to interpret_addr()? Yes. > I'd say the case where the interface is identified by a name is a bit of > a corner case. Not really. Please, look here: http://mail.gnome.org/archives/mc-devel/2006-April/msg00036.html http://mail.gnome.org/archives/mc/2006-May/msg00005.html It seems historic samba didn't allow interface names in the "interfaces" directive. However newer samba versions allow the use of interface names and it is used by people. If you think about it - it makes a lot of sense. >> Another solution would be to delay the samba lib initialization until the >> first samba request. This way it will be clearly visible for the user that >> the hang is due to a samba request. Of course the initialization must be >> made interruptable. >> >> Opinions ? > > I don't have any fundamental objections against delaying the > initialization of smbfs, but is it really worth the effort? Don't you > think we catch most cases with making the call to Get_Hostbyname() in > get_myname() conditional? Unfortunately not. Switching to a newer samba lib is another option. It has been discussed in the past - at least in bugzilla there is an entry discussing a switch to newer samba. Of course we can hack the intree samba lib but I think it is not worth doing it. From INVALID.NOREPLY@gnu.org Tue Jun 6 02:43:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 153953B00E1 for ; Tue, 6 Jun 2006 02:43:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28705-10 for ; Tue, 6 Jun 2006 02:43:35 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id EA2AB3B0750 for ; Tue, 6 Jun 2006 02:43:34 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnVHn-0005rO-00; Tue, 06 Jun 2006 02:43:31 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 6 Jun 2006 10:43:31 +0400 Date: Tue, 6 Jun 2006 10:43:31 +0400 To: Oleg Broytmann , mc-devel@gnome.org From: Oleg Broytmann X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16757 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060516 SeaMonkey/1.0.2 X-Apparently-From: 80.252.150.251 (Savane authenticated user phd) Message-Id: <20060606-104330.sv47300.22684@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.591 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.591 X-Spam-Level: Cc: Subject: [bug #16757] Environment variables in a subshell X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 06:43:39 -0000 URL: Summary: Environment variables in a subshell Project: GNU Midnight Commander Submitted by: phd Submitted on: Вторник 06.06.2006 at 10:43 Category: Subshell Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Linux _______________________________________________________ Details: I have a lot of different environments (Python, Java, Postgres and so on), and I source a config file when I want to change the environment; for example running "include svn" runs . $HOME/lib/config/svn that adds SVN directories to PATH, LD_LIBRARY_PATH and MANPATH. When I do this under Midnight Commander I have a minor problem with subshell (at least I think the problem is in the subshell). When I run a program in the mc command line (type "./a_script", press [Enter]) mc (subshell?) passes the modified env vars to the program. But if I just press [Enter] on the program mc passes an old environment as if I didn't source any config file; it seems after pressing [Enter] on a program mc passes its own original environment, not the subshell's environment. I think that's a bug; I'd like mc to pass the modified environment to all programs regardless of the way I start them. Debian GNU/Linux 3.1, mc 4.6.1-pre3. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 6 10:18:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 67F1F3B0189 for ; Tue, 6 Jun 2006 10:18:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27630-03 for ; Tue, 6 Jun 2006 10:18:38 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id BBD723B0184 for ; Tue, 6 Jun 2006 10:18:37 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FncO9-0007M9-00; Tue, 06 Jun 2006 10:18:33 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 6 Jun 2006 14:18:33 +0000 Date: Tue, 6 Jun 2006 14:18:33 +0000 To: yaroslav , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060606-141833.sv47365.36914@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.591 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.591 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:18:39 -0000 URL: Summary: Cannot compile mc-2006-06-05-20 Project: GNU Midnight Commander Submitted by: s68 Submitted on: Вторник 06.06.2006 at 14:18 Category: Core Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: current (CVS or snapshot) Operating System: FreeBSD _______________________________________________________ Details: mountlist.c: In function 'fstype_to_string': mountlist.c:186: error: 'MOUNT_UFS' undeclared (first use in this function) Operating systems are: Darwin Kernel Version 8.4.1: Tue Jan 3 18:23:53 PST 2006; root:xnu-792.7.90.obj~1/RELEASE_I386 i386 i386 and FreeBSD 4.10-RELEASE Configure options are "--with-subshell=optional" _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 6 15:46:07 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BEA503B0AE1 for ; Tue, 6 Jun 2006 15:46:07 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17438-06 for ; Tue, 6 Jun 2006 15:46:06 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 5191C3B0B37 for ; Tue, 6 Jun 2006 15:46:06 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnhUx-00034K-00; Tue, 06 Jun 2006 15:45:55 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 6 Jun 2006 21:45:55 +0200 Date: Tue, 6 Jun 2006 21:45:55 +0200 To: yaroslav , Leonard den Ottolander , mc-devel@gnome.org From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060606-214555.sv26390.24839@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> In-Reply-To: <20060606-141833.sv47365.36914@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 19:46:07 -0000 Follow-up Comment #1, bug #16762 (project mc): Does this fix your issue? _______________________________________________________ Additional Item Attachment: File name: mountlist.c.patch Size:0 KB Define HAVE_F_FSTYPE if HAVE_STRUCT_STATFS_F_FSTYPENAME is defined (regardless of HAVE_STATVFS) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Tue Jun 6 16:12:49 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7DD663B0B94 for ; Tue, 6 Jun 2006 16:12:49 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19120-04 for ; Tue, 6 Jun 2006 16:12:47 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 3125D3B0236 for ; Tue, 6 Jun 2006 16:12:47 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 55F6A4023 for ; Tue, 6 Jun 2006 22:12:45 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 8yy9hanIHWkZ for ; Tue, 6 Jun 2006 22:12:44 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id DCC014021 for ; Tue, 6 Jun 2006 22:12:43 +0200 (CEST) From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Tue, 06 Jun 2006 22:14:23 +0200 Message-Id: <1149624863.2506.3.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Subject: FTP: Cannot change to write-only directory X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 20:12:49 -0000 >From Red Hat's bugzilla: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=194277 Leonard. -- mount -t life -o ro /dev/dna /genetic/research From niccolo@rigacci.org Tue Jun 6 19:21:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 015E33B032C for ; Tue, 6 Jun 2006 19:21:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28814-10 for ; Tue, 6 Jun 2006 19:21:38 -0400 (EDT) Received: from paros.rigacci.org (host50-109.pool8838.interbusiness.it [88.38.109.50]) by menubar.gnome.org (Postfix) with ESMTP id 0704C3B012A for ; Tue, 6 Jun 2006 19:21:37 -0400 (EDT) Received: from niccolo by paros.rigacci.org with local (Exim 4.61) (envelope-from ) id 1Fnkrg-0000eR-Pe for mc-devel@gnome.org; Wed, 07 Jun 2006 01:21:36 +0200 Date: Wed, 7 Jun 2006 01:21:36 +0200 From: mc@rigacci.org To: MC dev Message-ID: <20060606232136.GB2405@rigacci.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11+cvs20060403 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.516 tagged_above=-999 required=2 tests=[AWL=-0.872, BAYES_20=-0.74, FORGED_RCVD_HELO=0.135, NO_REAL_NAME=0.961] X-Spam-Score: -0.516 X-Spam-Level: Subject: Re: Blocking DNS lookup on MC startup X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 23:21:39 -0000 > Another solution would be to delay the samba lib initialization until the > first samba request. This way it will be clearly visible for the user that > the hang is due to a samba request. Is the problem related only to smbfs support? If so, my preference will be an option (or a config file parameter) to start mc with smbfs disabled. Delaying samba lib initialization can be a good solution too, but I think more hard to implement. -- Niccolo Rigacci Firenze - Italy Iraq, missione di pace: 38254 morti - www.iraqbodycount.net From INVALID.NOREPLY@gnu.org Wed Jun 7 04:08:31 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 922DF3B02FF for ; Wed, 7 Jun 2006 04:08:31 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25660-03 for ; Wed, 7 Jun 2006 04:08:28 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 8C01F3B0164 for ; Wed, 7 Jun 2006 04:08:28 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fnt5M-0005Iz-00; Wed, 07 Jun 2006 04:08:16 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 08:08:16 +0000 Date: Wed, 7 Jun 2006 08:08:16 +0000 To: yaroslav , Leonard den Ottolander , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060607-080816.sv47365.26756@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> In-Reply-To: <20060606-214555.sv26390.24839@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 08:08:31 -0000 Follow-up Comment #2, bug #16762 (project mc): > Does this fix your issue? No :( _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 7 05:36:46 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E80643B00A8 for ; Wed, 7 Jun 2006 05:36:45 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31652-05 for ; Wed, 7 Jun 2006 05:36:43 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id D094D3B0BBC for ; Wed, 7 Jun 2006 05:36:42 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnuSs-0001hc-00; Wed, 07 Jun 2006 05:36:38 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 12:36:37 +0300 Date: Wed, 7 Jun 2006 12:36:37 +0300 To: yaroslav , Leonard den Ottolander , Pavel Tsekov , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060607-123637.sv36205.98656@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> In-Reply-To: <20060607-080816.sv47365.26756@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001, UPPERCASE_25_50=0] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 09:36:46 -0000 Follow-up Comment #3, bug #16762 (project mc): The real problem here is that noone sets HAVE_STRUCT_STATFS_F_FSTYPENAME. I.e. there is no test at configure time which sets this. Before Leonard's changes to configure there was a test which used to set HAVE_F_FSTYPENAME. #if defined(HAVE_STATVFS) # if defined(HAVE_STRUCT_STATVFS_F_FSTYPENAME) # define HAVE_F_FSTYPENAME # endif #else # if defined(HAVE_STRUCT_STATFS_F_FSTYPENAME) # define HAVE_F_FSTYPENAME # endif #endif So what happens is that on FreeBSD we take the second branch and since HAVE_F_FSTYPENAME is not set the fstype_to_string() routine is compiled in. Apparently MOUNT_UFS is not available on FreeBSD and the build fails. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 7 05:46:33 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 935FB3B0AE7 for ; Wed, 7 Jun 2006 05:46:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32285-09 for ; Wed, 7 Jun 2006 05:46:32 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3B1893B00A8 for ; Wed, 7 Jun 2006 05:46:32 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnuXU-0001tO-00; Wed, 07 Jun 2006 05:41:24 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 12:41:24 +0300 Date: Wed, 7 Jun 2006 12:41:24 +0300 To: yaroslav , Leonard den Ottolander , Pavel Tsekov , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060607-124124.sv36205.81804@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> In-Reply-To: <20060607-123637.sv36205.98656@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.593 tagged_above=-999 required=2 tests=[AWL=0.007, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.593 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 09:46:33 -0000 Follow-up Comment #4, bug #16762 (project mc): In fact in the past the code used to check whether MOUNT_UFS was defined but the check was removed later and the code assumed the availability of MOUNT_UFS for granted: http://cvs.savannah.gnu.org/viewcvs/mc/mc/src/mountlist.c?sortby=date&r2=1.5&r1=1.4&diff_format=u In my opinion this issue should be handled carefully. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From nadvornik@suse.cz Wed Jun 7 06:18:40 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CEC4B3B08CC for ; Wed, 7 Jun 2006 06:18:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02299-01 for ; Wed, 7 Jun 2006 06:18:37 -0400 (EDT) Received: from mail.suse.cz (styx.suse.cz [82.119.242.94]) by menubar.gnome.org (Postfix) with ESMTP id B22FA3B0B10 for ; Wed, 7 Jun 2006 06:18:36 -0400 (EDT) Received: from sphinx.suse.cz (sphinx.suse.cz [10.20.1.5]) by mail.suse.cz (SUSE CR ESMTP Mailer) with ESMTP id A60356283DB for ; Wed, 7 Jun 2006 12:18:33 +0200 (CEST) From: Vladimir Nadvornik To: mc-devel@gnome.org Date: Wed, 7 Jun 2006 12:18:31 +0200 User-Agent: KMail/1.9.1 References: <200509191419.01556.arekm@pld-linux.org> <1131825589.2735.24.camel@athlon> In-Reply-To: <1131825589.2735.24.camel@athlon> MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_4fqhE9aq8TcWQqY" Message-Id: <200606071218.32428.nadvornik@suse.cz> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 10:18:40 -0000 --Boundary-00=_4fqhE9aq8TcWQqY Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline On Saturday 12 November 2005 20:59, Leonard den Ottolander wrote: > Hi Bart, list, > > On Tue, 2005-09-20 at 08:14 +1200, Bart Oldeman wrote: > > Basically you'd need to apply Fedora's patch, and then (sorry no proper > > patch here but it's not a big deal) > > Attached you'll find a proper patch. I've moved the hunk from global.h > to myslang.h (and dropped the inclusion of slang.h as it is redundant). > > Jindrich, please merge this patch with the UTF8 patch. You might even > consider to build the next mc for FC --with-screen=mcslang, as I see the > FC development tree does not yet feature slang-2. > Hi all, In non-UTF-8 mode slang2 behaves a bit different than the patched slang1. As a result, mc does work with 8bit encodings, like 8859-2 or KOI8. The attached patch fixes the SLsmg_write_nwchars() function to 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. e-mail: nadvornik@suse.cz Drahobejlova 27 tel:+420 2 9654 2373 190 00 Praha 9 fax:+420 2 9654 2374 Ceska republika http://www.suse.cz --Boundary-00=_4fqhE9aq8TcWQqY Content-Type: text/x-diff; charset="iso-8859-6"; name="mc-slang2-fix.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="mc-slang2-fix.patch" diff -ruN mc-4.6.1.orig/edit/editdraw.c mc-4.6.1/edit/editdraw.c --- mc-4.6.1.orig/edit/editdraw.c 2006-06-07 11:57:19.000000000 +0200 +++ mc-4.6.1/edit/editdraw.c 2006-06-07 11:56:30.000000000 +0200 @@ -234,7 +234,7 @@ lowlevel_set_color (color); } #ifdef UTF8 - SLsmg_write_char(textchar); + SLsmg_write_nwchars(&textchar, 1); #else addch (textchar); #endif diff -ruN mc-4.6.1.orig/src/help.c mc-4.6.1/src/help.c --- mc-4.6.1.orig/src/help.c 2006-06-07 11:57:19.000000000 +0200 +++ mc-4.6.1/src/help.c 2006-06-07 11:56:30.000000000 +0200 @@ -461,7 +461,7 @@ len = mbrtowc(&wc, p, MB_CUR_MAX, &mbs); if (len <= 0) len = 1; /* skip broken multibyte chars */ - SLsmg_write_char(wc); + SLsmg_write_nwchars(&wc, 1); p += len - 1; } else #endif diff -ruN mc-4.6.1.orig/src/util.c mc-4.6.1/src/util.c --- mc-4.6.1.orig/src/util.c 2006-06-07 11:57:19.000000000 +0200 +++ mc-4.6.1/src/util.c 2006-06-07 11:56:30.000000000 +0200 @@ -58,8 +58,26 @@ #if SLANG_VERSION >= 20000 void SLsmg_write_nwchars(wchar_t *s, size_t n) { - while(n--) - SLsmg_write_char(*s++); + if (SLsmg_is_utf8_mode()) { /* slang can handle it directly */ + while(n-- && *s) + SLsmg_write_char(*s++); + } + else { /* convert wchars back to 8bit encoding */ + mbstate_t mbs; + memset (&mbs, 0, sizeof (mbs)); + while (n-- && *s) { + char buf[MB_LEN_MAX + 1]; /* should use 1 char, but to be sure */ + if (*s < 0x80) { + SLsmg_write_char(*s++); /* ASCII */ + } + else { + if (wcrtomb(buf, *s++, &mbs) == 1) + SLsmg_write_char((wchar_t)(buf[0])); + else + SLsmg_write_char('?'); /* should not happen */ + } + } + } } #endif diff -ruN mc-4.6.1.orig/src/view.c mc-4.6.1/src/view.c --- mc-4.6.1.orig/src/view.c 2006-06-07 11:57:19.000000000 +0200 +++ mc-4.6.1/src/view.c 2006-06-07 11:56:30.000000000 +0200 @@ -852,7 +852,7 @@ #ifndef UTF8 #define view_add_character(view,c) addch (c) #else /* UTF8 */ -#define view_add_character(view,c) SLsmg_write_char(c) +#define view_add_character(view,c) {wchar_t tmp=c; SLsmg_write_nwchars(&tmp, 1);} #endif /* UTF8 */ #define view_add_one_vline() one_vline() #define view_add_string(view,s) addstr (s) --Boundary-00=_4fqhE9aq8TcWQqY-- From INVALID.NOREPLY@gnu.org Wed Jun 7 07:11:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CBAC03B02C0 for ; Wed, 7 Jun 2006 07:11:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05334-02 for ; Wed, 7 Jun 2006 07:11:24 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id A80AC3B01EA for ; Wed, 7 Jun 2006 07:11:24 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnvwN-0004SN-00; Wed, 07 Jun 2006 07:11:11 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 14:11:10 +0300 Date: Wed, 7 Jun 2006 14:11:10 +0300 To: yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060607-141110.sv36205.29236@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> In-Reply-To: <20060607-124124.sv36205.81804@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.593 tagged_above=-999 required=2 tests=[AWL=0.007, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.593 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 11:11:28 -0000 Update of bug #16762 (project mc): Assigned to: None => ptsekov _______________________________________________________ Follow-up Comment #5: I'll fix this. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From adel@uaemet.gov.ae Tue Jun 6 10:12:04 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6DE6E3B0151 for ; Tue, 6 Jun 2006 10:12:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27387-02 for ; Tue, 6 Jun 2006 10:12:02 -0400 (EDT) Received: from www.uaemet.gov.ae (unknown [213.42.139.195]) by menubar.gnome.org (Postfix) with ESMTP id 90B9A3B00A1 for ; Tue, 6 Jun 2006 10:12:00 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by www.uaemet.gov.ae (Postfix) with ESMTP id A68531DF170 for ; Tue, 6 Jun 2006 18:11:57 +0400 (GST) Received: from uaemet.gov.ae (localhost.localdomain [127.0.0.1]) by www.uaemet.gov.ae (Postfix) with ESMTP id 8116B1DF16F for ; Tue, 6 Jun 2006 10:11:55 -0400 (EDT) From: "Adel Gabr" To: mc-devel@gnome.org Date: Tue, 6 Jun 2006 18:11:55 +0400 Message-Id: <20060606140640.M23835@uaemet.gov.ae> X-Mailer: Open WebMail 1.90 20030212 X-OriginatingIP: 213.42.139.195 (adel) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 X-Virus-Scanned: by AMaViS perl-11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.36 tagged_above=-999 required=2 tests=[BAYES_20=-0.74, DEAR_SOMETHING=2.1] X-Spam-Score: 1.36 X-Spam-Level: * X-Mailman-Approved-At: Wed, 07 Jun 2006 08:10:53 -0400 Subject: mc bug X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: adel@uaemet.gov.ae List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:12:04 -0000 Dear Sir, I have installed Suse in my machine,when I try to use Midnight Commander 4.6.0 using the command 'mc' is not working.But if I use mc -x it is working. The output of `mc -V'is :- master:/rhome> mc -V GNU Midnight Commander 4.6.0 Virtual File System: tarfs, extfs, cpiofs, ftpfs, fish With builtin Editor Using system-installed S-Lang library with terminfo database With subshell support as default With support for background operations With mouse support on xterm and Linux console With support for X11 events With internationalization support With multiple codepages support Please advise and send me the good way to reinstall th mc again. Best regards Adel -- Open WebMail Project (http://openwebmail.org) From jnovy@redhat.com Wed Jun 7 08:58:57 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C33CB3B0599 for ; Wed, 7 Jun 2006 08:58:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 13391-09 for ; Wed, 7 Jun 2006 08:58:52 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 88D823B0CD3 for ; Wed, 7 Jun 2006 08:58:52 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k57CwpAG011897; Wed, 7 Jun 2006 08:58:51 -0400 Received: from pobox.stuttgart.redhat.com (pobox.stuttgart.redhat.com [172.16.2.10]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k57CwpR1031982; Wed, 7 Jun 2006 08:58:51 -0400 Received: from vpn-4-41.stuttgart.redhat.com (vpn-4-41.stuttgart.redhat.com [10.32.4.41]) by pobox.stuttgart.redhat.com (8.12.8/8.12.8) with ESMTP id k57CwoY5017421; Wed, 7 Jun 2006 14:58:50 +0200 From: Jindrich Novy To: Vladimir Nadvornik In-Reply-To: <200606071218.32428.nadvornik@suse.cz> References: <200509191419.01556.arekm@pld-linux.org> <1131825589.2735.24.camel@athlon> <200606071218.32428.nadvornik@suse.cz> Content-Type: text/plain Date: Wed, 07 Jun 2006 14:58:51 +0200 Message-Id: <1149685131.2269.10.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.601 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.601 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 12:58:57 -0000 Hi, On Wed, 2006-06-07 at 12:18 +0200, Vladimir Nadvornik wrote: > On Saturday 12 November 2005 20:59, Leonard den Ottolander wrote: > > Hi Bart, list, > > > > On Tue, 2005-09-20 at 08:14 +1200, Bart Oldeman wrote: > > > Basically you'd need to apply Fedora's patch, and then (sorry no proper > > > patch here but it's not a big deal) > > > > Attached you'll find a proper patch. I've moved the hunk from global.h > > to myslang.h (and dropped the inclusion of slang.h as it is redundant). > > > > Jindrich, please merge this patch with the UTF8 patch. You might even > > consider to build the next mc for FC --with-screen=mcslang, as I see the > > FC development tree does not yet feature slang-2. > > slang-2.0.5 is used since FC5 so only FC4 now uses the old slang-1.4.9. > Hi all, > > In non-UTF-8 mode slang2 behaves a bit different than the patched slang1. > As a result, mc does work with 8bit encodings, like 8859-2 or KOI8. > The attached patch fixes the SLsmg_write_nwchars() function to 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. Thanks for the patch. The last hunk didn't apply as there's no view_add_character used in editdraw.c. Jindrich From INVALID.NOREPLY@gnu.org Wed Jun 7 10:42:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 53FEF3B0CC1 for ; Wed, 7 Jun 2006 10:42:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21355-08 for ; Wed, 7 Jun 2006 10:42:37 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 9ADAF3B0CC8 for ; Wed, 7 Jun 2006 10:42:37 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnzEr-0003qw-00; Wed, 07 Jun 2006 10:42:29 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 17:42:29 +0300 Date: Wed, 7 Jun 2006 17:42:29 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060607-174228.sv36205.47259@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> In-Reply-To: <20060607-141110.sv36205.29236@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.555 tagged_above=-999 required=2 tests=[AWL=-0.032, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.555 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 14:42:39 -0000 Follow-up Comment #6, bug #16762 (project mc): Hello yaroslav, Fetch the latest CVS version of MC and apply the attached patch. Let us know wheter it fixes your problem or not. _______________________________________________________ Additional Item Attachment: File name: getmntinfo-fix.patch Size:3 KB _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 7 15:21:42 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 686D93B029F for ; Wed, 7 Jun 2006 15:21:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07968-09 for ; Wed, 7 Jun 2006 15:21:41 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id CF6CD3B0288 for ; Wed, 7 Jun 2006 15:21:40 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fo3aq-0005OI-00; Wed, 07 Jun 2006 15:21:28 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 21:21:28 +0200 Date: Wed, 7 Jun 2006 21:21:28 +0200 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060607-212128.sv26390.34564@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> In-Reply-To: <20060607-174228.sv36205.47259@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 19:21:42 -0000 Follow-up Comment #7, bug #16762 (project mc): Having the essential code moved into acinclude.m4 instead of mountlist.c seems appropriate as this is where it dissappeared from in the first place. And the inclusion of fstypename.m4 also reintroduces the tests that got lost when I introduced ls-mntd-fs.m4 and fsusage.m4. Haven't tested but appears ok. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Wed Jun 7 16:00:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 29F343B03C4 for ; Wed, 7 Jun 2006 16:00:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10546-07 for ; Wed, 7 Jun 2006 16:00:40 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id DCEC73B0546 for ; Wed, 7 Jun 2006 16:00:39 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id CAC5F4023 for ; Wed, 7 Jun 2006 22:00:38 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id LefPSXgX7Ft3 for ; Wed, 7 Jun 2006 22:00:35 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 5B03B4021 for ; Wed, 7 Jun 2006 22:00:35 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <1149624863.2506.3.camel@athlon> References: <1149624863.2506.3.camel@athlon> Content-Type: text/plain Date: Wed, 07 Jun 2006 22:02:15 +0200 Message-Id: <1149710535.2481.2.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Subject: Re: FTP: Cannot change to write-only directory X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 20:00:44 -0000 Hi, On Tue, 2006-06-06 at 22:14 +0200, Leonard den Ottolander wrote: > https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=194277 False alarm. The issue seems to be recently fixed. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From nadvornik@suse.cz Thu Jun 8 06:02:54 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B12DC3B0619 for ; Thu, 8 Jun 2006 06:02:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24798-05 for ; Thu, 8 Jun 2006 06:02:53 -0400 (EDT) Received: from mail.suse.cz (styx.suse.cz [82.119.242.94]) by menubar.gnome.org (Postfix) with ESMTP id 3DE9D3B0CF2 for ; Thu, 8 Jun 2006 06:02:53 -0400 (EDT) Received: from sphinx.suse.cz (sphinx.suse.cz [10.20.1.5]) by mail.suse.cz (SUSE CR ESMTP Mailer) with ESMTP id A084A62853A; Thu, 8 Jun 2006 12:02:51 +0200 (CEST) From: Vladimir Nadvornik To: Jindrich Novy Date: Thu, 8 Jun 2006 12:02:50 +0200 User-Agent: KMail/1.9.1 References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> In-Reply-To: <1149685131.2269.10.camel@localhost.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606081202.51002.nadvornik@suse.cz> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jun 2006 10:02:54 -0000 > > > > In non-UTF-8 mode slang2 behaves a bit different than the patched slang1. > > As a result, mc does work with 8bit encodings, like 8859-2 or KOI8. > > The attached patch fixes the SLsmg_write_nwchars() function to 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. > > Thanks for the patch. The last hunk didn't apply as there's no > view_add_character used in editdraw.c. > My patch is based on mc-4.6.1 The 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 From ptsekov@gmx.net Thu Jun 8 09:10:57 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 080363B0433 for ; Thu, 8 Jun 2006 09:10:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06345-06 for ; Thu, 8 Jun 2006 09:10:53 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.20]) by menubar.gnome.org (Postfix) with SMTP id 765B03B04FD for ; Thu, 8 Jun 2006 09:10:21 -0400 (EDT) Received: (qmail invoked by alias); 08 Jun 2006 13:10:20 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp029) with SMTP; 08 Jun 2006 15:10:20 +0200 X-Authenticated: #14308112 Date: Thu, 8 Jun 2006 16:09:10 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: MC dev Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.477 tagged_above=-999 required=2 tests=[AWL=-0.012, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.477 X-Spam-Level: Subject: Directory Tree feature X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jun 2006 13:10:57 -0000 Hello, I find the directory tree feature quite obscure and unusable ? Does anyone here feel the same way ? If this is the case I'd like that we discuss how it could be improved. There are several things which I think make the directory tree totally unusable: * When I invoke the "Directory Tree" command and the mode is "Static" I cannot easily navigate trough the directory structure. I'd expect that I'd be able to move around the tree using the arrow keys but it doesn't work this way. To enter a directory and list it contents I have to press Enter which closes the dialog box i.e. I cannot use left and right to navigate the subdirectories. So if I start from the root directory and want to go to /home/ptsekov it will take to invocations of the Directory Tree dialog to do so. * The directory tree remebers its state and if I navigate the directory hierarchy more and more directories become expanded I cannot close them - this makes the tree pretty hard to navigate. * The dynamic mode - I fee totally confused when using it. To some degree it is improvement over the static mode in terms of navigation but all the tree changes just confuse me too much and at some point I just become lost. * The whole dynamic/static mode thing is just too much - I'd prefer a single user friendly mode. From egmont@uhulinux.hu Thu Jun 8 14:13:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6ACE53B0F8F for ; Thu, 8 Jun 2006 14:13:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27351-01 for ; Thu, 8 Jun 2006 14:13:11 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id 7EF663B0F64 for ; Thu, 8 Jun 2006 14:13:11 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id 0A26A7DCA; Thu, 8 Jun 2006 20:13:10 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20809-07; Thu, 8 Jun 2006 20:13:03 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id 735F27EB8; Thu, 8 Jun 2006 20:13:03 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Thu, 8 Jun 2006 20:13:02 +0200 Date: Thu, 8 Jun 2006 20:13:02 +0200 From: Egmont Koblinger To: Vladimir Nadvornik Message-ID: <20060608181302.GA6254@cs.bme.hu> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200606081202.51002.nadvornik@suse.cz> User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.583 tagged_above=-999 required=2 tests=[AWL=0.016, BAYES_00=-2.599] X-Spam-Score: -2.583 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jun 2006 18:13:16 -0000 Hi Vladimir (and others), I've just upgraded to slang-2 in our distro and also updated the UTF-8 patches to mc-4.6.1 (based on SUSE's version). It was easier than I thought it would be. I was glad to see that you had applied plenty of my patches in SUSE (those named "00-*"). Please take a look at here again: https://svn.uhulinux.hu/packages/dev/mc/patches/ 00-77 had to be updated to slang-2. When a user searches for a file by ^S, panel->search_buffer is filled up individually with every single byte pressed. Hence it often contains partial UTF-8 string. Displaying it just happened to work with slang-1, but slang-2 prints the partial UTF-8 as "" or similar. As a result, the cyan box overflows: if you search in the left panel for an existing accented filename, two cyan blocks appear in the right panel. The updated patch first finds the longest valid UTF-8 prefix of the string and only prints that part. You might find 00-79 useful too, it fixes an off-by-one bug introduced by the UTF-8 patches that causes Alt+Backspace to behave differently (erase a whole word and one more character, usually a space) than in bash or in vanilla mc (erase only the word). bye, Egmont From INVALID.NOREPLY@gnu.org Sun Jun 11 04:01:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 29B6A3B0547 for ; Sun, 11 Jun 2006 04:01:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15580-01 for ; Sun, 11 Jun 2006 04:01:14 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 97FD53B00D8 for ; Sun, 11 Jun 2006 04:01:14 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FpKr9-0004mk-00; Sun, 11 Jun 2006 03:59:35 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 11 Jun 2006 10:59:34 +0300 Date: Sun, 11 Jun 2006 10:59:34 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Opera/8.51 (Windows ME; U; en) X-Apparently-From: 87.126.52.205 (Savane authenticated user ptsekov) Message-Id: <20060611-105933.sv36205.22318@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> In-Reply-To: <20060607-212128.sv26390.34564@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 08:01:16 -0000 Follow-up Comment #8, bug #16762 (project mc): Ping! _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Sun Jun 11 07:25:25 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1E7143B062A for ; Sun, 11 Jun 2006 07:25:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06549-04 for ; Sun, 11 Jun 2006 07:25:20 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id B6AB13B0635 for ; Sun, 11 Jun 2006 07:25:19 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id C683B4023; Sun, 11 Jun 2006 13:07:10 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id heh8eT5zCX4n; Sun, 11 Jun 2006 13:07:05 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 258354021; Sun, 11 Jun 2006 13:07:05 +0200 (CEST) From: Leonard den Ottolander To: Jindrich Novy In-Reply-To: <20060608181302.GA6254@cs.bme.hu> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> Content-Type: text/plain Date: Sun, 11 Jun 2006 13:08:46 +0200 Message-Id: <1150024126.2478.14.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 11:25:25 -0000 Hello Jindrich, On Thu, 2006-06-08 at 20:13 +0200, Egmont Koblinger wrote: > I've just upgraded to slang-2 in our distro and also updated the UTF-8 > patches to mc-4.6.1 (based on SUSE's version). It was easier than I thought > it would be. I was glad to see that you had applied plenty of my patches in > SUSE (those named "00-*"). Please take a look at here again: > > https://svn.uhulinux.hu/packages/dev/mc/patches/ Please take notice. It would probably be good if Vladimir and you could keep your UTF-8 patch sets in sync. It just seems wasted effort to do this in two places independently. Some inter-distro communication is not going to hurt. Maybe these patches should be centrally maintained in a contribs tree. Egmonts patches are worth looking at. I've blatantly ignored pushing them to you as I'd expected you to integrate them over time. I've probably not made it clear enough to you before that these patches are worth considering. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Sun Jun 11 08:00:33 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 70A6A3B057C for ; Sun, 11 Jun 2006 08:00:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08035-03 for ; Sun, 11 Jun 2006 08:00:30 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id DDF813B062F for ; Sun, 11 Jun 2006 08:00:29 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 6293F4023 for ; Sun, 11 Jun 2006 13:25:30 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id eSqOxfQ23SQl for ; Sun, 11 Jun 2006 13:25:27 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 44AED4021 for ; Sun, 11 Jun 2006 13:25:27 +0200 (CEST) From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Sun, 11 Jun 2006 13:27:09 +0200 Message-Id: <1150025229.2478.17.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Subject: [Fwd: [Bug 194777] New: mc hangs when copying file with no read perm over fish] X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 12:00:33 -0000 Hi, I can confirm this behaviour. Probably fish needs to test permissions before attempting to copy. Leonard. -------- Forwarded Message -------- From: bugzilla at redhat.com To: leonard-rh-bugzilla at den.ottolander.nl Subject: [Bug 194777] New: mc hangs when copying file with no read perm over fish Date: Sat, 10 Jun 2006 09:19:40 -0400 Please do not reply directly to this email. All additional comments should be made in the comments box of this bug report. https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=194777 Summary: mc hangs when copying file with no read perm over fish Product: Fedora Core Version: fc5 Platform: All OS/Version: Linux Status: NEW Severity: normal Priority: normal Component: mc AssignedTo: jnovy at redhat.com ReportedBy: stsp at aknet.ru CC: leonard-rh-bugzilla at den.ottolander.nl Description of problem: If I try to copy the file over the ssh connection (fish) for which there is no read permission, mc hangs. Version-Release number of selected component (if applicable): mc-4.6.1a-13.FC5 How reproducible: always Steps to Reproduce: 1. Make an ssh connection with mc, log is as user, not root 2. Try to read/copy some file, like /etc/shadow, for which you don't have the read permission. Actual results: mc hangs Expected results: mc displays the "permission denied" error. -- mount -t life -o ro /dev/dna /genetic/research From ptsekov@gmx.net Sun Jun 11 11:31:14 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72D893B0138 for ; Sun, 11 Jun 2006 11:31:14 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16333-02 for ; Sun, 11 Jun 2006 11:31:13 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 5CB043B008B for ; Sun, 11 Jun 2006 11:31:12 -0400 (EDT) Received: (qmail invoked by alias); 11 Jun 2006 15:30:20 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp010) with SMTP; 11 Jun 2006 17:30:20 +0200 X-Authenticated: #14308112 Date: Sun, 11 Jun 2006 18:29:08 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander In-Reply-To: <1150025229.2478.17.camel@athlon> Message-ID: References: <1150025229.2478.17.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development Subject: Re: [Fwd: [Bug 194777] New: mc hangs when copying file with no read perm over fish] X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 15:31:14 -0000 On Sun, 11 Jun 2006, Leonard den Ottolander wrote: > I can confirm this behaviour. Probably fish needs to test permissions > before attempting to copy. > > Leonard. I have a patch for this issue for quite some time. It just needs to be polished a bit. I'll try to post it in the next few days. From egmont@uhulinux.hu Mon Jun 12 04:31:53 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 301113B000D for ; Mon, 12 Jun 2006 04:31:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26350-02 for ; Mon, 12 Jun 2006 04:31:47 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id 5A2A33B00A7 for ; Mon, 12 Jun 2006 04:31:46 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id 9D1A07EE0 for ; Mon, 12 Jun 2006 10:30:48 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02190-01 for ; Mon, 12 Jun 2006 10:30:45 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id 5387C7EBA for ; Mon, 12 Jun 2006 10:30:45 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Mon, 12 Jun 2006 10:30:45 +0200 Date: Mon, 12 Jun 2006 10:30:45 +0200 From: Egmont Koblinger To: mc-devel@gnome.org Message-ID: <20060612083045.GA22700@cs.bme.hu> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1150024126.2478.14.camel@athlon> User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.585 tagged_above=-999 required=2 tests=[AWL=0.014, BAYES_00=-2.599] X-Spam-Score: -2.585 X-Spam-Level: Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 08:31:53 -0000 On Sun, Jun 11, 2006 at 01:08:46PM +0200, Leonard den Ottolander wrote: > Egmonts patches are worth looking at. I've blatantly ignored pushing > them to you as I'd expected you to integrate them over time. I've > probably not made it clear enough to you before that these patches are > worth considering. These patches hardly change nowadays. They only change if: - I face a new utf8 related bug in mc. It didn't happen in the last ~1.5 years (except for the off-by-one fix), and I always use the same small subset of mc's features, so it's unlikely for this to happen. - Something else (e.g. slang) is upgraded which introduces or triggers new bugs. - mc is upgraded in our distro. This will only happen if a new mainstream version is released. I don't want to bother with CVS snapshots, 4.6.1 is working reasonably well. After all, I'll try not to forget to mention it here if anything noticable changes in these patches. It's much simpler this way than for anyone to keep track of our changes. Finally, note that while these patches fix many issues with single-width UTF-8 characters, they may be really buggy with double-width (CJK) or zero-width Unicode characters, since I often assume that each Unicode entity occupies one column. I know it is totally false and I already knew it when I created these patches, but doing these things right would have required much more efforts. -- Egmont From jnovy@redhat.com Mon Jun 12 05:17:34 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 096F03B008D for ; Mon, 12 Jun 2006 05:17:34 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27996-03 for ; Mon, 12 Jun 2006 05:17:31 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 7F7723B0061 for ; Mon, 12 Jun 2006 05:17:30 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5C8tU0S007886; Mon, 12 Jun 2006 04:55:30 -0400 Received: from pobox.stuttgart.redhat.com (pobox.stuttgart.redhat.com [172.16.2.10]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5C8tTsF004862; Mon, 12 Jun 2006 04:55:29 -0400 Received: from vpn-4-29.stuttgart.redhat.com (vpn-4-29.stuttgart.redhat.com [10.32.4.29]) by pobox.stuttgart.redhat.com (8.12.8/8.12.8) with ESMTP id k5C8tSY5007832; Mon, 12 Jun 2006 10:55:28 +0200 From: Jindrich Novy To: Leonard den Ottolander In-Reply-To: <1150024126.2478.14.camel@athlon> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> Content-Type: text/plain Date: Mon, 12 Jun 2006 10:55:28 +0200 Message-Id: <1150102528.2242.17.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.5) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.601 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.601 X-Spam-Level: Cc: MC development Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 09:17:34 -0000 Hi Leonard, On Sun, 2006-06-11 at 13:08 +0200, Leonard den Ottolander wrote: > On Thu, 2006-06-08 at 20:13 +0200, Egmont Koblinger wrote: > > I've just upgraded to slang-2 in our distro and also updated the UTF-8 > > patches to mc-4.6.1 (based on SUSE's version). It was easier than I thought > > it would be. I was glad to see that you had applied plenty of my patches in > > SUSE (those named "00-*"). Please take a look at here again: > > > > https://svn.uhulinux.hu/packages/dev/mc/patches/ 00-74, 00-78 patches were helpful for me as well, thanks Egmont. They are now applied in devel FC. > Please take notice. It would probably be good if Vladimir and you could > keep your UTF-8 patch sets in sync. It just seems wasted effort to do > this in two places independently. Some inter-distro communication is not > going to hurt. Maybe these patches should be centrally maintained in a > contribs tree. The problem is that Vladimir and me use different versions of mc. My approach is to be more in sync with upstream so that there's a more recent CVS snapshot in Fedora for now because of a very rare release period of mc. This helps me to do only minimal changes when I want to send a patch to upstream. SuSE uses the stable mc-4.6.1, AFAIK. +1 for storing useful patches in contrib. It would be quite hard to keep them in sync with devel mc though. Cheers, Jindrich From leonard@den.ottolander.nl Mon Jun 12 07:54:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1D6DA3B00D4 for ; Mon, 12 Jun 2006 07:54:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00587-06 for ; Mon, 12 Jun 2006 07:54:25 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 349833B0078 for ; Mon, 12 Jun 2006 07:54:25 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 22A984023 for ; Mon, 12 Jun 2006 13:52:59 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id H8DbT-enwgdG for ; Mon, 12 Jun 2006 13:52:53 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 8D9594021 for ; Mon, 12 Jun 2006 13:52:53 +0200 (CEST) From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Mon, 12 Jun 2006 13:54:35 +0200 Message-Id: <1150113275.2520.29.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Subject: Dialogs, hotkeys and capitalization X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 11:54:27 -0000 Hi, This is a bit of a minor issue, but Pavel Tsekov brought it up when I changed a duplicate hotkey in the sort order dialog. I changed &Change time to C&Hange time thus capitalizing the hotkey, but also leaving the first letter of the phrase capitalized. Although the double capitalization might look somewhat odd it emphasizes the hotkey and I think the capitalized first letter looks nicer. The most widely used approach in the menus and dialogs is to only capitalize the (highlighted) hotkey ("c&Hange time"), but this is implemented inconsistently, which is most obvious in the Command menu. I have no idea how we should reach an agreement on this (vote??), but I think it's a good idea to decide on a format so the menus and dialogs will look more consistent. The three options I think are most appropriate are: No added capitalization of hotkeys ("C&hange time") (no emphasis apart from colourization) Add capitalization to hotkeys ("C&Hange time") (double capitalization) Only capitalize the hotkey ("c&Hange time") (missing capitals in first position) Opinions? Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Mon Jun 12 08:32:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6B86F3B00D8 for ; Mon, 12 Jun 2006 08:32:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02401-03 for ; Mon, 12 Jun 2006 08:32:43 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 58F0F3B00A7 for ; Mon, 12 Jun 2006 08:32:43 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fpla1-0003ZJ-00; Mon, 12 Jun 2006 08:31:41 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Mon, 12 Jun 2006 12:31:41 +0000 Date: Mon, 12 Jun 2006 12:31:41 +0000 To: Nick Shmyrev , mc-devel@gnome.org From: Nick Shmyrev X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; ru; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 195.98.173.2 (Savane authenticated user nshmyrev) Message-Id: <20060612-123140.sv25628.90055@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.814 tagged_above=-999 required=2 tests=[AWL=-0.772, BAYES_00=-2.599, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001] X-Spam-Score: -1.814 X-Spam-Level: Cc: Subject: [bug #16829] Crash when formatting paragraph X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 12:32:44 -0000 URL: Summary: Crash when formatting paragraph Project: GNU Midnight Commander Submitted by: nshmyrev Submitted on: Понедельник 12.06.2006 at 12:31 Category: None Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Hurd _______________________________________________________ Details: With Fedora's 5 stock mc-4.6.1a rpm I have a following crash when formatting paragraph. (gdb) bt #0 next_word_start (t=0x81fc138, q=Variable "q" is not available. ) at wordproc.c:227语言编写的插件,Gimp 还能够使用脚本。大部分现有的脚本都是用 S#1 0x080a975d in format_paragraph (edit=0x81ea598, force=1) at wordproc.c:280 #2 0x0809a035 in edit_execute_cmd (edit=0x81ea598, command=416, char_for_insertion=4294967295) at edit.c:2666 #3 0x0809aa05 in edit_execute_key_command (edit=0x81ea598, command=416, char_for_insertion=4294967295) at edit.c:2250 #4 0x080a268b in edit_callback (w=0x81ea598, msg=WIDGET_KEY, parm=8304) at editwidget.c:362 4Замена 5Копия 6Перемес7Поиск 8Удалить9МенюMC 10Вы #5 0x080599fb in dlg_process_event (h=0x81ef0a8, key=112, event=0xbff84d70) at dialog.c:659 #6 0x08059d0d in run_dlg (h=0x81ef0a8) at dialog.c:785 #7 0x080a22a4 in edit_file (_file=0x81b0850 "concepts.xml.save", line=0) at editwidget.c:225 #8 0x0806fe7b in do_nc () at main.c:1757 #9 0x08070855 in main (argc=Cannot access memory at address 0x0 ) at main.c:2293 #10 0x00af77e4 in __libc_start_main () from /lib/libc.so.6 #11 0x0804d481 in _start () _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Mon Jun 12 08:57:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5781E3B0083 for ; Mon, 12 Jun 2006 08:57:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03281-01 for ; Mon, 12 Jun 2006 08:57:43 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 553873B00E5 for ; Mon, 12 Jun 2006 08:57:43 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FplbW-0003hK-00; Mon, 12 Jun 2006 08:33:14 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Mon, 12 Jun 2006 12:33:14 +0000 Date: Mon, 12 Jun 2006 12:33:14 +0000 To: Nick Shmyrev , mc-devel@gnome.org From: Nick Shmyrev X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; ru; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 195.98.173.2 (Savane authenticated user nshmyrev) Message-Id: <20060612-123314.sv25628.73913@savannah.gnu.org> References: <20060612-123140.sv25628.90055@savannah.gnu.org> In-Reply-To: <20060612-123140.sv25628.90055@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.809 tagged_above=-999 required=2 tests=[AWL=-0.767, BAYES_00=-2.599, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001] X-Spam-Score: -1.809 X-Spam-Level: Cc: Subject: [bug #16829] Crash when formatting paragraph X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 12:57:44 -0000 Follow-up Comment #1, bug #16829 (project mc): The file that causes the crash. You have to put cursor on last in the text (line 2303 for example) and press Alt+p. _______________________________________________________ Additional Item Attachment: File name: translate-concepts.xml.patch.gz Size:9 KB _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From proski@gnu.org Mon Jun 12 16:15:26 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6B0E03B0100 for ; Mon, 12 Jun 2006 16:15:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28924-05 for ; Mon, 12 Jun 2006 16:15:25 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id 3CD0A3B00C8 for ; Mon, 12 Jun 2006 16:15:25 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1Fpsnb-0000tI-Ch for mc-devel@gnome.org; Mon, 12 Jun 2006 16:14:11 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FpsnX-0003XN-9f; Mon, 12 Jun 2006 16:14:07 -0400 From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150113275.2520.29.camel@athlon> References: <1150113275.2520.29.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Mon, 12 Jun 2006 16:14:07 -0400 Message-Id: <1150143247.4297.5.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC development Subject: Re: Dialogs, hotkeys and capitalization X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 20:15:26 -0000 Hello! On Mon, 2006-06-12 at 13:54 +0200, Leonard den Ottolander wrote: > The three options I think are most appropriate are: > No added capitalization of hotkeys ("C&hange time") (no emphasis apart > from colourization) > Add capitalization to hotkeys ("C&Hange time") (double capitalization) > Only capitalize the hotkey ("c&Hange time") (missing capitals in first > position) I suggest no capitalization. I believe capitalization was used when many terminals were unable to highlight or underline the hotkey, or mc couldn't use those capabilities. This is no longer true. -- Regards, Pavel Roskin From proski@gnu.org Mon Jun 12 18:09:18 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 85D7A3B00F5 for ; Mon, 12 Jun 2006 18:09:18 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00701-05 for ; Mon, 12 Jun 2006 18:09:16 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id AA3743B0010 for ; Mon, 12 Jun 2006 18:09:16 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FpuZr-0004zP-6S for mc-devel@gnome.org; Mon, 12 Jun 2006 18:08:07 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FpuZm-0003cR-GF; Mon, 12 Jun 2006 18:08:02 -0400 From: Pavel Roskin To: Jindrich Novy In-Reply-To: <1150102528.2242.17.camel@localhost.localdomain> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <1150102528.2242.17.camel@localhost.localdomain> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Mon, 12 Jun 2006 18:08:02 -0400 Message-Id: <1150150082.4297.34.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC development , Leonard den Ottolander Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 22:09:18 -0000 Hello! On Mon, 2006-06-12 at 10:55 +0200, Jindrich Novy wrote: > The problem is that Vladimir and me use different versions of mc. My > approach is to be more in sync with upstream so that there's a more > recent CVS snapshot in Fedora for now because of a very rare release > period of mc. This helps me to do only minimal changes when I want to > send a patch to upstream. SuSE uses the stable mc-4.6.1, AFAIK. > > +1 for storing useful patches in contrib. It would be quite hard to keep > them in sync with devel mc though. When I see a proposal to store any patches under version control, it makes me think that the version control system is inadequate. The natural representation of patches is differences between file revisions under version control. I think CVS it too centralized for the decentralized development that is done on mc. It's not possible for a non-committing user to create a separate branch. Recent years gave us several decentralized version control systems, such as Arch, BitKeeper, Monotone, Git and Mercurial. Their common feature is that every user has the complete repository of the project. Changes are exchanged between repositories in the form of changesets, either by e-mail or using other protocols. Branching is more advanced, merging is easier, and the merge history is recorded. Most importantly, branching is local. It should be possible to use an old version as the base and then rebase the patches while keeping track of what was actually merged. I think Git would be a great choice because it's free, actively developed and used by major projects such as Linux kernel and Wine. It also has a frontend called StGIT, which allows refining patches before submitting them to other developers. Git repositories work over http. Perhaps ibiblio.com would be persuaded to host the main repository. -- Regards, Pavel Roskin From INVALID.NOREPLY@gnu.org Tue Jun 13 04:02:49 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B0DCD3B00C9 for ; Tue, 13 Jun 2006 04:02:49 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15320-10 for ; Tue, 13 Jun 2006 04:02:46 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id A32783B00F5 for ; Tue, 13 Jun 2006 04:02:46 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq3U0-0002RY-00; Tue, 13 Jun 2006 03:38:40 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 07:38:39 +0000 Date: Tue, 13 Jun 2006 07:38:39 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060613-073838.sv47365.94722@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> In-Reply-To: <20060611-105933.sv36205.22318@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.504 tagged_above=-999 required=2 tests=[AWL=0.019, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.504 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 08:02:49 -0000 Follow-up Comment #9, bug #16762 (project mc): $ patch < getmntinfo-fix.patch can't find file to patch at input line 4 Perhaps you should have used the -p or --strip option? The text leading up to this was: -------------------------- |diff -Nrup mc-orig/acinclude.m4 mc/acinclude.m4 |--- mc-orig/acinclude.m4 2006-06-07 17:37:13.000000000 +0300 |+++ mc/acinclude.m4 2006-06-07 17:22:02.000000000 +0300 -------------------------- File to patch: _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 04:57:28 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3F2D43B00F5 for ; Tue, 13 Jun 2006 04:57:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17194-01 for ; Tue, 13 Jun 2006 04:57:27 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id DE4663B00AF for ; Tue, 13 Jun 2006 04:57:26 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq4MQ-000486-00; Tue, 13 Jun 2006 04:34:54 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 11:34:53 +0300 Date: Tue, 13 Jun 2006 11:34:53 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-113453.sv36205.79891@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> In-Reply-To: <20060613-073838.sv47365.94722@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.504 tagged_above=-999 required=2 tests=[AWL=0.019, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.504 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 08:57:28 -0000 Follow-up Comment #10, bug #16762 (project mc): 1) Enter in your MC directory 2) patch -p1 < getmntinfo-fix.patch _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 06:56:01 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AA2D43B000A for ; Tue, 13 Jun 2006 06:56:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20528-03 for ; Tue, 13 Jun 2006 06:56:00 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 813563B000C for ; Tue, 13 Jun 2006 06:56:00 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq6YC-0000LL-00; Tue, 13 Jun 2006 06:55:12 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 10:55:11 +0000 Date: Tue, 13 Jun 2006 10:55:11 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060613-105511.sv47365.57796@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> In-Reply-To: <20060613-113453.sv36205.79891@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.057, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 10:56:01 -0000 Follow-up Comment #11, bug #16762 (project mc): MOUNT_UFS still undeclared :( But I can fix this by undefining HAVE_INFOMOUNT_LIST in config.h before compiling. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 07:18:04 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A48483B000A for ; Tue, 13 Jun 2006 07:18:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20874-09 for ; Tue, 13 Jun 2006 07:18:03 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 207263B000C for ; Tue, 13 Jun 2006 07:18:03 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq6sz-0000bV-00; Tue, 13 Jun 2006 07:16:41 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 14:16:41 +0300 Date: Tue, 13 Jun 2006 14:16:41 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-141640.sv36205.93232@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> In-Reply-To: <20060613-105511.sv47365.57796@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.057, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 11:18:04 -0000 Follow-up Comment #12, bug #16762 (project mc): With the patch I've submitted the code which uses MOUNT_UFS shouldn't be compiled in. Can you attach your config.log to this bug report, please ? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 07:38:03 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D4A503B008F for ; Tue, 13 Jun 2006 07:38:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21364-10 for ; Tue, 13 Jun 2006 07:38:02 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 9E3293B000C for ; Tue, 13 Jun 2006 07:38:02 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq6tQ-0000c6-00; Tue, 13 Jun 2006 07:17:08 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 14:17:08 +0300 Date: Tue, 13 Jun 2006 14:17:08 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-141708.sv36205.99230@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> In-Reply-To: <20060613-141640.sv36205.93232@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.057, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 11:38:04 -0000 Follow-up Comment #13, bug #16762 (project mc): .. and your config.h too. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 08:55:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 611923B0114 for ; Tue, 13 Jun 2006 08:55:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23753-04 for ; Tue, 13 Jun 2006 08:55:40 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id DC9023B000A for ; Tue, 13 Jun 2006 08:55:39 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq8Q2-0004jO-00; Tue, 13 Jun 2006 08:54:54 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 14:54:54 +0200 Date: Tue, 13 Jun 2006 14:54:54 +0200 To: Nick Shmyrev , Leonard den Ottolander , mc-devel@gnome.org From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060613-145453.sv26390.71423@savannah.gnu.org> References: <20060612-123140.sv25628.90055@savannah.gnu.org> <20060612-123314.sv25628.73913@savannah.gnu.org> In-Reply-To: <20060612-123314.sv25628.73913@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.544 tagged_above=-999 required=2 tests=[AWL=0.056, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.544 X-Spam-Level: Cc: Subject: [bug #16829] Crash when formatting paragraph X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 12:55:44 -0000 Update of bug #16829 (project mc): Category: None => Editor Status: None => Invalid Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #2: This is an issue with the utf8ization of mcedit. The UTF-8 patches are no part of the official mc. Please report your issue in Red Hats bugzilla (http://bugzilla.redhat.com). _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 09:25:37 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7D6C53B00AF for ; Tue, 13 Jun 2006 09:25:37 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24676-05 for ; Tue, 13 Jun 2006 09:25:35 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 01AE43B000A for ; Tue, 13 Jun 2006 09:25:34 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq8sK-0005Bc-00; Tue, 13 Jun 2006 09:24:08 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 16:24:08 +0300 Date: Tue, 13 Jun 2006 16:24:08 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-162408.sv36205.31330@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> In-Reply-To: <20060613-141708.sv36205.99230@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.544 tagged_above=-999 required=2 tests=[AWL=0.056, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.544 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 13:25:37 -0000 Follow-up Comment #14, bug #16762 (project mc): My bad. I see what's wrong - will fix it and attach a new patch. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 09:51:11 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9CA853B00E5 for ; Tue, 13 Jun 2006 09:51:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24974-08 for ; Tue, 13 Jun 2006 09:51:09 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 0FF243B008F for ; Tue, 13 Jun 2006 09:51:09 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq9Hc-0006nV-00; Tue, 13 Jun 2006 09:50:16 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 16:50:16 +0300 Date: Tue, 13 Jun 2006 16:50:16 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-165016.sv36205.72008@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> In-Reply-To: <20060613-162408.sv36205.31330@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.506 tagged_above=-999 required=2 tests=[AWL=0.017, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.506 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 13:51:11 -0000 Follow-up Comment #15, bug #16762 (project mc): Ok. Attaching the new patch. Before applying this one - apply the old patch with -R: patch -p1 -R < getmntinfo-fix.patch and then apply the new one: patch -p1 < getmntinfo-fix-1.patch _______________________________________________________ Additional Item Attachment: File name: getmntinfo-fix-1.patch Size:3 KB _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 10:01:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 85AA33B00AF for ; Tue, 13 Jun 2006 10:01:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25629-05 for ; Tue, 13 Jun 2006 10:01:20 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 53A013B008F for ; Tue, 13 Jun 2006 10:01:20 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq9Qw-0006uf-00; Tue, 13 Jun 2006 09:59:54 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 13:59:54 +0000 Date: Tue, 13 Jun 2006 13:59:54 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060613-135953.sv47365.47118@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> In-Reply-To: <20060613-165016.sv36205.72008@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.506 tagged_above=-999 required=2 tests=[AWL=0.017, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.506 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 14:01:21 -0000 Follow-up Comment #16, bug #16762 (project mc): With getmntinfo-fix-1.patch compilation process finished successfully. 10x! Will you include this patch into source tree? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 10:22:29 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 912F33B00A5 for ; Tue, 13 Jun 2006 10:22:29 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26410-04 for ; Tue, 13 Jun 2006 10:22:26 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 45D1D3B00E5 for ; Tue, 13 Jun 2006 10:22:26 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq9lr-0007EE-00; Tue, 13 Jun 2006 10:21:31 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 17:21:31 +0300 Date: Tue, 13 Jun 2006 17:21:31 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-172130.sv36205.64124@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> In-Reply-To: <20060613-135953.sv47365.47118@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.544 tagged_above=-999 required=2 tests=[AWL=0.056, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.544 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 14:22:29 -0000 Follow-up Comment #17, bug #16762 (project mc): Yes. I just wanted to hear from Rolland Illig before commiting. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From kloczek@rudy.mif.pg.gda.pl Tue Jun 13 13:16:01 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 86F433B0438 for ; Tue, 13 Jun 2006 13:16:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31972-09 for ; Tue, 13 Jun 2006 13:16:00 -0400 (EDT) Received: from rudy.mif.pg.gda.pl (rudy.mif.pg.gda.pl [153.19.42.16]) by menubar.gnome.org (Postfix) with ESMTP id 26D0B3B0407 for ; Tue, 13 Jun 2006 13:16:00 -0400 (EDT) X-Virus-Scanned: at rudy.mif.pg.gda.pl Received: by rudy.mif.pg.gda.pl (plum, from userid 2732) id A1066233D5; Tue, 13 Jun 2006 19:14:41 +0200 (CEST) Date: Tue, 13 Jun 2006 19:14:41 +0200 (CEST) From: =?ISO-8859-2?Q?Tomasz_K=B3oczko?= To: Egmont Koblinger In-Reply-To: <20060612083045.GA22700@cs.bme.hu> Message-ID: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <20060612083045.GA22700@cs.bme.hu> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-59671104-1150218881=:31655" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.541 tagged_above=-999 required=2 tests=[AWL=-0.017, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_SG=0.077] X-Spam-Score: -2.541 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 17:16:01 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --0-59671104-1150218881=:31655 Content-Type: TEXT/PLAIN; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 8BIT On Mon, 12 Jun 2006, Egmont Koblinger wrote: [..] BTW: anyone is working on UFT-8 support for ncurses(w) backend ? BTW2: few monts ago was on this list about converting in source tree alle po/*.po files to UTF-8 .. still not done. Any reasons ? It can be performed by: [mc]$ for i in po/*.po; do msgconv -t UTF-8 $i -o $i; done and commiting changes. kloczek -- ----------------------------------------------------------- *Ludzie nie mają problemów, tylko sobie sami je stwarzają* ----------------------------------------------------------- Tomasz Kłoczko, sys adm @zie.pg.gda.pl|*e-mail: kloczek@rudy.mif.pg.gda.pl* --0-59671104-1150218881=:31655-- From egmont@uhulinux.hu Wed Jun 14 09:17:10 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1073B3B0406 for ; Wed, 14 Jun 2006 09:17:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31014-06 for ; Wed, 14 Jun 2006 09:17:08 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id 32A1D3B0081 for ; Wed, 14 Jun 2006 09:17:08 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id F42397F9A; Wed, 14 Jun 2006 15:16:24 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26249-05; Wed, 14 Jun 2006 15:16:21 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id BB0867E02; Wed, 14 Jun 2006 15:16:21 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Wed, 14 Jun 2006 15:16:21 +0200 Date: Wed, 14 Jun 2006 15:16:21 +0200 From: Egmont Koblinger To: Tomasz =?iso-8859-2?Q?K=B3oczko?= Subject: Re: utf8 patch for mc, slang 2 version Message-ID: <20060614131621.GE29389@cs.bme.hu> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <20060612083045.GA22700@cs.bme.hu> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.548 tagged_above=-999 required=2 tests=[AWL=-0.026, BAYES_00=-2.599, TW_SG=0.077] X-Spam-Score: -2.548 X-Spam-Level: Cc: mc-devel@gnome.org X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 13:17:10 -0000 On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz Kłoczko wrote: > BTW: anyone is working on UFT-8 support for ncurses(w) backend ? I don't think so, and I don't think it is worth it. Maintaining two backends IMHO just causes headaches while it doesn't make mc better. I still can't see why developers do not decide which one to use and drop the other one. With Unicode support maintaining the two will be much harder since AFAIK slang works with UTF-8 while ncurses uses UCS-4. Hence a completely different patch would be required for the two cases. > BTW2: few monts ago was on this list about converting in source > tree alle po/*.po files to UTF-8 .. still not done. Any reasons ? > > It can be performed by: > > [mc]$ for i in po/*.po; do msgconv -t UTF-8 $i -o $i; done Are you sure it is safe to use the same output file? I'd rather use a tmp file. It depends on msgconv's internal implementation, but I can easily imagine a situation where the writing file descriptor's position exceeds the reading position (since UTF-8 is longer than the 8-bit version) and this may cause invalid results. Due to buffered read and write requests I guess it needs larger files (with approx. 4096 -- 8192 accented characters) for this bug to occur. I'm not sure, though, just reasonably paranoid :-) -- Egmont From nadvornik@suse.cz Wed Jun 14 10:23:23 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3724F3B041B for ; Wed, 14 Jun 2006 10:23:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03772-05 for ; Wed, 14 Jun 2006 10:23:09 -0400 (EDT) Received: from mail.suse.cz (styx.suse.cz [82.119.242.94]) by menubar.gnome.org (Postfix) with ESMTP id A494D3B0570 for ; Wed, 14 Jun 2006 10:23:09 -0400 (EDT) Received: from sphinx.suse.cz (sphinx.suse.cz [10.20.1.5]) by mail.suse.cz (SUSE CR ESMTP Mailer) with ESMTP id 9710C628067 for ; Wed, 14 Jun 2006 16:22:51 +0200 (CEST) From: Vladimir Nadvornik To: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version Date: Wed, 14 Jun 2006 16:22:49 +0200 User-Agent: KMail/1.9.1 References: <200509191419.01556.arekm@pld-linux.org> <1150024126.2478.14.camel@athlon> <1150102528.2242.17.camel@localhost.localdomain> In-Reply-To: <1150102528.2242.17.camel@localhost.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606141622.50049.nadvornik@suse.cz> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 14:23:23 -0000 On Monday 12 June 2006 10:55, Jindrich Novy wrote: > > > Please take notice. It would probably be good if Vladimir and you could > > keep your UTF-8 patch sets in sync. It just seems wasted effort to do > > this in two places independently. Some inter-distro communication is not > > going to hurt. Maybe these patches should be centrally maintained in a > > contribs tree. > > The problem is that Vladimir and me use different versions of mc. My > approach is to be more in sync with upstream so that there's a more > recent CVS snapshot in Fedora for now because of a very rare release > period of mc. This helps me to do only minimal changes when I want to > send a patch to upstream. SuSE uses the stable mc-4.6.1, AFAIK. > It would not be a problem to have a more recent mc snapshot in openSUSE Factory. Even better, if it is synced 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 From bartoldeman@users.sourceforge.net Wed Jun 14 17:52:11 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CBF073B0433 for ; Wed, 14 Jun 2006 17:52:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31602-06 for ; Wed, 14 Jun 2006 17:52:08 -0400 (EDT) Received: from mail2.woosh.co.nz (webmail.woosh.co.nz [202.74.207.2]) by menubar.gnome.org (Postfix) with ESMTP id 9AAF83B041B for ; Wed, 14 Jun 2006 17:52:07 -0400 (EDT) Received: from enm-bo-lt.localnet (202-74-212-77.ue.woosh.co.nz [202.74.212.77]) by woosh.co.nz (Rockliffe SMTPRA 6.1.22) with ESMTP id ; Thu, 15 Jun 2006 09:51:23 +1200 Received: from enbeo (helo=localhost) by enm-bo-lt.localnet with local-esmtp (Exim 4.62) (envelope-from ) id 1FqdB0-000326-Ma; Thu, 15 Jun 2006 09:45:26 +1200 Date: Thu, 15 Jun 2006 09:45:26 +1200 (NZST) From: Bart Oldeman X-X-Sender: enbeo@enm-bo-lt.localnet To: Egmont Koblinger Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <20060614131621.GE29389@cs.bme.hu> Message-ID: References: <200509191419.01556.arekm@pld-linux.org><200606071218.32428.nadv ornik@suse.cz><1149685131.2269.10.camel@localhost.localdomain><200606081202 .51002.nadvornik@suse.cz><20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon><20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: Cc: mc-devel@gnome.org, Tomasz =?iso-8859-2?Q?K=B3oczko?= X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 21:52:12 -0000 On Wed, 14 Jun 2006, Egmont Koblinger wrote: > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > I don't think so, and I don't think it is worth it. Maintaining two backends > IMHO just causes headaches while it doesn't make mc better. I still can't > see why developers do not decide which one to use and drop the other one. Maybe compatibility with older UN*Xes with curses but no slang? > With Unicode support maintaining the two will be much harder since AFAIK > slang works with UTF-8 while ncurses uses UCS-4. Hence a completely > different patch would be required for the two cases. Last time I played with it ncursesw (but not plain ncurses) handled UTF-8 just fine. e.g. you can pass a UTF-8 encoded string to addstr(), and provided the locale is set correctly, ncursesw will compute its width correctly. It is *also* possible to use addwstr() with UCS-4, but not compulsory. Bart From proski@gnu.org Wed Jun 14 18:12:25 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 13D573B0145 for ; Wed, 14 Jun 2006 18:12:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08738-03 for ; Wed, 14 Jun 2006 18:12:23 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id 67B653B00D6 for ; Wed, 14 Jun 2006 18:12:23 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FqdaT-0000qj-3U for mc-devel@gnome.org; Wed, 14 Jun 2006 18:11:45 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FqdaL-00062m-Lp; Wed, 14 Jun 2006 18:11:37 -0400 Subject: Re: utf8 patch for mc, slang 2 version From: Pavel Roskin To: Bart Oldeman In-Reply-To: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadv ornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202 .51002.nadvornik@suse.cz><20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon><20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Wed, 14 Jun 2006 18:11:37 -0400 Message-Id: <1150323097.23144.2.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: Egmont Koblinger , mc-devel@gnome.org, Tomasz =?iso-8859-2?Q?K=B3oczko?= X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 22:12:25 -0000 Hello! On Thu, 2006-06-15 at 09:45 +1200, Bart Oldeman wrote: > On Wed, 14 Jun 2006, Egmont Koblinger wrote: > > > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: > > > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > > > I don't think so, and I don't think it is worth it. Maintaining two backends > > IMHO just causes headaches while it doesn't make mc better. I still can't > > see why developers do not decide which one to use and drop the other one. > > Maybe compatibility with older UN*Xes with curses but no slang? It's a bogus argument. UNIX curses was removed long ago, and it had never worked well anyway. I don't remember a single person complaining. Besides, S-Lang is included with mc and it's quite portable. -- Regards, Pavel Roskin From ossi@kde.org Wed Jun 14 18:23:28 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 168E43B000E for ; Wed, 14 Jun 2006 18:23:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00410-04 for ; Wed, 14 Jun 2006 18:23:24 -0400 (EDT) Received: from ktown.kde.org (ktown.kde.org [131.246.120.250]) by menubar.gnome.org (Postfix) with SMTP id 194493B0099 for ; Wed, 14 Jun 2006 18:23:24 -0400 (EDT) Received: (qmail 6653 invoked from network); 14 Jun 2006 22:22:34 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 14 Jun 2006 22:22:34 -0000 Received: from ossi by ugly.local with local (masqmail 0.2.21) id 1Fqdkw-2f5-00 for ; Thu, 15 Jun 2006 00:22:34 +0200 Date: Thu, 15 Jun 2006 00:22:34 +0200 From: Oswald Buddenhagen To: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version Message-ID: <20060614222234.GA9122@ugly.local> Mail-Followup-To: mc-devel@gnome.org References: <20060614131621.GE29389@cs.bme.hu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.585 tagged_above=-999 required=2 tests=[AWL=0.014, BAYES_00=-2.599] X-Spam-Score: -2.585 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 22:23:28 -0000 On Thu, Jun 15, 2006 at 09:45:26AM +1200, Bart Oldeman wrote: > On Wed, 14 Jun 2006, Egmont Koblinger wrote: > > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > > > I don't think so, and I don't think it is worth it. Maintaining two backends > > IMHO just causes headaches while it doesn't make mc better. I still can't > > see why developers do not decide which one to use and drop the other one. > > Maybe compatibility with older UN*Xes with curses but no slang? > that doesn't sound too convincing. > > With Unicode support maintaining the two will be much harder since AFAIK > > slang works with UTF-8 while ncurses uses UCS-4. Hence a completely > > different patch would be required for the two cases. > > Last time I played with it ncursesw (but not plain ncurses) handled UTF-8 > just fine. > good. i'm all for killing slang support. why that one? libslang is twice as big as libncursesw. probably because it was meant to be much more than just a display lib. -- Hi! I'm a .signature virus! Copy me into your ~/.signature, please! -- Chaos, panic, and disorder - my work here is done. From kloczek@rudy.mif.pg.gda.pl Thu Jun 15 00:21:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2CCA43B002B for ; Thu, 15 Jun 2006 00:21:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10727-08 for ; Thu, 15 Jun 2006 00:21:33 -0400 (EDT) Received: from rudy.mif.pg.gda.pl (rudy.mif.pg.gda.pl [153.19.42.16]) by menubar.gnome.org (Postfix) with ESMTP id D320E3B00B5 for ; Thu, 15 Jun 2006 00:21:32 -0400 (EDT) X-Virus-Scanned: at rudy.mif.pg.gda.pl Received: by rudy.mif.pg.gda.pl (plum, from userid 2732) id DE57C233C2; Thu, 15 Jun 2006 06:20:42 +0200 (CEST) Date: Thu, 15 Jun 2006 06:20:42 +0200 (CEST) From: =?ISO-8859-2?Q?Tomasz_K=B3oczko?= To: Egmont Koblinger Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <20060614131621.GE29389@cs.bme.hu> Message-ID: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-590361060-1150344476=:31655" Content-ID: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.54 tagged_above=-999 required=2 tests=[AWL=-0.016, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_SG=0.077] X-Spam-Score: -2.54 X-Spam-Level: Cc: mc-devel@gnome.org X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 04:21:36 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --0-590361060-1150344476=:31655 Content-Type: TEXT/PLAIN; CHARSET=ISO-8859-2; FORMAT=flowed Content-Transfer-Encoding: 8BIT Content-ID: On Wed, 14 Jun 2006, Egmont Koblinger wrote: > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz Kłoczko wrote: > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > I don't think so, and I don't think it is worth it. Maintaining two backends > IMHO just causes headaches while it doesn't make mc better. I still can't > see why developers do not decide which one to use and drop the other one. If someone want ask which backend is more importand and will be better keep as major IMO answer tn this kind question is very simple: # rpm -q --whatrequires libslang.so.2 | grep -v slang | wc -l 4 # rpm -q --whatrequires libncurses.so.5 libncursesw.so.5 | grep -v ncurses |wc -l 55 Above slang list contain only packages which do not have now ncurses backend and are not importand as mc :) Also current state have other sick points on Linux. In case using mc with gpm it causes runtime linking with more than one term toolkit library (slang or internal slang and ncurses used by libgpm). [..] >> [mc]$ for i in po/*.po; do msgconv -t UTF-8 $i -o $i; done > > Are you sure it is safe to use the same output file? I'd rather use a tmp > file. I'm sure. msgconv cumulates output in memory and aftewr finish conversion writes output to file name passed in -o parameter in single step. kloczek -- ----------------------------------------------------------- *Ludzie nie mają problemów, tylko sobie sami je stwarzają* ----------------------------------------------------------- Tomasz Kłoczko, sys adm @zie.pg.gda.pl|*e-mail: kloczek@rudy.mif.pg.gda.pl* --0-590361060-1150344476=:31655-- From ptsekov@gmx.net Thu Jun 15 00:35:07 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 45C963B0324 for ; Thu, 15 Jun 2006 00:35:07 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11437-01 for ; Thu, 15 Jun 2006 00:34:58 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 4B94E3B0184 for ; Thu, 15 Jun 2006 00:34:56 -0400 (EDT) Received: (qmail invoked by alias); 15 Jun 2006 04:34:23 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp036) with SMTP; 15 Jun 2006 06:34:23 +0200 X-Authenticated: #14308112 Date: Thu, 15 Jun 2006 07:33:12 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole Cc: MC dev Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <1150323097.23144.2.camel@dv> Message-ID: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadv ornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202 .51002.nadvornik@suse.cz><20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon><20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> <1150323097.23144.2.camel@dv> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.546 tagged_above=-999 required=2 tests=[AWL=0.054, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.546 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 04:35:07 -0000 On Wed, 14 Jun 2006, Pavel Roskin wrote: > Hello! > > On Thu, 2006-06-15 at 09:45 +1200, Bart Oldeman wrote: >> On Wed, 14 Jun 2006, Egmont Koblinger wrote: >> >>> On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: >>> >>>> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? >>> >>> I don't think so, and I don't think it is worth it. Maintaining two backends >>> IMHO just causes headaches while it doesn't make mc better. I still can't >>> see why developers do not decide which one to use and drop the other one. >> >> Maybe compatibility with older UN*Xes with curses but no slang? > > It's a bogus argument. UNIX curses was removed long ago, and it had > never worked well anyway. I don't remember a single person complaining. > Besides, S-Lang is included with mc and it's quite portable. We had that argument once already. curses is not that old and it is standard. And it has unicode support. Its just a matter of using it. From egmont@uhulinux.hu Thu Jun 15 06:33:33 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5B1473B0440 for ; Thu, 15 Jun 2006 06:33:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30159-02 for ; Thu, 15 Jun 2006 06:33:28 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id 78AEC3B03EB for ; Thu, 15 Jun 2006 06:33:28 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id DC5CA8036 for ; Thu, 15 Jun 2006 12:33:20 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12764-06 for ; Thu, 15 Jun 2006 12:33:17 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id 281557FF0 for ; Thu, 15 Jun 2006 12:33:17 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Thu, 15 Jun 2006 12:33:14 +0200 Date: Thu, 15 Jun 2006 12:33:14 +0200 From: Egmont Koblinger To: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version Message-ID: <20060615103314.GA14523@cs.bme.hu> References: <20060614131621.GE29389@cs.bme.hu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.584 tagged_above=-999 required=2 tests=[AWL=0.015, BAYES_00=-2.599] X-Spam-Score: -2.584 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 10:33:36 -0000 Hi, > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > > > I don't think so, and I don't think it is worth it. Maintaining two backends > > IMHO just causes headaches while it doesn't make mc better. I still can't > > see why developers do not decide which one to use and drop the other one. > > Maybe compatibility with older UN*Xes with curses but no slang? Asking these sysadmins to install slang (or compile mc to its bundled slang) is IMHO easier than to do double work in mc. > Last time I played with it ncursesw (but not plain ncurses) handled UTF-8 > just fine. > > e.g. you can pass a UTF-8 encoded string to addstr(), and provided the > locale is set correctly, ncursesw will compute its width correctly. It is > *also* possible to use addwstr() with UCS-4, but not compulsory. It's clear now, thanks! Anyway, there are plenty of apps (e.g. vim, joe) that perfectly support UTF-8 and use ncurses (not the w version). I wonder how it is possible... -- Egmont From INVALID.NOREPLY@gnu.org Wed Jun 14 15:03:01 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D204A3B0190 for ; Wed, 14 Jun 2006 15:03:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15652-08 for ; Wed, 14 Jun 2006 15:03:00 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3A7723B00C7 for ; Wed, 14 Jun 2006 15:03:00 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fqad3-0005RO-00; Wed, 14 Jun 2006 15:02:13 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 14 Jun 2006 19:02:13 +0000 Date: Wed, 14 Jun 2006 19:02:13 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: purportex X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.0.4) Gecko/20060508 Firefox/1.5.0.4 X-Apparently-From: 81.31.39.117 (Savane authenticated user purportex) Message-Id: <20060614-190212.sv50251.32349@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> In-Reply-To: <20060613-172130.sv36205.64124@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 08:58:02 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 19:03:02 -0000 Follow-up Comment #18, bug #16762 (project mc): Hi, when I compiling current cvs version, I have such problem.. $ ./autogen ; make ... mountlist.c: In function 'fstype_to_string': mountlist.c:176: error: 'MOUNT_UFS' undeclared (first use in this function) mountlist.c:176: error: (Each undeclared identifier is reported only once mountlist.c:176: error: for each function it appears in.) mountlist.c:178: error: 'MOUNT_NFS' undeclared (first use in this function) $ uname -a Darwin MacBookPro.local 8.6.1 Darwin Kernel Version 8.6.1: Tue Mar 7 16:55:45 PST 2006; root:xnu-792.9.22.obj~1/RELEASE_I386 i386 i386 _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 15 00:37:55 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E3FD13B00CA for ; Thu, 15 Jun 2006 00:37:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11437-06 for ; Thu, 15 Jun 2006 00:37:53 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id A34FB3B00BA for ; Thu, 15 Jun 2006 00:37:53 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FqjbZ-0008C3-00; Thu, 15 Jun 2006 00:37:17 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 15 Jun 2006 07:37:16 +0300 Date: Thu, 15 Jun 2006 07:37:16 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Opera/8.51 (Windows ME; U; en) X-Apparently-From: 87.126.52.205 (Savane authenticated user ptsekov) Message-Id: <20060615-073715.sv36205.52677@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> In-Reply-To: <20060614-190212.sv50251.32349@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 08:58:02 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 04:37:55 -0000 Follow-up Comment #19, bug #16762 (project mc): purportex, have you tried to fix the problem by applying the suggested patch ? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From bartoldeman@users.sourceforge.net Thu Jun 15 17:15:00 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 891BA3B01FF for ; Thu, 15 Jun 2006 17:15:00 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01106-01 for ; Thu, 15 Jun 2006 17:14:59 -0400 (EDT) Received: from mail2.woosh.co.nz (webmail.woosh.co.nz [202.74.207.2]) by menubar.gnome.org (Postfix) with ESMTP id 5C5023B00DD for ; Thu, 15 Jun 2006 17:14:58 -0400 (EDT) Received: from enm-bo-lt.localnet (202-74-216-93.ue.woosh.co.nz [202.74.216.93]) by woosh.co.nz (Rockliffe SMTPRA 6.1.22) with ESMTP id for ; Fri, 16 Jun 2006 09:14:10 +1200 Received: from enbeo (helo=localhost) by enm-bo-lt.localnet with local-esmtp (Exim 4.62) (envelope-from ) id 1Fqz4P-0003ds-F4 for mc-devel@gnome.org; Fri, 16 Jun 2006 09:08:05 +1200 Date: Fri, 16 Jun 2006 09:08:04 +1200 (NZST) From: Bart Oldeman X-X-Sender: enbeo@enm-bo-lt.localnet To: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <20060615103314.GA14523@cs.bme.hu> Message-ID: References: <20060614131621.GE29389@cs.bme.hu> <20060615103314.GA14523@cs.bme.hu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 21:15:00 -0000 On Thu, 15 Jun 2006, Egmont Koblinger wrote: > Anyway, there are plenty of apps (e.g. vim, joe) that perfectly support > UTF-8 and use ncurses (not the w version). I wonder how it is possible... Because they only use the terminfo (low-level) parts of ncurses, see "man 3ncurses terminfo". Those parts do not care about UTF-8. MC uses a higher level part of ncurses (the display routines), but restricted to "stdscr". There's an even higher level part of ncurses that supports managing (overlapping) windows, but MC does not use it. SLang (without the newt library) does not support that. So one advantage of using ncurses over slang is that MC could make use of ncurses' windowing code, thereby simplifying its own code. In the way that MC uses SLang and ncurses right now there is very little difference between the two libraries. If you google (groups) for it (Miguel's posts) you'll find that around '95/'96 SLang was preferred over ncurses because it was faster, smaller, and less buggy. But that is no longer the case, there is not much difference now. Bart From leonard@den.ottolander.nl Thu Jun 15 19:55:20 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E1A6F3B00DD for ; Thu, 15 Jun 2006 19:55:19 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06118-09 for ; Thu, 15 Jun 2006 19:55:14 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id AE7613B0011 for ; Thu, 15 Jun 2006 19:55:14 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id ABA4E4023 for ; Fri, 16 Jun 2006 01:54:08 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id Maxju7m2nPkZ for ; Fri, 16 Jun 2006 01:54:02 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id ED55C4021 for ; Fri, 16 Jun 2006 01:54:01 +0200 (CEST) Subject: Symlink attack in file.c? From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Fri, 16 Jun 2006 01:53:56 +0200 Message-Id: <1150415636.2615.24.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 23:55:20 -0000 Hi, Something I came across a couple of times this week, just now in relation to an RFE regarding file permissions on copying fat files in RHs bugzilla (https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=195614): http://cvs.savannah.gnu.org/viewcvs/mc/src/file.c?root=mc&r1=1.28&r2=1.29 A commit by "pavel" (Machek?) who added the remark "FIXME: You have security hole here, btw. Imagine copying to /tmp and symlink attack :-(" Is there anybody that can explain to me what he's concerned about and if that is still an issue? If so this is a rather long standing hole... If not, let's get rid of that warning. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Thu Jun 15 18:27:59 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C15DE3B01A1 for ; Thu, 15 Jun 2006 18:27:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03783-05 for ; Thu, 15 Jun 2006 18:27:58 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 02FDC3B0007 for ; Thu, 15 Jun 2006 18:27:57 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fr0JH-0002nT-00; Thu, 15 Jun 2006 18:27:31 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 15 Jun 2006 22:27:30 +0000 Date: Thu, 15 Jun 2006 22:27:30 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: purportex X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.0.4) Gecko/20060508 Firefox/1.5.0.4 X-Apparently-From: 81.31.39.117 (Savane authenticated user purportex) Message-Id: <20060615-222730.sv50251.60290@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > In-Reply-To: <20060615-073715.sv36205.52677@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.548 tagged_above=-999 required=2 tests=[AWL=0.052, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.548 X-Spam-Level: X-Mailman-Approved-At: Fri, 16 Jun 2006 05:26:01 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 22:28:00 -0000 Follow-up Comment #20, bug #16762 (project mc): Yeah, great! I can't compile it with tuesday's version, but with yesterday's I can, thanx :] _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Fri Jun 16 09:43:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 40C913B0076 for ; Fri, 16 Jun 2006 09:43:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30254-02 for ; Fri, 16 Jun 2006 09:43:41 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3835D3B000B for ; Fri, 16 Jun 2006 09:43:41 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrEbH-0000KJ-00; Fri, 16 Jun 2006 09:43:03 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Fri, 16 Jun 2006 15:43:02 +0200 Date: Fri, 16 Jun 2006 15:43:02 +0200 To: Nick Shmyrev , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16829] Crash when formatting paragraph From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060616-154301.sv26390.44190@savannah.gnu.org> References: <20060612-123140.sv25628.90055@savannah.gnu.org> <20060612-123314.sv25628.73913@savannah.gnu.org> <20060613-145453.sv26390.71423@savannah.gnu.org> In-Reply-To: <20060613-145453.sv26390.71423@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.548 tagged_above=-999 required=2 tests=[AWL=0.052, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.548 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 13:43:44 -0000 Update of bug #16829 (project mc): Status: Invalid => None Assigned to: None => leonardjo Open/Closed: Closed => Open Operating System: GNU/Hurd => All _______________________________________________________ Follow-up Comment #3: Turns out to be a general mc issue after all: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=194562 Jindrich Novy proposes the following solution: https://bugzilla.redhat.com/bugzilla/attachment.cgi?id=131038 _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From jnovy@redhat.com Fri Jun 16 10:44:35 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 295C73B0012 for ; Fri, 16 Jun 2006 10:44:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32146-01 for ; Fri, 16 Jun 2006 10:44:33 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id B4BEC3B000B for ; Fri, 16 Jun 2006 10:44:33 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5GCUXa8011193 for ; Fri, 16 Jun 2006 08:30:33 -0400 Received: from pobox.stuttgart.redhat.com (pobox.stuttgart.redhat.com [172.16.2.10]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5GCUV2V007457 for ; Fri, 16 Jun 2006 08:30:33 -0400 Received: from vpn-4-42.stuttgart.redhat.com (vpn-4-42.stuttgart.redhat.com [10.32.4.42]) by pobox.stuttgart.redhat.com (8.12.8/8.12.8) with ESMTP id k5GCUUTK005881 for ; Fri, 16 Jun 2006 14:30:30 +0200 Subject: [PATCH] segfault fix while formatting paragraph (alt-p) From: Jindrich Novy To: MC Devel Content-Type: multipart/mixed; boundary="=-2pcaSwIryKoHMMTlNz7W" Date: Fri, 16 Jun 2006 14:30:29 +0200 Message-Id: <1150461029.2294.6.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.5) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.601 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.601 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 14:44:35 -0000 --=-2pcaSwIryKoHMMTlNz7W Content-Type: text/plain Content-Transfer-Encoding: 7bit Hi, there's a segfault while formatting a paragraph with alt-p. The next_word_start() in wordproc.c misses the upper boundary check. The attached patch fixes it. References/Reproducer: http://bugzilla.redhat.com/194562 Jindrich --=-2pcaSwIryKoHMMTlNz7W Content-Disposition: attachment; filename=mc-segfault.patch Content-Type: text/x-patch; name=mc-segfault.patch; charset=UTF-8 Content-Transfer-Encoding: 7bit --- mc/edit/wordproc.c.jn 2005-05-27 05:35:12.000000000 +0200 +++ mc/edit/wordproc.c 2006-06-16 14:19:38.000000000 +0200 @@ -198,10 +198,10 @@ } static int -next_word_start (unsigned char *t, int q) +next_word_start (unsigned char *t, int q, int size) { int i; - for (i = q;; i++) { + for (i = q; i < size; i++) { switch (t[i]) { case '\n': return -1; @@ -220,11 +220,11 @@ /* find the start of a word */ static int -word_start (unsigned char *t, int q) +word_start (unsigned char *t, int q, int size) { int i = q; if (t[q] == ' ' || t[q] == '\t') - return next_word_start (t, q); + return next_word_start (t, q, size); for (;;) { int c; if (!i) @@ -253,9 +253,9 @@ break; if (t[q] == '\n') break; - p = word_start (t, q); + p = word_start (t, q, size); if (p == -1) - q = next_word_start (t, q); /* Return the end of the word if the beginning + q = next_word_start (t, q, size); /* Return the end of the word if the beginning of the word is at the beginning of a line (i.e. a very long word) */ else --=-2pcaSwIryKoHMMTlNz7W-- From ptsekov@gmx.net Fri Jun 16 11:59:15 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 55D4D3B0005 for ; Fri, 16 Jun 2006 11:59:15 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01930-07 for ; Fri, 16 Jun 2006 11:59:12 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 01C653B000B for ; Fri, 16 Jun 2006 11:59:11 -0400 (EDT) Received: (qmail invoked by alias); 16 Jun 2006 15:58:30 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp028) with SMTP; 16 Jun 2006 17:58:30 +0200 X-Authenticated: #14308112 Date: Fri, 16 Jun 2006 18:57:18 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: MC dev Subject: Problems with the mailing list ? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.549 tagged_above=-999 required=2 tests=[AWL=-0.943, BAYES_20=-0.74, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -1.549 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 15:59:15 -0000 Hello, Does anyone miss messages from the mc-devel list ? It seems like some messages do not reach the mailing list at all while others don't reach the mailing list subcsribers. Can anyone confirm or deny this ? Thanks! From jnovy@redhat.com Fri Jun 16 12:57:33 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E085B3B033E for ; Fri, 16 Jun 2006 12:57:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06357-08 for ; Fri, 16 Jun 2006 12:57:25 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 838633B050A for ; Fri, 16 Jun 2006 12:55:21 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5GGsPDw006893 for ; Fri, 16 Jun 2006 12:54:25 -0400 Received: from pobox.stuttgart.redhat.com (pobox.stuttgart.redhat.com [172.16.2.10]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5GGsOK7007658 for ; Fri, 16 Jun 2006 12:54:24 -0400 Received: from vpn-4-3.stuttgart.redhat.com (vpn-4-3.stuttgart.redhat.com [10.32.4.3]) by pobox.stuttgart.redhat.com (8.12.8/8.12.8) with ESMTP id k5GGsNTK026570 for ; Fri, 16 Jun 2006 18:54:23 +0200 Subject: better [PATCH] segfault fix while formatting paragraph (alt-p) From: Jindrich Novy To: MC Devel Content-Type: multipart/mixed; boundary="=-3u5KXe3b23+1fD2VbBs1" Date: Fri, 16 Jun 2006 18:54:23 +0200 Message-Id: <1150476863.19192.3.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.5) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.601 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.601 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 16:57:33 -0000 --=-3u5KXe3b23+1fD2VbBs1 Content-Type: text/plain Content-Transfer-Encoding: 7bit Hi, after some refinement I'm sending a better patch that rewrites next_word_start() and fixes the segfault. Jindrich --=-3u5KXe3b23+1fD2VbBs1 Content-Disposition: attachment; filename=mc-segfault.patch Content-Type: text/x-patch; name=mc-segfault.patch; charset=UTF-8 Content-Transfer-Encoding: 7bit --- mc/edit/wordproc.c.jn 2005-05-27 05:35:12.000000000 +0200 +++ mc/edit/wordproc.c 2006-06-16 18:48:42.000000000 +0200 @@ -198,33 +198,25 @@ } static int -next_word_start (unsigned char *t, int q) +next_word_start (unsigned char *t, int q, int size) { int i; - for (i = q;; i++) { - switch (t[i]) { - case '\n': + for (i = q; i X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6AA2F3B04C9 for ; Fri, 16 Jun 2006 16:21:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19862-05 for ; Fri, 16 Jun 2006 16:21:41 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 7B4BC3B03B3 for ; Fri, 16 Jun 2006 16:21:41 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrKoG-0007SH-00; Fri, 16 Jun 2006 16:20:52 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Fri, 16 Jun 2006 22:20:52 +0200 Date: Fri, 16 Jun 2006 22:20:52 +0200 To: Nick Shmyrev , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16829] Crash when formatting paragraph From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060616-222051.sv26390.93326@savannah.gnu.org> References: <20060612-123140.sv25628.90055@savannah.gnu.org> <20060612-123314.sv25628.73913@savannah.gnu.org> <20060613-145453.sv26390.71423@savannah.gnu.org> <20060616-154301.sv26390.44190@savannah.gnu.org> In-Reply-To: <20060616-154301.sv26390.44190@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.55 tagged_above=-999 required=2 tests=[AWL=0.050, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.55 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 20:21:44 -0000 Update of bug #16829 (project mc): Status: None => Fixed Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #4: Pavel Tsekov committed patches to fix this issue. Closing. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From proski@gnu.org Fri Jun 16 23:17:46 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AFAEF3B00C5 for ; Fri, 16 Jun 2006 23:17:46 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00723-05 for ; Fri, 16 Jun 2006 23:17:45 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id B49B33B0137 for ; Fri, 16 Jun 2006 23:17:45 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FrRIQ-0002kb-1Z for mc-devel@gnome.org; Fri, 16 Jun 2006 23:16:26 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FrRIJ-00025L-VK; Fri, 16 Jun 2006 23:16:19 -0400 Subject: Re: Problems with the mailing list ? From: Pavel Roskin To: Pavel Tsekov In-Reply-To: References: Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Fri, 16 Jun 2006 23:16:19 -0400 Message-Id: <1150514179.29738.20.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 03:17:46 -0000 Hello! On Fri, 2006-06-16 at 18:57 +0300, Pavel Tsekov wrote: > Hello, > > Does anyone miss messages from the mc-devel list ? It seems like some > messages do not reach the mailing list at all while others don't reach > the mailing list subcsribers. Can anyone confirm or deny this ? I have sent an email to the GNOME mailing list administrator. I don't see any delays or mail loss, but let's see what would happen to this message. -- Regards, Pavel Roskin From proski@gnu.org Sat Jun 17 00:33:48 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 099BB3B015A for ; Sat, 17 Jun 2006 00:33:48 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01828-10 for ; Sat, 17 Jun 2006 00:33:46 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id 8FE6D3B00CB for ; Sat, 17 Jun 2006 00:33:46 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FrRT5-0002yB-Q6 for mc-devel@gnome.org; Fri, 16 Jun 2006 23:27:27 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FrRT0-00025j-D6; Fri, 16 Jun 2006 23:27:22 -0400 Subject: Re: Symlink attack in file.c? From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150415636.2615.24.camel@athlon> References: <1150415636.2615.24.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Fri, 16 Jun 2006 23:27:22 -0400 Message-Id: <1150514842.29738.32.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 04:33:48 -0000 Hello, Leonard! On Fri, 2006-06-16 at 01:53 +0200, Leonard den Ottolander wrote: > Something I came across a couple of times this week, just now in > relation to an RFE regarding file permissions on copying fat files in > RHs bugzilla > (https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=195614): > http://cvs.savannah.gnu.org/viewcvs/mc/src/file.c?root=mc&r1=1.28&r2=1.29 > > A commit by "pavel" (Machek?) who added the remark > "FIXME: You have security hole here, btw. Imagine copying to /tmp and > symlink attack :-(" > > Is there anybody that can explain to me what he's concerned about and if > that is still an issue? If so this is a rather long standing hole... If > not, let's get rid of that warning. I think it's still an issue. Suppose the target doesn't exist. Then mc decides that it's OK to create the file and creates it. In the meantime, somebody could have created a symlink, so mc truncates the file pointed to by the symlink. It is a hole indeed, but it needs a good timing to be exploited. The attacker should know which file is about to be overwritten and the symlink should be created after mc has checked that the target doesn't exist, but before mc opens the file for writing. Since mc needs to be interactive, it's hard to avoid accessing the target file more than once. The simplest fix would be to use O_EXCL is there was no target file initially. If it fails for the reason that the file exists, there should be a huge warning that no user should be able to ignore. -- Regards, Pavel Roskin From niko_2501@yahoo.co.jp Wed Jun 14 02:52:08 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3C1A73B00A4 for ; Wed, 14 Jun 2006 02:52:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19764-06 for ; Wed, 14 Jun 2006 02:52:07 -0400 (EDT) Received: from web3704.mail.tnz.yahoo.co.jp (web3704.mail.tnz.yahoo.co.jp [203.216.226.186]) by menubar.gnome.org (Postfix) with SMTP id 5C6D73B000C for ; Wed, 14 Jun 2006 02:52:06 -0400 (EDT) Received: (qmail 50747 invoked by uid 60001); 14 Jun 2006 06:50:59 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=yj20050223; d=yahoo.co.jp; h=Message-ID:Received:Date:From:Subject:To:MIME-Version:Content-Type; b=fKfMo4MtcFdN3Oi44x+rUCTdRh804D+vSygKDCE2SnLqfIE0VSjG32inB55EtTlWaKDRmUId67rQxnl7zaB+WjYH1rDaTntn7UzdA4w9jA/f4iZEZp/9P9n5p/oH5Exk ; Message-ID: <20060614065059.50745.qmail@web3704.mail.tnz.yahoo.co.jp> Received: from [220.98.134.208] by web3704.mail.tnz.yahoo.co.jp via HTTP; Wed, 14 Jun 2006 15:50:59 JST Date: Wed, 14 Jun 2006 15:50:59 +0900 (JST) From: sipieter nicolas Subject: mc bugs To: mc-devel@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-2022-jp X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.709 tagged_above=-999 required=2 tests=[BAYES_50=0.001, DNS_FROM_RFC_POST=1.708] X-Spam-Score: 1.709 X-Spam-Level: * X-Mailman-Approved-At: Thu, 15 Jun 2006 08:58:02 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 06:52:08 -0000 hi there, i would like to say i use a lot mc, it's just great. lately i've been updating my website, and i discovered i could edit my document remotely with mc. (cd /#ftp:bleh:pass@some.ftp.net then push f4 key on the document i wish to edit....) it's really nice but, i've been experiencing problems, at least with the ftp server i use: when i edit documents it take some time, enough to be disconnected from ftp server. in that case mc just re-log me in and properly save the document .. so far so good, but, after a while working like that, mc seems unable from time to time to connect to the ftp server. i even get seg fault, or it just fail to connect randomly.. when this happen, the only choice left is to quit mc and re-launch it .. i would say, i spend between 1 and 10minutes on a document, and i do lots of em per day (maybe 100 or 200minimum) and i have to restart mc at least 20times... i would say something is wrong in the ftp code inside mc. thanks for your time and efforts, mc is really cool to use. -------------------------------------- Let's start Yahoo! Auction - Free Campaign Now! http://pr.mail.yahoo.co.jp/auction/ From ptsekov@gmx.net Sat Jun 17 02:59:14 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 42DB83B0744 for ; Sat, 17 Jun 2006 02:59:14 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11195-01 for ; Sat, 17 Jun 2006 02:59:12 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 7F8FF3B0302 for ; Sat, 17 Jun 2006 02:59:11 -0400 (EDT) Received: (qmail invoked by alias); 17 Jun 2006 06:58:19 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp020) with SMTP; 17 Jun 2006 08:58:19 +0200 X-Authenticated: #14308112 Date: Sat, 17 Jun 2006 09:57:06 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Pavel Roskin Subject: Re: Problems with the mailing list ? In-Reply-To: <1150514179.29738.20.camel@dv> Message-ID: References: <1150514179.29738.20.camel@dv> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 06:59:14 -0000 Hello Pavel, On Fri, 16 Jun 2006, Pavel Roskin wrote: > On Fri, 2006-06-16 at 18:57 +0300, Pavel Tsekov wrote: >> Hello, >> >> Does anyone miss messages from the mc-devel list ? It seems like some >> messages do not reach the mailing list at all while others don't reach >> the mailing list subcsribers. Can anyone confirm or deny this ? > > I have sent an email to the GNOME mailing list administrator. > > I don't see any delays or mail loss, but let's see what would happen to > this message. I got a copy of your reply which you CC-ed directly to me. The message destined to the mailing list is still not here though. I see that the mailing list software at mail.gnome.org has been changed - maybe the administrators are doing some kind of upgrade... From leonard@den.ottolander.nl Sat Jun 17 08:47:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C72863B075D for ; Sat, 17 Jun 2006 08:47:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22117-06 for ; Sat, 17 Jun 2006 08:47:18 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id BDA1E3B03E5 for ; Sat, 17 Jun 2006 08:47:18 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 788374023 for ; Sat, 17 Jun 2006 14:46:35 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id tXpVqRKSrvlX for ; Sat, 17 Jun 2006 14:46:33 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id EA55E4021 for ; Sat, 17 Jun 2006 14:46:32 +0200 (CEST) Subject: Re: mc bugs From: Leonard den Ottolander To: MC development In-Reply-To: <20060614065059.50745.qmail@web3704.mail.tnz.yahoo.co.jp> References: <20060614065059.50745.qmail@web3704.mail.tnz.yahoo.co.jp> Content-Type: text/plain Date: Sat, 17 Jun 2006 14:46:33 +0200 Message-Id: <1150548393.2528.12.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 12:47:22 -0000 Hello Sipieter, On Wed, 2006-06-14 at 15:50 +0900, sipieter nicolas wrote: > but, after a while working like that, mc seems unable from > time to time to connect to the ftp server. i even get seg > fault, or it just fail to connect randomly.. Connection failures are not necessarily a problem with mc (not saying the ftp code is perfect though ;) ). However, if you do see segmentation faults please open a bug report at http://savannah.gnu.org/bugs/?group=mc and attach a backtrace. Don't forget to mention system information and please do *not* report bugs against mc versions before 4.6.1. (Use ulimit -c 99999 to enable core dumps on your system. Use gdb and the bt command to get a backtrace.) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Sat Jun 17 08:54:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9B7C83B03E5 for ; Sat, 17 Jun 2006 08:54:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22162-08 for ; Sat, 17 Jun 2006 08:54:26 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 81F0C3B0165 for ; Sat, 17 Jun 2006 08:54:25 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id AAF4B4023; Sat, 17 Jun 2006 14:52:42 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id MvD+6iJVdikt; Sat, 17 Jun 2006 14:52:39 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 205F44021; Sat, 17 Jun 2006 14:52:39 +0200 (CEST) Subject: Bugzilla submits only against >= 4.6.1 From: Leonard den Ottolander To: Pavel Roskin Content-Type: text/plain Date: Sat, 17 Jun 2006 14:52:38 +0200 Message-Id: <1150548759.2528.20.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 12:54:27 -0000 Hello Pavel, IMO it doesn't make much sense for people to be able to report bugs against mc versions older than 4.6.1. I presume most developers will agree with me (please protest if not). Could you please update the Savannah bugs "Release" drop down menu to only contain the following elements? older than 4.6.1 (upgrade first!) 4.6.1 current (CVS or snapshot) I don't think we need the entries "All versions" and "None" but these might be hard coded default entries. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Sat Jun 17 09:02:22 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B72163B0165 for ; Sat, 17 Jun 2006 09:02:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22628-01 for ; Sat, 17 Jun 2006 09:02:21 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3F8343B000D for ; Sat, 17 Jun 2006 09:02:21 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FraOq-0003fU-00; Sat, 17 Jun 2006 08:59:40 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sat, 17 Jun 2006 14:59:39 +0200 Date: Sat, 17 Jun 2006 14:59:39 +0200 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060617-145938.sv26390.15283@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > <20060615-222730.sv50251.60290@savannah.gnu.org> In-Reply-To: <20060615-222730.sv50251.60290@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.552 tagged_above=-999 required=2 tests=[AWL=0.048, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.552 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 09:19:08 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 13:02:22 -0000 Follow-up Comment #21, bug #16762 (project mc): If Roland doesn't feel the need to add any remarks to this approach I suppose this patch can be submitted and this report closed. (I did not verify the code other than glancing over it, but I trust it to be ok ;) .) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sat Jun 17 11:52:37 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id DC5333B00A7 for ; Sat, 17 Jun 2006 11:52:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26174-02 for ; Sat, 17 Jun 2006 11:52:35 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 81C363B000D for ; Sat, 17 Jun 2006 11:52:35 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Frd56-0001Zf-00; Sat, 17 Jun 2006 11:51:28 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sat, 17 Jun 2006 18:51:25 +0300 Date: Sat, 17 Jun 2006 18:51:25 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Opera/8.51 (Windows ME; U; en) X-Apparently-From: 87.126.52.205 (Savane authenticated user ptsekov) Message-Id: <20060617-185125.sv36205.47362@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > <20060615-222730.sv50251.60290@savannah.gnu.org> <20060617-145938.sv26390.15283@savannah.gnu.org> In-Reply-To: <20060617-145938.sv26390.15283@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.514 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TV=0.077] X-Spam-Score: -2.514 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 09:19:08 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 15:52:37 -0000 Update of bug #16762 (project mc): Status: None => Fixed Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #22: I've just commited the patch. It should be OK. It was tested and reported to work by Pavel Shirshov, purportex and yaroslav. If coreutils configure tests are modified to include tests for: 1) the presence of field f_fstypename in struct statvfs 2) the type of the first argument ot getmntinfo() we will remove the homebrew tests from AC_GET_FS_INFO and use those provided by coreutils. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sat Jun 17 15:48:22 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4F4D33B074C for ; Sat, 17 Jun 2006 15:48:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05618-08 for ; Sat, 17 Jun 2006 15:48:21 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id C83323B01A6 for ; Sat, 17 Jun 2006 15:48:20 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrgRN-0008Lb-00; Sat, 17 Jun 2006 15:26:41 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sat, 17 Jun 2006 21:26:40 +0200 Date: Sat, 17 Jun 2006 21:26:40 +0200 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060617-212640.sv26390.65809@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > <20060615-222730.sv50251.60290@savannah.gnu.org> <20060617-145938.sv26390.15283@savannah.gnu.org> <20060617-185125.sv36205.47362@savannah.gnu.org> In-Reply-To: <20060617-185125.sv36205.47362@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.514 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TV=0.077] X-Spam-Score: -2.514 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 09:19:08 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 19:48:22 -0000 Follow-up Comment #23, bug #16762 (project mc): > If coreutils configure tests are modified to include tests for: > > 1) the presence of field f_fstypename in struct statvfs > > 2) the type of the first argument ot getmntinfo() > > we will remove the homebrew tests from AC_GET_FS_INFO and use > those provided by coreutils. Have you contacted the coreutils maintainers about this? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sat Jun 17 15:48:23 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9AC3F3B033C for ; Sat, 17 Jun 2006 15:48:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05730-03 for ; Sat, 17 Jun 2006 15:48:21 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 688E63B02E2 for ; Sat, 17 Jun 2006 15:48:21 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrgZ2-0001NR-00; Sat, 17 Jun 2006 15:34:36 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sat, 17 Jun 2006 22:34:36 +0300 Date: Sat, 17 Jun 2006 22:34:36 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Opera/8.51 (Windows ME; U; en) X-Apparently-From: 87.126.52.205 (Savane authenticated user ptsekov) Message-Id: <20060617-223436.sv36205.11011@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > <20060615-222730.sv50251.60290@savannah.gnu.org> <20060617-145938.sv26390.15283@savannah.gnu.org> <20060617-185125.sv36205.47362@savannah.gnu.org> <20060617-212640.sv26390.65809@savannah.gnu.org> In-Reply-To: <20060617-212640.sv26390.65809@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.552 tagged_above=-999 required=2 tests=[AWL=0.048, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.552 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 09:19:08 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 19:48:23 -0000 Follow-up Comment #24, bug #16762 (project mc): No. Maybe you can drop them a message ? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 10:58:13 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B73953B08E2 for ; Sun, 18 Jun 2006 10:58:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31385-03 for ; Sun, 18 Jun 2006 10:58:12 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id DED683B0078 for ; Sun, 18 Jun 2006 10:58:11 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrygF-0006eY-00; Sun, 18 Jun 2006 10:55:15 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 14:55:15 +0000 Date: Sun, 18 Jun 2006 14:55:15 +0000 To: hajma , mc-devel@gnome.org Subject: [bug #16871] czech translation - description overlaps in the chmod dialogue From: hajma X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16871 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060531 Mandriva/1.5.0.4-1mdv2007.0 (2007.0) Firefox/1.5.0.4 X-Apparently-From: 82.208.37.13 (Savane authenticated user tropikhajma) Message-Id: <20060618-145515.sv50336.41107@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.555 tagged_above=-999 required=2 tests=[AWL=0.045, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.555 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 14:58:13 -0000 URL: Summary: czech translation - description overlaps in the chmod dialogue Project: GNU Midnight Commander Submitted by: tropikhajma Submitted on: Sunday 06/18/2006 at 14:55 Category: None Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Linux _______________________________________________________ Details: see screenshot: ftp://tropikhajma.vserver.cz/bugs/mc.png the first two lines of the "File" rectangle get overwritten by text from the "mode" rectangle. IMHO replacing číslo uĹživatele with UID would make it. Side note: caron is missing above the second e in "změne" and the word "nastavenĂ­" should follow the word "změně" _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 11:22:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 468D33B0CB2 for ; Sun, 18 Jun 2006 11:22:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00310-01 for ; Sun, 18 Jun 2006 11:22:30 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 482A53B0CD0 for ; Sun, 18 Jun 2006 11:22:29 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Frymc-0007y2-00; Sun, 18 Jun 2006 11:01:50 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 15:01:50 +0000 Date: Sun, 18 Jun 2006 15:01:50 +0000 To: Istvan Kispal , mc-devel@gnome.org Subject: [bug #16872] ftpfs lists directories begining with '2006 ' incorrectly From: Istvan Kispal X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16872 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.4) Gecko/20060508 Firefox/1.5.0.4 X-Apparently-From: 81.183.183.18 (Savane authenticated user kispaljr) Message-Id: <20060618-150150.sv50338.79195@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.554 tagged_above=-999 required=2 tests=[AWL=0.046, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.554 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 15:22:36 -0000 URL: Summary: ftpfs lists directories begining with '2006 ' incorrectly Project: GNU Midnight Commander Submitted by: kispaljr Submitted on: Sunday 06/18/2006 at 15:01 Category: VFS Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Linux _______________________________________________________ Details: if a directory on an ftp server has the following subdirectories: 1990 06 19 hetfo 2005 06 23 akarmi 2006 06 23 akarmi then they are listed in mc (console mode version, using ftpfs) incorrectly as: 06 19 hetfo 06 23 akarmi 06 23 akarmi if you type cd 2006 06 19 hetfo manually then you can cd into the subdir, but not with taping enter on the (incorrectly listed) directory name. it's rather uncomofortable. _______________________________________________________ Carbon-Copy List: CC Address | Comment ------------------------------------+----------------------------- kispaljr | _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 11:34:10 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D616B3B0CB1 for ; Sun, 18 Jun 2006 11:34:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00460-07 for ; Sun, 18 Jun 2006 11:34:09 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 78DD03B0C2B for ; Sun, 18 Jun 2006 11:34:09 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrzGu-0005Zh-00; Sun, 18 Jun 2006 11:33:08 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 17:33:07 +0200 Date: Sun, 18 Jun 2006 17:33:07 +0200 To: hajma , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16871] czech translation - description overlaps in the chmod dialogue From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16871 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060618-173307.sv26390.76425@savannah.gnu.org> References: <20060618-145515.sv50336.41107@savannah.gnu.org> In-Reply-To: <20060618-145515.sv50336.41107@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.554 tagged_above=-999 required=2 tests=[AWL=0.046, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.554 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 15:34:11 -0000 Update of bug #16871 (project mc): Status: None => Need Info Assigned to: None => leonardjo _______________________________________________________ Follow-up Comment #1: Please provide a patch. Mske sure you use the correct character set in the file. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 12:09:52 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3B8693B0CD1 for ; Sun, 18 Jun 2006 12:09:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01904-07 for ; Sun, 18 Jun 2006 12:09:51 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 113B43B0CD5 for ; Sun, 18 Jun 2006 12:09:51 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Frzol-0007KE-00; Sun, 18 Jun 2006 12:08:07 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 18:08:05 +0200 Date: Sun, 18 Jun 2006 18:08:05 +0200 To: Istvan Kispal , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16872] ftpfs lists directories begining with '2006 ' incorrectly From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16872 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060618-180805.sv26390.79688@savannah.gnu.org> References: <20060618-150150.sv50338.79195@savannah.gnu.org> In-Reply-To: <20060618-150150.sv50338.79195@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 16:09:52 -0000 Update of bug #16872 (project mc): Status: None => Duplicate Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #1: Be so kind to check for exisiting reports before submitting new reports. This is a duplicate of 10645 and 4327. This issue has been fixed in CVS. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 12:13:08 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8693F3B0CC5 for ; Sun, 18 Jun 2006 12:12:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02109-10 for ; Sun, 18 Jun 2006 12:12:49 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id E95503B0AA3 for ; Sun, 18 Jun 2006 12:12:48 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Frzpt-0007L8-00; Sun, 18 Jun 2006 12:09:17 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 16:09:17 +0000 Date: Sun, 18 Jun 2006 16:09:17 +0000 To: hajma , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16871] czech translation - description overlaps in the chmod dialogue From: hajma X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16871 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060531 Mandriva/1.5.0.4-1mdv2007.0 (2007.0) Firefox/1.5.0.4 X-Apparently-From: 82.208.37.13 (Savane authenticated user tropikhajma) Message-Id: <20060618-160916.sv50336.88803@savannah.gnu.org> References: <20060618-145515.sv50336.41107@savannah.gnu.org> <20060618-173307.sv26390.76425@savannah.gnu.org> In-Reply-To: <20060618-173307.sv26390.76425@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 16:13:09 -0000 Follow-up Comment #2, bug #16871 (project mc): I found out that the bug was fixed in revision 1.67 of cs.po, it just didn't make it into mc-4.6.1 in Mandriva Cooker I'm using. as regards the side note I attach corrected cs.po that fixes it. _______________________________________________________ Additional Item Attachment: File name: cs.po Size:73 KB cs.po _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 12:13:09 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 82DF63B0C4F for ; Sun, 18 Jun 2006 12:12:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01996-09 for ; Sun, 18 Jun 2006 12:12:49 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 690A33B0C35 for ; Sun, 18 Jun 2006 12:12:48 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrzsE-0007MO-00; Sun, 18 Jun 2006 12:11:42 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 18:11:42 +0200 Date: Sun, 18 Jun 2006 18:11:42 +0200 To: hajma , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16871] czech translation - description overlaps in the chmod dialogue From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16871 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060618-181142.sv26390.23707@savannah.gnu.org> References: <20060618-145515.sv50336.41107@savannah.gnu.org> <20060618-173307.sv26390.76425@savannah.gnu.org> <20060618-160916.sv50336.88803@savannah.gnu.org> In-Reply-To: <20060618-160916.sv50336.88803@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 16:13:09 -0000 Update of bug #16871 (project mc): Status: Need Info => Invalid Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #3: Ok. Closing "invalid" as the issue didn't exist anymore when the issue was reported. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From proski@gnu.org Mon Jun 19 17:50:46 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 51A1F3B05A8 for ; Mon, 19 Jun 2006 17:50:46 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02882-07 for ; Mon, 19 Jun 2006 17:50:45 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id A34B13B03BA for ; Mon, 19 Jun 2006 17:50:44 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FsRcm-00020v-BN for mc-devel@gnome.org; Mon, 19 Jun 2006 17:49:36 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FsRcg-0003zX-7s; Mon, 19 Jun 2006 17:49:30 -0400 Subject: Re: Bugzilla submits only against >= 4.6.1 From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150548759.2528.20.camel@athlon> References: <1150548759.2528.20.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Mon, 19 Jun 2006 17:49:30 -0400 Message-Id: <1150753770.12841.19.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 21:50:46 -0000 Hello! On Sat, 2006-06-17 at 14:52 +0200, Leonard den Ottolander wrote: > Hello Pavel, > > IMO it doesn't make much sense for people to be able to report bugs > against mc versions older than 4.6.1. I presume most developers will > agree with me (please protest if not). > > Could you please update the Savannah bugs "Release" drop down menu to > only contain the following elements? > > older than 4.6.1 (upgrade first!) > 4.6.1 > current (CVS or snapshot) I think that would be solving a social problem using technical means. If you check Red Hat's Bugzilla you'll see that it's possible to enter a bug e.g. for Fedora Core 1. Some bugs can be more long-lived than you may think. I believe the quality of the bug report should be judged not only by the version. Bugs against old versions should be discouraged, but not outright forbidden. Besides, there is only one bug filed for "older than 4.5.55". > I don't think we need the entries "All versions" and "None" but these > might be hard coded default entries. "None" is hardcoded, "All versions" is not. I think "all version" is a valid value in some cases. -- Regards, Pavel Roskin From leonard@den.ottolander.nl Mon Jun 19 19:04:28 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5EEEE3B0A79 for ; Mon, 19 Jun 2006 19:04:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06061-07 for ; Mon, 19 Jun 2006 19:04:27 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id DF06B3B0335 for ; Mon, 19 Jun 2006 19:04:26 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id BFCB94023; Tue, 20 Jun 2006 01:02:55 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 752vGUiocrMK; Tue, 20 Jun 2006 01:02:50 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 25F3E4021; Tue, 20 Jun 2006 01:02:50 +0200 (CEST) Subject: Re: Bugzilla submits only against >= 4.6.1 From: Leonard den Ottolander To: Pavel Roskin In-Reply-To: <1150753770.12841.19.camel@dv> References: <1150548759.2528.20.camel@athlon> <1150753770.12841.19.camel@dv> Content-Type: text/plain Date: Tue, 20 Jun 2006 01:02:49 +0200 Message-Id: <1150758169.2571.7.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 23:04:28 -0000 Hello Pavel, On Mon, 2006-06-19 at 17:49 -0400, Pavel Roskin wrote: > Some bugs can be more long-lived than you may think. I believe the > quality of the bug report should be judged not only by the version. > Bugs against old versions should be discouraged, but not outright > forbidden. > > Besides, there is only one bug filed for "older than 4.5.55". I didn't mean old bugs should be removed from the bug list. I just feel it doesn't make much sense for people to file new bugs against anything older than 4.6.1. There is no added value to let people add bugs against older versions. If the issue no longer exists it's just wasted time, and if it does still exist the reporter should make the effort to verify the issue indeed still exists in 4.6.1 or later. > "None" is hardcoded, "All versions" is not. I think "all version" is a > valid value in some cases. Yes, but only if you keep all the other versions as valid options. If we'd drop anything but latest stable and CVS there's not much use leaving "all versions" around. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From proski@gnu.org Tue Jun 20 14:08:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1A9943B02AC for ; Tue, 20 Jun 2006 14:08:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02911-01 for ; Tue, 20 Jun 2006 14:08:18 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id 921CB3B000C for ; Tue, 20 Jun 2006 14:08:18 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1Fskdk-00031J-4G for mc-devel@gnome.org; Tue, 20 Jun 2006 14:08:01 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FskdX-0005Ef-Ch; Tue, 20 Jun 2006 14:07:39 -0400 Subject: Re: Bugzilla submits only against >= 4.6.1 From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150758169.2571.7.camel@athlon> References: <1150548759.2528.20.camel@athlon> <1150753770.12841.19.camel@dv> <1150758169.2571.7.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 20 Jun 2006 14:07:39 -0400 Message-Id: <1150826859.1969.7.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.595 tagged_above=-999 required=2 tests=[AWL=0.005, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.595 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 18:08:27 -0000 On Tue, 2006-06-20 at 01:02 +0200, Leonard den Ottolander wrote: > I didn't mean old bugs should be removed from the bug list. I just feel > it doesn't make much sense for people to file new bugs against anything > older than 4.6.1. > > There is no added value to let people add bugs against older versions. Anyone who takes time to file a new bug is adding some value to the project. It may be more or less valuable, but we shouldn't give the impression that we don't want to hear about the problem. > If the issue no longer exists it's just wasted time, and if it does > still exist the reporter should make the effort to verify the issue > indeed still exists in 4.6.1 or later. Ideally, yes. But not everyone can do it. It's better to have 10 reports for already fixed bugs and one for a bug that still exists than to have neither of them. If you have an example where time was wasted as a result of the availability of the older versions in the bug tracker, I may reconsider. > > "None" is hardcoded, "All versions" is not. I think "all version" is a > > valid value in some cases. > > Yes, but only if you keep all the other versions as valid options. If > we'd drop anything but latest stable and CVS there's not much use > leaving "all versions" around. I generally assume the bug reporters to be intelligent persons who can make there own judgment how to file a bug. -- Regards, Pavel Roskin From ptsekov@gmx.net Tue Jun 20 14:28:43 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 409073B08C6 for ; Tue, 20 Jun 2006 14:28:43 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04451-05 for ; Tue, 20 Jun 2006 14:28:38 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 586743B06E3 for ; Tue, 20 Jun 2006 14:28:33 -0400 (EDT) Received: (qmail invoked by alias); 20 Jun 2006 18:28:32 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp034) with SMTP; 20 Jun 2006 20:28:32 +0200 X-Authenticated: #14308112 Date: Tue, 20 Jun 2006 21:27:19 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: "Stan. S. Krupoderov" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <20060620060123.GD99474@inode.hvn> Message-ID: References: <20060620060123.GD99474@inode.hvn> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: mc@gnome.org, MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 18:28:43 -0000 Hello Stan, On Tue, 20 Jun 2006, Stan. S. Krupoderov wrote: > This Midnight Commander build is modified to use Colorer-take5 as a syntax highlighting engine in standard mc editor. > http://colorer.sourceforge.net/mc.html That's just great! > Maybe it can be useful for someone. Any opinions? Sure it will! Some time ago I tried myself to get colorer to work with MC. Unfortunately due to time constraints I abandoned the idea - I just didn't have enough time to study how colorer works properly. I've downloaded MC-Colorer's source tarball today and I took a look at the code. Though I haven't studied the code in depth I can say that it seems pretty high quality. After all it is written by the colorer's author himself - who could understand better how colorer works :) I'll try to contact him and see what he thinks about integrating his work into MC's source tree. It would be also very useful if we could use the work done on MC-Colorer to get syntax highlighting in the viewer too - this was one of the tasks I was trying to achieve when I started investigating colorer. Thanks! From irusskih@gmail.com Wed Jun 21 08:50:40 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6E7343B0F9B for ; Wed, 21 Jun 2006 08:50:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05808-06 for ; Wed, 21 Jun 2006 08:50:35 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.198]) by menubar.gnome.org (Postfix) with ESMTP id 0490A3B0FE0 for ; Wed, 21 Jun 2006 08:50:33 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id s1so170251nze for ; Wed, 21 Jun 2006 05:50:33 -0700 (PDT) Received: by 10.37.13.61 with SMTP id q61mr445036nzi; Wed, 21 Jun 2006 05:50:33 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Wed, 21 Jun 2006 05:50:33 -0700 (PDT) Message-ID: <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> Date: Wed, 21 Jun 2006 16:50:33 +0400 From: "Igor Russkih" To: mc@gnome.org, mc-devel@gnome.org Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_Part_1775_638873.1150894233203" References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.225 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, HTML_30_40=0.374, HTML_MESSAGE=0.001, SPF_PASS=-0.001] X-Spam-Score: -2.225 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 12:50:40 -0000 ------=_Part_1775_638873.1150894233203 Content-Type: multipart/alternative; boundary="----=_Part_1776_131830.1150894233203" ------=_Part_1776_131830.1150894233203 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi Pavel, Hi All, I'll be really glad to help to improve MC in this area, I've downloaded MC-Colorer's source tarball today and I took > a look at the code. Though I haven't studied the code in depth > I can say that it seems pretty high quality. After all it is > written by the colorer's author himself - who could understand > better how colorer works :) I'll try to contact him and see what > he thinks about integrating his work into MC's source tree. It If somebody is interested, attached is a full diff on MC tree to support colorer. For now I'm using sf.net SVN repository to store modified MC code. Information on how to access it: http://sourceforge.net/svn/?group_id=34855 There are also some questions which I believe should be discussed. At first there is one C++ file in this mod (to link with c++ colorer code). As far as I understand MC uses C only. Is this a problem? Another is that this mod dynamically links to the libcolorer - this means that to use it, colorer library should be installed in system. This introduces MC additional dependency. would be also very useful if we could use the work done on MC-Colorer > to get syntax highlighting in the viewer too - this was one of the > tasks I was trying to achieve when I started investigating colorer. > That's a good idea, I'll try investigate it in near time. -- Igor ------=_Part_1776_131830.1150894233203 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline
Hi Pavel, Hi All,

I'll be really glad to help to improve MC in this area,

I've downloaded MC-Colorer's source tarball today and I took
a look at the code. Though I haven't studied the code in depth
I can say that it seems pretty high quality. After all it is
written by the colorer's author himself - who could understand
better how colorer works :) I'll try to contact him and see what
he thinks about integrating his work into MC's source tree. It

If somebody is interested, attached is a full diff on MC tree to support colorer.

For now I'm using sf.net SVN repository to store modified MC code.
Information on how to access it: http://sourceforge.net/svn/?group_id=34855

There are also some questions which I believe should be discussed.
At first there is one C++ file in this mod (to link with c++ colorer code). As far as I understand MC uses C only. Is this a problem?
Another is that this mod dynamically links to the libcolorer - this means that to use it, colorer library should be installed in system. This introduces MC additional dependency.

would be also very useful if we could use the work done on MC-Colorer
to get syntax highlighting in the viewer too - this was one of the
tasks I was trying to achieve when I started investigating colorer.

That's a good idea, I'll try investigate it in near time.

--
  Igor


------=_Part_1776_131830.1150894233203-- ------=_Part_1775_638873.1150894233203 Content-Type: application/x-gzip; name=mccolorer.diff.gz Content-Transfer-Encoding: base64 X-Attachment-Id: f_eopn4lol Content-Disposition: attachment; filename="mccolorer.diff.gz" H4sICIzlmEQAA21jY29sb3Jlci5kaWZmAOw8/VPbyJI/x1X7P/RzUglg+ZMYSFi2IowAv/iDs0zI XjalJ1tjrEWWHEkGvGz+9+ueGcmSLRMIefWu7kIlSJrp7unp7unuaY1ouha7fQs9TT1qa8VGt9Xt ab1fcgdP//klVywWlwg/2yiVSuWBb7rDMQvK7Ubxg9Y56vbKk+HQczyf+ZvPNnx2bQe250Jl85dc oVDIpBH6M/cqG213t4aI795BsaJUoFBV6jV49w5J5Qpt23Lty3EIDW8yMXHqPt5xAsXQvGJ1mHhW rlB8yA+RyxWabuh71mwY4sBLiNTdH9sB+MxhZsBg6LmhabsBZHCB49ojm1kQejALWK6QZssMwIRg jvi3MEZUh9Bt9xKYe2m7rBSP1e4eAV4GOJ4FKIt2A66Zz8VSq1R2ipV6cbtSrCJF1wLTsoJcwUTG ZlOHgTcCl93AiJnhzGcB2C4yE44ZTIbMskMEm0w9l7lhScz9WAIm5i34YEjnNlwQMn0G5rVpO+YA h7FdJIo84pTfEjwUQc+Y2Syg38OUGOLZAkDDdGHAILixQ7QlC6c8vCLp4YyXBYXyxUHRYEJ7wjiy 54M188UAkykyRvorSW4+2MHMdBDFsoe8gyQzNW0fR0EdBmh6XN+BYKTpDp2ZhdMcCm0GxMWfs8kU 2QtvGHO5rCemf8WFOXA8ZFR2cQLYitaBRjJB2QYRF6e9I9BxZhOk3JgFoTex/xLcbFwLBrlsIAjn DttEFI7VnYUOiggcO0AFYPdw5vtIFka2w4TaWvaQuWRiSaXptjtkJDtUjIW4vj2YhTjfGbfOk7PW dU3h7E9NPwwiUxl6FtKxuZmFPmNC007gQTAb/MmGIXALQpqOGJRP7tS7YdcrK8+x0S34c7DDgDmj TD5w/Z61YKPt/WU7jglnswGSBTmfTQXQFMYobPCmXE5iKRHz5Rb+WiySeLEh2zQFsOauOUFlO84c +XCvApCWL1mMmJOGrw68WRjJj3uBS5R0bxYEV/ZYIZ2yCVp7+U9zMGD+W7B90QVmCJfUA5bHlxNX f/Rzc3PzFsZhOH1bLkuzLwWjkstwqFxTuGk0v5F9WRqXbPcH+ugE1cc5aOFpyUWvkHiQf96t7Sg7 UKDLG+6iobwFR2xEFowaYK50GLiCXTR48kIo6K1yDp6TQYzgXNeMZqev9Tpqy9COmv0cLoMsGpIN wi0kcGVIQQGnRya7cXHpBLj4aBUFQ58WMi5v85Iv02UmOo3znq7pOHxKU+j+friekObTtBQTeJCO tqtVZRcK4sJ19JyhZxzlca5gDg1c6ZbtBwYunoP8i3QDXI+CcmBOBmY+VxRdQWhcm35w8Eo/1Vot OFP7p4aunak9td/t4WPjvXqC4lTbWvzQV3up5w9aT292O/Gz3u81Oyfx4+H5SU876/b6wG7Z0Jj6 qNVbiC/epW9OjBBlF6BmJwaufHTK5OxRzfKKy51w6dYyQ5N3zQOSHr8do5uzgtBEx0TAHjqOxZNN s0eb5UGBbj3HSjzZ7sijK0UKvAxmtmOhqGyM8GMPhSNuQ9O/ZNHDkXasg9Y47RoNcemISx9azUMd mh29r7Zaxlmve9JT2/Gz3ug1z/rx45HaV6Hx+wmX+EUkLYiEqTZa3YbaAvW83210O8f8pq2+1/jN KWZgWg/oudk57uIscMKOYwRjIOmfkSEMQ0PcxwzQU8zW5Arna0xBvXgPutY3OG3UhIHJEQro0iCf qLZR2bwVJcCvGLTxrq3iKsf/Ws/ADAdNoneurTQeqy1dtgq5SukOpzN5d42W60VC94TEhdgJht9I EH6PEI0GNI5b6okOrSNxbZydiRsxZQTQPmraxz50D/9JlyPt7Kgp5iDVzu+/zLyQ4fywW3AvbgXP /P4QNaK3VP0UB8VHmhLHHJlBaLFpoyHw0k0CH3kCjawezt6fGKS+5gmcoHUYknl+z61FtEoIHOO8 pcVA8pHDtTqGDqQLPku8+VitGhcXF9B+L/WLs9SF72vp0NZPjtt9JCGuH0+0fp+kgc9trYd2RuM2 atBTO3gjqcoHpIWmJyGqaD79FlpHo6t/FKycqh8046yrNz+iMWHvsWhR9eST3kk+XcgHxG/iZD9A qx/fEv3Dpo42f3jebB1h/Gi0zo+0IxqM+mRQWWpsoH+SCsaFhHPnLolEIZtPtA7CcOrYootpIHa/ 28WlcH58zNnX8MK7hJAlccEd3eE0zw/hqNtA1M7JucphOL2PkZo4GSGZj9EFGeip4uG/cQWed+g3 lwTe8BV7pvVamO/oWu8DBxOhgFwQB3N9bzTCtYNRpEEXQ4zF+46bLa3RPkJsjtk7a8cuWPp6LjIK v8JE4ydhnfT44Vhf9NFDuquj9dPd1LAAOe8caS0jSSJuWQDpavtQTQHFLQugdiMJwJ9EZ6xwXIKd EwGy1CbX2qna0yN2owfZ1e3oOCgKR/YungUA1zNp8xVuu36Gw5/h8Gc4/L8XDuWeYuFlooaFF/oZ MX9GzJ8R85ERE+KISbUsDJmvaAf6HJquHdoYGv5iEHgYvDCe2rTnDyBgIQzmshwUlPh29k2lSiUH usjt7D0/UQngU+CY7iXYIxh5uOdXgDkBlUV582ciUSxS8akYMn8yNKcJEn1/LkuZUR+FUKrPwifP deZE1PV4J8XCJDFedE39aNkFkU9zFnymWpJEjIodK4hROUvWW09lgZS4EzRQoDrJEFlxZswluQJz r23fc3nVI5btW+ITnX3805CVVKQu66CielDZ3auTwOlmR9muCpmPbBoqV3gOjTEbXsHNmIVjRF2a gBe1eLMwbrzBHODSxsBUyhVQeCHDoJV/cUdghoQpoOa/5uGALGCfCnm80EoQ1yZVKZKweSrgjex9 ukTkblMQ8I8DuHW9iFCuMDRD+O03nv+wUVAaw6+//mGoDa17jDOyRBEp4fihmitE3bnCs1nAIsoH c6qeP5NPxiS4PMhjE7L0TLgO5FX6kKITcVPE7MoaFgr5RfUwCsIIHsfjYrM8C/yyDLrlGFs08yxt uZPGvQM2HHsoUDMwJuztC3SqWqf7Nl2Ov+dVRB5+e1nPFVJEHoW8s/8V0R0qUKcF43p5UpQowVLF jmrxRmBeoxzzeXykNfUiylRsN0el3Nnt1qY0xL16TRji3u6eUq0LQ0y45oN/caZfRJ76b6B3KK+C crFcvnz1L2GwkYUUXZxdQpP5hZkt5wAHy43csx28ev4qmmcGDu/NQotFACusBJPBKIgYIW5F+a6y K+ZdxTului3mfU5vEND7iDcxDLN/8abHHPoeX2HCN7nX3pV464GeBp0o4ZRISzXUElneHWywW3RT 1c19EDf78BX/8SW+kNZftEKXJ4kr9OXLdQB8tl8TYr2DdabJfN/z3yaZhD/yCVp/5PmMXP7SQSxP C33HU0WwYuX/IT5IFYX7VEEWA6uqiBKMTDXECUesAvguFSCd7Gk/2QLr0rz3tkV8qe7t7ip7wroD 5Z3Ms94pL+Sdsh9CyLtSqRcCpJ4zwLgcknC8QQAWJGDSriVosikbOEk41ZZmIlKUhIweV4GS9OLn VbAodUxARk0CmAu2trdbVeoo2NqbKklY5kq47wHUpBtiejWbTj0/fBvnAC/uQnYbTjyLGbe4PZL9 3FFc0Ks5yt7GzHGWMF/cRR0ctJnObhbkOSg1UjzgNt9YE1HectBE9OCEdTGqeC06NjGzW/CO0KJF Quej9zht84pRvvlj37glqH7vu5wVEg96m1N9w1cLXeRaETufA3jHb97llvci1JNeCbmlzUsSgtsV +rSVba8ESpt+GjBJLLWectkbTAm63C7BEzsVCbhoSYIkR40b3q28xiuZw3/Hmzwk++SXeTGNB1lA vbJH7/PoUnstTOBZtKhEkiWy84LlOvzXYpWJ9VOSXWrDUHsnxkWzf7ohR1QWKemnp+1G+Hbk8+fN ZM51b1b+DNk50o4xHm0k7EeBqgKfVt4Gy5GR/P/2dBxn1dZPjE6332xoG58emkjTzL6VQwPXLd9+ kYQx9nZ1OnYh1UxHaua8mfJsD6XGU+3St/NubmW7fJtd39uLttliy6e2qdqGngIzbLW1EfkNVFI6 lyWLzNMsMhBi3X7KTsXJajLQMM5FKPlbjnCN6TIu/VuytbU4FBsjvFsxkIthgs6NcGRcdGwNdlRy WeGUzg04OPhnsTfZeV2nSLuzs/3/N87SeGVBP/IYpfEP9LiZ9L/vOOI9pB5zKrG6LfZihfKWONCW FrJYyFCEBg458G3rksGYmfwYlISfzn1+jHCjsclP90HyHBL8uvbY0W+SAj8MJV8B0cof0RGuwBuF N6bP9mHuzXBxu+CzxUkswH2F6VplTx5ZnHNC2CgOipG7oFIWPyFGDyedczhhLvPRztLntehM45Ra An56bx4dhYNj4kKXXMAxFdz4uTfc1di8SBQfaIwGkRQV8HxOZQMnjMz7svK3iRzPwTHDBW5pjQSS R874OUWUuTfFOY2RJM7yxsZVNWB0Pmg0c0S4Q2igINg974Pa+R0u1F5P7fR/3wdZueLrmNOyJ1OH zp3hzNDmwjlOgJNoa73GKeKoh81Ws/871b2Om/2Oputw3O2BCmdqDwPAeUvtwdl576yrayVcZ4wY Ewca75HziOsKRWmxEI0giOb+O6o3QP4cC8bozFHNQ2ZfI3d0IHQ6/7YGORXT8TDq8JN3YUKY+6Ku GSpw49shi87TpXTL8Rf6VegkZUmBehXBTPfKQQXodKoQiRzbIxzg2PE8X4FDDDUE3lY5hUqtWq0U q9sVDPXnuorT44e87BE/nNVuiMQ0SihPFyW6jC6OR2iGMZw6s4D+YyS9JU8J+UYe7hCCH38i2PIW rdytaOW+Qldt0/sth8I5TalsscUDgSJj155tRRHccDzTMuSC37jQqOC7xf2Lwj0nbG1t0QvZQBEH T2VjOJ+yTV6wTBGj5SuJGf6MCuApkgJjwfVprwF9pBSgq5lNUL/80KR61pSM0igkCnHeNVe4EwlO khHibX+12WLB0M9ov/S92VS22y4tKDYJDBx8wAj8azwTGjow6Awr53m1Gbaitoh3Jnphg0SyTjgL AhtZNBf3gkAkKXmo1n+ccGh2ickSBQWmXpCaqSdIG1wUqcmmehbzpffg6a5IyQsdr048hZFEULI5 ga3UY1ockTfoMTJfhc634zUgg1L4sWV6uxFkmbuAXGU4otxjX2aYKIkzl6Y4xIxuaHF2PHHkOXOA S56Z4b0hYGAjqZHMxbQlzDXNCPkp8mUYvL1Z4MxxjuHMd8k5oueeZ47NBX3P4FljZwzdYxiBMGIE 8dFtsjXg5zJkSAqmbCgOMIvUTXKTpJwSiKDDTT3DWmIvNjbdy+8Ylow7Gi64b7h1TixmgbNxSNsJ xKekjOF6IfIYPXxhGtICRr43Se97gnmAlhpRybIL6RkFgSVny4PYYI5exKZ0VOErVggxLSSdmT7l itGJYEruyDAxhxxesSgNoteGZMGuRcfZ+bcDpQxpYRSyDEnBkBTW6yce+tLxBrx06l3HKddtGH2h IOlkjUdS+MHDcBTxfcMVfekhvnMQ3zhwPDuTk4A5bPifYCbgX+GQebNb2myT6Ujs4NuMGhL5nkWE TFKCN6bT4vwzA/kJydicTjFporWUWj0pMxWbLvl1QkbwXvGTGILMmRPyj18ourpWtEASn36sXa1k D5KCWBYZQ2blQ1+TSZC8S27j+IDypfuPrJqtEv/e2tk6Sg/av72uUQENf1dl/ex5dLIpjyQCf1i2 bEyLL0vj/LMyOjSjoXYaWkt8MrAMehN6HubkAvS/Zvbw6ogjc2gSfwRP3BZvaBsYInRCNanvGKLc tnvWN45aJ8YpVPdIR1QLgozO3YQqV/ovYLfGz1jIXHr1awv+EUeFf8Oxq1SriwMV3Mff+ObUcHAj G44/bdc+KxCaAyOYmkNcdaJha4r/v+wLHDJNjkKVDTiASqLdc6I82Rg7iawqnEyFy97PlkcGvtRt kghfd+luHF/YxiqaFBik0a/Y3GCTmfiUDLFXGxPTkXZHJ1kcA6USGLy0SbJBxxUPndmdQYaKcQam lrYcO6t5X9T/K9vKGyhUq3XltSzMkeHtcHN7dveFDNAYUlFw4GEYXFhCGbfbBaqmxk1Kwo6KsKcg /qJFgY6xkeeV3ZfpCmV+U0FgqET/Ouet1lclU3uctd0ns/YGqa+w9jKz3ELMVTKYI0b2uP98CiPV SqaQaPNNb3LgZaSr+9h483Q2qlkCadDrBP/lBAZsRNUCNB6prZ01nFQrT2ellsXKMVVZyOxFXeGl sPv7hIKu58msbGeaSY8n/mB5lFDMQo+cjRvey0vt6by8zuTlEKM8lwUmQBjsL8dcSPfysv10XuqZ vBxjioVJjTP6Ng+vUzz4pmV7CtTXDrirJAfL5xXYlmSJD76FMIYmbeHFHkoRQQN34shEnu4n+Xjs emps3EQyR4HX93ixxNg0HM31AklSMrfwDtSTMdGdx020+nplprVvzFTGk2iy+IhPi9nuPm621XrW dN+zOcQx617FSo9IbQZPXS54ehLlG4XYfT/JADPd98OdJsS++0lBJNt3P8pp8vgrTqtU9+rRe7GH aytlLsTMQ7UFmSpaJDFf9ynLo59kAsrvDZkgw4Fgv76j1OpQqFV2le36It0TUxDZafCp/rnEd2cH yYRvfw0kmrLhs4B2MQfw8ksm2M7n0gIkla0lM4v9XHEVdTeFmp0YZaDtrY7I37f7E46cifMma6g1 KVwGerWShS8KTwbFH4PijyECUDaFahaFQRQ1DBk1ODvZBGqZU0BXb5Crl4ggMuc49UbY3XvS7/QQ MVahsFapK6n2I+hka/ixjKR1/fjh12j98YTWqv/xpNbZwXfMbskgCnJHMoINCcFZnZq+adBHZWZI y3MT/VBye1eVS52fpU/gUmGQvzTyDQJfRqsl0Ja6KvdYYdJaq6/34xi10red2OFlrpHtpEji4bPX E8Jem86MmEtA3ifxNcTvR8kYI5v3+qqpL21R12BFI2Ti3GtBtW8O+S30e8dOBq4oWJUkGcRJkd2X Z6Kre/xEdO31dvRnJ56JdRaTS5UbVkoB6aCz1uRWaw4PKCosltJ0E+6QM4lw4/mWIQoq9FpGVFWQ nolbEoLdTx7vq9XfRDPj8T2e1tppxOJ95BSzZrNMK7tysuJnY7S0800xvlTnWOPtkyjrKizf8NQk zFqtouyhMPd2lWqWNDGvbHmmRW/rZy692IpqCeLlqzxUJf8YzdgMqCjmXjKLctHiksPMUsk/DtJ2 uCkrVo/DWq+8v/9eo780CdmaDsaSl7v11GMdi5d+xoS5sw2qKYvThhkvq2+iqnNsJgI09ZL8Rryw oYRWWWJfvlFK6WYWMIw/UxKaHb6iU+jMEhpYMMjpE6BBkAs2pLK/Lv78Di8b/3tOBC+TflJl+/vO Bv9Pe1/X3FSSLPhsIvgPhQeMZEm2JX8AFnZjbANeDGZtd0/PZRy6x9KxLZB0hCRjPN2e37bMHfZe unua28Bs70zEbsTGfdq3GzEP93UrM+u76sjy1zQ3Fs00ls6pysrKysqqysqPG5P54gTLwZ8ZwzCU C9zu2NUMOW1msQEYS+eRFL366W9Ffbh+MR7TYBkPxBA5NUHetTtJ1Xhc3UuSbuzWB024bzIcNSvg tQ7DG1Wg5OLmBsvNMcdsSwN33hSECt/FW70HUdw2IcAuyG9yjl3NhHDhu5ql5XsLX65uSvtlKFtY GeP/Xc10O+Bsn8XvnLIV9NCGJ5dYLW6Dox0CxpgBWUZlRJ1xMgseF+UuoYM0/4E+k5zBD7dB0MoH YeLd0X7Zd9Are2V1Gak3Nn41Qw7dWdcA7knS562kZv9CkqRPEqDl4tqjJ7xd7OjiIvQSHP/FX4tw 8Mz8DpaYwuyWeIkDUL/ptfohvvHmFleXZFsk/adu5oslWEunlLeYqoolDY9yDsC1km8lEBUAjNLX F9ZXcHgvuYbygTKCU8Yim5821r5cX8QC0KHtJHkOd5tjVZx74k+1WRPfxDUR/ah1ogPxFadyVc1M nMZVa/oqSFymj+0RdPqj7p7siU0V8OuenNtVNaf31LcqUzOaELBmcxUOlT4j+v33p3C13U6Zu9W0 OVsF2pID+NLKxiYnKtk+rCa7l8B6axb+KURNsV0s3aIIWBMTUmdziVUbcdQq0Pip4Zvl3SpoR6qM O7zZYVhzO01W2GGBt5cKavBn+XtfZlgP+STiC8Ly40Woyql36rqANOGkeQ/mjC6+sJ7V746Hznu0 sLSURSAUsMCoLpyLJtFna7KkppYpc+4EgjrcGSKpMafEB85VERkCfgiJlxWgVPyIOxx4ECCvTzKG C9oqu3obeDDEhQ7DJbMBFgyKUT9cxZ2hOgy9bjfFK+DRJrvK6fRoif/3hP93D9hJis2ro2Ob7WQY kC4kUC4wI8p8jg2KUg+NFV4CBwRasR89SYbLdGInlvEraOdD8DPov7iEx6Wb7Heq8dz1q7evswTD SPLvd64DD8Fl+Vwr8Yf4VA2JVZBDt7t4HTQC4Zeb8PZ8Wh+YfY8fxzSG5mJurDrGaTjrzYEgN56M 7f6RV5UBdLIMhusfge3CLV0gk7mmJ7TgXYTdCUE+s9GJCWagnXmpOAMrEPwp3tQnUTABOOSrVyc5 YDlG2wq+rIFD++bK4sJqZe3evY3lTcNggLfSrfSSSvd5HbaQcMWaeZUtk6VJyHTCO2tKPOHoN4Qg yeBoro9VkTxQwU3Mery734g6rCstNfFqtXW9B/uD52wv7sScLHRp1EgOGvHLuFHRhTOyOb5ZLrIv sNNr65XHa+uPeH8RdzYrcFJnOOIlQNgAFKipD33SYgY+x9fRFjTqTNlMXsactMU8O5RH0j0MzJu5 zq7nGa8AMOHGiRWMkXuwtr7yD2uPN9XY8bevijhA6X4yel9zsf4yup1z85txQZ7If+ZGaTD/GSYa IbNiiE5CgbHR1k3alYLZYNIWVvDdzy42n11sPrvYHONiY1gn3pbxn+dNk0Vh4ki2u2i06L3Dic5f gcJO+XB2KUyzW5bPrxYUhbLNamUPAhUFCyqbSioad7vRbpzJhgtz8b7fVhaVprWlg7FvgDk+Li0m lVv78sLmlxBrbO3+6vJXy6upLyr3vlxd1eaaJ6//X79cWd60cXZEayPejaqHBTJENcuRBBznp10u IXdFX9BIMkWbXyTHFDBCkYv8XqcGRihgyKncp9aXROzJyury4/ubD7Z41W/YBJgX5Dy3FM5fHbhE bNUase0kgMVGKedAVnnWIPXnVfNYj8OnYmLdlpc4YKAsmrMcIfzWNHyqG2xGArSNp3GZR4v6w158 jD8BNTM+Dg0trsIefmFxOTP8aHE4z4YljLlrNS5Buz3xnb8yHRIIMXiPhbNlD22FTIZwMJqXPfB9 Q+CIAz4eAxBFFpXATGL0kl7UwJup7gCQjNK5YhgcXXMNAKvbizo9LBwCtBfD6h0GA+XovbDWLcyL 2Y2YlfUOWJaa41sZ2XrRHgAqEkIBqIxXdu2k67jDSLewY9lD1TcoRyziETRr4I0bztt8Bn77LbbD 5gPlZQ8KxQBLoYcKjoTga8A21Eu6uNvvdM1hY/2mGC9rDVuYagGKcTrYg1jPs2fi9l8+aoKhwIT8 iBeaMFcEDhFsXysvo0a9pi+05OUVLOqZOgJmdU7GxxBgkp+PFhYfLG/wR7lc1iyuhRSOFnk1dp/W txR34fNkZ6cLN9z4XGImDh18sertwfItCtGe6ICvcs9bycEoZtdAokzAfnMC96yUPKR3kMzi8tYH k6LGxCR+oIbEUdWobPOzimABDaGYDVeXDZZ0gwbD9W+ylN6kJ/uMZcEYSLFeCZLSF5g6GqyACnxU liXwwp2Xmp/zWtONWQzsdLVsw7kNssKrOSG8eBjMK4qt0QAleI/BALeEt5scxxMyIFRtGaRpyQN+ mPsKkgCqPke9xZtpemwNs8mEDB+YcXWbfY0/AKtJAnMQ8j3bKjPcqwEZ6NYcEWXxq6jaaxwqkjjQ ixC57BkM2qTRDpDsWVmjyuEmLTFz+HlqJ0avqAKDfC+QegmFOz9x8K1vm29o8gzy1/SiQ5WpCNlL 4aDthmRjk/wcn+nAbOSbzGssYw0Ub2gym/VEEDJbaAY82/JFEW7O+PuwKHm21X8euiLIoLqud7AH xrQCLYCcHUS25XIOWxhYVmI11RBeruiziwPYEo7wo2xxlab8L0ab24PTplDoQ5ttizYFS5Seijbp k6u+lbpgC+/gruv5l75kq+2atZmHu8gKmPw622BoEDdo9DVu1dwNPdQswj6+3sqIklCq7JYpQZno VWoZjsl+s1XUKxz+LhlrrNjEJp1qzL6dY+vLS+sLv648Wbi/jF1ylch0N3oRSmSCfGYlsglmMCXy zBQqkfmfkuGpB3Aq1SaXXYsPK4+iXnWvcpe8XUHteBRSDcOY9upVPKldyiEA6SeLvrYUg0GNtNXC BhW8CwXVTrI/POl1OzDcyiJVEPC1r6rZDlVvwLYVQBBosLhToJ/Hhyzz9eLm+irLXH9xPSts7Epo u58r3bqlLi99uNJcSYE9lX4dJ6n9okKX2ywT0G6bxb1ilk47raS0vEIbN7NXdA8+SZmgpvOlCeq4 R66Hy7+p3GOZYjFL3ON32x9rrRI4BDFrDzIdLGSMCrJSsFBGDk0HKuJY9AcrYl3YYA21vgCPgCE0 wSG7x1eER/znUy6NFRm+Qd0+uketteMW+qfw6QleGfJzfY2XIM4DqzPOesIxZHKGovTe0n60PtT7 CWj5AFe4IzE+jwoNaOX6fQl9N+kluN8G9w8bCgFpwkwHe8ERGboAoGwjlLsWFPFe+Gj6PKwh0xxE h/uR58zGbwshP5SQzfl9lO8D6DlfZEZo+hOgNgJ6HAIkBYUPECK4jPhkQ4BlBLgiATpMgd02zFYJ Jvhq4ZcJn74rrW7c6bGRBpiwRw3d5GLhBTa1qliAhI8NwgKNnHETk+RNlWY+c8ZnzjA5Y6qIMmNq +oZp7W1wBXrJgT+AkELXNxRxwGIaIwh6zUDN1Tji276Rh2AvJqrCADXgMQj6rl9FRPEceWAYI8u6 D1SzWGgAhhlZRPMwutRjG7AySGCL7njgunHy0UDigPZ/pC1Bt/krpAxeCiBpLoH62t0cqmuAi9gf KuBn3iI6kAYLEDyBplkUJ0DxFIW5Yoa9Nhq5l41gD6OGFXZ5CK76MbhRvS0z6IailWKMoO2Y8v0a dtn3N0ENNkq3I10CtyqiQYmH4jYnbHxu6/6FGh+AyEtisiti9EakBbU8MODiCEORd3v7OzsKMVQu wvNKnbAivyEUm/zp06082CXQxRxc9yUdDDETCWAczAD3+Bcc91K3c/73+KeIgznz+Rr/8zX+52v8 Ty5S5q/XF5486R8x0ygSihQ1ZIbO/MaOnMlWesBGICa70U7MdolwjcM8sgkMBVIJffzrWHbt4Zh1 he/aEAjAG739bVok6uS6DrAWMWB6TWtxZQBHXClQayX1RIRx2m33ll0s9dpcavoxyvIOxOzY2W9R 2nhGxhMABVlCX3cELpFFEC95jNcV4pNWUHd5abeQEuXFAlCrER1iLidBM2NdPeEVfjm0JKdcx1tq 8gFvq41rv+Ouo4NFA1fNgXKBm+RAqWOuLfvU6Hc9HKh2IuuDtPryvtaPE5vaXEhbXA7wxgk0wuVU 4XFcnLk+Bi8XvIMymzq/TZQP9UT7qBsD7aNWsRE5UIVe9Dye5gt1L5rifIMWQXm52PHle3350dpX y0tjn3dSn3dSn3dSJzKItI3s5oWUYxNsfJzRTJcTDuJKU0hbnIfHhyG39lIodyv/UJySshegxp36 k4fVjYnKk2oG1xGwo7cD8FZhJbUfNbt88r+MKBz2SyGZxd7Pht6vQe96kN5XMElYZhAUuOijK1aF S1n8wrUj8zLPeDlaeOxGMqkGk8vr62vrvC1qknqalWBjuLt/qe6jQthz7mn9Ysjz+f14INxDmPc6 fPv5i6GOxmynxh1yov5iqEMa4AE55lf7eIayIQ8UPzc1gi45616EhpEgn1m9aIIZMPUU5gSa0JFi Qa0mLtdoRHGjCSFemlGbIohXk6RhPn2KZsVCmcsWVjdZ5vr29WyeudfXLF3NLKptiWrm3TFTVwSi UDtQSF4we4XLorDYfFVE5gDmaadF+aZCnO+UlIqayUvnHdk26KQVek6hlij0OD6Aty4bXQwLnQP7 nIh1Jm/i7ehNqZS2zfLJ/XzYfWxY6ztvpIP7cEoU5RSbeqogxlEXUt7uwxQt2fVxaNYgvjNoi1/W 44NKAjtKuFwglwTo3s3iLejfzVLJiqJs2KrKqOBg8SYe1ThH8jMeHIqzwiW/MA+kiGvSzAiZFVUo wgpQnqClU5oDnGwnUwMp97VWYOJjnRlVMHPzpKjlHxka8BMLXj1MFdHRnv+9pT3t4bWwQ+qapoHJ Dln01TGcjhAisDG8lMN/B1R6qMtU25IY7R0mblA0pYmbkypxrmUWYbQh70odQ6rTWn7Aa0nIYJoA BA/56/Qoptg2qdhWLu11TYn8nOFIIPtD9OL73CKYUku+QfNyNJEV5a7M2bA0R4bRIgLfJJOkibAt jcAGrprlpbRHZ0VmprRdL8qno/kLx4nVIrVnbWNS8UUfykEkzmwaRs5oAIIvwGI/a4YkSxsnZZFH tLxFQc0wtPekliFK05N0hFcq4fWCFRxb7rCxV84bENvWK+hbocZhALIrdaKdE0JS3WFfRX8pbgah vSC1Q2IHtG+QaJCH0yvdKNEppwxdz8k0MXfMGGj7uAsaC5X24tMbE4fWfUblnMfE2MDD+sW3sqTY iV/F1f0eZh8BFQDcR0awblG47j1U43QY3k1EqPHpqWDeEYR3RkjtTtztjjHMJgJhO0nX8euVpfvL m5WHy78BkJF0bEQ79i5pQqKdHj92oDyYnrqB8mAGsr7fMDIzQH4dd688K5PApghbMfBsaLsTR8/T pJkEbW6VZ5VdoiU1FCdJgGn15VY7CEdzfl94zm581rav7msGqDtsiGkJ90uIGQdWgEA+CiDHf/jU 6qOzlqGKLlhfLZs5P121DfEkeuqSWOlz46OX+2qq5d0+NWXkQaWCecoDxoghoCm8/KdB5JAl8FNr rBWM89BZXz43pfXl89FaXx5UbZ1KhhMqri+fg+b68tlV15dPrLtWBDiz9vryWdXXl8+uv74cVGBf Bg02dTTg1G8+9bz6Qy9VAqTQS+WeH3qp3fFP5Izf98SO3dJ7pzRrcrQQ5yW/uawvQOtl8SOUyk/k 75NFwEBtO3klLeEwfaV4dVlvdK6kbb8u682PKH5k19Zg4aDClxZ++G9Qm5UDfkZMDlhmim+vijfz rJIZZr4JJQMrRwidmnUQM489+F2kMMyMiK6OiEyFai5Y3olYCByNhFMidGV1ZWPz7trXFbAQebyE 4W1YRncBN4IIlNczkLJOvtruAs6XUAbUHxn+qNpss4xsViex1BWy5H0I44lHZEkouX04FP5RJk7g OAWY1bPmCMix411lfJmTJDcrqvKAfB38EScEFQDV9mGgQ3lFNOr2ZQqPRMFyGUQGxPyHXAhE7Xbj UMQOBtuRy6khdGXoWlXCiJx7fOBch+mU9sFNa5kRLKE5QlApPMmcTVVwkvEBhMSoTstORlJKkfp3 mmvUpq0PsJOoalqrgac6xKjUiNxnhts6w9yWiuXUCU0uzwf6EET+3rLlwCRG9Dk/jmHi2hPOZKuy N52FZ7UqhKjDTBZPckWqKIkHAQuq5G5plEB9HfuFZ7QcN0y/FnWALwzvch0vQUw3q8tZltMPDIbX JxGtppEAzEYK5ngWs2b1gz7n1X4TO8DTAmlnZgsNBO/2ZbiJjquk33V8yEKrJNoRkVGakwG23mvE 7ajTS190oRwWe1qant4yVp9umwvR3k4GX+bZ8LXuU3aty7aGraUvZHIOM0a3bIAMiJT0uViaorko 2lf8LmEdN2WuL1xHTG+zhX0u4+e9eXw8hHUJgfIws0WR7lM4Ytggz3HR1quuhbBkr5NMS8EWuZKJ o/A5TpuYfBaU0hadFFfJ4JpT4wfIZxwFTEpOwgd6V4XFUP4Mbv6wAsx46H6wBGUiTy+AbfDtYxWX UPhCmdEN9KgRIB2hRanJxU+DWMqMMZjG3FjAnDzpGZPiIOPMSoOtYBIDvKW1V0ozBbSxUIoaioC7 lWbUaCRVPr7138XJDuY5G82yUaaxeTpBS4PME+8udMTRtVdiDeNfbvepjSUkt5uiPH5V72LCEAyl akpWbIBuhdgzDlyPDP/tgpLUpB1qhso+fbaVN3HiKGyN4SuxSfVA4IIgMYL4qWWnwFF6m8RLeaba 7teIxf3P+rVifjdbI1Z2e4dXjCntEtdDCg6nknWYsjEMlLamTAjDK0RBHwFBGT2QW4OA1zWhSi4X avrI4nCnBSkN9EQQcSWKNorGV2t4UhZdwWSmJMsLGls7BIc6BujboVEi1aXTRw81mMTUVw3PXKbh 44kuBcIVtca7XdyekFSyuiFlq5QdJxAd/KW10MDnHMSHpKgz/0484bHCU0WtEFMGZ4hbN63rfOHs CxxjuwVgn222hwZboRFqzhVtFgvZ084tfuTyiU1NczmGTworps0zhGVsEKxZ5s4uDW+OFSYDQjBp 8d3ovkXwI50KTdcPTk5LLqiyLmn8KSwu6jxc5KVfaOXOD8pcCo+t7PGYuAIzNN3FQxIw6ql1fNFI GRsYd2tjUouPRknsdcM6FGYe7E+TfyhwzvRxcES+7BNpf84XA/7Hv3+6qAunM5qF2UAGMwzD4Aj8 31vSPsfXG6ebhZ2H9ZfjhTbkRbL1y4pItkN2IFu/nNKUD7lxbNH9/yYaxU3dKqoL3kum3UxsH4iO 8RKigzq5W53KbkmaLV3pk5zs22/ZFU0cuO7/RmhzqGEuzgzaBcO7V1YeLy1/zWbxph6rKouBoSPD hMHtvhcVVWiNA/YMvlEOaVdIQIyMGEC4fBZ2dzJeIH9/iaV++tCGwzVIg7n/enwadeE2DmUTBO4X I0l9UcOMDvl+2FfdQ2CXWzNoEHDrZtGNIyJN39LzAFhC11I5m8ZRiopEPnhk5ga9Imy1bMsmTV7h 2E/pl4rFm2gSWSxN3MwXp0Q+MgQzapsyokUkSj7IiWygwcRgns4aTJtyax06UbgtFFsi31wq94iu 7+DhuFWNenwn0alErZqwyIR5D4/ybOM3jzcXvsY8W9LAriNVinzpVKn4tCWnxmKH+IBPFocsswxT Vg8NCdYjB8oOZ1MomHSEWSQOiupMMNFd1LywRHdR83wS3Uk4A60ZM5jnbkZldfTTcF1iMhhEzo19 9qnm5MqdIieXlZIr56Tkwkdp6RoGTLlFqZEobmOYcLmzEy73ySUzy6lQIilZxtItgoBiF2sMBC2c mx2QBnaykB8zg8X84I1ud2CoPvuffvY//ex/eqz/6QAZKc6ckuIEOSmOSUmRXlCFExpOLeNAuC0e j9PmZvxu1I2X8auVlMQtJu7RvUKe8656F3UhiJtw6KX7HM4KLbFvF95p/NXwdiOqPh/O47f9GL/s 8pFt4bfqYURfuKDBv01+tOPdo/Kd5IDe4uGA89Yh/EIA9JUXgTcKMP3U4Om3aoR+yqbol9ngYdxo JAf49WCPsy61Rnk7zDAQZAYCTnjFmdHizFaZHBhBjoMgH2WPFjfIXAdskZn4Hm13wQWV4oC9BDEP MiGmqCtsYWNxZYULFIjLPYZA7vHJC3HAwfRT5AYT+T5Apu236hiUpBM30ICaT6QI6/EJUOWnsK5G YpaEbVUgghbx9ESYAMuSjuE8vDKs2WGOF+Zxk017ctt6/fcKil1VvMYDeTfuPRHpyTM6h4HTDjqq 8ibAMkA/HR/3UkIY0KgS5YJw4rnzY4AfiRvK8IUVaxllTaMrbbivc4lg+RyHCJqruTnGrv+2c92L Ew/vzaDXRwP3gtekPvAvZh9osmWgK2iCYVJeX5by17u9vUyWLlkNpMRVMn9vD5m4fsHZS9HCks7T rYy4FxZwvPFBUxC8IcCMGvCVIwUYown/ARjlrO3cBeG+/Koa4zqcIda4i+wNPaffs2w4m9sQbANN mp0WWB8/HlBRd6zdqb/kM0KwtsHRRjwXEXqFCHJUNqfuKjrTtfjK2YyIszANJ8UlSLjIqLf4akhg zdm6mbBuO45r+20deI2WRRFjL27Um7wu+ETws2xDSgV6iyDQxkIacEtXv6hxEB2Sx18XjrMCWqaK ljSibWgGWnrOZQqYy7WjDrhXQDS4eifumnhgBb4k850M5YlIWg2QJj2+R2zFr3roRgEFOKmBFpyd mjHfy9Rc4QIvN4g2SsDoZ8rtxh8AJZdGqyL3hiOMNJT+AgmrQ06G+ECLMFMRM5jUMpqz2xgiz1Im 0cRnqtH9RsMGRRIOOOu/JNsUbaKV+Fj7AkBUYTDzoUoALD9InQwoVWAkTDyY9K8cBjnSqdCFqHas G2S4JpkTR7eSIulEO7PXJiZrlHdjTuKnpPaQTApB1wOOZAWQGMDCBck7qmYMjIzutaEKk2NG+lFA vzBvrkjOwiHljzH6R1Ja6GkADCrObaGF1Xh9zOraOXQ6i5TYAUIA3t4qAx94jez/BCf8Pb67SDqH GbMXejwoWTeXT6Q8Jb0t38T4Zek2mFYB80YYdzvy8jeADnz8PRLcjbI5nVjJ/BzZj5yfaXPXbcuK wCYu63hVndZGfhpaZkmxYcx+V3TAx7nAU7tpUV9vr/lQ5Q34LhxdszBPWhIInb4J14sjS0J0BUO8 IVLZ/mhBVNgkwgirNLbkEWQmQkJydg5DTAR8pmPEalNzcZEdHuY+Bt3DIuvtcIgNj/xHJmn4dFyP d/lkfIQHH02bYdiLJI0YrPk8ghnm7m6bR3w961X3WEZtRdhIHOzV6dHQHfZadxkw2Mhi0mzzmZvp dfY9vnEZHqznqBaGBZa+fBCyoL1TmOes82B9kaRBJou/qXTGwnZWVvNR9ptYhnhFJ4SPdXzgFD9Z HjbFHJI/M5o4YFWv++ZCGR/HEEqDgkFcfFngLU9yyvHFpDucZ31mY3kASHCRICCZg86hqYlP9HsM cOnrIt+IdzNZH1foxg7ocebIgaVGRJ+drUbdXsaEz2cCFN7kO7ks2kHHZR8U+tKeEBTUCYBqVvmX OUPqt/jJVia8PkED0GfK/GdDr2zvzoHgqqCVk1hV2lG9k4FFMW+qHGTPtjT9hoLDI6nJdx95RQ/1 o1mlXYkspYvI93L806ET3goM/iSssA7gj37Heh9pnBZJYvUXWJxUm2tLa7OgZ6vvHLJoG5SNtXo3 2uYUl8PRD00Nvt6y9ymCa+MxzpGP5GW7y58mMmn5Uiecctb9IHZV9lt9+b29Ywrs+dOXfNwlGdDF 7l0R239liyP/vWZW/51e6kNba9y0k5Z8+SWEDDByXDo9MmcElFjkB+ceVVJWzUYcV08CmfVFdBSY US6Ets5fmTUcxSica1+gZjfMOKxq0NBQW3rMYU+tlK9Of4UfRMU+UKjTvYisKvdiQ7bewbA4kPZD IR4Tsy7Eap8cyeHMI5gjcMAKJrHVmMDuVa7VDZhzzlqj33fV2NlDYSRVg+qavgU3Q5sfSVfzuxwf LdmupBxbVEJWPn6qNN8MCV8of19mIjhv14GDs/hzbNXbgZqUiM2sEdgXOmooe4ULYQNrni8kjwYi Q3wKMvBenIoIWO9cSSAwOZYA1mTEw6bJx6iFmmONTpkUUoKTxK85/FOYh3/dM2hA5wDFZq/VCqAf qM3hwkb1hQqQfnDE5dcOYtFnZ+aOogEO0p2a5AbXPtUAm7feffutblvIMp/wHIDACqzzBCHQ0Ee0 2o6r9Ygm2dBQ32GSaA4yOM64W8LUWuZAgATDcjmKtO0kaSDrLXUSMJbfiRpdpVHDBWGw1QDLy7Lk CugIqaqhxBk6qWyyNqd8mec/n8hKurpLO6NfcIJLW3T4lm2/XYtw28H//WRXI7NbcpNqH1ujTnVv NalGDSCOfV+iUl/LZgLJdb1xgLkgiRjY6QaOVz7HecoGJz95mLMn0pjajHvm8PKFsOvFc+rRoCN7 HwNanNfQclnlLW9Xgju3lIFmYhhm6W7PgZUy6n3U1B4E5py1xcdc1/jkUVd0X4SWULgBCS3IKQPg ppr32M+JAedyIKe0xaC0fshpJIbW4RxTDy7ZfujIgBjurzdMkrQ6swHS1afhYGPQlQ7hKfu6UwOO A4DlcNkw1Uz1A7hdQIdT8Tpbd/vQsU+HxV9HVh7DjioM3v+fbAl7xYsZ/E+SLc/S3eMm94nZ0l6g hdpdbHB9TUPK9pW+qHDbvuO45yOeqoVKdTc3bofh81UMF3O3peaXjc4LX76X+MLfAKRf+9lXmfLp kXuslzd3+il62dIdgwtT4yWc2EOqfkUVWbqboYvAwJmIwMgemLEI5cfs/lhUqy034ibIFOlMYHTM riIJHB8ERuGpBRZcYjNZM4N9upurVUX7t4aQth0+lR+ngBBTRxZ6aM+Sco4MEsPxbx0A8JLOLHki +LYveTr8+1AuFXJwaDynyDmgpX+rrmukTEzUoHpxuKz4EjKyiv2QnFG9KWvdkLNRvDm31d6z7Z2y XPmGArOQ/LOwTT3D6aEcMPOh5Y4loAo5YCI8z+j2ErpXFrrAupi6Q8IzHietxIAqS9sNqC0mrJqg D9aXVkTgrG4mdHNZp1k7JKcrwnBnK77VuJmTlD91tSJ9SithYrJrCK1RXt9TtwhnNmOEoRU1CigG 5MvRpwYGNJXHS3z5KYIM8IGoUTsBECtSFJcegbIykIxBFBkrhtczKhgzbrRkEVEGhOtTPldU1HFa kEzoAJKPFQeravhUEkPVCm0GzbnpB0QLRT2ynqVMTbpRebrFJDbei1SEUmKk+WHK0tdwp6r1M6jn tvQtYELHp1ymUMyTViusG7cbsZcv691T+06qMA9PUSOUyeaKW0HgaeY6fUClrXA2LrhYCPd6Fxgn 8Qp/IxaLXvI8bvVZgQJwxYVHf7iNVnI8JNCsHAvJtiY+ShmafuRXpFBXtnKHGuIZtZ6ZM8ALChS4 HoNbrjSDgZPvCp0CJzVFCG293fgIdrgz8kAN9creFPZRaDn2Ue69rtEdX9/ap79do79y+UFss0pb 9QVCZLOWghoCCPjiT8QoSJNmTG0m4EN2epbFqGuobPsXmJp7ueBrWwo2SrcU4cvVnV3emLzG2Eaz kS/Ub/w5q4wbynbVbasqmonoqvhzVllDOFU7sRlmS1v/cZA5ltnZvX17ytqKA0dgnZCdJwEL230Y Fh87u1uWBcj27pZvzuQjlJPoYGddo0JPCwmVrnVnr4H69lpti8w6+mORZ2a388eRpb+aUKNosQ08 oMdkVyo+pqW1tk6EF541gzKgwnpBYwjLzHvUs3mAgVefdIMZwwpGVFTKamzaNdEQ88zbspe1+a3z ztvJm2Ka/qfTBpJjkpdozYgtYkeI6HPcENJOsG9Aha1cvjj4Wbx+lCdcQUHh9q8Eo6e/cEWw1VWZ XViZs5rWM/Iaws/lFwj3YufrGaBHAEPdugihl7EQGM2aaiLDVieM1JkCdUiEPepoc6QTICdHxqge WLfc8UFeJtTnmKqKy6kQ5bYJhU8CvGhRuaLCQ/JL99DomGkZ1OeuSPXVXOOC18bBxC1//w57NzPi sdH18K13qKOmSvw/T/8sRX6Z1hqva8411afSu4njOuder4WGLeXO4z9pH/WdTRqL2sr0T0X0DMip zk2A7GNITa/klK/k/8ZqwtlS+IFjUxdWIxpb/4sC3abSdHh6USWCwwvmabWjoRGdnfUg2jHuU3t8 OjVQGIfjAu2rsTUCCZsEsU6mn8p09b0Fw4xsKwfCcqlPH/ttTj/JyevFWpS74yPhZRdW0pkI2nq+ T0ZwDTrijpoyfY6l9zM/kC4zIGxcvZXfstBy/F2nUcjmSZwvVCGbso4EkaoZzUZHfjrgvQtJB7x3 9nTAeyeII1TMT0EcIQoLVxgflbGdCgxCKzIZRxH8kcDD3Xut3zIMt2bHFSreujWTh39v9A3Ow+ti pr1iCZOYFiH/JsYTM1LDHnPeLJ9XwEYI3VcQwCCgFplH1FsQPsGFI63fRWoGqIs6MFXtxX7cOQzj MGBdcKXvW3MUqiL1ShjAs1SaVlEJMR47EAS6yeXjQb3W23PEPdKibdOPeitqBfL90gu7TjAHVDkc F3TADFLlgdPglAfNXVDWESm9Ck5BowCEv1KvTUkmS1Gsh0o76kS7najt0hh1qgn59OJQ3SziUN2c lsFWhWoJCkpfKMhU3hbGSuVQiSbHmc+gJPgyEBczZTBS62pBKUnmF432e4kor9GgvYMfUNdGNEZF ohj5Cpd11eeVVqMSQZCVnbInbmXwuYsQuhL2mUWvDWggAXzrJsUSVXmxVdioh5XlV73FZm1oaKo0 hfF49RuVMBNeTgcjcxqlzTSgcj1kU6WZ1EIyVygvdMMqJFZI6VgrId00Q3XyVQIybdWrFIoEzo2d pEFxeY3mgL+X4u7zXtLmnZguWm8fxweVX2OGGHhXktyg89qdZ9hlA+ppOcADMdDYl4qUFr2o5AB8 vqHgynpuwNzBQGidCoTzGs6zkfAbdpR3QQjZ2dqpd5ooU6C29zBQMSBAjIZDYXc5jHB8WA+oIIoP T27gEJSMD00hcDlXAeCVx5vL648XVisQ0Bh5SiHeqlfjSicBzX9rt1KLunvQgP8UoGPA6xuY53vy hkV9lLsUCiDDhh/Vu1V0ya13240IlvJa3I52Ia4Xlh4aEhZG9LhSr2WYW5Zl8xDYDjZJaC0BZopG rx4sfMXp9WBhfWMZOxSmoYEWywwvKgJKZboRwWA4lMVPpf37IvRyVodcULiaayV1lsLIs4wuICkG pEX2J7MjoO701BRQd3p6AmLEKvLu9No73QqH8OqwspegIV4tEVcnsneS6LysURKDtUQ9vDFgCrEw tWx4x1HL6Lv/Pq+i9D1YX6psbK6vPL5fWV1+fH/zgUEhMihhftuqL6Dtre+2OHSIVAzXOMP8PySa 0lVgexBpmFEuDpbx32ezRrhn/zV7OrGV9cXleS6bBtSzi8uTLJWlEm1w1f7W3G9A4FCLEk+3nB0J vYRyEIDLLNVv9UwbfDYzpfZOGrzFOgDbWBeNvQ/aLvORa8Q7eFvjbI3kazxIBd6/jDvbCVgXiHGm 9LL7nbjAyTjWPc/BdkGfLt5tGMpJAt1SWP7cr66Mb9db4909oD3ksGarS/dWF+5vzBVWxyEM+LiM WzsuoGL4/0Z9W/xU9RafPKGKw4WVPjW7fGjj2rCudqJKl3Jj46rvrFBodzhXvZob3+8CItW9hF0V +LOrEiH+Df/KwW0n4539sXZyjoMqQZ52+tr1B9MzzMDRHv/Fqdvs7vJJwmXgJTb8pJNAXLnCSq3w FUXYnWWd/d+24N16DGQvPOru1muFu/u73cJmMsua1UItfhk37nCB2ozHks4ulC4MP1nbLCyKGHiF JbRxgNDGhYnpwuQEKxZnixOFiamJCSidSy89w9FlE7x0KSdLcyzXCuuiX7rwdGHiFv8/K07NTt7I TUzKwqtRt1fYFEkHks4sW2j1OD02xtji3n4zes5ut2Bu7/Bidw6jvSQZqyZj+8/nZe3W7j7fORQ2 46g5izGZ6xBKef9Ooy47S+dIODXkSvrwMPx1gcLtYqMP70bbcYMVx4oTY0UEjYTnB9b+iR0vFeTw /Lb3H3/5w7v37J9+fvPx3c9/+eObH978+PYn9uHtjx9ff//h7YfXnI6yLDumKDPbV+kaNSvcZv/n 54/v/vT649v//ebD92/xnVE+LTmjRvbf37x/89fX//z+z399+/F/so9vvv/z/3rzxsbnjYHvbRau QO3+im8GCnSuN4gWtVoJHH7jFiTJBLNJyCpARMNMIjcw1wL8KU4rToe69xMIidgEGxXMUSGu1UD3 WNg2qAA4fffxLfue/evr9z+++459+P7dyB++f8NUSewBgKQTG9vmJ7YRfa6jgltGR/m4vH/NO/iH H959z1igYAjicy60R+gQSAXbAYgf3v3xzfv/8fZP794g8NeqoIIIB8URvpByQeE1XTYg/u3j+z9/ //HP71+nFVSEXCFV3EgDjj1RQ5dfLLww6PgfHz6+/hmGdeSHtx/fvH/9gwGYStI2ldLeTE+pQ4Ak BfHXyANjZnAQRgsj/2ZxlsHpVE7RYMTPH44lTHKqifPun9+xDx/f/vATFdH4wDEN9kwjbQeNv737 l/evf4Su/vj6w8f37777/q3qHSmapm9Nqk242b0Re+IP1DfsGJ8cO/u/+92h0UVxcrMCzxtd/Pd3 f/zAQXIWkbtxt2+YkmNEarwMXP72bgQ6+BPv4L++++vbf3r739jP7L+//u6HN7KbkzN8FKchedF0 SaU4EbAXRbpvPvmwhQYcJTTw//vXP735EQXVH3/4CaG+5q1whvnpx79QV3/vcITHEKKI082/2dyQ MyHppNNWZaYmAXMrhDLQ23WDPIRwmIbDZRaovbsQselaDQnSHZYFEA4v8YfX333kFObvkRz/Mnzp /wGW3psI2yABAA== ------=_Part_1775_638873.1150894233203-- From leonard@den.ottolander.nl Wed Jun 21 10:03:05 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E951D3B103C for ; Wed, 21 Jun 2006 10:03:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10784-07 for ; Wed, 21 Jun 2006 10:03:01 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 0180D3B1033 for ; Wed, 21 Jun 2006 10:03:00 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id DDE3C4023; Wed, 21 Jun 2006 16:02:57 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id M5kjYx2Phqne; Wed, 21 Jun 2006 16:02:54 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 05A1E4021; Wed, 21 Jun 2006 16:02:53 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: Igor Russkih In-Reply-To: <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> Content-Type: text/plain Date: Wed, 21 Jun 2006 16:02:52 +0200 Message-Id: <1150898573.2801.45.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 14:03:05 -0000 Hello Igor, On Wed, 2006-06-21 at 16:50 +0400, Igor Russkih wrote: > I'll be really glad to help to improve MC in this area, This looks really nice. I'm very exited. With just minor patching to the xml (introduction of ControlKeyword, eg "if", "else" etc.) and a custom colour scheme I've already got the php syntax looking much like the original in mc (where can I send patches? Is there a mailing list for colorer?). Only have to look at the String type as we normally distinguish between single quoted (FixedString) and double quoted (VariableString) in php (and perl too for that matter). Although the startup of the viewer seems a bit slow with colorer this has much added value over the default syntax highlighting, and although I think we could well include the colorer hooks in the main mc tree I don't believe we should drop the existing highlighting, over even make colorer the default. Firstly the default syntax is more lightweight, which some people might prefer. Secondly the use of colorer requires the installation of a(n extra) third party library. > If somebody is interested, attached is a full diff on MC tree to > support colorer. Is this a fully functional patch? Much lighter than the diff I got diffing your tarball against CVS :) . In that patch I noticed a couple of things: - You got rid of the COPYING.LGPL file in vfs. I think this might be a mistake on your part. You might want to rectify that for your version. - In your version you got rid of the pipethrough files. This has no bearing on us as it's not in your patch. - There are a lot of fixes to the po files and some to the Russian and Serbian(?) man page. Please submit these to this list separately. - I noticed a CR here and there. There seem to be even more in the patch you sent. Please get rid of those (fe with dos2unix). - You made some fixes to the config files as well that seem same. Please submit those separately for review. - I noticed changes in vfs/samba/configure. Most of this are somewhat odd whitespace changes, but there appear to be some hunks at the top and bottom to actually do something. Please submit (not the whitespace) :) . - Why did you get rid of vfs/extfs/README.it? (not much of an issue) - There are a lot of added comments/fixes in config.h.in that I do not see in your patch. Please submit separately. > For now I'm using sf.net SVN repository to store modified MC code. > Information on how to access it: > http://sourceforge.net/svn/?group_id=34855 Good to know. > There are also some questions which I believe should be discussed. > At first there is one C++ file in this mod (to link with c++ colorer > code). As far as I understand MC uses C only. Is this a problem? Yes, it might. The overall approach towards accepted language constructs is a bit conservative to maintain compatibility with older systems. Would it be much work to rewrite these parts? > Another is that this mod dynamically links to the libcolorer - this > means that to use it, colorer library should be installed in system. > This introduces MC additional dependency. This is why I do not want to make colorer the default. I think this is something we should leave to the distributions. > to get syntax highlighting in the viewer too > That's a good idea, I'll try investigate it in near time. That would be great. Thanks a lot! Leonard. P.S. Could you please set your mail client to produce plain text mails and use an indentation character and a "replying to" line for quotes? -- mount -t life -o ro /dev/dna /genetic/research From ptsekov@gmx.net Wed Jun 21 10:28:00 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8E9D53B106A for ; Wed, 21 Jun 2006 10:28:00 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12487-02 for ; Wed, 21 Jun 2006 10:27:59 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 7C4863B106C for ; Wed, 21 Jun 2006 10:27:58 -0400 (EDT) Received: (qmail invoked by alias); 21 Jun 2006 14:27:57 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp032) with SMTP; 21 Jun 2006 16:27:57 +0200 X-Authenticated: #14308112 Date: Wed, 21 Jun 2006 17:26:43 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole Cc: MC development Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150898573.2801.45.camel@athlon> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 14:28:00 -0000 On Wed, 21 Jun 2006, Leonard den Ottolander wrote: >> There are also some questions which I believe should be discussed. >> At first there is one C++ file in this mod (to link with c++ colorer >> code). As far as I understand MC uses C only. Is this a problem? > > Yes, it might. The overall approach towards accepted language constructs > is a bit conservative to maintain compatibility with older systems. > Would it be much work to rewrite these parts? Yes it will take a lot of work - colorer is written entirely in C++ . Thus there is a thin wrapper to translate from C to C++ and vice versa. In my opinion this is not a big deal and a necessary sacrifice. For system which do not have C++ support obviously colorer syntax highlighting would be disabled by configure. Since I have tried to embed colorer in MC in the past I have configure code that deals with those issues. >> Another is that this mod dynamically links to the libcolorer - this >> means that to use it, colorer library should be installed in system. >> This introduces MC additional dependency. > > This is why I do not want to make colorer the default. I think this is > something we should leave to the distributions. This we are not going to make it the default (at least not at this time). This can be achieved with configure too - I have code for that too. I still haven't looked at the patch that Igor sent today but I'll do that as soon as I get some free time. I am willing to make the necessary changes to MC to adopt Igor's patch. I think patch has great value. From leonard@den.ottolander.nl Wed Jun 21 11:04:35 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 10A383B0FA5 for ; Wed, 21 Jun 2006 11:04:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15002-05 for ; Wed, 21 Jun 2006 11:04:34 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id CE3943B0FDD for ; Wed, 21 Jun 2006 11:04:33 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id BE3F44023 for ; Wed, 21 Jun 2006 17:04:32 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id nGjmWqt66RAz for ; Wed, 21 Jun 2006 17:04:31 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 428F34021 for ; Wed, 21 Jun 2006 17:04:31 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> Content-Type: text/plain Date: Wed, 21 Jun 2006 17:04:30 +0200 Message-Id: <1150902270.2801.52.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 15:04:35 -0000 Hello Pavel, On Wed, 2006-06-21 at 17:26 +0300, Pavel Tsekov wrote: > Yes it will take a lot of work - colorer is written entirely in C++ . > Thus there is a thin wrapper to translate from C to C++ and vice > versa. In my opinion this is not a big deal and a necessary sacrifice. I'm not sure what you say here: Is it a necessary sacrifice to port syntax-colorer.cpp to c or is it a necessary sacrifice to include c++ code into the tree? I'd rather go for the first option. > This can be achieved with configure too - I have code for that too. All it needs is the current default in the patch to change. > I still haven't looked at the patch that Igor sent today but I'll > do that as soon as I get some free time. I am willing to make the > necessary changes to MC to adopt Igor's patch. Maybe Igor is just as willing to make some changes to the patch for mc to adopt it ;) . > I think patch has great value. We totally agree then :-) . Leonard. -- mount -t life -o ro /dev/dna /genetic/research From ptsekov@gmx.net Wed Jun 21 11:46:22 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6005D3B106E for ; Wed, 21 Jun 2006 11:46:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18001-02 for ; Wed, 21 Jun 2006 11:46:20 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 72F443B1076 for ; Wed, 21 Jun 2006 11:46:19 -0400 (EDT) Received: (qmail invoked by alias); 21 Jun 2006 15:46:17 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp036) with SMTP; 21 Jun 2006 17:46:17 +0200 X-Authenticated: #14308112 Date: Wed, 21 Jun 2006 18:45:04 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150902270.2801.52.camel@athlon> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <1150902270.2801.52.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 15:46:22 -0000 On Wed, 21 Jun 2006, Leonard den Ottolander wrote: > Hello Pavel, > > On Wed, 2006-06-21 at 17:26 +0300, Pavel Tsekov wrote: >> Yes it will take a lot of work - colorer is written entirely in C++ . >> Thus there is a thin wrapper to translate from C to C++ and vice >> versa. In my opinion this is not a big deal and a necessary sacrifice. > > I'm not sure what you say here: Is it a necessary sacrifice to port > syntax-colorer.cpp to c or is it a necessary sacrifice to include c++ > code into the tree? I'd rather go for the first option. You cannot avoid the inclusion of C++ code. colorer is written in C++ and as such it cannot be linked directly with MC. You'll need a wrapper which must be compiled with C++ compiler. We can discuss however where to put that code ? It can be moved into a directory of its own or it can be left where it is now. From INVALID.NOREPLY@gnu.org Wed Jun 21 13:36:11 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B39933B0646 for ; Wed, 21 Jun 2006 13:36:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25350-05 for ; Wed, 21 Jun 2006 13:36:07 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 95CA53B0578 for ; Wed, 21 Jun 2006 13:36:05 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6cP-0008Df-00; Wed, 21 Jun 2006 13:35:57 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:35:56 +0200 Date: Wed, 21 Jun 2006 19:35:56 +0200 To: SGh , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16303] More functionally u7z From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16303 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-193556.sv26390.77497@savannah.gnu.org> References: <20060408-134359.sv45177.11632@savannah.gnu.org> <20060408-134508.sv45177.86924@savannah.gnu.org> <20060408-134854.sv45177.29103@savannah.gnu.org> <20060518-165152.sv36205.74443@savannah.gnu.org> <20060530-195233.sv45177.57929@savannah.gnu.org> In-Reply-To: <20060530-195233.sv45177.57929@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.558 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.558 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:36:11 -0000 Follow-up Comment #4, bug #16303 (project mc): It's easier to see what changed (and if there are unwanted regressions) if you patch the existing version instead of writing a new version from scratch. So if you want to get any improvements considered for inclusion you will have to rewrite your patch. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 13:37:06 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 36E093B014E for ; Wed, 21 Jun 2006 13:37:06 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25325-10 for ; Wed, 21 Jun 2006 13:37:04 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 66A103B059D for ; Wed, 21 Jun 2006 13:37:04 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6cj-0008JI-00; Wed, 21 Jun 2006 13:36:17 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:36:17 +0200 Date: Wed, 21 Jun 2006 19:36:17 +0200 To: Rudolf Polzer , Oswald Buddenhagen , Roland Illig , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16452] mcedit forgets POSIX newline at end of file From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16452 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-193617.sv26390.27833@savannah.gnu.org> References: <20060427-072754.sv49027.45360@savannah.gnu.org> <20060427-180523.sv41304.99027@savannah.gnu.org> <20060427-214753.sv49027.21116@savannah.gnu.org> <20060427-215010.sv49027.73709@savannah.gnu.org> <20060429-101230.sv20990.85981@savannah.gnu.org> <20060429-102521.sv41304.56758@savannah.gnu.org> <20060429-091823.sv49027.23806@savannah.gnu.org> In-Reply-To: <20060429-091823.sv49027.23806@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.559 tagged_above=-999 required=2 tests=[AWL=0.041, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.559 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:37:06 -0000 Follow-up Comment #7, bug #16452 (project mc): Any patches forthcoming? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 13:37:35 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 426863B04F6 for ; Wed, 21 Jun 2006 13:37:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25593-02 for ; Wed, 21 Jun 2006 13:37:34 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id E733D3B0494 for ; Wed, 21 Jun 2006 13:37:33 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6dv-0008Pw-00; Wed, 21 Jun 2006 13:37:31 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:37:31 +0200 Date: Wed, 21 Jun 2006 19:37:31 +0200 To: Rolf Offermanns , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16383] Build system does not allow cross compiling From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16383 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-193731.sv26390.16849@savannah.gnu.org> References: <20060419-132319.sv48822.2441@savannah.gnu.org> In-Reply-To: <20060419-132319.sv48822.2441@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.56 tagged_above=-999 required=2 tests=[AWL=0.040, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.56 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:37:35 -0000 Follow-up Comment #1, bug #16383 (project mc): Please provide a patch. Thanks. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 13:47:41 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1B4753B063E for ; Wed, 21 Jun 2006 13:47:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26098-05 for ; Wed, 21 Jun 2006 13:47:39 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 2A6D33B00B0 for ; Wed, 21 Jun 2006 13:47:39 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6nT-0001MS-00; Wed, 21 Jun 2006 13:47:23 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:47:23 +0200 Date: Wed, 21 Jun 2006 19:47:23 +0200 To: PB , Leonard den Ottolander , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #15621] file/dir entries with international characters mess up the columns From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 15621 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-194722.sv26390.13446@savannah.gnu.org> References: <20060204-101232.sv47152.80354@savannah.gnu.org> <20060211-093708.sv47312.65124@savannah.gnu.org> In-Reply-To: <20060211-093708.sv47312.65124@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.561 tagged_above=-999 required=2 tests=[AWL=0.039, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.561 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:47:41 -0000 Update of bug #15621 (project mc): Status: None => Duplicate Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #2: This is a duplicate of bug 7936 and bug 15100. Please check for existing bug reports before submitting. If you do submit please specify your platform, the version of mc used and if any patches have been applied. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Wed Jun 21 14:07:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5C2753B0706 for ; Wed, 21 Jun 2006 14:07:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27026-09 for ; Wed, 21 Jun 2006 14:07:15 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 1053F3B0733 for ; Wed, 21 Jun 2006 14:07:15 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 257144023; Wed, 21 Jun 2006 20:07:14 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id tHnFxEPUHYqg; Wed, 21 Jun 2006 20:07:12 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 513C24021; Wed, 21 Jun 2006 20:07:12 +0200 (CEST) Subject: Progress bar From: Leonard den Ottolander To: Pavel Tsekov Content-Type: text/plain Date: Wed, 21 Jun 2006 20:07:11 +0200 Message-Id: <1150913231.2801.73.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 18:07:16 -0000 Hello Pavel, Looking at bugs 10507 and 13100. The patch from Hampa Hug that you've committed should fix the issue for moving files. Does it also fix the issue when copying files? Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Wed Jun 21 14:07:52 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 025663B06D1 for ; Wed, 21 Jun 2006 14:07:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27422-01 for ; Wed, 21 Jun 2006 14:07:49 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id DD4563B05EB for ; Wed, 21 Jun 2006 14:07:48 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft778-00051S-00; Wed, 21 Jun 2006 14:07:42 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 20:07:42 +0200 Date: Wed, 21 Jun 2006 20:07:42 +0200 To: Thomas Zajic , Leonard den Ottolander , Oleg Broytmann , Rihards , mc-devel@gnome.org Subject: [bug #13100] Bytes and Count progess bars when moving multiple files From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 13100 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-200741.sv26390.85621@savannah.gnu.org> References: <20050516-170931.sv14402.91225@savannah.gnu.org> In-Reply-To: <20050516-170931.sv14402.91225@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.562 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.562 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 18:07:52 -0000 Update of bug #13100 (project mc): Status: None => Duplicate Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #1: This is a duplicate of bug 10507. Should be fixed by the patch from Hampa Hug to file_move_move() in file.c. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Wed Jun 21 14:56:53 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7BFFF3B0235 for ; Wed, 21 Jun 2006 14:56:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30644-03 for ; Wed, 21 Jun 2006 14:56:52 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id A71023B02AF for ; Wed, 21 Jun 2006 14:56:51 -0400 (EDT) Received: (qmail invoked by alias); 21 Jun 2006 18:56:50 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp042) with SMTP; 21 Jun 2006 20:56:50 +0200 X-Authenticated: #14308112 Date: Wed, 21 Jun 2006 21:55:37 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Progress bar In-Reply-To: <1150913231.2801.73.camel@athlon> Message-ID: References: <1150913231.2801.73.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 18:56:53 -0000 On Wed, 21 Jun 2006, Leonard den Ottolander wrote: > Looking at bugs 10507 and 13100. The patch from Hampa Hug that you've > committed should fix the issue for moving files. Does it also fix the > issue when copying files? No. From INVALID.NOREPLY@gnu.org Wed Jun 21 14:58:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A18373B02AF for ; Wed, 21 Jun 2006 14:58:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30612-07 for ; Wed, 21 Jun 2006 14:58:33 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3D90C3B02A3 for ; Wed, 21 Jun 2006 14:58:33 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft7uI-0006zh-00; Wed, 21 Jun 2006 14:58:30 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 20:58:30 +0200 Date: Wed, 21 Jun 2006 20:58:30 +0200 To: Leonard den Ottolander , Rihards , mc-devel@gnome.org Subject: [bug #10507] copy/move progress bar show none/bad values on big transactions From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 10507 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-205829.sv26390.48736@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.562 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.562 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 18:58:36 -0000 Update of bug #10507 (project mc): Status: None => Fixed Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #1: The poor counting appears to be fixed in CVS. Closing this bug as FIXED. The progress counter only calculates estimates per file. If you want a progress counter for the total time for all files you should file this as an RFE. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 15:15:43 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 433423B03D6 for ; Wed, 21 Jun 2006 15:15:43 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31772-04 for ; Wed, 21 Jun 2006 15:15:42 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 0CB6A3B0397 for ; Wed, 21 Jun 2006 15:15:41 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft8Aq-0007zn-00; Wed, 21 Jun 2006 15:15:36 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:15:35 +0000 Date: Wed, 21 Jun 2006 19:15:35 +0000 To: SGh , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16303] More functionally u7z From: SGh X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16303 User-Agent: Opera/8.51 (X11; Linux i686; U; ru) X-Apparently-From: 80.91.160.214 (Savane authenticated user sgh) Message-Id: <20060621-191535.sv45177.54566@savannah.gnu.org> References: <20060408-134359.sv45177.11632@savannah.gnu.org> <20060408-134508.sv45177.86924@savannah.gnu.org> <20060408-134854.sv45177.29103@savannah.gnu.org> <20060518-165152.sv36205.74443@savannah.gnu.org> <20060530-195233.sv45177.57929@savannah.gnu.org> <20060621-193556.sv26390.77497@savannah.gnu.org> In-Reply-To: <20060621-193556.sv26390.77497@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.563 tagged_above=-999 required=2 tests=[AWL=0.037, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.563 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 19:15:43 -0000 Follow-up Comment #5, bug #16303 (project mc): OK, Understand. I will download latest CVS, and see if I have something to patch un u7z. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From irusskih@gmail.com Wed Jun 21 15:26:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7DF953B01F3 for ; Wed, 21 Jun 2006 15:26:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32350-07 for ; Wed, 21 Jun 2006 15:26:40 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.193]) by menubar.gnome.org (Postfix) with ESMTP id ABDF33B0536 for ; Wed, 21 Jun 2006 15:26:33 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id s1so277067nze for ; Wed, 21 Jun 2006 12:26:33 -0700 (PDT) Received: by 10.36.227.49 with SMTP id z49mr847594nzg; Wed, 21 Jun 2006 12:26:33 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Wed, 21 Jun 2006 12:26:32 -0700 (PDT) Message-ID: <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> Date: Wed, 21 Jun 2006 23:26:32 +0400 From: "Igor Russkih" To: "Leonard den Ottolander" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150898573.2801.45.camel@athlon> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.412 tagged_above=-999 required=2 tests=[AWL=0.188, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.412 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 19:26:44 -0000 On 6/21/06, Leonard den Ottolander wrote: > Hello Igor, > > original in mc (where can I send patches? Is there a mailing list for > colorer?). Only have to look at the String type as we normally Sure, you can use colorer-talks@lists.sourceforge.net (http://lists.sourceforge.net/mailman/listinfo/colorer-talks) > Although the startup of the viewer seems a bit slow with colorer this > has much added value over the default syntax highlighting, and although Yep, the startup time is a bit heavier. Basically this depends on a syntax complexity and dependencies. > I think we could well include the colorer hooks in the main mc tree I > don't believe we should drop the existing highlighting, over even make > colorer the default. Firstly the default syntax is more lightweight, > which some people might prefer. Secondly the use of colorer requires the > installation of a(n extra) third party library. This was one of the ideas I've tried to reach in my patch. Colorer library can be disabled either during compilation time (thus making no dependencies on libcolorer) or in runtime (in this case regular mc syntax highlighter can work). > Is this a fully functional patch? Much lighter than the diff I got > diffing your tarball against CVS :) . Tarball can contain some additional generated files or codes which are not included into SVN repository. From the other side, colorer's SVN repository contains the only files from MC-2006-05-30-15 snapshot which I've altered. This can be a reason. > In that patch I noticed a couple of things: > - There are a lot of fixes to the po files and some to the Russian and > Serbian(?) man page. Please submit these to this list separately. Just a single ru.po file with a few additions. > - I noticed a CR here and there. There seem to be even more in the patch > you sent. Please get rid of those (fe with dos2unix). thanks, that's because of windows-based SVN client. For all the next comments it seems to be a misunderstanding (possibly because my diff is based on MC-2006-05-30-15 snapshot, not the latest one). > - There are a lot of added comments/fixes in config.h.in that I do not > see in your patch. Please submit separately. > - You got rid of the COPYING.LGPL file in vfs. I think this might be a > mistake on your part. You might want to rectify that for your version. > - In your version you got rid of the pipethrough files. This has no > bearing on us as it's not in your patch. > - You made some fixes to the config files as well that seem same. Please > submit those separately for review. > - I noticed changes in vfs/samba/configure. Most of this are somewhat > odd whitespace changes, but there appear to be some hunks at the top and > bottom to actually do something. Please submit (not the whitespace) :) . > - Why did you get rid of vfs/extfs/README.it? (not much of an issue) I'll upmerge with latest CVS MC revision and resend it. > > code). As far as I understand MC uses C only. Is this a problem? > Yes, it might. The overall approach towards accepted language constructs > is a bit conservative to maintain compatibility with older systems. > Would it be much work to rewrite these parts? The main problem with this is that syntax-colorer.cpp file makes direct connection between mc editor data and colorer's code. Technically it is possible to extract a kind of 'generic' C API and include it on library side. In this case MC will have pure C codes. >From the other side this will not release MC from libcolorer dependency - and this means that if user wants to compile and use mc-colorer, he anyway should have C++ environment. I mean I see no reason to eliminate that C++ code from MC: those who have C-only environments can just disable colorer's support in compile time. > This is why I do not want to make colorer the default. I think this is > something we should leave to the distributions. Agreed. > P.S. Could you please set your mail client to produce plain text mails > and use an indentation character and a "replying to" line for quotes? sorry, fixed. -- Igor From leonard@den.ottolander.nl Wed Jun 21 16:05:47 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0DEE23B056F for ; Wed, 21 Jun 2006 16:05:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02395-09 for ; Wed, 21 Jun 2006 16:05:45 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 4133B3B0556 for ; Wed, 21 Jun 2006 16:05:45 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 048E54023 for ; Wed, 21 Jun 2006 22:05:44 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id XchkQtXZk6gl for ; Wed, 21 Jun 2006 22:05:43 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id C653F4021 for ; Wed, 21 Jun 2006 22:05:43 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> Content-Type: text/plain Date: Wed, 21 Jun 2006 22:05:43 +0200 Message-Id: <1150920343.2801.92.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 20:05:47 -0000 Hello Igor, On Wed, 2006-06-21 at 23:26 +0400, Igor Russkih wrote: > On 6/21/06, Leonard den Ottolander wrote: > Colorer library can be disabled either during compilation time Switching at run time would be nice. At least as a startup option. > Just a single ru.po file with a few additions. And sr.po. > For all the next comments it seems to be a misunderstanding (possibly > because my diff is based on MC-2006-05-30-15 snapshot, not the latest > one). These are no misunderstandings, just differences I noticed between mccolorer and mc-CVS. I already filtered out some m4 related makefile issues. > > - There are a lot of added comments/fixes in config.h.in that I do not > > see in your patch. Please submit separately. These are comments and fixes in your mccolorer, not available in CVS. Are you using patches from others? > > - You got rid of the COPYING.LGPL file in vfs. I think this might be a > > mistake on your part. You might want to rectify that for your version. For some reason this file got lost in your mccolorer tarball. > > - You made some fixes to the config files as well that seem same. Please > > submit those separately for review. > > - I noticed changes in vfs/samba/configure. Most of this are somewhat > > odd whitespace changes, but there appear to be some hunks at the top and > > bottom to actually do something. Please submit (not the whitespace) :) . These are patches you seem to be using that are not in CVS. This is why I ask you to submit them for review. > I'll upmerge with latest CVS MC revision and resend it. The CVS tarball I'm using is only 2 weeks newer than yours. I'm not speaking of the recent changes to CVS. > The main problem with this is that syntax-colorer.cpp file makes > direct connection between mc editor data and colorer's code. > Technically it is possible to extract a kind of 'generic' C API and > include it on library side. In this case MC will have pure C codes. Is it technically possible to reimplement that c++ code in c? (This is just theoretical question, I don't ask you to do it.) > >From the other side this will not release MC from libcolorer > dependency - and this means that if user wants to compile and use > mc-colorer, he anyway should have C++ environment. > > I mean I see no reason to eliminate that C++ code from MC: those who > have C-only environments can just disable colorer's support in compile > time. Yes, I guess you are right. We might want to put the colorer code in a different directory though. > > P.S. Could you please set your mail client to produce plain text mails > > and use an indentation character and a "replying to" line for quotes? > sorry, fixed. Thanks :) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Wed Jun 21 16:06:51 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5314E3B0573 for ; Wed, 21 Jun 2006 16:06:51 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02504-10 for ; Wed, 21 Jun 2006 16:06:50 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 537BD3B056B for ; Wed, 21 Jun 2006 16:06:50 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 8C1574023 for ; Wed, 21 Jun 2006 22:06:44 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id HM0rfGtmzMsH for ; Wed, 21 Jun 2006 22:06:43 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id B9AD84021 for ; Wed, 21 Jun 2006 22:06:43 +0200 (CEST) Subject: Re: Progress bar From: Leonard den Ottolander To: MC development In-Reply-To: References: <1150913231.2801.73.camel@athlon> Content-Type: text/plain Date: Wed, 21 Jun 2006 22:06:43 +0200 Message-Id: <1150920403.2801.95.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 20:06:51 -0000 On Wed, 2006-06-21 at 21:55 +0300, Pavel Tsekov wrote: > > Does it also fix the > > issue when copying files? > > No. Seems to work fine though. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Wed Jun 21 17:21:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F34E73B00E8 for ; Wed, 21 Jun 2006 17:21:15 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06624-06 for ; Wed, 21 Jun 2006 17:21:14 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 925423B00F2 for ; Wed, 21 Jun 2006 17:21:14 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id B529F4023 for ; Wed, 21 Jun 2006 23:21:13 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id tbmp1FvQgFwr for ; Wed, 21 Jun 2006 23:21:07 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 4373F4021 for ; Wed, 21 Jun 2006 23:21:07 +0200 (CEST) Subject: Snapshots availability From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Wed, 21 Jun 2006 23:21:06 +0200 Message-Id: <1150924866.2801.100.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 21:21:16 -0000 Hi, Who is the creator of the two weekly snapshots found at http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/snapshots/ ? Pavel? Miguel? Could you please keep a couple of months worth of snapshots around? I couldn't find the May 30th snapshot when I wanted to compare it with mccolorer. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Wed Jun 21 19:05:41 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2C4D23B0138 for ; Wed, 21 Jun 2006 19:05:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11604-09 for ; Wed, 21 Jun 2006 19:05:39 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 756083B006C for ; Wed, 21 Jun 2006 19:05:39 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtBlM-0000CL-00; Wed, 21 Jun 2006 19:05:32 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 01:05:32 +0200 Date: Thu, 22 Jun 2006 01:05:32 +0200 To: Leonard den Ottolander , mc-devel@gnome.org Subject: [task #5671] Data Export #2 (bugs) From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: task X-Savane-Item-ID: 5671 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-010531.sv26390.89793@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.564 tagged_above=-999 required=2 tests=[AWL=0.036, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.564 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 23:05:41 -0000 URL: Summary: Data Export #2 (bugs) Project: GNU Midnight Commander Submitted by: leonardjo Submitted on: Thursday 22/06/06 at 01:05 Should Start On: Thursday 22/06/06 at 00:00 Should be Finished on: Friday 23/06/06 at 00:00 Category: None Priority: 5 - Normal Status: None Privacy: Private Assigned to: None Percent Complete: 0% Open/Closed: Open Effort: 0.00 _______________________________________________________ Details: A new export job has been registered. This task has been created to keep the project informed. However, only Leonard den Ottolander, that created the job, can remove the job itself. ######### JOB URL ######### Once the job will be done, it will be available at: ######### JOB REMOVAL ######### Closing this task will not remove the job. To remove the job, Leonard den Ottolander must go at ######### JOB DETAILS ######### The SQL query will be: SELECT bug_id FROM bugs WHERE group_id=3521 (Note: We are aware this information is not tremendously user-friendly. This will be improved in future Savane releases) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Thu Jun 22 00:53:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8FED23B0377 for ; Thu, 22 Jun 2006 00:53:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28223-01 for ; Thu, 22 Jun 2006 00:53:37 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 25D633B027A for ; Thu, 22 Jun 2006 00:53:36 -0400 (EDT) Received: (qmail invoked by alias); 22 Jun 2006 04:53:35 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp016) with SMTP; 22 Jun 2006 06:53:35 +0200 X-Authenticated: #14308112 Date: Thu, 22 Jun 2006 07:52:21 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Progress bar In-Reply-To: <1150920403.2801.95.camel@athlon> Message-ID: References: <1150913231.2801.73.camel@athlon> <1150920403.2801.95.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 04:53:39 -0000 On Wed, 21 Jun 2006, Leonard den Ottolander wrote: > On Wed, 2006-06-21 at 21:55 +0300, Pavel Tsekov wrote: >>> Does it also fix the >>> issue when copying files? >> >> No. > > Seems to work fine though. Hampa's patch behaves exactly as described: [...] If a file is moved by copy/remove the progress bar is advanced twice. On the other hand, if a file is moved by renaming the progress bar is never updated. [...] I don't see how it could possibly fix other issues. From INVALID.NOREPLY@gnu.org Thu Jun 22 02:16:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7DB7B3B014A for ; Thu, 22 Jun 2006 02:16:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32693-10 for ; Thu, 22 Jun 2006 02:16:42 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 885D53B026A for ; Thu, 22 Jun 2006 02:16:42 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtIUZ-000551-00; Thu, 22 Jun 2006 02:16:39 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 06:16:38 +0000 Date: Thu, 22 Jun 2006 06:16:38 +0000 To: Rolf Offermanns , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16383] Build system does not allow cross compiling From: Rolf Offermanns X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16383 User-Agent: Mozilla/5.0 (compatible; Konqueror/3.5; Linux) KHTML/3.5.2 (like Gecko) Kubuntu 6.06 Dapper X-Apparently-From: 84.58.135.66 (Savane authenticated user roffermanns) Message-Id: <20060622-061638.sv48822.49212@savannah.gnu.org> References: <20060419-132319.sv48822.2441@savannah.gnu.org> <20060621-193731.sv26390.16849@savannah.gnu.org> In-Reply-To: <20060621-193731.sv26390.16849@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.564 tagged_above=-999 required=2 tests=[AWL=0.036, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.564 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 06:16:44 -0000 Follow-up Comment #2, bug #16383 (project mc): I would, but I have no clue about the auto* stuff. Sorry. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 02:56:50 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C01823B02D2 for ; Thu, 22 Jun 2006 02:56:50 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02668-05 for ; Thu, 22 Jun 2006 02:56:49 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 61ED03B00C2 for ; Thu, 22 Jun 2006 02:56:49 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtJ7N-0000cX-00; Thu, 22 Jun 2006 02:56:45 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 09:56:45 +0300 Date: Thu, 22 Jun 2006 09:56:45 +0300 To: Rolf Offermanns , Leonard den Ottolander , Pavel Tsekov , mc-devel@gnome.org Subject: [bug #16383] Build system does not allow cross compiling From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16383 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060622-095644.sv36205.99030@savannah.gnu.org> References: <20060419-132319.sv48822.2441@savannah.gnu.org> <20060621-193731.sv26390.16849@savannah.gnu.org> <20060622-061638.sv48822.49212@savannah.gnu.org> In-Reply-To: <20060622-061638.sv48822.49212@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.565 tagged_above=-999 required=2 tests=[AWL=0.035, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.565 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 06:56:51 -0000 Follow-up Comment #3, bug #16383 (project mc): The major problem here is that man2hlp relies on glib. This complicates the task of making it build in cross environment. One way to fix this is to drop the glib dependency - there are tree or four functions which need to be replaced. When I have time I'll do this if noone beats me to it. I have already made some changes to the auto stuff so that MC will build properly in cross environment but whithout changing man2hlp they are of no use. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From irusskih@gmail.com Thu Jun 22 06:17:30 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 84BC73B0191 for ; Thu, 22 Jun 2006 06:17:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15568-03 for ; Thu, 22 Jun 2006 06:17:27 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.195]) by menubar.gnome.org (Postfix) with ESMTP id 9A6723B02D2 for ; Thu, 22 Jun 2006 06:17:26 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id l8so363567nzf for ; Thu, 22 Jun 2006 03:17:25 -0700 (PDT) Received: by 10.36.252.49 with SMTP id z49mr1712665nzh; Thu, 22 Jun 2006 03:17:25 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Thu, 22 Jun 2006 03:17:25 -0700 (PDT) Message-ID: <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> Date: Thu, 22 Jun 2006 14:17:25 +0400 From: "Igor Russkih" To: "Leonard den Ottolander" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150920303.2801.89.camel@athlon> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_Part_3415_13609534.1150971445577" References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.499 tagged_above=-999 required=2 tests=[AWL=0.101, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.499 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 10:17:30 -0000 ------=_Part_3415_13609534.1150971445577 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Leonard, all, Here attached the patch over mc-2006-06-17-02 (snapshot from ibiblio.org). Please don't make direct diffs between mc-colorer and cvs snapshot since they are different versions. Use this patch for reviewing. I've separated the patch for easier understanding: build.diff - make/configs changes edit.diff - changes in existing edit/* files mccolorer.diff - new colorer's code edit/syntax-colorer-* lang.diff - ru.po additions for colorer > > Colorer library can be disabled either during compilation time > Switching at run time would be nice. At least as a startup option. "either during compilation time or in runtime" - I meant this is already implemented. > These are comments and fixes in your mccolorer, not available in CVS. > Are you using patches from others? No, just clean mc snapshot from ibiblio.org. > > > odd whitespace changes, but there appear to be some hunks at the top and > > > bottom to actually do something. Please submit (not the whitespace) :) . > These are patches you seem to be using that are not in CVS. This is why > I ask you to submit them for review. Sorry, it seems to be a difference in our original MC tarballs. I didn't touch it. See the patch attached for all the files changed. > > The main problem with this is that syntax-colorer.cpp file makes > > direct connection between mc editor data and colorer's code. > > Technically it is possible to extract a kind of 'generic' C API and > > include it on library side. In this case MC will have pure C codes. > Is it technically possible to reimplement that c++ code in c? (This is > just theoretical question, I don't ask you to do it.) It is possible to move this code to libcolorer side and implement plain C API from library side - however this'll take more time and I see no reason in doing this. > Yes, I guess you are right. We might want to put the colorer code in a > different directory though. That's easy. -- Igor ------=_Part_3415_13609534.1150971445577 Content-Type: application/x-gzip; name=mccolorer.diff.tgz Content-Transfer-Encoding: base64 X-Attachment-Id: f_eoqy6k46 Content-Disposition: attachment; filename="mccolorer.diff.tgz" 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 PaPn4z3/Fzf5qE4AQAEA ------=_Part_3415_13609534.1150971445577-- From INVALID.NOREPLY@gnu.org Thu Jun 22 07:54:37 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 138DC3B02A8 for ; Thu, 22 Jun 2006 07:54:37 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21553-06 for ; Thu, 22 Jun 2006 07:54:35 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 73FAA3B02F9 for ; Thu, 22 Jun 2006 07:54:35 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtNlY-0005Il-00; Thu, 22 Jun 2006 07:54:32 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 13:54:32 +0200 Date: Thu, 22 Jun 2006 13:54:32 +0200 To: Leonard den Ottolander , mc-devel@gnome.org Subject: [task #5673] Data Export #3 (bugs) From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: task X-Savane-Item-ID: 5673 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-135432.sv26390.82990@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.566 tagged_above=-999 required=2 tests=[AWL=0.034, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.566 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 11:54:37 -0000 URL: Summary: Data Export #3 (bugs) Project: GNU Midnight Commander Submitted by: leonardjo Submitted on: Thursday 22/06/06 at 13:54 Should Start On: Thursday 22/06/06 at 00:00 Should be Finished on: Friday 23/06/06 at 00:00 Category: None Priority: 5 - Normal Status: None Privacy: Private Assigned to: None Percent Complete: 0% Open/Closed: Open Effort: 0.00 _______________________________________________________ Details: A new export job has been registered. This task has been created to keep the project informed. However, only Leonard den Ottolander, that created the job, can remove the job itself. ######### JOB URL ######### Once the job will be done, it will be available at: ######### JOB REMOVAL ######### Closing this task will not remove the job. To remove the job, Leonard den Ottolander must go at ######### JOB DETAILS ######### The SQL query will be: SELECT bug_id FROM bugs WHERE group_id=3521 (Note: We are aware this information is not tremendously user-friendly. This will be improved in future Savane releases) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Thu Jun 22 08:09:08 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5CB333B0421 for ; Thu, 22 Jun 2006 08:09:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23152-01 for ; Thu, 22 Jun 2006 08:09:06 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 7DAD03B0401 for ; Thu, 22 Jun 2006 08:09:06 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 6AC464023 for ; Thu, 22 Jun 2006 14:09:05 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id xMGRfFcFP945 for ; Thu, 22 Jun 2006 14:09:03 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id CB99E4021 for ; Thu, 22 Jun 2006 14:09:03 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> Content-Type: text/plain Date: Thu, 22 Jun 2006 14:09:03 +0200 Message-Id: <1150978143.2807.11.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:09:08 -0000 Hello Igor, On Thu, 2006-06-22 at 14:17 +0400, Igor Russkih wrote: > "either during compilation time or in runtime" - I meant this is > already implemented. I should look for that switch then :) . > No, just clean mc snapshot from ibiblio.org. Can you make it available to me? I am quite curious where the changes I observe came from. They are quite a few, and if they are not in CVS I'm curious how they ended up in the tarball. > > Is it technically possible to reimplement that c++ code in c? (This is > > just theoretical question, I don't ask you to do it.) > It is possible to move this code to libcolorer side and implement > plain C API from library side - however this'll take more time and I > see no reason in doing this. My question was if it is technically possible to rewrite the cpp code for *mc* in c and (through trickery) still keep interface compatibility. A bit like linking Delphi (Pascal) to C code. This is possible through compiler switches changing the stack cleanup behaviour (and probably some alignment tricks). Again, I'm not asking you to do this, just inquiring about the theoretical possibility. It's a bit OT, I know ;) . Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Thu Jun 22 08:10:22 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CF08F3B0484 for ; Thu, 22 Jun 2006 08:10:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23399-04 for ; Thu, 22 Jun 2006 08:10:19 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id BBE813B0570 for ; Thu, 22 Jun 2006 08:10:19 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtO0n-00064f-00; Thu, 22 Jun 2006 08:10:17 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 14:10:17 +0200 Date: Thu, 22 Jun 2006 14:10:17 +0200 To: Leonard den Ottolander , mc-devel@gnome.org Subject: [task #5674] Data Export #4 (bugs) From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: task X-Savane-Item-ID: 5674 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-141017.sv26390.14093@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.566 tagged_above=-999 required=2 tests=[AWL=0.034, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.566 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:10:23 -0000 URL: Summary: Data Export #4 (bugs) Project: GNU Midnight Commander Submitted by: leonardjo Submitted on: Thursday 22/06/06 at 14:10 Should Start On: Thursday 22/06/06 at 00:00 Should be Finished on: Saturday 24/06/06 at 00:00 Category: None Priority: 5 - Normal Status: None Privacy: Private Assigned to: None Percent Complete: 0% Open/Closed: Open Effort: 0.00 _______________________________________________________ Details: A new export job has been registered. This task has been created to keep the project informed. However, only Leonard den Ottolander, that created the job, can remove the job itself. ######### JOB URL ######### Once the job will be done, it will be available at: ######### JOB REMOVAL ######### Closing this task will not remove the job. To remove the job, Leonard den Ottolander must go at ######### JOB DETAILS ######### The SQL query will be: SELECT bug_id FROM bugs WHERE group_id=3521 AND status_id IN (1) (Note: We are aware this information is not tremendously user-friendly. This will be improved in future Savane releases) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 13:49:13 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 721AA3B0733 for ; Wed, 21 Jun 2006 13:49:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26116-05 for ; Wed, 21 Jun 2006 13:49:11 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 8F2E03B06F1 for ; Wed, 21 Jun 2006 13:49:11 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6on-0001Zw-00; Wed, 21 Jun 2006 13:48:45 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:48:45 +0200 Date: Wed, 21 Jun 2006 19:48:45 +0200 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-194845.sv26390.25842@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> In-Reply-To: <20060306-153157.sv36205.31998@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.562 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.562 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 08:25:17 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:49:13 -0000 Follow-up Comment #25, bug #14155 (project mc): Ping. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Thu Jun 22 08:36:12 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 062EA3B0606 for ; Thu, 22 Jun 2006 08:36:12 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25706-05 for ; Thu, 22 Jun 2006 08:36:10 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id F034E3B03FD for ; Thu, 22 Jun 2006 08:36:09 -0400 (EDT) Received: (qmail invoked by alias); 22 Jun 2006 12:36:08 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp042) with SMTP; 22 Jun 2006 14:36:08 +0200 X-Authenticated: #14308112 Date: Thu, 22 Jun 2006 15:34:54 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150978143.2807.11.camel@athlon> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.477 tagged_above=-999 required=2 tests=[AWL=-0.012, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.477 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:36:12 -0000 On Thu, 22 Jun 2006, Leonard den Ottolander wrote: >>> Is it technically possible to reimplement that c++ code in c? (This is >>> just theoretical question, I don't ask you to do it.) >> It is possible to move this code to libcolorer side and implement >> plain C API from library side - however this'll take more time and I >> see no reason in doing this. > > My question was if it is technically possible to rewrite the cpp code > for *mc* in c and (through trickery) still keep interface compatibility. Not unless colorer exports C interfaces and it doesn't. The way it is implemented colorer exports a set of interfaces that one has to implement in terms of C++ classes. Theoretically it could be possible to create an C++ implementation of those interfaces, one that delegates the work to pure C functions. Again that means that colorer has to export a C. I don't see why this is such a big deal to you ? > A bit like linking Delphi (Pascal) to C code. This is possible through > compiler switches changing the stack cleanup behaviour (and probably > some alignment tricks). What about name mangling issues ? As I said above - you cannot avoid the C++ code. From leonard@den.ottolander.nl Thu Jun 22 08:36:29 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AFADE3B06C8 for ; Thu, 22 Jun 2006 08:36:29 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25640-08 for ; Thu, 22 Jun 2006 08:36:27 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id B69843B0677 for ; Thu, 22 Jun 2006 08:36:27 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 774334023 for ; Thu, 22 Jun 2006 14:36:21 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id XkAbOexUxtt9 for ; Thu, 22 Jun 2006 14:36:17 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id AA3E44021 for ; Thu, 22 Jun 2006 14:36:17 +0200 (CEST) Subject: Re: Progress bar From: Leonard den Ottolander To: MC development In-Reply-To: References: <1150913231.2801.73.camel@athlon> <1150920403.2801.95.camel@athlon> Content-Type: text/plain Date: Thu, 22 Jun 2006 14:36:17 +0200 Message-Id: <1150979777.2807.25.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:36:29 -0000 Hello Pavel, On Thu, 2006-06-22 at 07:52 +0300, Pavel Tsekov wrote: > Hampa's patch behaves exactly as described: > > [...] > If a file is moved by copy/remove the progress bar is advanced twice. On > the other hand, if a file is moved by renaming the progress bar is never > updated. > [...] I got confused by bug 10507 that doesn't distinguish clearly between copy and move. The copy progress bar behaves as expected. (copy_dir_dir() and move_dir_dir() do not show a bytes or count bar, but this is expected as they do not attempt to make an estimate of the number and size of the copied/moved files.) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Thu Jun 22 08:51:18 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C4EB23B06E1 for ; Thu, 22 Jun 2006 08:51:18 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27256-05 for ; Thu, 22 Jun 2006 08:51:17 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 562D33B066E for ; Thu, 22 Jun 2006 08:51:17 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtOdb-0000vu-00; Thu, 22 Jun 2006 08:50:23 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 14:50:22 +0200 Date: Thu, 22 Jun 2006 14:50:22 +0200 To: Gergely =?UTF-8?B?U3rDoXN6?= , Leonard den Ottolander , Pavel Tsekov , Oswald Buddenhagen , mc-devel@gnome.org Subject: [patch #4970] add label highlighting to c.syntax From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: patch X-Savane-Item-ID: 4970 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-145022.sv26390.88876@savannah.gnu.org> References: <20060312-194248.sv8412.23459@savannah.gnu.org> <20060317-170214.sv36205.75631@savannah.gnu.org> <20060317-161352.sv41304.82068@savannah.gnu.org> <20060317-211325.sv41304.63756@savannah.gnu.org> <20060318-120849.sv36205.36817@savannah.gnu.org> <20060318-144031.sv26390.61472@savannah.gnu.org> <20060319-090924.sv8412.83221@savannah.gnu.org> <20060319-164645.sv26390.22214@savannah.gnu.org> <20060319-204823.sv8412.33015@savannah.gnu.org> In-Reply-To: <20060319-204823.sv8412.33015@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.567 tagged_above=-999 required=2 tests=[AWL=0.033, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.567 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:51:19 -0000 Update of patch #4970 (project mc): Status: None => Done Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #9: Committed. Closing. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 08:59:11 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C623A3B071C for ; Thu, 22 Jun 2006 08:59:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28144-04 for ; Thu, 22 Jun 2006 08:59:10 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 8A51C3B0719 for ; Thu, 22 Jun 2006 08:59:10 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtOm3-0001Ef-00; Thu, 22 Jun 2006 08:59:07 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 14:59:07 +0200 Date: Thu, 22 Jun 2006 14:59:07 +0200 To: Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org Subject: [patch #4991] add .ipk extension to mc.ext From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: patch X-Savane-Item-ID: 4991 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-145906.sv26390.95959@savannah.gnu.org> References: <20060323-173337.sv36205.23406@savannah.gnu.org> <20060323-195337.sv26390.31728@savannah.gnu.org> In-Reply-To: <20060323-195337.sv26390.31728@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.568 tagged_above=-999 required=2 tests=[AWL=0.032, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.568 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:59:12 -0000 Update of patch #4991 (project mc): Category: None => Menu and associations Status: None => Done Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #2: Committed. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 09:01:57 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5704B3B0720 for ; Thu, 22 Jun 2006 09:01:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28587-02 for ; Thu, 22 Jun 2006 09:01:50 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id F38BE3B078C for ; Thu, 22 Jun 2006 09:00:53 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtOne-0001HY-00; Thu, 22 Jun 2006 09:00:46 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 15:00:44 +0200 Date: Thu, 22 Jun 2006 15:00:44 +0200 To: Sorin Sbarnea , Roland Illig , Leonard den Ottolander , mc-devel@gnome.org Subject: [patch #4741] Syntax Support for config files (conf,ini,cfg,...) From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: patch X-Savane-Item-ID: 4741 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-150044.sv26390.89917@savannah.gnu.org> References: <20051228-210650.sv46405.46961@savannah.gnu.org> <20051228-210735.sv46405.17938@savannah.gnu.org> <20060128-105039.sv20990.3126@savannah.gnu.org> In-Reply-To: <20060128-105039.sv20990.3126@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.568 tagged_above=-999 required=2 tests=[AWL=0.032, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.568 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:01:57 -0000 Follow-up Comment #2, patch #4741 (project mc): Ping. Sorin, if you do not fix these patches this report will be closed. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 08:40:20 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CEB323B06CE for ; Thu, 22 Jun 2006 08:40:20 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26231-01 for ; Thu, 22 Jun 2006 08:40:19 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 197813B0677 for ; Thu, 22 Jun 2006 08:40:19 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtOSt-00007u-00; Thu, 22 Jun 2006 08:39:19 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 15:39:19 +0300 Date: Thu, 22 Jun 2006 15:39:19 +0300 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060622-153919.sv36205.75620@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> <20060621-194845.sv26390.25842@savannah.gnu.org> In-Reply-To: <20060621-194845.sv26390.25842@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.567 tagged_above=-999 required=2 tests=[AWL=0.033, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.567 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 09:09:11 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:40:21 -0000 Follow-up Comment #26, bug #14155 (project mc): I guess we can safely close that one . If anyone has any kind of objections she/he could request that we reopen the bug report. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From irusskih@gmail.com Thu Jun 22 09:30:41 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72E753B06B5 for ; Thu, 22 Jun 2006 09:30:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30485-04 for ; Thu, 22 Jun 2006 09:30:40 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.204]) by menubar.gnome.org (Postfix) with ESMTP id BAB223B0559 for ; Thu, 22 Jun 2006 09:30:39 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id 18so390211nzp for ; Thu, 22 Jun 2006 06:30:39 -0700 (PDT) Received: by 10.37.22.14 with SMTP id z14mr1920162nzi; Thu, 22 Jun 2006 06:30:38 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Thu, 22 Jun 2006 06:30:38 -0700 (PDT) Message-ID: <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> Date: Thu, 22 Jun 2006 17:30:38 +0400 From: "Igor Russkih" To: "Leonard den Ottolander" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150978143.2807.11.camel@athlon> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.531 tagged_above=-999 required=2 tests=[AWL=0.069, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.531 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:30:41 -0000 > > already implemented. > I should look for that switch then :) . It's a runtime option in editor's settings dialog. You'll find it easily ;) > > No, just clean mc snapshot from ibiblio.org. > Can you make it available to me? I am quite curious where the changes I The latest one I've got from http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/snapshots/mc-2006-06-17-02.tar.gz The previous I've used (mc-2006-05-30-15.tar.gz) > > plain C API from library side - however this'll take more time and I > > see no reason in doing this. > My question was if it is technically possible to rewrite the cpp code > for *mc* in c and (through trickery) still keep interface compatibility. No. that's particular action is not possible as far as I know. Surely it is possible to make a kind of c++ API 'emulation' from pure C code - so that pure C component (mc) will start using pure C++ component (libcolorer). But this is just in theory and it's not a production solution. Hope I've answered your question ;) -- Igor From leonard@den.ottolander.nl Thu Jun 22 09:41:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 19F2E3B042A for ; Thu, 22 Jun 2006 09:41:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31154-10 for ; Thu, 22 Jun 2006 09:41:18 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id AAE543B00DE for ; Thu, 22 Jun 2006 09:41:18 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id C22344023 for ; Thu, 22 Jun 2006 15:41:17 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id sYin0FGGCowf for ; Thu, 22 Jun 2006 15:41:12 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 41DF34021 for ; Thu, 22 Jun 2006 15:41:12 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> Content-Type: text/plain Date: Thu, 22 Jun 2006 15:41:11 +0200 Message-Id: <1150983671.2807.29.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:41:21 -0000 Hello Igor, On Thu, 2006-06-22 at 17:30 +0400, Igor Russkih wrote: > The previous I've used (mc-2006-05-30-15.tar.gz) I cannot find that version anymore. Can you make it available to me somewhere so I can have a look? > No. that's particular action is not possible as far as I know. > Surely it is possible to make a kind of c++ API 'emulation' from pure > C code - so that pure C component (mc) will start using pure C++ > component (libcolorer). But this is just in theory and it's not a > production solution. > > Hope I've answered your question ;) Yup. Thanks :) . (No big deal, just curious.) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From irusskih@gmail.com Thu Jun 22 09:55:05 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 821D33B038B for ; Thu, 22 Jun 2006 09:55:05 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32339-08 for ; Thu, 22 Jun 2006 09:55:02 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.206]) by menubar.gnome.org (Postfix) with ESMTP id BC25B3B03A4 for ; Thu, 22 Jun 2006 09:55:01 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id s18so421398nze for ; Thu, 22 Jun 2006 06:55:01 -0700 (PDT) Received: by 10.37.13.43 with SMTP id q43mr2012277nzi; Thu, 22 Jun 2006 06:55:01 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Thu, 22 Jun 2006 06:55:01 -0700 (PDT) Message-ID: <861727ef0606220655o5a195eb2ub12e508c313f7779@mail.gmail.com> Date: Thu, 22 Jun 2006 17:55:01 +0400 From: "Igor Russkih" To: "Leonard den Ottolander" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150983671.2807.29.camel@athlon> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <1150983671.2807.29.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:55:05 -0000 > > The previous I've used (mc-2006-05-30-15.tar.gz) > I cannot find that version anymore. Can you make it available to me > somewhere so I can have a look? I've placed it at http://colorer.sourceforge.net/files/mc-2006-05-30-15.tar.gz -- Igor From leonard@den.ottolander.nl Thu Jun 22 10:10:01 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 74CA33B081D for ; Thu, 22 Jun 2006 10:10:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01047-02 for ; Thu, 22 Jun 2006 10:10:00 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 57E513B07DF for ; Thu, 22 Jun 2006 10:10:00 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id D18C44023 for ; Thu, 22 Jun 2006 16:09:58 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id lUd8k95cotkD for ; Thu, 22 Jun 2006 16:09:54 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 4FCBC4021 for ; Thu, 22 Jun 2006 16:09:54 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606220655o5a195eb2ub12e508c313f7779@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <1150983671.2807.29.camel@athlon> <861727ef0606220655o5a195eb2ub12e508c313f7779@mail.gmail.com> Content-Type: text/plain Date: Thu, 22 Jun 2006 16:09:48 +0200 Message-Id: <1150985388.2807.32.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 14:10:01 -0000 Hello Igor, On Thu, 2006-06-22 at 17:55 +0400, Igor Russkih wrote: > I've placed it at > http://colorer.sourceforge.net/files/mc-2006-05-30-15.tar.gz Thanks. Well, that clears things up for me :-) . It turns out all the changes I observed are caused by the autogen step used to create the snapshots. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Thu Jun 22 10:32:26 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D276D3B041B for ; Thu, 22 Jun 2006 10:32:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02378-03 for ; Thu, 22 Jun 2006 10:32:25 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id AADAE3B0658 for ; Thu, 22 Jun 2006 10:32:25 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id B61094023 for ; Thu, 22 Jun 2006 16:32:24 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id uGEZi1J4kOTe for ; Thu, 22 Jun 2006 16:32:23 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 3F85C4021 for ; Thu, 22 Jun 2006 16:32:23 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> Content-Type: text/plain Date: Thu, 22 Jun 2006 16:32:22 +0200 Message-Id: <1150986742.2807.34.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 14:32:27 -0000 Hi Igor, On Thu, 2006-06-22 at 17:30 +0400, Igor Russkih wrote: > It's a runtime option in editor's settings dialog. You'll find it easily ;) Yes, got it. But you've introduced a duplicate hotkey C. Please choose another one. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Thu Jun 22 11:11:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 551443B0501 for ; Thu, 22 Jun 2006 11:11:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04503-07 for ; Thu, 22 Jun 2006 11:11:20 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 158503B0331 for ; Thu, 22 Jun 2006 11:11:20 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 0F4434023; Thu, 22 Jun 2006 17:11:19 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 5-UDyn51ImKM; Thu, 22 Jun 2006 17:11:15 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 9317F4021; Thu, 22 Jun 2006 17:11:15 +0200 (CEST) Subject: Where to report issues with mccolorer? From: Leonard den Ottolander To: Igor Russkih Content-Type: text/plain Date: Thu, 22 Jun 2006 17:11:15 +0200 Message-Id: <1150989075.2807.39.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 15:11:21 -0000 Hello Igor, Where do you want us to report issues with mccolorer? In the colorer bug system? (I'm seeing a crash when opening the syntax highlighting dialog for the old syntax highlighting.) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From ossi@kde.org Thu Jun 22 12:10:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C556D3B01D2 for ; Thu, 22 Jun 2006 12:10:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08495-02 for ; Thu, 22 Jun 2006 12:10:20 -0400 (EDT) Received: from ktown.kde.org (ktown.kde.org [131.246.120.250]) by menubar.gnome.org (Postfix) with SMTP id 97E283B07A2 for ; Thu, 22 Jun 2006 12:10:19 -0400 (EDT) Received: (qmail 3801 invoked from network); 22 Jun 2006 16:10:17 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 22 Jun 2006 16:10:17 -0000 Received: from ossi by ugly.local with local (masqmail 0.2.21) id 1FtRkx-0uH-00 for ; Thu, 22 Jun 2006 18:10:11 +0200 Date: Thu, 22 Jun 2006 18:10:11 +0200 From: Oswald Buddenhagen To: mc-devel@gnome.org Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine Message-ID: <20060622161011.GC3368@ugly.local> Mail-Followup-To: mc-devel@gnome.org References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.586 tagged_above=-999 required=2 tests=[AWL=0.013, BAYES_00=-2.599] X-Spam-Score: -2.586 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 16:10:22 -0000 On Thu, Jun 22, 2006 at 05:30:38PM +0400, Igor Russkih wrote: > > > already implemented. > > I should look for that switch then :) . > It's a runtime option in editor's settings dialog. You'll find it easily ;) > fwiw, i think this is silly. typical example of over-configurability. if it has to be runtime-switchable (why?), don't put it in the dialog at least. -- Hi! I'm a .signature virus! Copy me into your ~/.signature, please! -- Chaos, panic, and disorder - my work here is done. From proski@gnu.org Thu Jun 22 14:15:51 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0453A3B0750 for ; Thu, 22 Jun 2006 14:15:51 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16309-05 for ; Thu, 22 Jun 2006 14:15:48 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id E86833B082D for ; Thu, 22 Jun 2006 14:15:47 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FtTiV-0003Lh-2P for mc-devel@gnome.org; Thu, 22 Jun 2006 14:15:47 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FtTiL-0008PV-3w; Thu, 22 Jun 2006 14:15:37 -0400 Subject: Re: Snapshots availability From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150924866.2801.100.camel@athlon> References: <1150924866.2801.100.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Thu, 22 Jun 2006 14:15:37 -0400 Message-Id: <1151000137.3539.23.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.595 tagged_above=-999 required=2 tests=[AWL=0.005, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.595 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 18:15:51 -0000 Hello, Leonard! On Wed, 2006-06-21 at 23:21 +0200, Leonard den Ottolander wrote: > Hi, > > Who is the creator of the two weekly snapshots found at > http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/snapshots/ ? > Pavel? Miguel? I generate them using maint/mcsnap > Could you please keep a couple of months worth of snapshots around? I > couldn't find the May 30th snapshot when I wanted to compare it with > mccolorer. Snapshots are not intended for developers. Developers should be using proper version control systems. Snapshots are for users who want to try the latest features and check if some bug has been fixed, but who don't intend to keep the sources up-to-date. -- Regards, Pavel Roskin From ptsekov@gmx.net Fri Jun 23 03:10:45 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EBAB33B0646 for ; Fri, 23 Jun 2006 03:10:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21658-09 for ; Fri, 23 Jun 2006 03:10:39 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id D4E653B00ED for ; Fri, 23 Jun 2006 03:10:38 -0400 (EDT) Received: (qmail invoked by alias); 23 Jun 2006 07:10:36 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp019) with SMTP; 23 Jun 2006 09:10:36 +0200 X-Authenticated: #14308112 Date: Fri, 23 Jun 2006 10:09:20 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole Cc: MC development Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.477 tagged_above=-999 required=2 tests=[AWL=-0.012, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.477 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 07:10:45 -0000 Hello Igor, On Thu, 22 Jun 2006, Igor Russkih wrote: > Here attached the patch over mc-2006-06-17-02 (snapshot from > ibiblio.org). Please don't make direct diffs between mc-colorer and > cvs snapshot since they are different versions. Use this patch for > reviewing. > > I've separated the patch for easier understanding: > build.diff - make/configs changes There is no need to include configure, config.h.in, Makefile.in and and any other autogenerated files in your patches. Next time, please, submit only your changes to configure.ac and Makefile.am. From ptsekov@gmx.net Fri Jun 23 03:59:56 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0322F3B0393 for ; Fri, 23 Jun 2006 03:59:56 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25386-04 for ; Fri, 23 Jun 2006 03:59:54 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id F0DE13B013B for ; Fri, 23 Jun 2006 03:59:53 -0400 (EDT) Received: (qmail invoked by alias); 23 Jun 2006 07:59:49 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp033) with SMTP; 23 Jun 2006 09:59:49 +0200 X-Authenticated: #14308112 Date: Fri, 23 Jun 2006 10:58:32 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 07:59:56 -0000 Hello Igor, On Thu, 22 Jun 2006, Igor Russkih wrote: > Here attached the patch over mc-2006-06-17-02 (snapshot from > ibiblio.org). Please don't make direct diffs between mc-colorer and > cvs snapshot since they are different versions. Use this patch for > reviewing. > > I've separated the patch for easier understanding: > build.diff - make/configs changes Index: edit/Makefile.am =================================================================== --- edit/Makefile.am (.../branches/MC-VENDOR/mccolorer) (revision 776) +++ edit/Makefile.am (.../trunk/mccolorer) (revision 776) @@ -6,10 +6,19 @@ noinst_LIBRARIES = endif +if USE_COLORER libedit_a_SOURCES = \ bookmark.c edit.c editcmd.c editwidget.c editdraw.c editkeys.c \ editmenu.c editoptions.c editcmddef.h edit.h edit-widget.h \ + editlock.c editlock.h syntax.c usermap.h usermap.cwordproc.c \ ^^^^^^^^^^^^^^^^^^^ JFYI, there is a missing space here. From ptsekov@gmx.net Fri Jun 23 05:07:03 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 598393B01BA for ; Fri, 23 Jun 2006 05:07:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30249-08 for ; Fri, 23 Jun 2006 05:07:02 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 83B173B012A for ; Fri, 23 Jun 2006 05:07:01 -0400 (EDT) Received: (qmail invoked by alias); 23 Jun 2006 09:06:59 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp035) with SMTP; 23 Jun 2006 11:06:59 +0200 X-Authenticated: #14308112 Date: Fri, 23 Jun 2006 12:05:39 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Where to report issues with mccolorer? In-Reply-To: <1150989075.2807.39.camel@athlon> Message-ID: References: <1150989075.2807.39.camel@athlon> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="-559023410-851401618-1151053539=:24144" X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 09:07:03 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. ---559023410-851401618-1151053539=:24144 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed On Thu, 22 Jun 2006, Leonard den Ottolander wrote: > Where do you want us to report issues with mccolorer? In the colorer bug > system? > > (I'm seeing a crash when opening the syntax highlighting dialog for the > old syntax highlighting.) Find attached a patch. ---559023410-851401618-1151053539=:24144 Content-Type: TEXT/PLAIN; charset=US-ASCII; name=edit_free_syntax_rules_fix.diff Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: attachment; filename=edit_free_syntax_rules_fix.diff SW5kZXg6IGVkaXQvc3ludGF4LmMNCj09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0N ClJDUyBmaWxlOiAvY3Zzcm9vdC9tYy9tYy9lZGl0L3N5bnRheC5jLHYNCnJl dHJpZXZpbmcgcmV2aXNpb24gMS44MA0KZGlmZiAtdSAtcCAtcjEuODAgc3lu dGF4LmMNCi0tLSBlZGl0L3N5bnRheC5jCTMgQXByIDIwMDYgMjE6MjI6MDkg LTAwMDAJMS44MA0KKysrIGVkaXQvc3ludGF4LmMJMjMgSnVuIDIwMDYgMDk6 MDI6NDMgLTAwMDANCkBAIC05NjksNiArOTgzLDEyIEBAIHZvaWQgZWRpdF9m cmVlX3N5bnRheF9ydWxlcyAoV0VkaXQgKiBlZGkNCiANCiAgICAgaWYgKCFl ZGl0KQ0KIAlyZXR1cm47DQorDQorI2lmIFVTRV9DT0xPUkVSDQorICAgIGNv bG9yZXJfZnJlZV9zeW50YXhfcnVsZXMoZWRpdCk7DQorICAgIHJldHVybjsN CisjZW5kaWYgICAgDQorDQogICAgIGlmIChlZGl0LT5kZWZpbmVzKQ0KIAlk ZXN0cm95X2RlZmluZXMgKCZlZGl0LT5kZWZpbmVzKTsNCiAgICAgaWYgKCFl ZGl0LT5ydWxlcykNCg== ---559023410-851401618-1151053539=:24144-- From irusskih@gmail.com Fri Jun 23 07:08:31 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 679073B069B for ; Fri, 23 Jun 2006 07:08:31 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05406-10 for ; Fri, 23 Jun 2006 07:08:29 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.204]) by menubar.gnome.org (Postfix) with ESMTP id 229933B00EF for ; Fri, 23 Jun 2006 07:08:29 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id 9so741233nzo for ; Fri, 23 Jun 2006 04:08:28 -0700 (PDT) Received: by 10.36.252.42 with SMTP id z42mr3610654nzh; Fri, 23 Jun 2006 04:08:28 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Fri, 23 Jun 2006 04:08:28 -0700 (PDT) Message-ID: <861727ef0606230408p69fe14dbhf846cedd458dfb0e@mail.gmail.com> Date: Fri, 23 Jun 2006 15:08:28 +0400 From: "Igor Russkih" To: "Pavel Tsekov" Subject: Re: Where to report issues with mccolorer? In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <1150989075.2807.39.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 11:08:31 -0000 > > (I'm seeing a crash when opening the syntax highlighting dialog for the > > old syntax highlighting.) > > Find attached a patch. > Thanks, Pavel! -- Igor From INVALID.NOREPLY@gnu.org Thu Jun 22 09:43:19 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9E7BD3B04F0 for ; Thu, 22 Jun 2006 09:43:19 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31278-09 for ; Thu, 22 Jun 2006 09:43:18 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 109113B00E0 for ; Thu, 22 Jun 2006 09:43:18 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtPSa-0003x3-00; Thu, 22 Jun 2006 09:43:04 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 15:43:04 +0200 Date: Thu, 22 Jun 2006 15:43:04 +0200 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-154303.sv26390.2544@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> <20060621-194845.sv26390.25842@savannah.gnu.org> <20060622-153919.sv36205.75620@savannah.gnu.org> In-Reply-To: <20060622-153919.sv36205.75620@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.569 tagged_above=-999 required=2 tests=[AWL=0.031, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.569 X-Spam-Level: X-Mailman-Approved-At: Fri, 23 Jun 2006 08:55:54 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:43:19 -0000 Update of bug #14155 (project mc): Status: Need Info => Fixed Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #27: Not sure why you didn't close it then. You should be able to. Closing. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 10:21:29 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0BCC83B0331 for ; Thu, 22 Jun 2006 10:21:29 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01617-09 for ; Thu, 22 Jun 2006 10:21:27 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 97F493B055E for ; Thu, 22 Jun 2006 10:21:27 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtQ3Y-0005T3-00; Thu, 22 Jun 2006 10:21:16 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 17:21:15 +0300 Date: Thu, 22 Jun 2006 17:21:15 +0300 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060622-172115.sv36205.4532@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> <20060621-194845.sv26390.25842@savannah.gnu.org> <20060622-153919.sv36205.75620@savannah.gnu.org> <20060622-154303.sv26390.2544@savannah.gnu.org> In-Reply-To: <20060622-154303.sv26390.2544@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.569 tagged_above=-999 required=2 tests=[AWL=0.031, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.569 X-Spam-Level: X-Mailman-Approved-At: Fri, 23 Jun 2006 08:55:54 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 14:21:29 -0000 Follow-up Comment #28, bug #14155 (project mc): This is getting annoying. I didn't close it because of comment #24. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 10:35:57 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9C2443B0578 for ; Thu, 22 Jun 2006 10:35:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02525-02 for ; Thu, 22 Jun 2006 10:35:56 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 0E9E23B06AE for ; Thu, 22 Jun 2006 10:35:56 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtQHD-0006LN-00; Thu, 22 Jun 2006 10:35:23 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 16:35:22 +0200 Date: Thu, 22 Jun 2006 16:35:22 +0200 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-163522.sv26390.98931@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> <20060621-194845.sv26390.25842@savannah.gnu.org> <20060622-153919.sv36205.75620@savannah.gnu.org> <20060622-154303.sv26390.2544@savannah.gnu.org> <20060622-172115.sv36205.4532@savannah.gnu.org> In-Reply-To: <20060622-172115.sv36205.4532@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.569 tagged_above=-999 required=2 tests=[AWL=0.031, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.569 X-Spam-Level: X-Mailman-Approved-At: Fri, 23 Jun 2006 08:55:54 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 14:35:57 -0000 Follow-up Comment #29, bug #14155 (project mc): Sorry. I took comment #26 as a "we can close this report", and thought you still weren't aware you could close bugs. Well, you can reopen it yourself if you want. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Fri Jun 23 16:11:47 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A0C263B04C1 for ; Fri, 23 Jun 2006 16:11:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02632-04 for ; Fri, 23 Jun 2006 16:11:43 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 458263B06F5 for ; Fri, 23 Jun 2006 16:11:43 -0400 (EDT) Received: (qmail invoked by alias); 23 Jun 2006 20:11:41 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp027) with SMTP; 23 Jun 2006 22:11:41 +0200 X-Authenticated: #14308112 Date: Fri, 23 Jun 2006 23:10:28 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <20060622161011.GC3368@ugly.local> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <20060622161011.GC3368@ugly.local> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 20:11:47 -0000 On Thu, 22 Jun 2006, Oswald Buddenhagen wrote: > On Thu, Jun 22, 2006 at 05:30:38PM +0400, Igor Russkih wrote: >>>> already implemented. >>> I should look for that switch then :) . >> It's a runtime option in editor's settings dialog. You'll find it easily ;) >> > fwiw, i think this is silly. typical example of over-configurability. if > it has to be runtime-switchable (why?), don't put it in the dialog at > least. Today I've modified Igor's patch as follows: 1) The part of his patch which depends on libcolorer is built as shared library (libcolorer_glue). The library exports a single method which is used to get an array of function pointers - these are methods from the library that the editor calls. 2) The part of his patch which doesn't directly depend on libcolorer remains in the editor source tree (only C code). It exports a set of functions which the code in libcolorer_glue needs to query to the editor, again passed as an array of functions pointers. 3) The editor tries to dynamically load libcolorer_glue.so and if it fails it fallbacks to the default syntax highlighting code. Otherwise colorer is used. These changes allow one to build MC with colorer support but doesn't require libcolorer to be present on the target system. I've made also some other changes - mainly related to the autoconf stuff. Since I am to tired to diff now I'll post patches tomorrow. From INVALID.NOREPLY@gnu.org Fri Jun 23 19:07:00 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EB3193B0968 for ; Fri, 23 Jun 2006 19:06:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10295-10 for ; Fri, 23 Jun 2006 19:06:56 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id C31D33B0957 for ; Fri, 23 Jun 2006 19:06:56 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ftujd-0000Pu-00; Fri, 23 Jun 2006 19:06:45 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Fri, 23 Jun 2006 23:06:44 +0000 Date: Fri, 23 Jun 2006 23:06:44 +0000 To: SGh , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16303] More functionally u7z From: SGh X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16303 User-Agent: Opera/8.51 (X11; Linux i686; U; ru) X-Apparently-From: 80.91.160.214 (Savane authenticated user sgh) Message-Id: <20060623-230644.sv45177.8861@savannah.gnu.org> References: <20060408-134359.sv45177.11632@savannah.gnu.org> <20060408-134508.sv45177.86924@savannah.gnu.org> <20060408-134854.sv45177.29103@savannah.gnu.org> <20060518-165152.sv36205.74443@savannah.gnu.org> <20060530-195233.sv45177.57929@savannah.gnu.org> <20060621-193556.sv26390.77497@savannah.gnu.org> <20060621-191535.sv45177.54566@savannah.gnu.org> In-Reply-To: <20060621-191535.sv45177.54566@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.571 tagged_above=-999 required=2 tests=[AWL=0.029, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.571 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 23:07:00 -0000 Follow-up Comment #6, bug #16303 (project mc): Here is my patch to original u7z, fixed things: 1) Detection if we have 7z or only 7za installed. (With 7z we can work with all 7z-supported archives, i.e. CABs, etc... Only have to rename this script in ucab.) 2) Workaround for old version p7zip archives with prefix ./ in filenames. 3) Fixed directory creation in mcu7zip_mkdir, now it works properly. _______________________________________________________ Additional Item Attachment: File name: u7z.patch Size:1 KB u7z patch _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Sun Jun 25 11:04:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 440133B0079 for ; Sun, 25 Jun 2006 11:04:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18607-01 for ; Sun, 25 Jun 2006 11:04:13 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 4E6B43B008C for ; Sun, 25 Jun 2006 11:04:12 -0400 (EDT) Received: (qmail invoked by alias); 25 Jun 2006 15:03:15 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp041) with SMTP; 25 Jun 2006 17:03:15 +0200 X-Authenticated: #14308112 Date: Sun, 25 Jun 2006 18:02:00 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Where to report issues with mccolorer? In-Reply-To: <861727ef0606230408p69fe14dbhf846cedd458dfb0e@mail.gmail.com> Message-ID: References: <1150989075.2807.39.camel@athlon> <861727ef0606230408p69fe14dbhf846cedd458dfb0e@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jun 2006 15:04:16 -0000 On Fri, 23 Jun 2006, Igor Russkih wrote: >>> (I'm seeing a crash when opening the syntax highlighting dialog for the >>> old syntax highlighting.) >> >> Find attached a patch. >> > Thanks, Pavel! There are some issues with edit_syntax_colorer_dialog() too: 1) The number of elements allocated for 'groups' is one less than it should be. The extra element is needed for the NULL terminator. Memory could be overwritten if the number of groups is equal to the number of syntax types i.e. unique groups. This is unlikely to happen but still... 2) This one is worse because it trashes memory every time :) The memory allocated for 'types' in the while loop is used to store the descriptions of the syntax types and the names of the syntax types. Syntax type names are stored starting at the end of the array and syntax names are stored at the beginning. Now this line is wrong : types[types_list[0].items_number * 2 - types_num] = types_list[idx].name The first time it is invoked it trashes the memory after the last element of the 'types' array. I fixed it like this: types = g_malloc(sizeof(char*) * ((types_list[0].items_number * 2) + 1)); i.e. allocat one more element. It makes sense to do so because you use a NULL terminator for which no space is allocated again and this extra bytes makes the wrong indexing above work as expected. From ptsekov@gmx.net Sun Jun 25 16:16:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72FA33B02DF for ; Sun, 25 Jun 2006 16:16:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31539-10 for ; Sun, 25 Jun 2006 16:16:25 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id E6E853B016D for ; Sun, 25 Jun 2006 16:04:45 -0400 (EDT) Received: (qmail invoked by alias); 25 Jun 2006 20:04:23 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp022) with SMTP; 25 Jun 2006 22:04:23 +0200 X-Authenticated: #14308112 Date: Sun, 25 Jun 2006 23:03:09 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <20060622161011.GC3368@ugly.local> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jun 2006 20:16:36 -0000 Hello, Find attached the patch. In order to build MC you have to run libtoolize in the MC source tree. I've added the ability to tell configure where you colorer is installed. You can pass the colorer directory via the --with-colorer configure option - for example: --with-colorer=/home/ptsekov/colorer This command line option defaults to /usr/local. This patch is just a proof of concept thing. I am posting it so that you can test it and then we can discuss it. Igor, do you mind moving the declarations of the classes found in syntax-colorer.cpp to syntax-colorer.h ? This way we could move all the C functions from syntax-colorer.cpp to syntax-colorer-interface.cpp and make them static and only accessible thru colorer_interface_t. On Fri, 23 Jun 2006, Pavel Tsekov wrote: > On Thu, 22 Jun 2006, Oswald Buddenhagen wrote: > >> On Thu, Jun 22, 2006 at 05:30:38PM +0400, Igor Russkih wrote: >>>>> already implemented. >>>> I should look for that switch then :) . >>> It's a runtime option in editor's settings dialog. You'll find it easily ;) >>> >> fwiw, i think this is silly. typical example of over-configurability. if >> it has to be runtime-switchable (why?), don't put it in the dialog at >> least. > > > Today I've modified Igor's patch as follows: > > 1) The part of his patch which depends on libcolorer > is built as shared library (libcolorer_glue). The library > exports a single method which is used to get an array > of function pointers - these are methods from the library > that the editor calls. > > 2) The part of his patch which doesn't directly depend > on libcolorer remains in the editor source tree (only > C code). It exports a set of functions which the code > in libcolorer_glue needs to query to the editor, again > passed as an array of functions pointers. > > 3) The editor tries to dynamically load libcolorer_glue.so > and if it fails it fallbacks to the default syntax highlighting > code. Otherwise colorer is used. > > These changes allow one to build MC with colorer support but > doesn't require libcolorer to be present on the target system. > > I've made also some other changes - mainly related to the autoconf > stuff. > > Since I am to tired to diff now I'll post patches tomorrow. From ptsekov@gmx.net Sun Jun 25 16:17:03 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8F76F3B035B for ; Sun, 25 Jun 2006 16:17:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31756-01 for ; Sun, 25 Jun 2006 16:16:47 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id A94903B0018 for ; Sun, 25 Jun 2006 16:06:13 -0400 (EDT) Received: (qmail invoked by alias); 25 Jun 2006 20:05:56 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp039) with SMTP; 25 Jun 2006 22:05:56 +0200 X-Authenticated: #14308112 Date: Sun, 25 Jun 2006 23:04:36 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <20060622161011.GC3368@ugly.local> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="-559023410-851401618-1151265835=:10990" Content-ID: X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jun 2006 20:17:03 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. ---559023410-851401618-1151265835=:10990 Content-Type: TEXT/PLAIN; CHARSET=US-ASCII; FORMAT=flowed Content-ID: I forgot to attach the patch :( ---559023410-851401618-1151265835=:10990 Content-Type: APPLICATION/octet-stream; name=colorer-dynload.patch.gz Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: attachment; filename=colorer-dynload.patch.gz H4sICArGnkQCA2NvbG9yZXItZHlubG9hZC5wYXRjaADsPWt32zayn+1fgbq3 qSRLsuRXGil26yp24nucOFd2tu3J5uhQJCRxQ4lakrLju/X+9juDB4kXJdlN 2rP3JNu1SQAzGAxmBjMDEA7C0Yg03iSLOWl8Ir2/XeGv72vNOAnH34vnhP5D PP6b/25+W2MP3iKLp/sZbfqeP6HEj6g325n6O34cxQlNBuNoQXdeex/pKIxo 05uSJXWbjUZjNYaN9rOnrUarDf+R1m6n1YL/mi35j2y3dlutze3t7WU9bUCb wwb8t7tP2nud3YPO/tPmD3sHh/uHHMce4PjpJ9Jo1eGtXW+3yU8/bW73Li8u +6f9wfmb3sW7F6dX5Ij8ZJYpzS7Of9aa4DtUR+FQpWsQeYPe2cXJS2z7XxUT XxXKXgKkaFN1w//660MwMByDi2so7J/0z9lADKzNyBPtzL6uLt/1ewzk75vb G+ndLPM+NUSjpj+fE72oEc4ymow8H0SkBOPFC5t45FWVNCLRdjP44kJaTjZZ v+kSES4HerREL0GZC/gBaf/Q2Xvaae02dw/29/Z3nQK+v8cEfKe2uU0I6cXz O+DrJCOVXpUgKnI+jhPSX6Tpx3BCnoeJePIyMp56YUSCOCN+PD3GKQYM15Mw JfMkHieg8vA4SiglaTzKbr2EdsldvCC+NyMJDcI0S8LhIqMkzIg3C3agn2kM 033HEEHhYhbQhGQwcTC8aUriEXt5+eYdeUlnNPEi8nYxjEKfXIQ+naWUeNA3 lqQTGpAhR4QgZ0jFlaCCnMWA2cvCeNYlNIT6hNzQJIV3sis7ERjrJE4YlgoM GIhPSDxHwCpQfEciLytgmyUcKAYakHDGkE/iOYxpAihhlLdhFJEhJYuUjhZR neGA1uSX8+tXl++uycmb38gvJ/3+yZvr37rQOpvEUEtvKMcVTudRCKhhZIk3 y+5gAAzF69N+7xXAnPx8fnF+/RuMg5ydX785vboiZ5d9ckLenvSvz3vvLk76 5O27/tvLq9MmIVcUCaMMwxI+j9hcASsDmoEQpHLsv8H0pkBfFJCJd0Nhmn0a 3gB1HsjI/G71DDIsXhTPxmyk0LpgZpeEIzKLszq5TUIQmyy255bBF/NbJ+cz v1knB21o5s0+RjABVxkAAJKzcAQdnEVxnNTJz3GaYfPXJwxDa7fdbjXae612 nby7OoHh1XZwiN+GMz9aBJRslWrgZKu8Gavc3L6Jw4Dk+kyzQQ5NKrI4Lxpk pBakGRjvfzHSCLw0jhHKXyQJnWWD7A6k6UhDqFZ1FbC0HCxdAoYoAzryFhG0 wfZGd1qdCchZ4IRTq1QwZgZQqIvmYC+ygSxX247CWTC4CdNwGNHBMPH8jzRT 4FzVJoU2lFKqsy+ivqu9XlEOAkOFeZ2Vg8oGJomg8iC7dAByD4ZQJ1Sr01gD gl4KaVdaoGJ6kkVELUi1TgWMYi8QlQqIUqo2TihWKO14gdqEzhZTsBMZZUKp kmHUWNSz0gGsBZlJe1Fjspk1G6TZnT5is8rqqwTOqgPA+7/So5ms70lMHuPR TD6/RzPRPJpnnb1nnf395tO9g2eHT50ezbP2V4/mq0fz1aNZx6P5NhyBRI7I 697g9MX59aCIIK9P+2cnvdPBK2gELWCRWN6I4UJUg4E/jxYp/n9zm34CcZqR rd4WOC/f0hnoAjZFA4xtQYwWfkaEYwNLH9hqf+IlpDbzptIDUYsDmvqJo3yc xIu5KAfTQdh6NoAFYkix+X1ukTXTbxKSu1gqakSlYMblsk7mcaqhNddRa4h+ HEfMhVEflzZUHUBBFhOiSo05J3FURWcxx1oj+FDnbYQfV+1acPQhcJwBHBDz JzgpBjT+rirsqdSyOPOiAXIjXaPtnLVc2XBC0YSvbIaEluCrsyYwb26IAdaU QTGUFtjwLqNLeInVMIkB/aSDAo9TB43EPRpsHSfL2rJgolKbesnHQQb65iYJ MaaZl4hH0ES9Ly+KYl+4KnMv5D0WSjAa1zWlGI6rQv5taV0q1X7kpelAUXmd 33Gh3A41mFJYKYJU71lgdPcqlJ4Uj8vaOVROHXQ+I3mMVC3iNRiAeNQZm64D ojOXNbMkQYuxlnYsJMIMsEp6NoSVywevNkVMRF8liBAuF26NfFcMtgbrlCBs LUarcdSDAWTgtRTQae5BxzitWuk6M2SHYCWsLeuYwziQqtHZWiPK2CiUME01 I1JphUlUZZVbDFViBRk8kgMs+G71VoRmoFVGIGfAqMMq4NRBKciUBrYyqIGY Yd9qzOFI9bHVuLvhImQZKhemHNG9y9hoNkl2s5gJe2zmiKpLkkTdMkfsXnW/ xNOfHYeyPYLVTdaOO7HxZ4o3GSorztw9aP5wcLD3g3tr6HB3Xw80GSaxCQIr 7Bh95gbpQefDJAzGVEQUXyPSrxHp14i0PMe+syMDThlonp2eXL/rnw4uLl9e nP7t9IKU1gzO3l1cFBHrIxD8z7vz02sko8jiu5P4sva5KN7h/uvOz15KT9lj c3Jc3uySr+RWo+k0nu1cxGOwHmO9DtZgmmSsbHObryswfzO+SKTvP5AjdFo3 t7eGEXg0W3X2tKDsYQzTMWNP/p3HH8A6sN9Tbwxuj8fbJ/Etr43QQIFA3OEb Q8AfoQnW5Ij5a4Gev+ed8FfZFX9TO7yjEHfcssfbCcgb7+2eLWPMnxQmm6+3 U2/+vn1Yax9+YA2YW0Je95Dbwvqycsv7F7681jL3hLqyPyZ7NTTmNWgKEgwz gLbFI+LZGwJmz0eZJ/ENmnq0C5T8gmjJyVXv/ByMymgEk8qQnIECz+JbtD9B TNPZ9xko7CwACLRri1noxwGqL1q4gIAyeQxupxiZ6LjDDa4vCGFpCl7SkSPj NbbLJqJk3kzwgTCDHaaNY6wDscFfwsm557/+nWPUQe8VVwgim7dxGiI7KjK2 tvphMSd0wRMmsnRnp3fRH1z3T3qnla3Xva062VKwcaCj70Bo1ICdZTLAIHN6 G8ciGmyKtEaFl3L14oCw+jJUCgKwbhUbHMMfA54BbkN/jXaVHB0R8v3fk++r 6tAEPY2Ggv5+7TECJB8hPKgj5FpewYEeH5FWVZ0XJQsF7kU2qVS5l6kQldBs kTDs+oTyn7fMbMDCCN52nLz/wOYtDD4JPNbsIbegmjwnLfL779gSiUKKQYDA VhCwYpejn3EpOP3kU7ZqV7jg/MwUAUfO3ztkq7p9JYQKu1QHLah+wMQghmKE 8yS8ASXqGLkDLW5RYj+RCOFM4sovFf8Cl41wBmvv1OOyCP6ID4txEk8JOsbh DNZTrvGqrl/HJJ1TGoAvzdmLsGxhjYf/gDCT0CicAmxGUxgtoBCqzWsZCh/K GRjYCMERMD7RrXeXsjU4hbhCYqv4LMoWfWM32NNHsEgzIHbuJSBEgOOfizCh qUoHA4BFHXyhGy8CLY5nEdqiDLzMGf0EVtMDTwkaAPeRFyBifD5M04SVV5w3 uXkqypRM6pK5yA1cjQ2na1m1AmFJMGobHIYJbMSM3hZmUc2XrWf9lJ71PjYC GtGMEkkxK8s7XURR12EpUd7+Ox4ydYtmsU21bSoECEEbgSAOtBDFPQwpByDc 7Fg4+U85I3L+S7ELk+80xzKjaqiu0meJhRS9dr5r7QVgvQHFkaQ2Xws20Cqx no8IGGfDIiPK037/sm+ihGHnWoXzVPBgQzFBYgY3gCd8VtmZiXydM5YjAaTK wn3hTjj8E9fSrVQ/IOXCcg+OdT25MxjCuDVCZuHYrBUM/2E1U5i3zHCcgY8T J3cVdaTFnPHQHOwcP9DBkoYEPDO7LQYwcoWBDlpdwtcS5sKxl+3tqoMcNVNU OH7QHF3cRttB1b1eZLy6tN1YxgtjJi2HYgBM61Eoi/w3zH1+AV8EAcD7uoI/ l7cXQtGy6XyQFlZK1yO56aLpUdWkpei9cexP4jilZwB3fTenlScF+uUj2IGl L/YCpIjPK5MvZvE1VuboYKBbKJUgr1sGZjk0RVAFkBw8yqRSS745Im8gcKva M2vjkMcreKHRNY1EeLsaSWVLZNS3TM6ADrm0RGUz2IQ+HYNFeO3NYblX+Vwn T+z+zC7uYZ3N/Amp5G4TeUKrX7xXU+6dyHvxdA4WoAJRFK1aqqJLALCwIyLZ wBQDbrM4Tty5HQ1kS4wHRuzAzat+j9ucSpW989am2G64Oz5NkjhZ3Str9tAu VZQ8npQBu9Bw+VopeFgn6iBNLDs7FAlZFw2j2ma/tWJKEwHrWwrvj7UhTryY khZ4VUkBrLmB4Tx8g/j5Yw/WqLRStSnHQY0wnXUEPgbIaMAZ3+n4XppVVPxJ gJtdg2vczGwcI0zXRjX0/I8PRYUwDlRTHx6OlCVnBsG92C6oPKCDqhP3YDg2 XSRzs7WCK3NdTebIEX4o+LjhnCbJVXCT6jlf8pepz90n2apoIuslzeXY+Qhy NOyVU8VgkP7XzJbl7q8SDnMzt9zKgUtxffnisoNpx3B0R7wh5l6DMPWGwHk5 LcvILNCHM92hklqBmvCapqk3dsipSgz36PSIPnfs8uhAddlsH0xECDlnulaV blHs+kLC7LrCl3C57yww4Bn+0xs6yyr5+QWLTFWMsUUPwviMA+niqpzoKDci Kjax1YtK4cbHT33oyEzbxY98rNehOmB1+zmfM+RCvgXIeKIcz3CGNv4iGZSF N/xQhk4aLlN64qToQUQqpuCL6IFrlUvk/oNnCcM0IXmlEaIRHeoHZgqa0ROX 63mE66axFhX1aT75+lyycDQejVJ2ZluZl4Yr5WSlEu2TPLr/zCKs3Ax+UxJo YSvOjqPCNIDbxcqePLE9P5XqYx0GkwPi10rQ5w5IPP6jQzk8TxncOpdFFzW4 UNoW9X4tNtBHsAFG8SgmMLjPygJByUoGaJrNwmNVuFn+7YhESZen4oQkibcj 9qtxjD+r1hJqrYnYrPNd0MCsR3DEVkEOL5Kf/AUIl48Jo2KJO2fOooKOPD/S 2P3kiayGDsixVvf770XfwjDajAcEgio8ySAYgaXfiF7n1A89rmQbG0unSZK5 zuQss8zaMotWxXWqyUwWDuM4YqL3IonnMIUjDwJU6XKxZeaBawxPN3Ig9ms9 E+YriauNh1ouzd8FJwRe30qgAtzkrDJqjCTL1jfw/hbzwGNOEfz8f7DwqQyQ nrEeaHuJP7mIfS9CNhq9yxN0Zu++kXp0Th0ql+S7w892BHm2CG+5XWLS7i5T lVaZliiH+Ezl+Avk/8uL/v26AvAyiodfQALARlrL6jdO97NEHoiYrQ7ffzVw lQjH2lsAFj6y7UwAq6srKGS+bfqjayHHHSiXW1BdKrJ5JtmSWf1kqCW2wHdN qvkqJnVPzLghUBsOXdm4VzC6x2tNms7o/NC3zmWbo4+ZH3FKfbvM8/xM3VBH N3Ji9R5y/b9ned6/kDWlNH9Oxizh/xLWiN+G0V4h4vLw81dRd7H6TxGa/zhR /3yMWWVoHizquvehfTjhSNeVOPv8AZ3S0HceXDeOrTswLz+hrp8XwH9/o7jx +lwm10ntmPDmN6zC9l/Kt3X17Wyn563uzBaltxPone/9mDgLusTVAa4dlZwr snVa4Ru9jgiSo5EjGCbUM9Pz6vCbXhCcRnSKdkr94MBY3XUG01vHLLzX0Kbh /0K0+6FrRObGprUDRG5hm3xSOsJN6ybuvmAUpGKgfCAnGTsLVRJ1d5fjZR8V rIH4BbYL+eGsh+BnH1Wugf8ltivF7Jya960PTfUbTegF0NknK6wv9U3FZPlu 8+OO9T/tsFRWOwFBauxkhL6j0JmPunI13XBoIVv+eJ+FhvNCOWFqYb7hsJGv 0RvCDqgEH5NJEhSXCLDYKRSqu8F0lnCllRRwYHmaB6GFwuYK+qr/4hzaeDMf OCb27Cv5nj4EHCHX2nzHnuEwtZXVFrSpSgqlZg5pSevcmKji6iKrBvBWcoof 2FFnGHvJZ4GZAVlZe69QwFV5ZxeWnzbaABtJPmsPQMItiLAfYD0cbbuMv7nE 5OS+D/GYiwKgaFxtV2Mio2x5++12zh2jBymEBiJZnEtwDsZKJTNyKJeDqeqm 9bnUuh9LlWyrvf9AJDVWRSlBJZ/PWR/tLVnDDVDXxSn6roCWccKjlqBylUa7 znOA7p0E864WdfnS6t7rO4iNYyxlGbJKdbv9wYm87DjWElRlK5xOC1ss8BGw msiAxedQIxaLLP5IZ0tWIAdesYO0HG80i1djwmzRSkz6OfX7kqlZxv6cFflu uPRQXTKTr2fabQbGN8MOsWQbjGVnMh7uFRoNHnraw+V6W1dNVaxvnJ2j0p3C f6191I21d2en7PzzkvGmynjl8sOoreY5th8ZRtLR0vlOz4R/BbvkjMBIoYsf w9SOEJtH2/VvYtRtDrneF6dVSI1v6bj3t0d4jEru+QzZwZwf83f22smPjXR1 0KEGyg7iFKDstZOfMzFAE+3WrOJwJ6DcJpXR+Pnzfc0TR4FgMK6jvhzZiqM1 yqGa0fiDdshmOP5QtU6P2ZRtS7rYqLNVB6cQ6Lu08x2mpr8LPvCTM8upqBN1 /PVV/Fme1ixI1ORHXQzNb4T4P/VkfnF+FSus4yj5ITYG5zzNon0hULMOraAw WEfD7ONJypkjAZin31nX5hkboXuWF6985GXUWc69arn5/4pLbPgHdpvb9vf0 6g1n5BHHuIVoO3Ly8kYs7KDD9nG1+yHE90y5xSyWG+00lk2xGR3rn+iDedWa 6Wee5GiKEQhofSeW3XZm3ndo3yznup5gHY4gpq1iVyc/VIxEm9zIW8nPN4xh dl21TvqtKw0ffKtGPjYXxXZmSndoa8Y9ivkIlAvsKvqJFXsM2mWKqy/z+EME 23Sqp7XUC0Puza8+nTvsy4RlPfqsnR9dahVK3Vv8LlLVLPmfSaGWne9yI28R Z+xnfQb6WmuSZ+6kdVdSl29F/GVUFpshZROtZ5T/7Ok28tmSSFeyueSqzEpB oOjJWAWt9uWWvOhu1YUsxQW2Ml63snu5/XCb3cfm+Fzff3c6FkaBo7irxT3i xyUz3DTYCJ1EWH6D45pf8jkE0f6Acako6kGqW7lXU+m4/eqLKZBJT76TcK97 dka6p/S63b+A6UbGqlxQVxFaXyu55dBbM5Fh91/EvW65l/UF4//8a3FXXob7 gCtwP9vFt9Z1t/utTnu/edA+OCj7CxW77YddQ0Qm1Avwg4qvtxF9vY3o621E j7ofd8mtuK8e8HcCVl2aS7Rbc+UdFULFv09JGkIXLOXFxr4T0OJF3tfwmVMV 3UcG9F39gp1X/R5hpwOI9DVRF0/enguyH+TPFhcG/jEPVbsJJM9xFUQ91Dko Z8QXW6y1IUiF67PVti6y0Skyvw4/XrC8dyoG51q/C7ZKlH36zwVNs5TZA48w FoKKezdgE/B7PfXrcSdm65b9B93DWBCCNgDtBL0J40Ua3QmfCQ0PWMU7Z9/2 Vf0PuLlR5QFYd7DGqbwvmQUybFtSmnv2fQL7Cxb8vFMuQI/047X+exNvNn5E 75/BL1fpYLRgohhUOEs8dvFMjH2AlU64mAhpYJfnTMDJYLeK4YGE9C4FcZVY dj57ik3j1xU7bw0Mg5mksIaKhI486CycDn7gnF2+E4J8Y2a56WDcujkpNwVj dugbpJXdH8b9nE8Z64zmJ69d3a7IL/2B3hgIjnrqfaR42xkeJyRDWEY+crjQ SdDqnNKXpSkl8k+p0E+41KJUCeh0Nb3Lsky6rgGt6GpNQG54wpSvruDszOfg vqDKaUr2R/Ksbksr8j0E90XwSNYskGoVJ7kNKFX0tfJVf/21sUi/+dcCzTI9 GjNrMW46aLSesr/sd4h/+OzgBy0A2ysCMBes/KuAu7udg0P4r/ms3T48ONBj rnarfghBF/6E1ygcshnW/zQe++rrI0ps02fzIn7500A83WIYJouDxLsVjx/p XQqPiAJfp+DmiBoegqQFJpgpiF8Zdv6rIZBOcnDUFgHAHiciJoQyCDySqTeH Ivnkk9s4CcDt9hkBjQ2+uy4h8FyUVmD+rb/bhF1JYlcEIfj2Y8BANsnpr9f9 k8GL86trYBRfxS7i8RcUKJ0xzlKHUGn1QjT2Gu2npP20s9/u7LbL4vpSaC5Y 7c4+IDhsHrQODtvPdMHaRbnarT/DUJ6YocUv5y9enl5DZAE8LCKLZnMnTfwd weDJ1sbGTo38wjomInZBfX53dSpjEzUuAeg1//7OltR8vCRIwYadKORwWdxi NEr6T34dvD7p9S8HF6dvXl6/Iu3W7j4b7h7To729ehvvUCbGffxMqUAZcOub eyf/2iT5H7LAO1Jhbehuknu7JZS6Ry5Qs5v79FtC879AIFJV/HI/uRuO28a5 CSQqFkmUYDmfcuyfG4o9Zina+/V2C4foghRlSuxE8EeX13K3S1SysbEZDorj keh5izhO864Yy4YUH0G/AzZR+O/lNQbONT47KUd3ITx4UchvfHIxkLi3kQf8 StMu4pK5J3FJIa9Jikuk7FhTXSj56QLBa7Ipr6Waen4S/197z9rcxq3rZ+dX MJrWkWJJ0a7eUtw7iq0knviRYzttejyeHVmWbcWyVpHk2L6t//sFwMeSXO5K SuvefkinTaNdEuQCIAgCIACougUhIT8ENzh6Hgz5V/Dr/KB40tOT0zzeUuG2 A7RIgGijBK4CGIB5WpnDK4dqPxOkjCrX6QPDMK/S8putcm2heLGqfDZbpWbL LxWbZa9ct2pilRu00BpSshjLlW8LGfuxkl6xN3LjyTyBdNHHUvtTxinycCcV 8u7bcHAXhGjQC+BpNoe0xe+ue/jddVh9+OHEMHwP5TrZWTgHEgageU4HFJxf gkWnn3ZE47sr4NgAH80Cfm0Tk0+VPL9cqdbqjWbvrA9YuLwafrke3YzDydcp MOq3u/uH/w0yCFGHhfrb7STgd/kx3VmirBLP3nd+7Qbv9g62P+12DaPS60vQ KUFQiFzQIujl3R49jBYVb9RWDZJLCkQR9HpRgbZuhjFKDbibSjEZictXLwuw YF/ifwxINHiBuvzX2yGo8TPQwgGbwjw46j2Et/MWy56HmCZ5eiuSp2KW2dvL K1rf43kxR7StNCtI3CqoYX4dqSsKxYBgzWrCO6rdMxN6diQ85iEZAwThKb6T EwmXdlS+0GujBDocwGmZC9aQ1j4D0Qvn/+kDwPoWXvMDAcqmFchp+YcEsdBN RJnwKC780rQU8CbBhaiNteZ6DpO+lA/Oboej82DSm1+xLAKNQmdoUWZUMk0n oOf6THC2YjYUFrOmbwZy6tHIIRyN3GDz7F3AURC82dnfDnY7//09F0sLGMcH pnmgYCQ1BmVTY1nV+ZJT1DmqjIF3fq/jS2Xn2cPNWTiyO+h41FcRJi9fW1vj 95fpHPgyx9adSyunXfh4dK0ciY7nlHwSFQbBRd39zhtA3v7uEaj5r17SgqiW q7Qg6n7eK6++IHgEJQiJ/nWAtxMwrdpx5/A4gD+3PgRHO//ttt0tQe2aXTua swJex9O6wKEVltWc52wD9JKZmmWzsaE3QEcEIc7wR4ipYkDjowseSSqJvKIa RzGRk6sb6h38ECcVptJ6rsW60hwx6s1VaCXP+JUK56COHlpwtNzo9MA9bo2/ oAs8NCMiNm5t1tveaDronT+wyyFaHnsggWgB3PCsZiR+iLmFaOOisuE1kTMa NdC0fa6G0lYwHFNcPU8jHBkphG0DmMbiQK0kLyZh4Y+4P5hmlxNnTqz/2r+m DI9i+kDY6OMwokqUkTPYQ6v36y2gdQKdY481oGJoU2Hla5VWq3h9O50FVvIw SbBHVEPEYmvUSvk622jC7tPU1hpmbXestn5OKbIizQkaBgbTmdJlBQbgqcc2 NlV2evr9izY3z0IZNPCtDn6sg3Jg6bjUoIAePichRoePCJr5PA7VVtJ75+jw wyXDk6Ijqe4GL8gfiDryOe3ymKpBbfh47BgPIpUeWS2rjcPW2R4//r759Jak So7zdLPkEQGqZU6AiIk5FYIeOrgVLVQBPDndVIRvrozxzadB+WY6zjm6NHzR 3bOcE2lyaXLSzPyTeLdffmFHZr9TQ1CbINucDj5fCKBkKx2byCCCaA0C5FzY L6zK7oW/ld0L38fuE3XpwI3QQgJCT4yf0Cwb7xYnHz4/lVaFZrWBKPdKXkUT PniwmE1o91kd5Zsr43zzaZC+uRjrL7MG3r0TQ14k4R1vTsQbOhZKO2FpJfeA rYeMPRWPRJJXqTXzdCIZzoKzUW98be0IZL/iedCIOripqKT0KBZFjjQQkrQ/ D1E8FsSejZ2fbdCfnO7kiqJ2bi0PhvgjOvIM8+wLP++QvbFUJ53R99AIV9ZU A5oj0SYqc4/hdeyZcbMpmoFsZjPfH8QZK+3izlcJYdiuTT2XExq8UDZCvHzy 5yY77G4fdn4LPnbeddv6lQCHXiY4TH06fafmfWPi8oMH/6KJRucaA2vPN01Y kRx2T4tTpVFBRvK9SjPvVTWqLMS5gzqXIeiCN3g7Bs6usS6KSpFl9Wt7dZJ9 1e5zaSTT/ZVOSknsq/wmOhG+piC+lOdVcZwTdSjZX7F6DSJfUj2RzGK1S1I0 uU3eq1XzlbKTFAkIjkYQWcxAu/42kPP/qlKWKZH7KCwHtsXaGk66MMkNapJx Q68Q/bWdQjXztOugnOXYTSKetYhiaWqWIaEW8apRygKt71ab7GY41iUzoDMX a+dju9693W7DM1rCJ93ejL2I9vTb19KhpAqRR83y5iaR9DF/N6mWJJHyZf/7 SWWRIIVYfzOpIic2neOYrJo0uB/0b+cUYiDcShhQivGWl1e0IaMlmqHdYEhF 2oCM0iTZY9eDB4I0mcIZvMgoVoCuv1Ico3Dafej+jiB76qCOBZZESabeBZCU S5tqpU7Splat573IqCnmh7Zt1+ESpyycRRiHs/UhoMuQwRuRwk9sOUmCSlhA 2JpM5uGUqRL0Eee6N8jbLWlaMWWSMqnouXxc/YMtzrNOONHCSYUnvE2y4EIr YmjD6CPj47ifVBgM1Qdrm4WE+wlIHuwNxreIPqR/gI74OLae2IVk+qsTHdXK x+wXShT4UPFaFX+xC8mMM6+2KtCzWqxVq6AZWq5prihWuSPTcMi8ns3PhyG6 Idg/42/eiJzL+0SWGavqHuejbudw632wvdPZPXgXHHw83jnYD/YPgqOtzv7b tazHXpPcos/yfK5q1XgwRyTEjfhY04rQv4L1puli8dBXQwlu643jUW0m7PR4 NvasIIBhdElAOd8sqxMz1X9pgIK+dGtfdft6O5g+uOewZF+sEZfa82VfGAl8 v0bc4zeFAVLlY087Io3QWqPsCdz5E9wNz9GTEW89MfEsrEC8l0Nq8hdmHxFf o4SEDHx18XTUS4mYhN6OlpYwirfUOQQ6LAZpGrV1VUOTbzH4FlzdEtwbjtRr E5zI6EO1EYNJb9q7hGGvHCimjVhyQJM4oFwSAoSJ8PYE3yiMIhoo+sN2cDGc 3gSz3reB+ZorAoEe/JDoVJXDLuvP1L2YlPqO5x3iUS9C3JA5YHvnUMsHkSne 9DPsY+f4fXDU/RgcHR+yTB8/I6NJqd/3jzufg7c7u13ZTUEyex4RtTJPvNeo eDLXw4R9R76Odh+PIhHqLW9xfJTVmcKjvHLLh22oXmx6pZq9BzUpjAH+JFNF hEnYrrv3862b87W1il/RdwJ9I8eXVRHiaO1PUWtdPVHUrPi1xEZSh4FGdaOR pZhISA2Lp2DFjqTHBTWeaTgymAuHA44Ptgez63k4gY+oesbb/cFd8BtIs/AO 3/lPzCQiTjH+KIFB+EsRldkslKqsVG1RiEtqVKbZVYudq4Je0yjW/FpN78p3 8prcyb0GSpjJdIhh7WHAA1lce8Y0vMuzyDj2gLldwju2wRficffzcfBrF29L dXaDg7dvj7rH7ag1iIsZgp9dD9Es2TuDff8+13ae4hdZvBCcldLBtqOY4buJ pzyKVLi8HYFYnUnfpCo8fRdOrykEo1gskiK1NgrvRoNvg1EQNc7KmVCS3/8h XBwcgv50uAdooE9iLTHduAFnTQPk6Gm41bBMHw+BW9jH9IkLZyWaU+7hoPgg zW9X3A76gr3Io5sJYaJngxU0gr4/ONz57wGIXklSeHtPBpgnXjoirjf+KGHp 8JffJVmNrrZcbdSrDXPpVCkOE/706BIpIwGkct5iOFQ8FlNF8YmnovI8r6HC OrvHQIazF7l87DjKHvMJC0R2OxXdDFn8mDcbTRyNlCy2G7dFY1sm01S0w59s f6MmPhxhI/Hy89bx4S68vpBjo2BW07MajUUjkM/49ml5SwSJxx8l8BZ/ycWy 58G/rAQyudYqVRbyVtRVnRsbcNaE3sVas1lu2GK5VuEmjUreJ8UP+3NThLJA kPrJ8Udvyc5h881SJtJnGwTAtEdw8NLiZoygc0/OYc9zwIvsEkvClVyZs4xQ uiX5Ge8+Qj0XQQiMcMeS3+Bn76Y8PVFbcdxQbePQ5OFVAVthXzINxGlnktwy vhT7wCGJyY8GFCRd9soiTJMmr0wuFkIiLgHBw7Ifur8Hb1nW83Ic5DLcoS4D UdVZi4ypR7oUFrHOdulgHcaoR93VKcATYLxW90BHD1RiUcxKvijXyDdRbla5 4HZ0A51Y78VFFG2P+0E2s/4uxGBGnAsqBNo/e4URJtl98Q5aRgsWGypBp6Bw INKuyNblskYoZwTljQFFvE/eBhRkvoroxtf6NTPnd0qQP0jI+gpV0t8F6Bp2 rnW+gDmgCQHadwGSSz0OEDeQ9TjaCGCbAO5IgBbRY1sOwcxkoAv+pRTH7w63 76yDcMB7vNGQW4WvNNSuHEqIDxOEAZoHg9NRHE5Ki9ime9Prz37wzg/eUbxT 8UjkVKpVHnkSZ52DyTySOBbLoL6E9yfx02n0I4U51KTwTXwO2HN30JuO2foH VGtFV6TeCB/jPjCLd+E2E7b+XrMKyb7v1bDUaAluWt+ie2/8bgvPryqBbdnE om1ldVIRcuAgdLs+kaAn8Iowg48nhBrY457S55BwbY8teO/QMhNarpIgJxWO lR/Ha5XLRb/pV5qeMz+O75eXyY+zt8XISMCHmbHZ7WQSTuct0TDPUxqIujlo skFfoVidP1Lp/Eil8yOVzoJUOvr9JbLoX4rrSwv9hnjli6cNEDfPkm7AOt7d zcMQMOx8R7I1/moFN2Xs8utG4k06vEqFHg9luKOCDZhd/ERlDjrcRqv/zv47 cV/2NMoVs9jfFGWdQx9XO55VXqY3ETlNRAu8/3kW3suLployxrQzonYtxzgA iizMChQaNacDTNQz4uMEd2SwZtlKKc+8Rp7B/sfiWyzDXZBGaLvqOFgGUiOB 4rr4zHUtc0tU/oAXPpBlMLQaHLs7R8dvDj4HnY8fu/vbZDBk2ehDKBJGlsmI pkYRi0DG/s2EZSXUvIPIlJO/JMMTJTKk2vggy+BoI2LVUxx3GM+uDx+BV+Qk TvVeel7oIQbVliI782wEUo8KIMBf1Gyjz8DX0CORHaMLUgJSYktKx0hFR2Cw cX/ykI1jJM8ifCE84yqOtjrw3amsdMPN3Dw7ETA6r15D1/Imk9EDMjplxiED t9tDn71TQSW2s5+/4sTNywuB2v3rnDOxsRGoulw6z6U9w+aa5iVA26klTfTa Eu6lveqyFu1FRZKEFWhmr7pLi/gkzuTQ1Gix/NHfJ0ekcTdBePCqsXfWdR+Z TD8uJUTtEF7QY0VRYfS15AVNBBaaaiNqnwu8nAw3PFlEhGMI6y1Sp9dMa8Gr 5v2/iRS9rMO8N0UuiGr5RrHpclEZH4vF/tQDs+SKHTYr++tjFHQieno5hLvU QMAlFu8SjCy+RVvN6lLdHMMMBv3AZfh0bcUi+w9m8LGSbQ3no8EES9i6t3Vs RG1O/Gr1NFow5Pm8yNIrOHT+PDthP8/YacbYZ10pI3DJRIMqgA4RkrwU/Qpf imJ0yfMC0qJF86Lzgmb5mnXwivUv9iJeDOBQAuD57tiWyI0kDAIGxL9NJ4g2 MX2ygstWWZSCDzb8aHqyokfCuoR14Lu2lLQQIpOdzuFc+wWGpkp/omwRfFMf dzv506VJUvuZSmMQb8DTMia+pwFAE+3Tvoh/IYhabRA+AqKLT4lnaRQ/41Ut kgpsOpa5K7d5JOD03pofJKnAgZiGqIeZpJ7q+aYT90YOSmE2unvHr0Jnqegc Xo3OppRRxMt85q6XXMvSBcBV8IvisO6HmIpsk73t7B517VKZ/F4R+wKgI7rB b0flsEhfzvKmJ19O8+7Kk0JltiHQJiGnc3z4qWsV5HlMHJAzWZ6pgVNGMJbE l+QhHs1aRXIkzt+uQqAJY/bNYp5WkU+7SpFZmdPCWztxds853mKDC4REtDtd AnbUEXtsbMSHfdRZ2oIuBINke1HB0ixSrxXh06mRsMMKftKlWV6g1V1sj1Sx CPBrB1XskrRG/VxFBfGBEaxTo1KvLbpUf0vKRm94Kgu+zmVoz28DNh6gLWiM AZDTHpyZQgq0VCa+4biH9ZpUtiU5tCZM4rIkTZi8ZH5OSZRlquMuK1ES1uWq UoDanyj0ni65euyuSd8O22sqbJGGxQb9l8SAizfUJByDPSZ8WmxJJostBxa1 Xdtah9q0kpYhQdJ0CH0RWosvgrbJCuW4TAzHoJuapft4tJnZ27VyDYmhmrYX LG9nsXXnBaxldvX8smym5herR+cQQLpkteSE9ozLpFw7/bSjpca202A7JCRS ydfCQhy3H5Rxha3Fr1Isb15JHN5bdvhk2mmlJ/7qJB9Tbqr8Y566KPPmogaL fXWq6V911kWA9EjEegvjeEvFZqXUaFbd1SwaS3nrtpgYgScix4tw4Vj58GT2 aXLRTURy+dkPL90PL90PL933eelW8seREIBXlPRoJgziM5GT1moL62uMTSnT Zz+4Cm8G7obKkceb8su0PN9jmmfPeqndf8wkvTKddn/ZNZggGTl0kdBWy/HO 082pnLT6nQWhccSKt4mMliOZWEVcVRStpYUoNtTge4caLBpKzz8eXSx/mA8S x9MKVtKQr145a+tKOJs/n1OKEvF3eKXfm9TSy+BjqzapMSHjMxxVM7m5ykCb zGAW+xQnsjjsKO+ZC0XzcN4bkbF8pgNdAqrWk67WO0BPuBV+pcnO5r3pXDpH YjCvBrh7pkDExryRurHP/xQLi+arORVkWzoQiel4JtF4k6R6jGSxR8eAg72i ZDgL+EoB0ZDKeSuGa90jQr4bOIGgj4b+/ksShXKxYnU6R0YOE50lE0ujKjfJ 6tTVPV/CduxCaBIyAUUxv+QXzbRBuZnht6/UxVg8wXNjOqjizoJvvRGZp61S 5YY/DvC8H+zu7IOi3dl63z2KTPWGcVADTkTlZy000lv8SG95yiXxtmSetWCn mV/h3isacYXmDrao63F495KhpkW4KqGyWCKFE/Zr0B7md2HLMMUkzsqzZxXz TLp6y1mr3vENwIZpOMoSp+Pb09E4eJkJ+ctNKCadbaA6W4i0kMbhUPM1wkDG OMihxhlW+Fvd48fKMaagpm3CfM1DOhxVZ4l1cEmT+tYfYeWEOUOmGYsiOZI3 VmRw7DrWUDaW9w/T+LogUaJbX8Yw2E1s8eDKHVtGCFzdw0QjBMK6kdEty6Ly y2mbJ45ElOiZzwb3vf589KDQY43hoZv8CxKzrI02JBt9NGGAi6klaWXiOXxA bsACpV6Bw8wNbTdwHAG9eEKRKDNMMN974GcX0Mb5sVvOgW4rGoOVMafcFFc7 aKA/s6xBNBiobDlhFBMmr5svp3HhR1nL4X2a2Ppyusyqdos+jRqaC52b4vl0 cZTc8vI1ZnLUZo9qo7FMCbbKCGRZJdPFNP4wPa0Rjf5F+Hu9Kv4KhRT8nTnw VzCE+l/A36IFOzxNVe55wMbqeojnrB5LmUawLFSCCkL6Kf/rYGxdtZLQ9SxU oj22bbtbyixU6S3tPFTp2agWpw9bMpnHXY6pT3SXawyn/LeeuNpsJ7JWy9nJ DnyW4dTRcVEX/n8MqHI2uhnMr8LzWVEeajftY+7CXoNYr8ESveRBy+qqnb+S +2uqDsZDOc5nC7rzw5Y2tHyU2k+dlcwT1sJPtcaSj5bqJ2K1XKeoxeTEk/ym +4Sf2lmeV+zO8vnCkUWNvs0kAZQKQEkVrb96ltqTfKcirhML1aFTjmdBMh4L GHeRH0gtLh1u+8mKXadZ4q8WmeqvlncPXP1d7oGEBDCVUqPhO90D5foP78AP 78AP78C/rBz2b4cYIplaFltr8p1m7/Z32rDb0oy7nBW3vZRxNqFtkrW1vZwJ tb26Ka79nebQ9tJmend6QicAtcHHASQO6Dg6qA5LnApY4rGg/Y/ULFUFMe0H idupcopXMGMn7J0+7KDpSbGsjurua7lVrhe9WrPkVayybzznXs2RszMq1Jh8 V+3vTOWZcusuVvfNciCuxRyILMmBuGb6D1my/3DNdh/S7fYGJZirNH2RfVfP 7IzFrWe401GYCSb+inJnImr/nhSfqybMl/nyn5tBKkZU/59/sucRAvGqiLzB 9VLmHNPw60z4Fezsb3c/sxa/f2XEQNMFr4SYZx0L7vo7Bh5USrHUfDKyZlLh Fx7vs76uAWGvbccfvH/GEv9JQRvA1bBG9ZgSeSAybUe1LLIxf2L0hZTNsNbk 6QwrIsn/shlljeovIoG/flNr1exzSXFhxoW5xIRzrhdR9GACJblR1KanqD6K n3MOuvk0fAhkQdLsutmkHStNRdPkSX09r0Go9XxP1pZNTOmrMvrihYWXE1E+ 6/lL02FL9a4o8gsa6OwfBQSvnlsJgZL1JJZryYFPB5H0S4tmL37QdN5ATVld gh4XNNq435sH58NpABMQtbtQrOKjvJ66VFJCnm8DrE8mWSeq+ZVnE3Hb6YKv E5AzFopBuOQBu6J0HmNcQZvCMhbnZq5TEMPzoMrcE6XCiDYo2tC1n+Z2rr1Q afr8Mka4lf2W10g6C8e78a2cjtCVcrFcq1btwLhyned6qtdF4hWVFsRIn8Yf E6WzLLM3nPXRsQ1Hr8moh8mezwcT2PEyIvkIoJpfnOaPg+F5ltltGeAaDh5I pYDIhASP4h2pnCUcsA4xkaI4HMSXgTYtls2IA3tGq6AYMWjGxbVqCvGKQLLg Y9RAIgKT3HMMqXo31QqvGVr1ReojvoRiaLyYTy5mAYC8fwBlgu4QnYdCfMiv kMiFtlpLiiOADSIToSkxIagJbxFWMiIBKK8v6URS8p1tLYMmiV4WH199D4Yg DC/HAB0X+yzD09aIFDTiVjONh4tVlWiMvzdKKcVfs5PSae6p1++Vud6uktYv maAqBc8vlMqYZhZrvNcXr98Ey1W9XvWs9evzMjKS7/Ts13HUnJxGCa75Jc/B 9Ca9BX8pLoCM9FZp+Y6T+IXVKlGq7IR8FadGVlYtHTcdwOCLRoMLqihpZeuW r8m+5nj/bTA9C2fw0CAVj0K8nQ6KvUholupYswCEpldKOjg5+4Gw9UtI45JX rPplkAp2PtQyT4hazpd5snLKVMvjxG9ml5uZcQgnpwvUxDbOxyP6I7JD8pxB RfGqsxV0Dt8FaMaSqkA+8tCdMFYooIlHHpw2o0Ti3XHvbDRQcMUFVpnQipbQ ycNgdnqKTuNnG0pZBSDjMKrZrCa8AXwwR5vn/U84omyM6sf9OGyjFWnMjxPU KmM2y4AQvIfhVDulN2Jt4c3Mq9vZ9NUo7PdGGdRiyBNrtzEBwntA4QZbAxR9 PDx4F2x9/qz/3N15c3xwsAvN4MnRpzdHx1nJsTv7W7uftrtHIJsKOz/pg7wS Rz55OM3kXP0BNPXdNfuOhmey/Xb37c5+N6utG6r2dbLNl848ZAODPEiDNZ0E gCq9OjMSAR5lOPS9o3dwvjre2epmT25nw8ie5byWzU3aOALiC3c+4rerQf8a hSta/w6O0MYqWI+MvjzmJBzPQkxYBRvwtMiLm1OytelmJsN5vUZGgmqzJGrW CeoXxizzE37P7ObsYpYRVOc8zzp7gJR9OCbuHOx3dglJeGgE9Jh9KeM9ztvR QWHV6iPpBt1c4/z69kh2AQbFDt9geoI3k/sE+101vXs+0FioPtR5Pr0dJPT+ BEff3SAaVs0U7fIjGPyUnzqq3HpQgzMHYRKY6dVe73qAaskzhpuG9mvUG1+q 34yX8tN+bximFa0fcYf24Kai/cARb/pFEKY0oVqllK/ChGp1XttkS8hCMgm3 cG/+DLsRWtDnWqYz+c9Pf6CVjXLy3XteIN4/Yrff0CQ9uz2bXQ1GI6vnT3/I F9R0B48rsCMJ31dLP3v/9IcUqBR+sJWwAlrUVFtIBPiIj8pdO7BFwS7aigCL J6J1xtxLJMKKvRuRmB53BdS/K03Q3JO2EqubvpPUcCdp+o0mpaXXt31KSS/z agN7fTo+2Ot86IqiNEcY01bE2jUb9h4N8gp2AmwAm+KITUIgNQNW56zDdP7g 5ylgMGQAUFT7AoWwhdO+tQBUcm+pZ3c/Hx92gu2do2O6+/0f0Pq3PoC2wHb2 j447u7vFtx14tdfZgVMhCE0Y6rDb2d7rFv+z/5kdH2wfsMk1SLCLsDgcoyY/ D/H0hj+AW79OLvF/s8mg/+z/AByqCwGL+gAA ---559023410-851401618-1151265835=:10990-- From irusskih@gmail.com Mon Jun 26 09:42:38 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 111A63B03DD for ; Mon, 26 Jun 2006 09:42:38 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21373-08 for ; Mon, 26 Jun 2006 09:42:37 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.207]) by menubar.gnome.org (Postfix) with ESMTP id 041D23B030E for ; Mon, 26 Jun 2006 09:42:36 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id 40so1223015nzk for ; Mon, 26 Jun 2006 06:42:36 -0700 (PDT) Received: by 10.64.114.10 with SMTP id m10mr4858289qbc; Mon, 26 Jun 2006 06:42:36 -0700 (PDT) Received: by 10.65.150.4 with HTTP; Mon, 26 Jun 2006 06:42:36 -0700 (PDT) Message-ID: <861727ef0606260642j2e005a12u9b73c9183fcca227@mail.gmail.com> Date: Mon, 26 Jun 2006 17:42:36 +0400 From: "Igor Russkih" To: "Pavel Tsekov" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620060123.GD99474@inode.hvn> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <20060622161011.GC3368@ugly.local> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.463 tagged_above=-999 required=2 tests=[AWL=-0.063, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -2.463 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jun 2006 13:42:38 -0000 Hello, > This command line option defaults to /usr/local. This patch is > just a proof of concept thing. I am posting it so that you can > test it and then we can discuss it. For me this patch looks fine, its good idea for MC to detect colorer's library presence in runtime. However the implementation is not rather straightforward because of that separate glue library. If such a dynamic loading is best case for MC, maybe it is worth implementing it in more 'valid' way? I mean I can develop a set of 'neutral' C API, which will be included directly into libcolorer. Then MC can dynamically load libcolorer and import all the required API functionality as it imports 'colorer_get_interface' via gmodule in Pavel's version. Surely it will require additional efforts as on my side, as on MC side, but with this we'll get better colorer's integration with MC. Moreover colorer will get a general C-based API, which it doesn't have now. Pavel, whats your opinion on this? > Igor, do you mind moving the declarations of the classes found in > syntax-colorer.cpp to syntax-colorer.h ? This way we could move > all the C functions from syntax-colorer.cpp to > syntax-colorer-interface.cpp and make them static and only accessible > thru colorer_interface_t. Within this model surely it can be changed in this way. -- Igor From ptsekov@gmx.net Mon Jun 26 12:23:54 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2F7093B036C for ; Mon, 26 Jun 2006 12:23:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32045-09 for ; Mon, 26 Jun 2006 12:23:52 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 049713B0196 for ; Mon, 26 Jun 2006 12:23:51 -0400 (EDT) Received: (qmail invoked by alias); 26 Jun 2006 16:23:50 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp023) with SMTP; 26 Jun 2006 18:23:50 +0200 X-Authenticated: #14308112 Date: Mon, 26 Jun 2006 19:22:35 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <861727ef0606260642j2e005a12u9b73c9183fcca227@mail.gmail.com> Message-ID: References: <20060620060123.GD99474@inode.hvn> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <20060622161011.GC3368@ugly.local> <861727ef0606260642j2e005a12u9b73c9183fcca227@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jun 2006 16:23:54 -0000 Hello, On Mon, 26 Jun 2006, Igor Russkih wrote: > For me this patch looks fine, its good idea for MC to detect colorer's > library presence in runtime. > > However the implementation is not rather straightforward because of > that separate glue library. Yes, it adds another level, but at the moment it is the only working solution. By using this library we avoid linking to libcolorer at build time. > If such a dynamic loading is best case for MC, maybe it is worth > implementing it in more 'valid' way? I mean I can develop a set of > 'neutral' C API, which will be included directly into libcolorer The dynamic loading is desired since it drops the dependency on libcolorer. For the package maintainer this means that she/he can build MC with colorer support but the package will not pull libcolorer unless specifically requested to do so (by the user). This is very important IMHO. > Then MC can dynamically load libcolorer and import all the required > API functionality as it imports 'colorer_get_interface' via gmodule in > Pavel's version. Yes. > Surely it will require additional efforts as on my side, as on MC > side, but with this we'll get better colorer's integration with MC. > Moreover colorer will get a general C-based API, which it doesn't have > now. > > Pavel, whats your opinion on this? If you are willing to change colorer so that it will become C-friendly you are more than welcome. Providing a generic interface seems a better solution than writing a new plugin for every editor in the wild. Of course custom plugins could be tuned better to fit the specific requirements of XYZ editor. I think it is up to you after all - either way I'll try to help getting colorer support into MC. From leonard@den.ottolander.nl Tue Jun 27 09:09:09 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72ACC3B008D for ; Tue, 27 Jun 2006 09:09:09 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30079-04 for ; Tue, 27 Jun 2006 09:09:08 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id D41E73B0084 for ; Tue, 27 Jun 2006 09:09:07 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 2E6DC4026 for ; Tue, 27 Jun 2006 15:08:30 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id xShjqIOGYA0c for ; Tue, 27 Jun 2006 15:08:26 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 948134021 for ; Tue, 27 Jun 2006 15:08:26 +0200 (CEST) Subject: Crash in mccolorer when choosing old syntax highlighting From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Tue, 27 Jun 2006 15:08:21 +0200 Message-Id: <1151413701.2841.22.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 13:09:09 -0000 Hi, (The patch by Pavel Tsekov did not fix the issue I was seeing, but then I didn't yet report what it was exactly.) How to reproduce: Edit a file Choose options->general menu Disable colorer Choose options->syntax highlighting boom (Backtrace is for mccolorer with Pavel's patch applied.) I suppose the switching to the menu's necessary for the old syntax highlighting doesn't yet work correctly. #0 0x080aaf1e in colorer_get_handle (edit=0x0) at syntax-colorer-wrapper.c:50 #1 0x080a97ab in colorer_free_syntax_rules (edit=0x0) at syntax-colorer.cpp:493 #2 0x080a7839 in edit_load_syntax (edit=0x0, pnames=0xbfaee638, type=0x0) at syntax.c:1203 #3 0x080a8ca5 in edit_syntax_dialog () at choosesyntax.c:66 #4 0x0807952c in menubar_execute (menubar=Variable "menubar" is not available. ) at menu.c:242 #5 0x08079d98 in menubar_callback (w=0x9697268, msg=WIDGET_HOTKEY, parm=10) at menu.c:326 #6 0x08063ebe in dlg_process_event (h=0x96722b8, key=10, event=0xbfaee6e4) at dialog.c:603 #7 0x080640d4 in run_dlg (h=0x96722b8) at dialog.c:785 #8 0x080a25f5 in edit_file (_file=0x9667908 "Makefile", line=0) at editwidget.c:217 #9 0x0805e39a in do_edit_at_line (what=0x9667908 "Makefile", start_line=0) at cmd.c:270 #10 0x0805e3e6 in do_edit (what=Variable "what" is not available. ) at cmd.c:289 #11 0x08095643 in buttonbar_call (bb=Variable "bb" is not available. ) at widget.c:2279 #12 0x08095831 in buttonbar_callback (w=0x966e0a8, msg=WIDGET_HOTKEY, parm=1004) at widget.c:2301 #13 0x08063d17 in dlg_process_event (h=0x9658298, key=1004, event=0xbfaee804) at dialog.c:614 #14 0x080640d4 in run_dlg (h=0x9658298) at dialog.c:785 #15 0x08078c16 in main (argc=1, argv=0xbfaefa24) at main.c:1675 Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Tue Jun 27 09:11:43 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E1A1C3B0084 for ; Tue, 27 Jun 2006 09:11:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30031-10 for ; Tue, 27 Jun 2006 09:11:40 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 728063B012D for ; Tue, 27 Jun 2006 09:11:36 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id BEB36403C; Tue, 27 Jun 2006 15:11:21 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id UkhQHR1PwEmH; Tue, 27 Jun 2006 15:11:21 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 46DBC4026; Tue, 27 Jun 2006 15:11:21 +0200 (CEST) Subject: Re: Snapshots availability From: Leonard den Ottolander To: Pavel Roskin In-Reply-To: <1151000137.3539.23.camel@dv> References: <1150924866.2801.100.camel@athlon> <1151000137.3539.23.camel@dv> Content-Type: text/plain Date: Tue, 27 Jun 2006 15:11:16 +0200 Message-Id: <1151413876.2841.25.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 13:11:43 -0000 Hello Pavel, On Thu, 2006-06-22 at 14:15 -0400, Pavel Roskin wrote: > Snapshots are not intended for developers. Developers should be using > proper version control systems. Snapshots are for users who want to try > the latest features and check if some bug has been fixed, but who don't > intend to keep the sources up-to-date. Which doesn't contradict the fact that in circumstances it might be useful for me to take a look at a snapshot somebody used to create a mod, like in the case of mccolorer where I did not have the correct snapshot available to diff against. Hence my request. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Tue Jun 27 10:39:56 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EAF473B0500 for ; Tue, 27 Jun 2006 10:39:55 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03870-10 for ; Tue, 27 Jun 2006 10:39:55 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id C50273B04FC for ; Tue, 27 Jun 2006 10:39:54 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 444054026; Tue, 27 Jun 2006 16:39:33 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id DujbSwckqNA4; Tue, 27 Jun 2006 16:39:32 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id C395E4021; Tue, 27 Jun 2006 16:39:32 +0200 (CEST) Subject: Re: Crash in mccolorer when choosing old syntax highlighting From: Leonard den Ottolander To: Igor Russkih In-Reply-To: <861727ef0606270708j12fe8828p9d5464aa9f426071@mail.gmail.com> References: <1151413701.2841.22.camel@athlon> <861727ef0606270708j12fe8828p9d5464aa9f426071@mail.gmail.com> Content-Type: text/plain Date: Tue, 27 Jun 2006 16:39:26 +0200 Message-Id: <1151419167.2841.42.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 14:39:56 -0000 Hello Igor, On Tue, 2006-06-27 at 18:08 +0400, Igor Russkih wrote: > For me Pavel's patch fixes the problem. > > However Pavel diff-ed it with original mc source I believe because > this it can fail to apply. > + if (!edit) > + return; > + > #if USE_COLORER > colorer_free_syntax_rules(edit); > return; > #endif After applying Pavel's patch the if (!edit) ended up *after the (first) #if USE_COLORER. Bringing it to the front indeed fixes this crash. Thanks you both. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From proski@gnu.org Tue Jun 27 11:46:24 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3404A3B02AF for ; Tue, 27 Jun 2006 11:46:24 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06517-02 for ; Tue, 27 Jun 2006 11:46:23 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id D7CB33B015C for ; Tue, 27 Jun 2006 11:46:22 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FvFkw-0003lu-7L for mc-devel@gnome.org; Tue, 27 Jun 2006 11:45:39 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FvFkW-0004lr-Dl; Tue, 27 Jun 2006 11:45:12 -0400 Subject: Re: Snapshots availability From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1151413876.2841.25.camel@athlon> References: <1150924866.2801.100.camel@athlon> <1151000137.3539.23.camel@dv> <1151413876.2841.25.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 27 Jun 2006 11:45:12 -0400 Message-Id: <1151423112.18089.7.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.595 tagged_above=-999 required=2 tests=[AWL=0.005, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.595 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 15:46:24 -0000 On Tue, 2006-06-27 at 15:11 +0200, Leonard den Ottolander wrote: > Hello Pavel, > > On Thu, 2006-06-22 at 14:15 -0400, Pavel Roskin wrote: > > Snapshots are not intended for developers. Developers should be using > > proper version control systems. Snapshots are for users who want to try > > the latest features and check if some bug has been fixed, but who don't > > intend to keep the sources up-to-date. > > Which doesn't contradict the fact that in circumstances it might be > useful for me to take a look at a snapshot somebody used to create a > mod, like in the case of mccolorer where I did not have the correct > snapshot available to diff against. Hence my request. Contributors should send patches and make sure that the patches only contains their modifications and that the modifications are intended. They should also be able to explain the reasons for every change. If they cannot do it, I would not consider such changes for committing to CVS, for the reason that either the contributor is too sloppy, has problems with memory or is not the original author of all the changes. -- Regards, Pavel Roskin From INVALID.NOREPLY@gnu.org Thu Jun 29 06:41:30 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CE1033B0286 for ; Thu, 29 Jun 2006 06:41:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04510-06 for ; Thu, 29 Jun 2006 06:41:29 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 142013B020C for ; Thu, 29 Jun 2006 06:41:29 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fvtxf-00018T-00; Thu, 29 Jun 2006 06:41:27 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 29 Jun 2006 10:41:27 +0000 Date: Thu, 29 Jun 2006 10:41:27 +0000 To: Denis Vlasenko , mc-devel@gnome.org Subject: [bug #16967] unrar passworded_file.rar hangs From: Denis Vlasenko X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16967 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.9) Gecko/20050711 Firefox/1.0.5 (CK-IBM) X-Apparently-From: 195.212.29.187 (Savane authenticated user vda) Message-Id: <20060629-104126.sv50573.85488@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.805 tagged_above=-999 required=2 tests=[AWL=-0.738, BAYES_00=-2.599, RCVD_IN_SORBS_WEB=1.456, SPF_PASS=-0.001, TW_TX=0.077] X-Spam-Score: -1.805 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 10:41:31 -0000 URL: Summary: unrar passworded_file.rar hangs Project: GNU Midnight Commander Submitted by: vda Submitted on: Thursday 06/29/2006 at 10:41 Category: None Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Linux _______________________________________________________ Details: unrar of password-protected archives hangs (unrar opens /dev/tty and sits there, waiting for the password) The patch adds -p- switch. A few unsafe "$var" expansions are fixed in several etxfs scripts. _______________________________________________________ File Attachments: ------------------------------------------------------- Date: Thursday 06/29/2006 at 10:41 Name: 1.diff Size: 6.49KB By: vda _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From master@iaas.msu.ru Thu Jun 29 16:24:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D8EE23B00D0 for ; Thu, 29 Jun 2006 16:24:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07075-05 for ; Thu, 29 Jun 2006 16:24:36 -0400 (EDT) Received: from serv.iaas.msu.ru (serv.iaas.msu.ru [212.192.224.252]) by menubar.gnome.org (Postfix) with ESMTP id 808AA3B007B for ; Thu, 29 Jun 2006 16:24:35 -0400 (EDT) Received: from isaa.radio-msu.net (isaa.radio-msu.net [194.67.81.166]) by serv.iaas.msu.ru (8.13.4/8.13.1) with ESMTP id k5TKOWZR043918; Fri, 30 Jun 2006 00:24:33 +0400 (MSD) (envelope-from master@iaas.msu.ru) Date: Fri, 30 Jun 2006 00:24:06 +0400 (MSD) From: Michail Vidiassov X-X-Sender: master@isaa.radio-msu.net To: Egmont Koblinger Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <20060614131621.GE29389@cs.bme.hu> Message-ID: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: ClamAV version 0.88.2, clamav-milter version 0.88.2 on serv.iaas.msu.ru X-Virus-Status: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.524 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_DN=0.077] X-Spam-Score: -2.524 X-Spam-Level: Cc: mc-devel@gnome.org, Tomasz =?iso-8859-2?Q?K=B3oczko?= X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 20:24:40 -0000 Dear All, On Wed, 14 Jun 2006, Egmont Koblinger wrote: > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > I don't think so, and I don't think it is worth it. Maintaining two backends > IMHO just causes headaches while it doesn't make mc better. I still can't > see why developers do not decide which one to use and drop the other one. > > With Unicode support maintaining the two will be much harder since AFAIK > slang works with UTF-8 while ncurses uses UCS-4. Hence a completely > different patch would be required for the two cases. > Why not to follow the way used in non-UTF mc, and use curses-like calls (translated to ncurses calls or emulated by slang calls in myslang.h)? I have made mc 4.6.1 with UTF patches compile and run when linked against ncrurses 5.4 by replacing SLsmg_write_nwchars by addnwstr. Thus, it may be a good idea to use addnwstr as the wide character output routine, addnwstr being a ncurses call or a wrapper around SLsmg_write_nwchars (along the lines addch is implemented now). Sincerely, Michail From apmah@gmx.net Fri Jun 30 00:52:03 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 00F3A3B007D for ; Fri, 30 Jun 2006 00:52:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26203-02 for ; Fri, 30 Jun 2006 00:51:59 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 2E3603B0013 for ; Fri, 30 Jun 2006 00:51:59 -0400 (EDT) Received: (qmail invoked by alias); 30 Jun 2006 04:51:58 -0000 Received: from 84-72-42-55.dclient.hispeed.ch (EHLO nostromo5) [84.72.42.55] by mail.gmx.net (mp028) with SMTP; 30 Jun 2006 06:51:58 +0200 X-Authenticated: #23139764 Date: Fri, 30 Jun 2006 06:51:57 +0200 From: Hampa Hug To: mc-devel@gnome.org Subject: [patch] Fix test for getmntinfo on NetBSD 3.0 Message-Id: <20060630065157.355f1d8c.apmah@gmx.net> X-Mailer: sylpheed Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Multipart=_Fri__30_Jun_2006_06_51_57_+0200_iufg09lLLRp0ZxFM" X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.196 tagged_above=-999 required=2 tests=[AWL=-0.816, BAYES_05=-1.11, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001, TW_TM=0.077, TW_TV=0.077, TW_UF=0.077, X_MAILER_SPAM=1.365] X-Spam-Score: -0.196 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: Hampa Hug List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 04:52:03 -0000 This is a multi-part message in MIME format. --Multipart=_Fri__30_Jun_2006_06_51_57_+0200_iufg09lLLRp0ZxFM Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Hello It would seem that the test in acinclude.m4 for a NetBSD 3.0 style getmntinfo() is wrong. The attached patch fixes this. >From the NetBSD 3.0 man page for getmntinfo(3): RETURN VALUES On successful completion, getmntinfo() returns a count of the number of elements in the array. The pointer to the array is stored into mntbufp. If an error occurs, zero is returned and the external variable errno is set to indicate the error. Although the pointer mntbufp will be unmodi- fied, any information previously returned by getmntinfo() will be lost. Hampa --Multipart=_Fri__30_Jun_2006_06_51_57_+0200_iufg09lLLRp0ZxFM Content-Type: text/plain; name="mc-getmntinfo.diff" Content-Disposition: attachment; filename="mc-getmntinfo.diff" Content-Transfer-Encoding: 7bit diff -ur mc-cvs/acinclude.m4 mc-dev/acinclude.m4 --- mc-cvs/acinclude.m4 2006-06-20 17:04:13.000000000 +0200 +++ mc-dev/acinclude.m4 2006-06-29 04:21:45.000000000 +0200 @@ -306,7 +306,7 @@ main () { struct statvfs *mntbufp; -exit (getmntinfo (&mntbufp, MNT_NOWAIT)); +exit (getmntinfo (&mntbufp, MNT_NOWAIT) == 0); }], mc_cv_sys_mounted_getmntinfo_statvfs=yes, mc_cv_sys_mounted_getmntinfo_statvfs=no, --Multipart=_Fri__30_Jun_2006_06_51_57_+0200_iufg09lLLRp0ZxFM-- From ptsekov@gmx.net Fri Jun 30 03:47:01 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B0D203B0127 for ; Fri, 30 Jun 2006 03:47:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01677-04 for ; Fri, 30 Jun 2006 03:47:00 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 430E33B00C7 for ; Fri, 30 Jun 2006 03:47:00 -0400 (EDT) Received: (qmail invoked by alias); 30 Jun 2006 07:46:58 -0000 Received: from 87-126-67-123.btc-net.bg (EHLO sole) [87.126.67.123] by mail.gmx.net (mp010) with SMTP; 30 Jun 2006 09:46:58 +0200 X-Authenticated: #14308112 Date: Fri, 30 Jun 2006 10:45:42 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Hampa Hug Subject: Re: [patch] Fix test for getmntinfo on NetBSD 3.0 In-Reply-To: <20060630065157.355f1d8c.apmah@gmx.net> Message-ID: References: <20060630065157.355f1d8c.apmah@gmx.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.401 tagged_above=-999 required=2 tests=[AWL=-0.090, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001, TW_TM=0.077, TW_UF=0.077] X-Spam-Score: -2.401 X-Spam-Level: Cc: mc-devel@gnome.org X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 07:47:01 -0000 Hello Hampa, On Fri, 30 Jun 2006, Hampa Hug wrote: > It would seem that the test in acinclude.m4 for a NetBSD 3.0 style > getmntinfo() is wrong. The attached patch fixes this. > >> From the NetBSD 3.0 man page for getmntinfo(3): > > RETURN VALUES > On successful completion, getmntinfo() returns a count of the number of > elements in the array. The pointer to the array is stored into mntbufp. > > If an error occurs, zero is returned and the external variable errno is > set to indicate the error. Although the pointer mntbufp will be unmodi- > fied, any information previously returned by getmntinfo() will be lost. I've applied your patch. Thanks! From INVALID.NOREPLY@gnu.org Fri Jun 30 05:34:56 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5E2473B01F6 for ; Fri, 30 Jun 2006 05:34:56 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08474-03 for ; Fri, 30 Jun 2006 05:34:54 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 5437B3B0127 for ; Fri, 30 Jun 2006 05:34:54 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FwFOl-0001Iy-00; Fri, 30 Jun 2006 05:34:51 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Fri, 30 Jun 2006 09:34:51 +0000 Date: Fri, 30 Jun 2006 09:34:51 +0000 To: Egmont Koblinger , mc-devel@gnome.org Subject: [patch #5217] vfs/extfs/deb.in fixes From: Egmont Koblinger X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: patch X-Savane-Item-ID: 5217 User-Agent: Opera/9.00 (X11; Linux i686; U; en) X-Apparently-From: 195.56.230.93 (Savane authenticated user egmont) Message-Id: <20060630-093451.sv20032.13837@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.522 tagged_above=-999 required=2 tests=[AWL=0.001, BAYES_00=-2.599, SPF_PASS=-0.001, TW_DP=0.077] X-Spam-Score: -2.522 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 09:34:56 -0000 URL: Summary: vfs/extfs/deb.in fixes Project: GNU Midnight Commander Submitted by: egmont Submitted on: Friday 06/30/2006 at 09:34 Category: VFS Priority: 5 - Normal Status: None Privacy: Public Assigned to: None Originator Email: Open/Closed: Open _______________________________________________________ Details: The attached patch fixes two issues with the deb vfs plugin: - Empty directories within a deb package are not shown if browsing its contents. "dpkg -c" prints a "/" suffix for these entries and the plugin filters them out (I wonder why). It seems to me that simply removing this "next if ..." is fine for mc. You may want to strip off the trailing slash, however. - The DEBIAN directory is empty if using dpkg-1.13.22 with hu_HU locale. The reason is that the second line in the output of "dpkg-deb -I" ("size ..." in English) is translated to "méret: ..." which has a colon in the first word, hence the plugin thinks it's already the end of the file list. The solution is to force the C locale for output that will be parsed later. _______________________________________________________ File Attachments: ------------------------------------------------------- Date: Friday 06/30/2006 at 09:34 Name: deb.in.patch Size: 788B By: egmont vfs/extfs/deb.in fixes _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Thu Jun 1 08:53:31 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E31023B01AD for ; Thu, 1 Jun 2006 08:53:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03324-10 for ; Thu, 1 Jun 2006 08:53:29 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by menubar.gnome.org (Postfix) with SMTP id D77263B017F for ; Thu, 1 Jun 2006 08:53:28 -0400 (EDT) Received: (qmail invoked by alias); 01 Jun 2006 12:53:27 -0000 Received: from 87-126-39-234.btc-net.bg (EHLO sole) [87.126.39.234] by mail.gmx.net (mp040) with SMTP; 01 Jun 2006 14:53:27 +0200 X-Authenticated: #14308112 Date: Thu, 1 Jun 2006 15:52:18 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: mc@rigacci.org In-Reply-To: Message-ID: References: <20060529075733.GD12204@rigacci.org> <20060530085432.GB15022@rigacci.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.555 tagged_above=-999 required=2 tests=[AWL=0.045, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.555 X-Spam-Level: Cc: MC dev Subject: Re: Blocking DNS lookup on MC startup X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Jun 2006 12:53:31 -0000 On Wed, 31 May 2006, Pavel Tsekov wrote: > There are more calls to gethostbyname() after the get_myname () call. > load_interfaces() is doing gethostbyname() for every single value of the > "interfaces" parameter of smb.conf. If interfaces doesn't contain an > ip_address/netmask pair load_interfaces() tries to resolve the value > via gethostbyname() :( Another solution would be to delay the samba lib initialization until the first samba request. This way it will be clearly visible for the user that the hang is due to a samba request. Of course the initialization must be made interruptable. Opinions ? From ptsekov@gmx.net Fri Jun 2 09:09:02 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 74C403B01DB for ; Fri, 2 Jun 2006 09:09:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27932-10 for ; Fri, 2 Jun 2006 09:09:01 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by menubar.gnome.org (Postfix) with SMTP id 8AF793B000C for ; Fri, 2 Jun 2006 09:09:00 -0400 (EDT) Received: (qmail invoked by alias); 02 Jun 2006 13:08:58 -0000 Received: from 87-126-39-234.btc-net.bg (EHLO sole) [87.126.39.234] by mail.gmx.net (mp032) with SMTP; 02 Jun 2006 15:08:58 +0200 X-Authenticated: #14308112 Date: Fri, 2 Jun 2006 16:07:49 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: vadim In-Reply-To: <200605051503.27061.vadim-lvv@yandex.ru> Message-ID: References: <200605051503.27061.vadim-lvv@yandex.ru> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: [patch] for gnome & kde trash X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 13:09:02 -0000 Hello Vadim, On Fri, 5 May 2006, vadim wrote: > This patch being proposed is created for support of the trash in gnome or in kde. > The files get into the trash only from /home directory and while mc is run in gnome or kde. > I think that root does not need the trash but users must not delete files outside home directory > and not work without GUI. This patch is not acceptable as is. I suppose both GNOME and KDE provide means for moving a file to the trash. I'd be happy to review patches which delete a file to the trash with the appropriate interfaces. Btw note that both GNOME and KDE are supported on systems other than Linux. Next time when you submit a patch for review, please, remove any debugging output that you've used while developing the patch. Patches should be stripped off any information which is not related to the patch. Also avoid whitespace changes, formating changes, etc - they make the patch harder to read. Thanks! From leonard@den.ottolander.nl Fri Jun 2 12:38:53 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 04A363B045F for ; Fri, 2 Jun 2006 12:38:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08517-02 for ; Fri, 2 Jun 2006 12:38:52 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 6EB3C3B00A5 for ; Fri, 2 Jun 2006 12:38:50 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id ECE05402A for ; Fri, 2 Jun 2006 18:38:48 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id agae4SbZ5JJN for ; Fri, 2 Jun 2006 18:38:44 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 5E80C4023 for ; Fri, 2 Jun 2006 18:38:44 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <20060601184743.E643513D16@server8.alinet.sk> References: <20060601184743.E643513D16@server8.alinet.sk> Content-Type: text/plain Date: Fri, 02 Jun 2006 18:40:21 +0200 Message-Id: <1149266421.2605.17.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.306 tagged_above=-999 required=2 tests=[AWL=-0.150, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_RW=0.077, TW_SR=0.077, TW_WX=0.077, TW_XR=0.077] X-Spam-Score: -2.306 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 16:38:53 -0000 Hello Dusan, You are slightly overdoing it with the info. Not sure what the ps, mount and dmesg output are needed for for example... Plus the use of multipart html mail causes quite some waste of disk space and bandwidth. Please be a bit more considerate next time you ask a question. O, and please ask user questions on the user list. On Thu, 2006-06-01 at 20:47 +0200, rekcah wrote: > # ls -l /usr/lib/mc/cons.saver > -rwsrwxrwx 1 root root 5696 May 5 2005 /usr/lib/mc/cons.saver Well that binary is suid root which should work - although suid vcsa is preferred, assuming the /dev/vcsa devices are owned by a user vcsa. Please take a look just below the header of src/cons.saver.c -, but I am wondering if you are actually looking at the correct binary. The latest FC4 mc rpm I checked has cons.saver located in /usr/libexec/mc/. By the way, you do *not* want suid binaries world writable!!! Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Fri Jun 2 12:40:25 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4F39A3B012E for ; Fri, 2 Jun 2006 12:40:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08459-09 for ; Fri, 2 Jun 2006 12:40:24 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 441803B00C8 for ; Fri, 2 Jun 2006 12:40:24 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 6374C4023 for ; Fri, 2 Jun 2006 18:40:23 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id Sv8OzhsaaR-J for ; Fri, 2 Jun 2006 18:40:23 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 0150A4021 for ; Fri, 2 Jun 2006 18:40:22 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <1149266421.2605.17.camel@athlon> References: <20060601184743.E643513D16@server8.alinet.sk> <1149266421.2605.17.camel@athlon> Content-Type: text/plain Date: Fri, 02 Jun 2006 18:42:00 +0200 Message-Id: <1149266520.2605.18.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.714 tagged_above=-999 required=2 tests=[AWL=-0.739, BAYES_05=-1.11, FORGED_RCVD_HELO=0.135] X-Spam-Score: -1.714 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 16:40:25 -0000 On Fri, 2006-06-02 at 18:40 +0200, Leonard den Ottolander wrote: > O, and please ask user questions on the user list. Duh! It was not sent to this list in the first place. Scuze me ;) . Leonard. -- mount -t life -o ro /dev/dna /genetic/research From egmont@uhulinux.hu Fri Jun 2 12:43:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 32D323B0135 for ; Fri, 2 Jun 2006 12:43:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08798-05 for ; Fri, 2 Jun 2006 12:43:33 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id E8D213B0507 for ; Fri, 2 Jun 2006 12:43:32 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id 4CE6B7FA5 for ; Fri, 2 Jun 2006 18:43:31 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25536-07 for ; Fri, 2 Jun 2006 18:43:27 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id 99CA67F4E for ; Fri, 2 Jun 2006 18:43:27 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Fri, 2 Jun 2006 18:43:27 +0200 Date: Fri, 2 Jun 2006 18:43:27 +0200 From: Egmont Koblinger To: mc-devel@gnome.org Message-ID: <20060602164326.GB5134@cs.bme.hu> References: <20060601184743.E643513D16@server8.alinet.sk> <1149266421.2605.17.camel@athlon> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1149266421.2605.17.camel@athlon> User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.855 tagged_above=-999 required=2 tests=[AWL=-0.745, BAYES_05=-1.11] X-Spam-Score: -1.855 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 16:43:36 -0000 On Fri, Jun 02, 2006 at 06:40:21PM +0200, Leonard den Ottolander wrote: > By the way, you do *not* want suid binaries world writable!!! OT: The linux kernel removes the set[ug]id bit as soon as you modify the file. However, other systems may not do so. -- Egmont From leonard@den.ottolander.nl Fri Jun 2 12:50:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1FBE63B0325 for ; Fri, 2 Jun 2006 12:50:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09252-02 for ; Fri, 2 Jun 2006 12:50:26 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 174AD3B0135 for ; Fri, 2 Jun 2006 12:50:26 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 1F6824023 for ; Fri, 2 Jun 2006 18:50:25 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 9HbEI4Iozrqp for ; Fri, 2 Jun 2006 18:50:23 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 3AD194021 for ; Fri, 2 Jun 2006 18:50:23 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <20060602164326.GB5134@cs.bme.hu> References: <20060601184743.E643513D16@server8.alinet.sk> <1149266421.2605.17.camel@athlon> <20060602164326.GB5134@cs.bme.hu> Content-Type: text/plain Date: Fri, 02 Jun 2006 18:52:00 +0200 Message-Id: <1149267120.2605.23.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 16:50:27 -0000 Hello Egmont, On Fri, 2006-06-02 at 18:43 +0200, Egmont Koblinger wrote: > OT: > The linux kernel removes the set[ug]id bit as soon as you modify the file. > However, other systems may not do so. Ok. I didn't know that. Does this only happen with 2.6 kernels or also with 2.4 kernels? Leonard. -- mount -t life -o ro /dev/dna /genetic/research From egmont@uhulinux.hu Fri Jun 2 13:03:12 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3E6D63B00A5 for ; Fri, 2 Jun 2006 13:03:12 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09674-09 for ; Fri, 2 Jun 2006 13:03:09 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id A4DE33B026C for ; Fri, 2 Jun 2006 13:03:09 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id 88C9E803E for ; Fri, 2 Jun 2006 19:03:08 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25507-04 for ; Fri, 2 Jun 2006 19:03:04 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id C51957F4E for ; Fri, 2 Jun 2006 19:03:04 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Fri, 2 Jun 2006 19:03:04 +0200 Date: Fri, 2 Jun 2006 19:03:04 +0200 From: Egmont Koblinger To: mc-devel@gnome.org Message-ID: <20060602170304.GC5134@cs.bme.hu> References: <20060601184743.E643513D16@server8.alinet.sk> <1149266421.2605.17.camel@athlon> <20060602164326.GB5134@cs.bme.hu> <1149267120.2605.23.camel@athlon> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1149267120.2605.23.camel@athlon> User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.58 tagged_above=-999 required=2 tests=[AWL=0.019, BAYES_00=-2.599] X-Spam-Score: -2.58 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 17:03:12 -0000 On Fri, Jun 02, 2006 at 06:52:00PM +0200, Leonard den Ottolander wrote: > Ok. I didn't know that. Does this only happen with 2.6 kernels or also > with 2.4 kernels? I think it's a really very old feature. BTW a world-writable binary (even without a setuid bit) that is likely to be executed by many different users _is_ a big security hole. Anyone can easily replace it with a binary that removes your files or similar... -- Egmont From ossi@kde.org Fri Jun 2 14:51:49 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A82423B0B87 for ; Fri, 2 Jun 2006 14:51:49 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15831-06 for ; Fri, 2 Jun 2006 14:51:45 -0400 (EDT) Received: from ktown.kde.org (ktown.kde.org [131.246.120.250]) by menubar.gnome.org (Postfix) with SMTP id 90FC63B0414 for ; Fri, 2 Jun 2006 14:51:44 -0400 (EDT) Received: (qmail 27395 invoked from network); 2 Jun 2006 18:51:43 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 2 Jun 2006 18:51:43 -0000 Received: from ossi by ugly.local with local (masqmail 0.2.21) id 1FmEhZ-0yc-00 for ; Fri, 02 Jun 2006 20:48:53 +0200 Date: Fri, 2 Jun 2006 20:48:53 +0200 From: Oswald Buddenhagen To: mc-devel@gnome.org Message-ID: <20060602184853.GB3439@ugly.local> Mail-Followup-To: mc-devel@gnome.org References: <200605051503.27061.vadim-lvv@yandex.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.585 tagged_above=-999 required=2 tests=[AWL=0.014, BAYES_00=-2.599] X-Spam-Score: -2.585 X-Spam-Level: Subject: Re: [patch] for gnome & kde trash X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 18:51:49 -0000 On Fri, Jun 02, 2006 at 04:07:49PM +0300, Pavel Tsekov wrote: > This patch is not acceptable as is. > indeed. > I suppose both GNOME and KDE provide means for moving a file to the > trash. > who cares? the authoritative reference is http://www.ramendik.ru/docs/trashspec.html -- Hi! I'm a .signature virus! Copy me into your ~/.signature, please! -- Chaos, panic, and disorder - my work here is done. From nerijus@users.sourceforge.net Sun Jun 4 14:45:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4D6763B02F2 for ; Sun, 4 Jun 2006 14:45:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03996-07 for ; Sun, 4 Jun 2006 14:45:14 -0400 (EDT) Received: from mx.dtiltas.lt (mx.dt.lt [84.32.38.8]) by menubar.gnome.org (Postfix) with ESMTP id 4BE163B02D7 for ; Sun, 4 Jun 2006 14:45:14 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by mx.dtiltas.lt (UAB "Duomenu Tiltas" Mail service) with ESMTP id E3E8BC6D5 for ; Sun, 4 Jun 2006 21:45:11 +0300 (EEST) Received: from mx.dtiltas.lt ([84.32.38.8]) by localhost (mx.dt.lt [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05781-01-4 for ; Sun, 4 Jun 2006 21:45:10 +0300 (EEST) Received: from nerijus.sat.lt (clt-84-32-63-24.dtiltas.lt [84.32.63.24]) by mx.dtiltas.lt (UAB "Duomenu Tiltas" Mail service) with ESMTP id 6D96FCEAC for ; Sun, 4 Jun 2006 21:20:11 +0300 (EEST) Received: (qmail 25458 invoked from network); 4 Jun 2006 18:18:56 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 4 Jun 2006 18:18:56 -0000 Date: Sun, 4 Jun 2006 21:18:56 +0300 From: Nerijus Baliunas To: Leonard den Ottolander MIME-Version: 1.0 Content-Type: TEXT/PLAIN; CHARSET=US-ASCII Content-Disposition: INLINE X-Mailer: Mahogany 0.66.0 'Clio', compiled for Linux 2.6.16-1.2080_3.rhfc5.cubbi_suspend2 i686 Message-Id: <20060604182011.6D96FCEAC@mx.dtiltas.lt> X-Virus-Scanned: amavisd-new at dt.lt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.49 tagged_above=-999 required=2 tests=[AWL=-0.885, BAYES_20=-0.74, FORGED_RCVD_HELO=0.135] X-Spam-Score: -1.49 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Open mailboxes with mailfs X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jun 2006 18:45:16 -0000 Hello, I see you added it to mc.ext.in (very nice btw!): +# Mailboxes +type/^ASCII\ mail\ text$ + Open=%cd %p#mailfs But 'file' on some of my mailboxes gives: ASCII mail text, with very long lines So I suggest removing "$" from the end. Regards, Nerijus From leonard@den.ottolander.nl Mon Jun 5 06:25:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 71A173B0152 for ; Mon, 5 Jun 2006 06:25:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21866-05 for ; Mon, 5 Jun 2006 06:25:20 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 1F2F03B002C for ; Mon, 5 Jun 2006 06:25:19 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 5F3184023 for ; Mon, 5 Jun 2006 12:25:14 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id lf2l-E6+Tgqm for ; Mon, 5 Jun 2006 12:25:13 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id DE0E34021 for ; Mon, 5 Jun 2006 12:25:12 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <20060604182011.6D96FCEAC@mx.dtiltas.lt> References: <20060604182011.6D96FCEAC@mx.dtiltas.lt> Content-Type: text/plain Date: Mon, 05 Jun 2006 12:26:51 +0200 Message-Id: <1149503211.2473.5.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.526 tagged_above=-999 required=2 tests=[AWL=-0.921, BAYES_20=-0.74, FORGED_RCVD_HELO=0.135] X-Spam-Score: -1.526 X-Spam-Level: Subject: Re: Open mailboxes with mailfs X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 10:25:21 -0000 Hi Nerijus, On Sun, 2006-06-04 at 21:18 +0300, Nerijus Baliunas wrote: > So I suggest removing "$" from the end. Sure. Done. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Mon Jun 5 07:06:58 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 89C683B0382 for ; Mon, 5 Jun 2006 07:06:58 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24348-01 for ; Mon, 5 Jun 2006 07:06:57 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 35A883B00CC for ; Mon, 5 Jun 2006 07:06:57 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id E530E4023 for ; Mon, 5 Jun 2006 13:06:55 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id hdr8SfqyTbj0 for ; Mon, 5 Jun 2006 13:06:54 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 55EE44021 for ; Mon, 5 Jun 2006 13:06:54 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: References: <20060529075733.GD12204@rigacci.org> <20060530085432.GB15022@rigacci.org> Content-Type: text/plain Date: Mon, 05 Jun 2006 13:08:29 +0200 Message-Id: <1149505709.2473.19.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.454 tagged_above=-999 required=2 tests=[AWL=0.010, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.454 X-Spam-Level: Subject: Re: Blocking DNS lookup on MC startup X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 11:06:58 -0000 Hello Pavel, On Thu, 2006-06-01 at 15:52 +0300, Pavel Tsekov wrote: > On Wed, 31 May 2006, Pavel Tsekov wrote: > > load_interfaces() is doing gethostbyname() for every single value of the > > "interfaces" parameter of smb.conf. If interfaces doesn't contain an > > ip_address/netmask pair load_interfaces() tries to resolve the value > > via gethostbyname() :( Are you referring to interpret_addr()? I'd say the case where the interface is identified by a name is a bit of a corner case. > Another solution would be to delay the samba lib initialization until the > first samba request. This way it will be clearly visible for the user that > the hang is due to a samba request. Of course the initialization must be > made interruptable. > > Opinions ? I don't have any fundamental objections against delaying the initialization of smbfs, but is it really worth the effort? Don't you think we catch most cases with making the call to Get_Hostbyname() in get_myname() conditional? Leonard. -- mount -t life -o ro /dev/dna /genetic/research From ptsekov@gmx.net Mon Jun 5 07:42:54 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id DF5603B027B for ; Mon, 5 Jun 2006 07:42:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26687-06 for ; Mon, 5 Jun 2006 07:42:52 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.20]) by menubar.gnome.org (Postfix) with SMTP id A04B23B0704 for ; Mon, 5 Jun 2006 07:42:51 -0400 (EDT) Received: (qmail invoked by alias); 05 Jun 2006 11:42:49 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp039) with SMTP; 05 Jun 2006 13:42:49 +0200 X-Authenticated: #14308112 Date: Mon, 5 Jun 2006 14:41:39 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander In-Reply-To: <1149505709.2473.19.camel@athlon> Message-ID: References: <20060529075733.GD12204@rigacci.org> <20060530085432.GB15022@rigacci.org> <1149505709.2473.19.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.489 tagged_above=-999 required=2 tests=[AWL=-0.024, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.489 X-Spam-Level: Cc: MC development Subject: Re: Blocking DNS lookup on MC startup X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 11:42:54 -0000 On Mon, 5 Jun 2006, Leonard den Ottolander wrote: >>> load_interfaces() is doing gethostbyname() for every single value of the >>> "interfaces" parameter of smb.conf. If interfaces doesn't contain an >>> ip_address/netmask pair load_interfaces() tries to resolve the value >>> via gethostbyname() :( > > Are you referring to interpret_addr()? Yes. > I'd say the case where the interface is identified by a name is a bit of > a corner case. Not really. Please, look here: http://mail.gnome.org/archives/mc-devel/2006-April/msg00036.html http://mail.gnome.org/archives/mc/2006-May/msg00005.html It seems historic samba didn't allow interface names in the "interfaces" directive. However newer samba versions allow the use of interface names and it is used by people. If you think about it - it makes a lot of sense. >> Another solution would be to delay the samba lib initialization until the >> first samba request. This way it will be clearly visible for the user that >> the hang is due to a samba request. Of course the initialization must be >> made interruptable. >> >> Opinions ? > > I don't have any fundamental objections against delaying the > initialization of smbfs, but is it really worth the effort? Don't you > think we catch most cases with making the call to Get_Hostbyname() in > get_myname() conditional? Unfortunately not. Switching to a newer samba lib is another option. It has been discussed in the past - at least in bugzilla there is an entry discussing a switch to newer samba. Of course we can hack the intree samba lib but I think it is not worth doing it. From INVALID.NOREPLY@gnu.org Tue Jun 6 02:43:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 153953B00E1 for ; Tue, 6 Jun 2006 02:43:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28705-10 for ; Tue, 6 Jun 2006 02:43:35 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id EA2AB3B0750 for ; Tue, 6 Jun 2006 02:43:34 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnVHn-0005rO-00; Tue, 06 Jun 2006 02:43:31 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 6 Jun 2006 10:43:31 +0400 Date: Tue, 6 Jun 2006 10:43:31 +0400 To: Oleg Broytmann , mc-devel@gnome.org From: Oleg Broytmann X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16757 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060516 SeaMonkey/1.0.2 X-Apparently-From: 80.252.150.251 (Savane authenticated user phd) Message-Id: <20060606-104330.sv47300.22684@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.591 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.591 X-Spam-Level: Cc: Subject: [bug #16757] Environment variables in a subshell X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 06:43:39 -0000 URL: Summary: Environment variables in a subshell Project: GNU Midnight Commander Submitted by: phd Submitted on: Вторник 06.06.2006 at 10:43 Category: Subshell Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Linux _______________________________________________________ Details: I have a lot of different environments (Python, Java, Postgres and so on), and I source a config file when I want to change the environment; for example running "include svn" runs . $HOME/lib/config/svn that adds SVN directories to PATH, LD_LIBRARY_PATH and MANPATH. When I do this under Midnight Commander I have a minor problem with subshell (at least I think the problem is in the subshell). When I run a program in the mc command line (type "./a_script", press [Enter]) mc (subshell?) passes the modified env vars to the program. But if I just press [Enter] on the program mc passes an old environment as if I didn't source any config file; it seems after pressing [Enter] on a program mc passes its own original environment, not the subshell's environment. I think that's a bug; I'd like mc to pass the modified environment to all programs regardless of the way I start them. Debian GNU/Linux 3.1, mc 4.6.1-pre3. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 6 10:18:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 67F1F3B0189 for ; Tue, 6 Jun 2006 10:18:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27630-03 for ; Tue, 6 Jun 2006 10:18:38 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id BBD723B0184 for ; Tue, 6 Jun 2006 10:18:37 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FncO9-0007M9-00; Tue, 06 Jun 2006 10:18:33 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 6 Jun 2006 14:18:33 +0000 Date: Tue, 6 Jun 2006 14:18:33 +0000 To: yaroslav , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060606-141833.sv47365.36914@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.591 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.591 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:18:39 -0000 URL: Summary: Cannot compile mc-2006-06-05-20 Project: GNU Midnight Commander Submitted by: s68 Submitted on: Вторник 06.06.2006 at 14:18 Category: Core Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: current (CVS or snapshot) Operating System: FreeBSD _______________________________________________________ Details: mountlist.c: In function 'fstype_to_string': mountlist.c:186: error: 'MOUNT_UFS' undeclared (first use in this function) Operating systems are: Darwin Kernel Version 8.4.1: Tue Jan 3 18:23:53 PST 2006; root:xnu-792.7.90.obj~1/RELEASE_I386 i386 i386 and FreeBSD 4.10-RELEASE Configure options are "--with-subshell=optional" _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 6 15:46:07 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BEA503B0AE1 for ; Tue, 6 Jun 2006 15:46:07 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17438-06 for ; Tue, 6 Jun 2006 15:46:06 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 5191C3B0B37 for ; Tue, 6 Jun 2006 15:46:06 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnhUx-00034K-00; Tue, 06 Jun 2006 15:45:55 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 6 Jun 2006 21:45:55 +0200 Date: Tue, 6 Jun 2006 21:45:55 +0200 To: yaroslav , Leonard den Ottolander , mc-devel@gnome.org From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060606-214555.sv26390.24839@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> In-Reply-To: <20060606-141833.sv47365.36914@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 19:46:07 -0000 Follow-up Comment #1, bug #16762 (project mc): Does this fix your issue? _______________________________________________________ Additional Item Attachment: File name: mountlist.c.patch Size:0 KB Define HAVE_F_FSTYPE if HAVE_STRUCT_STATFS_F_FSTYPENAME is defined (regardless of HAVE_STATVFS) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Tue Jun 6 16:12:49 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7DD663B0B94 for ; Tue, 6 Jun 2006 16:12:49 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19120-04 for ; Tue, 6 Jun 2006 16:12:47 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 3125D3B0236 for ; Tue, 6 Jun 2006 16:12:47 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 55F6A4023 for ; Tue, 6 Jun 2006 22:12:45 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 8yy9hanIHWkZ for ; Tue, 6 Jun 2006 22:12:44 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id DCC014021 for ; Tue, 6 Jun 2006 22:12:43 +0200 (CEST) From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Tue, 06 Jun 2006 22:14:23 +0200 Message-Id: <1149624863.2506.3.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Subject: FTP: Cannot change to write-only directory X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 20:12:49 -0000 >From Red Hat's bugzilla: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=194277 Leonard. -- mount -t life -o ro /dev/dna /genetic/research From niccolo@rigacci.org Tue Jun 6 19:21:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 015E33B032C for ; Tue, 6 Jun 2006 19:21:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28814-10 for ; Tue, 6 Jun 2006 19:21:38 -0400 (EDT) Received: from paros.rigacci.org (host50-109.pool8838.interbusiness.it [88.38.109.50]) by menubar.gnome.org (Postfix) with ESMTP id 0704C3B012A for ; Tue, 6 Jun 2006 19:21:37 -0400 (EDT) Received: from niccolo by paros.rigacci.org with local (Exim 4.61) (envelope-from ) id 1Fnkrg-0000eR-Pe for mc-devel@gnome.org; Wed, 07 Jun 2006 01:21:36 +0200 Date: Wed, 7 Jun 2006 01:21:36 +0200 From: mc@rigacci.org To: MC dev Message-ID: <20060606232136.GB2405@rigacci.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11+cvs20060403 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.516 tagged_above=-999 required=2 tests=[AWL=-0.872, BAYES_20=-0.74, FORGED_RCVD_HELO=0.135, NO_REAL_NAME=0.961] X-Spam-Score: -0.516 X-Spam-Level: Subject: Re: Blocking DNS lookup on MC startup X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 23:21:39 -0000 > Another solution would be to delay the samba lib initialization until the > first samba request. This way it will be clearly visible for the user that > the hang is due to a samba request. Is the problem related only to smbfs support? If so, my preference will be an option (or a config file parameter) to start mc with smbfs disabled. Delaying samba lib initialization can be a good solution too, but I think more hard to implement. -- Niccolo Rigacci Firenze - Italy Iraq, missione di pace: 38254 morti - www.iraqbodycount.net From INVALID.NOREPLY@gnu.org Wed Jun 7 04:08:31 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 922DF3B02FF for ; Wed, 7 Jun 2006 04:08:31 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25660-03 for ; Wed, 7 Jun 2006 04:08:28 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 8C01F3B0164 for ; Wed, 7 Jun 2006 04:08:28 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fnt5M-0005Iz-00; Wed, 07 Jun 2006 04:08:16 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 08:08:16 +0000 Date: Wed, 7 Jun 2006 08:08:16 +0000 To: yaroslav , Leonard den Ottolander , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060607-080816.sv47365.26756@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> In-Reply-To: <20060606-214555.sv26390.24839@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 08:08:31 -0000 Follow-up Comment #2, bug #16762 (project mc): > Does this fix your issue? No :( _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 7 05:36:46 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E80643B00A8 for ; Wed, 7 Jun 2006 05:36:45 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31652-05 for ; Wed, 7 Jun 2006 05:36:43 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id D094D3B0BBC for ; Wed, 7 Jun 2006 05:36:42 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnuSs-0001hc-00; Wed, 07 Jun 2006 05:36:38 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 12:36:37 +0300 Date: Wed, 7 Jun 2006 12:36:37 +0300 To: yaroslav , Leonard den Ottolander , Pavel Tsekov , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060607-123637.sv36205.98656@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> In-Reply-To: <20060607-080816.sv47365.26756@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001, UPPERCASE_25_50=0] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 09:36:46 -0000 Follow-up Comment #3, bug #16762 (project mc): The real problem here is that noone sets HAVE_STRUCT_STATFS_F_FSTYPENAME. I.e. there is no test at configure time which sets this. Before Leonard's changes to configure there was a test which used to set HAVE_F_FSTYPENAME. #if defined(HAVE_STATVFS) # if defined(HAVE_STRUCT_STATVFS_F_FSTYPENAME) # define HAVE_F_FSTYPENAME # endif #else # if defined(HAVE_STRUCT_STATFS_F_FSTYPENAME) # define HAVE_F_FSTYPENAME # endif #endif So what happens is that on FreeBSD we take the second branch and since HAVE_F_FSTYPENAME is not set the fstype_to_string() routine is compiled in. Apparently MOUNT_UFS is not available on FreeBSD and the build fails. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 7 05:46:33 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 935FB3B0AE7 for ; Wed, 7 Jun 2006 05:46:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32285-09 for ; Wed, 7 Jun 2006 05:46:32 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3B1893B00A8 for ; Wed, 7 Jun 2006 05:46:32 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnuXU-0001tO-00; Wed, 07 Jun 2006 05:41:24 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 12:41:24 +0300 Date: Wed, 7 Jun 2006 12:41:24 +0300 To: yaroslav , Leonard den Ottolander , Pavel Tsekov , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060607-124124.sv36205.81804@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> In-Reply-To: <20060607-123637.sv36205.98656@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.593 tagged_above=-999 required=2 tests=[AWL=0.007, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.593 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 09:46:33 -0000 Follow-up Comment #4, bug #16762 (project mc): In fact in the past the code used to check whether MOUNT_UFS was defined but the check was removed later and the code assumed the availability of MOUNT_UFS for granted: http://cvs.savannah.gnu.org/viewcvs/mc/mc/src/mountlist.c?sortby=date&r2=1.5&r1=1.4&diff_format=u In my opinion this issue should be handled carefully. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From nadvornik@suse.cz Wed Jun 7 06:18:40 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CEC4B3B08CC for ; Wed, 7 Jun 2006 06:18:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02299-01 for ; Wed, 7 Jun 2006 06:18:37 -0400 (EDT) Received: from mail.suse.cz (styx.suse.cz [82.119.242.94]) by menubar.gnome.org (Postfix) with ESMTP id B22FA3B0B10 for ; Wed, 7 Jun 2006 06:18:36 -0400 (EDT) Received: from sphinx.suse.cz (sphinx.suse.cz [10.20.1.5]) by mail.suse.cz (SUSE CR ESMTP Mailer) with ESMTP id A60356283DB for ; Wed, 7 Jun 2006 12:18:33 +0200 (CEST) From: Vladimir Nadvornik To: mc-devel@gnome.org Date: Wed, 7 Jun 2006 12:18:31 +0200 User-Agent: KMail/1.9.1 References: <200509191419.01556.arekm@pld-linux.org> <1131825589.2735.24.camel@athlon> In-Reply-To: <1131825589.2735.24.camel@athlon> MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_4fqhE9aq8TcWQqY" Message-Id: <200606071218.32428.nadvornik@suse.cz> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 10:18:40 -0000 --Boundary-00=_4fqhE9aq8TcWQqY Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline On Saturday 12 November 2005 20:59, Leonard den Ottolander wrote: > Hi Bart, list, > > On Tue, 2005-09-20 at 08:14 +1200, Bart Oldeman wrote: > > Basically you'd need to apply Fedora's patch, and then (sorry no proper > > patch here but it's not a big deal) > > Attached you'll find a proper patch. I've moved the hunk from global.h > to myslang.h (and dropped the inclusion of slang.h as it is redundant). > > Jindrich, please merge this patch with the UTF8 patch. You might even > consider to build the next mc for FC --with-screen=mcslang, as I see the > FC development tree does not yet feature slang-2. > Hi all, In non-UTF-8 mode slang2 behaves a bit different than the patched slang1. As a result, mc does work with 8bit encodings, like 8859-2 or KOI8. The attached patch fixes the SLsmg_write_nwchars() function to 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. e-mail: nadvornik@suse.cz Drahobejlova 27 tel:+420 2 9654 2373 190 00 Praha 9 fax:+420 2 9654 2374 Ceska republika http://www.suse.cz --Boundary-00=_4fqhE9aq8TcWQqY Content-Type: text/x-diff; charset="iso-8859-6"; name="mc-slang2-fix.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="mc-slang2-fix.patch" diff -ruN mc-4.6.1.orig/edit/editdraw.c mc-4.6.1/edit/editdraw.c --- mc-4.6.1.orig/edit/editdraw.c 2006-06-07 11:57:19.000000000 +0200 +++ mc-4.6.1/edit/editdraw.c 2006-06-07 11:56:30.000000000 +0200 @@ -234,7 +234,7 @@ lowlevel_set_color (color); } #ifdef UTF8 - SLsmg_write_char(textchar); + SLsmg_write_nwchars(&textchar, 1); #else addch (textchar); #endif diff -ruN mc-4.6.1.orig/src/help.c mc-4.6.1/src/help.c --- mc-4.6.1.orig/src/help.c 2006-06-07 11:57:19.000000000 +0200 +++ mc-4.6.1/src/help.c 2006-06-07 11:56:30.000000000 +0200 @@ -461,7 +461,7 @@ len = mbrtowc(&wc, p, MB_CUR_MAX, &mbs); if (len <= 0) len = 1; /* skip broken multibyte chars */ - SLsmg_write_char(wc); + SLsmg_write_nwchars(&wc, 1); p += len - 1; } else #endif diff -ruN mc-4.6.1.orig/src/util.c mc-4.6.1/src/util.c --- mc-4.6.1.orig/src/util.c 2006-06-07 11:57:19.000000000 +0200 +++ mc-4.6.1/src/util.c 2006-06-07 11:56:30.000000000 +0200 @@ -58,8 +58,26 @@ #if SLANG_VERSION >= 20000 void SLsmg_write_nwchars(wchar_t *s, size_t n) { - while(n--) - SLsmg_write_char(*s++); + if (SLsmg_is_utf8_mode()) { /* slang can handle it directly */ + while(n-- && *s) + SLsmg_write_char(*s++); + } + else { /* convert wchars back to 8bit encoding */ + mbstate_t mbs; + memset (&mbs, 0, sizeof (mbs)); + while (n-- && *s) { + char buf[MB_LEN_MAX + 1]; /* should use 1 char, but to be sure */ + if (*s < 0x80) { + SLsmg_write_char(*s++); /* ASCII */ + } + else { + if (wcrtomb(buf, *s++, &mbs) == 1) + SLsmg_write_char((wchar_t)(buf[0])); + else + SLsmg_write_char('?'); /* should not happen */ + } + } + } } #endif diff -ruN mc-4.6.1.orig/src/view.c mc-4.6.1/src/view.c --- mc-4.6.1.orig/src/view.c 2006-06-07 11:57:19.000000000 +0200 +++ mc-4.6.1/src/view.c 2006-06-07 11:56:30.000000000 +0200 @@ -852,7 +852,7 @@ #ifndef UTF8 #define view_add_character(view,c) addch (c) #else /* UTF8 */ -#define view_add_character(view,c) SLsmg_write_char(c) +#define view_add_character(view,c) {wchar_t tmp=c; SLsmg_write_nwchars(&tmp, 1);} #endif /* UTF8 */ #define view_add_one_vline() one_vline() #define view_add_string(view,s) addstr (s) --Boundary-00=_4fqhE9aq8TcWQqY-- From INVALID.NOREPLY@gnu.org Wed Jun 7 07:11:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CBAC03B02C0 for ; Wed, 7 Jun 2006 07:11:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05334-02 for ; Wed, 7 Jun 2006 07:11:24 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id A80AC3B01EA for ; Wed, 7 Jun 2006 07:11:24 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnvwN-0004SN-00; Wed, 07 Jun 2006 07:11:11 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 14:11:10 +0300 Date: Wed, 7 Jun 2006 14:11:10 +0300 To: yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060607-141110.sv36205.29236@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> In-Reply-To: <20060607-124124.sv36205.81804@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.593 tagged_above=-999 required=2 tests=[AWL=0.007, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.593 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 11:11:28 -0000 Update of bug #16762 (project mc): Assigned to: None => ptsekov _______________________________________________________ Follow-up Comment #5: I'll fix this. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From adel@uaemet.gov.ae Tue Jun 6 10:12:04 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6DE6E3B0151 for ; Tue, 6 Jun 2006 10:12:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27387-02 for ; Tue, 6 Jun 2006 10:12:02 -0400 (EDT) Received: from www.uaemet.gov.ae (unknown [213.42.139.195]) by menubar.gnome.org (Postfix) with ESMTP id 90B9A3B00A1 for ; Tue, 6 Jun 2006 10:12:00 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by www.uaemet.gov.ae (Postfix) with ESMTP id A68531DF170 for ; Tue, 6 Jun 2006 18:11:57 +0400 (GST) Received: from uaemet.gov.ae (localhost.localdomain [127.0.0.1]) by www.uaemet.gov.ae (Postfix) with ESMTP id 8116B1DF16F for ; Tue, 6 Jun 2006 10:11:55 -0400 (EDT) From: "Adel Gabr" To: mc-devel@gnome.org Date: Tue, 6 Jun 2006 18:11:55 +0400 Message-Id: <20060606140640.M23835@uaemet.gov.ae> X-Mailer: Open WebMail 1.90 20030212 X-OriginatingIP: 213.42.139.195 (adel) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 X-Virus-Scanned: by AMaViS perl-11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.36 tagged_above=-999 required=2 tests=[BAYES_20=-0.74, DEAR_SOMETHING=2.1] X-Spam-Score: 1.36 X-Spam-Level: * X-Mailman-Approved-At: Wed, 07 Jun 2006 08:10:53 -0400 Subject: mc bug X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: adel@uaemet.gov.ae List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:12:04 -0000 Dear Sir, I have installed Suse in my machine,when I try to use Midnight Commander 4.6.0 using the command 'mc' is not working.But if I use mc -x it is working. The output of `mc -V'is :- master:/rhome> mc -V GNU Midnight Commander 4.6.0 Virtual File System: tarfs, extfs, cpiofs, ftpfs, fish With builtin Editor Using system-installed S-Lang library with terminfo database With subshell support as default With support for background operations With mouse support on xterm and Linux console With support for X11 events With internationalization support With multiple codepages support Please advise and send me the good way to reinstall th mc again. Best regards Adel -- Open WebMail Project (http://openwebmail.org) From jnovy@redhat.com Wed Jun 7 08:58:57 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C33CB3B0599 for ; Wed, 7 Jun 2006 08:58:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 13391-09 for ; Wed, 7 Jun 2006 08:58:52 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 88D823B0CD3 for ; Wed, 7 Jun 2006 08:58:52 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k57CwpAG011897; Wed, 7 Jun 2006 08:58:51 -0400 Received: from pobox.stuttgart.redhat.com (pobox.stuttgart.redhat.com [172.16.2.10]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k57CwpR1031982; Wed, 7 Jun 2006 08:58:51 -0400 Received: from vpn-4-41.stuttgart.redhat.com (vpn-4-41.stuttgart.redhat.com [10.32.4.41]) by pobox.stuttgart.redhat.com (8.12.8/8.12.8) with ESMTP id k57CwoY5017421; Wed, 7 Jun 2006 14:58:50 +0200 From: Jindrich Novy To: Vladimir Nadvornik In-Reply-To: <200606071218.32428.nadvornik@suse.cz> References: <200509191419.01556.arekm@pld-linux.org> <1131825589.2735.24.camel@athlon> <200606071218.32428.nadvornik@suse.cz> Content-Type: text/plain Date: Wed, 07 Jun 2006 14:58:51 +0200 Message-Id: <1149685131.2269.10.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.601 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.601 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 12:58:57 -0000 Hi, On Wed, 2006-06-07 at 12:18 +0200, Vladimir Nadvornik wrote: > On Saturday 12 November 2005 20:59, Leonard den Ottolander wrote: > > Hi Bart, list, > > > > On Tue, 2005-09-20 at 08:14 +1200, Bart Oldeman wrote: > > > Basically you'd need to apply Fedora's patch, and then (sorry no proper > > > patch here but it's not a big deal) > > > > Attached you'll find a proper patch. I've moved the hunk from global.h > > to myslang.h (and dropped the inclusion of slang.h as it is redundant). > > > > Jindrich, please merge this patch with the UTF8 patch. You might even > > consider to build the next mc for FC --with-screen=mcslang, as I see the > > FC development tree does not yet feature slang-2. > > slang-2.0.5 is used since FC5 so only FC4 now uses the old slang-1.4.9. > Hi all, > > In non-UTF-8 mode slang2 behaves a bit different than the patched slang1. > As a result, mc does work with 8bit encodings, like 8859-2 or KOI8. > The attached patch fixes the SLsmg_write_nwchars() function to 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. Thanks for the patch. The last hunk didn't apply as there's no view_add_character used in editdraw.c. Jindrich From INVALID.NOREPLY@gnu.org Wed Jun 7 10:42:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 53FEF3B0CC1 for ; Wed, 7 Jun 2006 10:42:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21355-08 for ; Wed, 7 Jun 2006 10:42:37 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 9ADAF3B0CC8 for ; Wed, 7 Jun 2006 10:42:37 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnzEr-0003qw-00; Wed, 07 Jun 2006 10:42:29 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 17:42:29 +0300 Date: Wed, 7 Jun 2006 17:42:29 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060607-174228.sv36205.47259@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> In-Reply-To: <20060607-141110.sv36205.29236@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.555 tagged_above=-999 required=2 tests=[AWL=-0.032, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.555 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 14:42:39 -0000 Follow-up Comment #6, bug #16762 (project mc): Hello yaroslav, Fetch the latest CVS version of MC and apply the attached patch. Let us know wheter it fixes your problem or not. _______________________________________________________ Additional Item Attachment: File name: getmntinfo-fix.patch Size:3 KB _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 7 15:21:42 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 686D93B029F for ; Wed, 7 Jun 2006 15:21:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07968-09 for ; Wed, 7 Jun 2006 15:21:41 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id CF6CD3B0288 for ; Wed, 7 Jun 2006 15:21:40 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fo3aq-0005OI-00; Wed, 07 Jun 2006 15:21:28 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 21:21:28 +0200 Date: Wed, 7 Jun 2006 21:21:28 +0200 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060607-212128.sv26390.34564@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> In-Reply-To: <20060607-174228.sv36205.47259@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 19:21:42 -0000 Follow-up Comment #7, bug #16762 (project mc): Having the essential code moved into acinclude.m4 instead of mountlist.c seems appropriate as this is where it dissappeared from in the first place. And the inclusion of fstypename.m4 also reintroduces the tests that got lost when I introduced ls-mntd-fs.m4 and fsusage.m4. Haven't tested but appears ok. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Wed Jun 7 16:00:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 29F343B03C4 for ; Wed, 7 Jun 2006 16:00:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10546-07 for ; Wed, 7 Jun 2006 16:00:40 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id DCEC73B0546 for ; Wed, 7 Jun 2006 16:00:39 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id CAC5F4023 for ; Wed, 7 Jun 2006 22:00:38 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id LefPSXgX7Ft3 for ; Wed, 7 Jun 2006 22:00:35 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 5B03B4021 for ; Wed, 7 Jun 2006 22:00:35 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <1149624863.2506.3.camel@athlon> References: <1149624863.2506.3.camel@athlon> Content-Type: text/plain Date: Wed, 07 Jun 2006 22:02:15 +0200 Message-Id: <1149710535.2481.2.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Subject: Re: FTP: Cannot change to write-only directory X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 20:00:44 -0000 Hi, On Tue, 2006-06-06 at 22:14 +0200, Leonard den Ottolander wrote: > https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=194277 False alarm. The issue seems to be recently fixed. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From nadvornik@suse.cz Thu Jun 8 06:02:54 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B12DC3B0619 for ; Thu, 8 Jun 2006 06:02:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24798-05 for ; Thu, 8 Jun 2006 06:02:53 -0400 (EDT) Received: from mail.suse.cz (styx.suse.cz [82.119.242.94]) by menubar.gnome.org (Postfix) with ESMTP id 3DE9D3B0CF2 for ; Thu, 8 Jun 2006 06:02:53 -0400 (EDT) Received: from sphinx.suse.cz (sphinx.suse.cz [10.20.1.5]) by mail.suse.cz (SUSE CR ESMTP Mailer) with ESMTP id A084A62853A; Thu, 8 Jun 2006 12:02:51 +0200 (CEST) From: Vladimir Nadvornik To: Jindrich Novy Date: Thu, 8 Jun 2006 12:02:50 +0200 User-Agent: KMail/1.9.1 References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> In-Reply-To: <1149685131.2269.10.camel@localhost.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606081202.51002.nadvornik@suse.cz> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jun 2006 10:02:54 -0000 > > > > In non-UTF-8 mode slang2 behaves a bit different than the patched slang1. > > As a result, mc does work with 8bit encodings, like 8859-2 or KOI8. > > The attached patch fixes the SLsmg_write_nwchars() function to 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. > > Thanks for the patch. The last hunk didn't apply as there's no > view_add_character used in editdraw.c. > My patch is based on mc-4.6.1 The 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 From ptsekov@gmx.net Thu Jun 8 09:10:57 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 080363B0433 for ; Thu, 8 Jun 2006 09:10:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06345-06 for ; Thu, 8 Jun 2006 09:10:53 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.20]) by menubar.gnome.org (Postfix) with SMTP id 765B03B04FD for ; Thu, 8 Jun 2006 09:10:21 -0400 (EDT) Received: (qmail invoked by alias); 08 Jun 2006 13:10:20 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp029) with SMTP; 08 Jun 2006 15:10:20 +0200 X-Authenticated: #14308112 Date: Thu, 8 Jun 2006 16:09:10 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: MC dev Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.477 tagged_above=-999 required=2 tests=[AWL=-0.012, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.477 X-Spam-Level: Subject: Directory Tree feature X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jun 2006 13:10:57 -0000 Hello, I find the directory tree feature quite obscure and unusable ? Does anyone here feel the same way ? If this is the case I'd like that we discuss how it could be improved. There are several things which I think make the directory tree totally unusable: * When I invoke the "Directory Tree" command and the mode is "Static" I cannot easily navigate trough the directory structure. I'd expect that I'd be able to move around the tree using the arrow keys but it doesn't work this way. To enter a directory and list it contents I have to press Enter which closes the dialog box i.e. I cannot use left and right to navigate the subdirectories. So if I start from the root directory and want to go to /home/ptsekov it will take to invocations of the Directory Tree dialog to do so. * The directory tree remebers its state and if I navigate the directory hierarchy more and more directories become expanded I cannot close them - this makes the tree pretty hard to navigate. * The dynamic mode - I fee totally confused when using it. To some degree it is improvement over the static mode in terms of navigation but all the tree changes just confuse me too much and at some point I just become lost. * The whole dynamic/static mode thing is just too much - I'd prefer a single user friendly mode. From egmont@uhulinux.hu Thu Jun 8 14:13:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6ACE53B0F8F for ; Thu, 8 Jun 2006 14:13:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27351-01 for ; Thu, 8 Jun 2006 14:13:11 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id 7EF663B0F64 for ; Thu, 8 Jun 2006 14:13:11 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id 0A26A7DCA; Thu, 8 Jun 2006 20:13:10 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20809-07; Thu, 8 Jun 2006 20:13:03 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id 735F27EB8; Thu, 8 Jun 2006 20:13:03 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Thu, 8 Jun 2006 20:13:02 +0200 Date: Thu, 8 Jun 2006 20:13:02 +0200 From: Egmont Koblinger To: Vladimir Nadvornik Message-ID: <20060608181302.GA6254@cs.bme.hu> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200606081202.51002.nadvornik@suse.cz> User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.583 tagged_above=-999 required=2 tests=[AWL=0.016, BAYES_00=-2.599] X-Spam-Score: -2.583 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jun 2006 18:13:16 -0000 Hi Vladimir (and others), I've just upgraded to slang-2 in our distro and also updated the UTF-8 patches to mc-4.6.1 (based on SUSE's version). It was easier than I thought it would be. I was glad to see that you had applied plenty of my patches in SUSE (those named "00-*"). Please take a look at here again: https://svn.uhulinux.hu/packages/dev/mc/patches/ 00-77 had to be updated to slang-2. When a user searches for a file by ^S, panel->search_buffer is filled up individually with every single byte pressed. Hence it often contains partial UTF-8 string. Displaying it just happened to work with slang-1, but slang-2 prints the partial UTF-8 as "" or similar. As a result, the cyan box overflows: if you search in the left panel for an existing accented filename, two cyan blocks appear in the right panel. The updated patch first finds the longest valid UTF-8 prefix of the string and only prints that part. You might find 00-79 useful too, it fixes an off-by-one bug introduced by the UTF-8 patches that causes Alt+Backspace to behave differently (erase a whole word and one more character, usually a space) than in bash or in vanilla mc (erase only the word). bye, Egmont From INVALID.NOREPLY@gnu.org Sun Jun 11 04:01:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 29B6A3B0547 for ; Sun, 11 Jun 2006 04:01:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15580-01 for ; Sun, 11 Jun 2006 04:01:14 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 97FD53B00D8 for ; Sun, 11 Jun 2006 04:01:14 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FpKr9-0004mk-00; Sun, 11 Jun 2006 03:59:35 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 11 Jun 2006 10:59:34 +0300 Date: Sun, 11 Jun 2006 10:59:34 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Opera/8.51 (Windows ME; U; en) X-Apparently-From: 87.126.52.205 (Savane authenticated user ptsekov) Message-Id: <20060611-105933.sv36205.22318@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> In-Reply-To: <20060607-212128.sv26390.34564@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 08:01:16 -0000 Follow-up Comment #8, bug #16762 (project mc): Ping! _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Sun Jun 11 07:25:25 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1E7143B062A for ; Sun, 11 Jun 2006 07:25:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06549-04 for ; Sun, 11 Jun 2006 07:25:20 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id B6AB13B0635 for ; Sun, 11 Jun 2006 07:25:19 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id C683B4023; Sun, 11 Jun 2006 13:07:10 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id heh8eT5zCX4n; Sun, 11 Jun 2006 13:07:05 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 258354021; Sun, 11 Jun 2006 13:07:05 +0200 (CEST) From: Leonard den Ottolander To: Jindrich Novy In-Reply-To: <20060608181302.GA6254@cs.bme.hu> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> Content-Type: text/plain Date: Sun, 11 Jun 2006 13:08:46 +0200 Message-Id: <1150024126.2478.14.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 11:25:25 -0000 Hello Jindrich, On Thu, 2006-06-08 at 20:13 +0200, Egmont Koblinger wrote: > I've just upgraded to slang-2 in our distro and also updated the UTF-8 > patches to mc-4.6.1 (based on SUSE's version). It was easier than I thought > it would be. I was glad to see that you had applied plenty of my patches in > SUSE (those named "00-*"). Please take a look at here again: > > https://svn.uhulinux.hu/packages/dev/mc/patches/ Please take notice. It would probably be good if Vladimir and you could keep your UTF-8 patch sets in sync. It just seems wasted effort to do this in two places independently. Some inter-distro communication is not going to hurt. Maybe these patches should be centrally maintained in a contribs tree. Egmonts patches are worth looking at. I've blatantly ignored pushing them to you as I'd expected you to integrate them over time. I've probably not made it clear enough to you before that these patches are worth considering. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Sun Jun 11 08:00:33 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 70A6A3B057C for ; Sun, 11 Jun 2006 08:00:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08035-03 for ; Sun, 11 Jun 2006 08:00:30 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id DDF813B062F for ; Sun, 11 Jun 2006 08:00:29 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 6293F4023 for ; Sun, 11 Jun 2006 13:25:30 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id eSqOxfQ23SQl for ; Sun, 11 Jun 2006 13:25:27 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 44AED4021 for ; Sun, 11 Jun 2006 13:25:27 +0200 (CEST) From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Sun, 11 Jun 2006 13:27:09 +0200 Message-Id: <1150025229.2478.17.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Subject: [Fwd: [Bug 194777] New: mc hangs when copying file with no read perm over fish] X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 12:00:33 -0000 Hi, I can confirm this behaviour. Probably fish needs to test permissions before attempting to copy. Leonard. -------- Forwarded Message -------- From: bugzilla at redhat.com To: leonard-rh-bugzilla at den.ottolander.nl Subject: [Bug 194777] New: mc hangs when copying file with no read perm over fish Date: Sat, 10 Jun 2006 09:19:40 -0400 Please do not reply directly to this email. All additional comments should be made in the comments box of this bug report. https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=194777 Summary: mc hangs when copying file with no read perm over fish Product: Fedora Core Version: fc5 Platform: All OS/Version: Linux Status: NEW Severity: normal Priority: normal Component: mc AssignedTo: jnovy at redhat.com ReportedBy: stsp at aknet.ru CC: leonard-rh-bugzilla at den.ottolander.nl Description of problem: If I try to copy the file over the ssh connection (fish) for which there is no read permission, mc hangs. Version-Release number of selected component (if applicable): mc-4.6.1a-13.FC5 How reproducible: always Steps to Reproduce: 1. Make an ssh connection with mc, log is as user, not root 2. Try to read/copy some file, like /etc/shadow, for which you don't have the read permission. Actual results: mc hangs Expected results: mc displays the "permission denied" error. -- mount -t life -o ro /dev/dna /genetic/research From ptsekov@gmx.net Sun Jun 11 11:31:14 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72D893B0138 for ; Sun, 11 Jun 2006 11:31:14 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16333-02 for ; Sun, 11 Jun 2006 11:31:13 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 5CB043B008B for ; Sun, 11 Jun 2006 11:31:12 -0400 (EDT) Received: (qmail invoked by alias); 11 Jun 2006 15:30:20 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp010) with SMTP; 11 Jun 2006 17:30:20 +0200 X-Authenticated: #14308112 Date: Sun, 11 Jun 2006 18:29:08 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander In-Reply-To: <1150025229.2478.17.camel@athlon> Message-ID: References: <1150025229.2478.17.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development Subject: Re: [Fwd: [Bug 194777] New: mc hangs when copying file with no read perm over fish] X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 15:31:14 -0000 On Sun, 11 Jun 2006, Leonard den Ottolander wrote: > I can confirm this behaviour. Probably fish needs to test permissions > before attempting to copy. > > Leonard. I have a patch for this issue for quite some time. It just needs to be polished a bit. I'll try to post it in the next few days. From egmont@uhulinux.hu Mon Jun 12 04:31:53 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 301113B000D for ; Mon, 12 Jun 2006 04:31:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26350-02 for ; Mon, 12 Jun 2006 04:31:47 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id 5A2A33B00A7 for ; Mon, 12 Jun 2006 04:31:46 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id 9D1A07EE0 for ; Mon, 12 Jun 2006 10:30:48 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02190-01 for ; Mon, 12 Jun 2006 10:30:45 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id 5387C7EBA for ; Mon, 12 Jun 2006 10:30:45 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Mon, 12 Jun 2006 10:30:45 +0200 Date: Mon, 12 Jun 2006 10:30:45 +0200 From: Egmont Koblinger To: mc-devel@gnome.org Message-ID: <20060612083045.GA22700@cs.bme.hu> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1150024126.2478.14.camel@athlon> User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.585 tagged_above=-999 required=2 tests=[AWL=0.014, BAYES_00=-2.599] X-Spam-Score: -2.585 X-Spam-Level: Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 08:31:53 -0000 On Sun, Jun 11, 2006 at 01:08:46PM +0200, Leonard den Ottolander wrote: > Egmonts patches are worth looking at. I've blatantly ignored pushing > them to you as I'd expected you to integrate them over time. I've > probably not made it clear enough to you before that these patches are > worth considering. These patches hardly change nowadays. They only change if: - I face a new utf8 related bug in mc. It didn't happen in the last ~1.5 years (except for the off-by-one fix), and I always use the same small subset of mc's features, so it's unlikely for this to happen. - Something else (e.g. slang) is upgraded which introduces or triggers new bugs. - mc is upgraded in our distro. This will only happen if a new mainstream version is released. I don't want to bother with CVS snapshots, 4.6.1 is working reasonably well. After all, I'll try not to forget to mention it here if anything noticable changes in these patches. It's much simpler this way than for anyone to keep track of our changes. Finally, note that while these patches fix many issues with single-width UTF-8 characters, they may be really buggy with double-width (CJK) or zero-width Unicode characters, since I often assume that each Unicode entity occupies one column. I know it is totally false and I already knew it when I created these patches, but doing these things right would have required much more efforts. -- Egmont From jnovy@redhat.com Mon Jun 12 05:17:34 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 096F03B008D for ; Mon, 12 Jun 2006 05:17:34 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27996-03 for ; Mon, 12 Jun 2006 05:17:31 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 7F7723B0061 for ; Mon, 12 Jun 2006 05:17:30 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5C8tU0S007886; Mon, 12 Jun 2006 04:55:30 -0400 Received: from pobox.stuttgart.redhat.com (pobox.stuttgart.redhat.com [172.16.2.10]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5C8tTsF004862; Mon, 12 Jun 2006 04:55:29 -0400 Received: from vpn-4-29.stuttgart.redhat.com (vpn-4-29.stuttgart.redhat.com [10.32.4.29]) by pobox.stuttgart.redhat.com (8.12.8/8.12.8) with ESMTP id k5C8tSY5007832; Mon, 12 Jun 2006 10:55:28 +0200 From: Jindrich Novy To: Leonard den Ottolander In-Reply-To: <1150024126.2478.14.camel@athlon> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> Content-Type: text/plain Date: Mon, 12 Jun 2006 10:55:28 +0200 Message-Id: <1150102528.2242.17.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.5) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.601 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.601 X-Spam-Level: Cc: MC development Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 09:17:34 -0000 Hi Leonard, On Sun, 2006-06-11 at 13:08 +0200, Leonard den Ottolander wrote: > On Thu, 2006-06-08 at 20:13 +0200, Egmont Koblinger wrote: > > I've just upgraded to slang-2 in our distro and also updated the UTF-8 > > patches to mc-4.6.1 (based on SUSE's version). It was easier than I thought > > it would be. I was glad to see that you had applied plenty of my patches in > > SUSE (those named "00-*"). Please take a look at here again: > > > > https://svn.uhulinux.hu/packages/dev/mc/patches/ 00-74, 00-78 patches were helpful for me as well, thanks Egmont. They are now applied in devel FC. > Please take notice. It would probably be good if Vladimir and you could > keep your UTF-8 patch sets in sync. It just seems wasted effort to do > this in two places independently. Some inter-distro communication is not > going to hurt. Maybe these patches should be centrally maintained in a > contribs tree. The problem is that Vladimir and me use different versions of mc. My approach is to be more in sync with upstream so that there's a more recent CVS snapshot in Fedora for now because of a very rare release period of mc. This helps me to do only minimal changes when I want to send a patch to upstream. SuSE uses the stable mc-4.6.1, AFAIK. +1 for storing useful patches in contrib. It would be quite hard to keep them in sync with devel mc though. Cheers, Jindrich From leonard@den.ottolander.nl Mon Jun 12 07:54:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1D6DA3B00D4 for ; Mon, 12 Jun 2006 07:54:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00587-06 for ; Mon, 12 Jun 2006 07:54:25 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 349833B0078 for ; Mon, 12 Jun 2006 07:54:25 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 22A984023 for ; Mon, 12 Jun 2006 13:52:59 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id H8DbT-enwgdG for ; Mon, 12 Jun 2006 13:52:53 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 8D9594021 for ; Mon, 12 Jun 2006 13:52:53 +0200 (CEST) From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Mon, 12 Jun 2006 13:54:35 +0200 Message-Id: <1150113275.2520.29.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Subject: Dialogs, hotkeys and capitalization X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 11:54:27 -0000 Hi, This is a bit of a minor issue, but Pavel Tsekov brought it up when I changed a duplicate hotkey in the sort order dialog. I changed &Change time to C&Hange time thus capitalizing the hotkey, but also leaving the first letter of the phrase capitalized. Although the double capitalization might look somewhat odd it emphasizes the hotkey and I think the capitalized first letter looks nicer. The most widely used approach in the menus and dialogs is to only capitalize the (highlighted) hotkey ("c&Hange time"), but this is implemented inconsistently, which is most obvious in the Command menu. I have no idea how we should reach an agreement on this (vote??), but I think it's a good idea to decide on a format so the menus and dialogs will look more consistent. The three options I think are most appropriate are: No added capitalization of hotkeys ("C&hange time") (no emphasis apart from colourization) Add capitalization to hotkeys ("C&Hange time") (double capitalization) Only capitalize the hotkey ("c&Hange time") (missing capitals in first position) Opinions? Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Mon Jun 12 08:32:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6B86F3B00D8 for ; Mon, 12 Jun 2006 08:32:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02401-03 for ; Mon, 12 Jun 2006 08:32:43 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 58F0F3B00A7 for ; Mon, 12 Jun 2006 08:32:43 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fpla1-0003ZJ-00; Mon, 12 Jun 2006 08:31:41 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Mon, 12 Jun 2006 12:31:41 +0000 Date: Mon, 12 Jun 2006 12:31:41 +0000 To: Nick Shmyrev , mc-devel@gnome.org From: Nick Shmyrev X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; ru; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 195.98.173.2 (Savane authenticated user nshmyrev) Message-Id: <20060612-123140.sv25628.90055@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.814 tagged_above=-999 required=2 tests=[AWL=-0.772, BAYES_00=-2.599, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001] X-Spam-Score: -1.814 X-Spam-Level: Cc: Subject: [bug #16829] Crash when formatting paragraph X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 12:32:44 -0000 URL: Summary: Crash when formatting paragraph Project: GNU Midnight Commander Submitted by: nshmyrev Submitted on: Понедельник 12.06.2006 at 12:31 Category: None Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Hurd _______________________________________________________ Details: With Fedora's 5 stock mc-4.6.1a rpm I have a following crash when formatting paragraph. (gdb) bt #0 next_word_start (t=0x81fc138, q=Variable "q" is not available. ) at wordproc.c:227语言编写的插件,Gimp 还能够使用脚本。大部分现有的脚本都是用 S#1 0x080a975d in format_paragraph (edit=0x81ea598, force=1) at wordproc.c:280 #2 0x0809a035 in edit_execute_cmd (edit=0x81ea598, command=416, char_for_insertion=4294967295) at edit.c:2666 #3 0x0809aa05 in edit_execute_key_command (edit=0x81ea598, command=416, char_for_insertion=4294967295) at edit.c:2250 #4 0x080a268b in edit_callback (w=0x81ea598, msg=WIDGET_KEY, parm=8304) at editwidget.c:362 4Замена 5Копия 6Перемес7Поиск 8Удалить9МенюMC 10Вы #5 0x080599fb in dlg_process_event (h=0x81ef0a8, key=112, event=0xbff84d70) at dialog.c:659 #6 0x08059d0d in run_dlg (h=0x81ef0a8) at dialog.c:785 #7 0x080a22a4 in edit_file (_file=0x81b0850 "concepts.xml.save", line=0) at editwidget.c:225 #8 0x0806fe7b in do_nc () at main.c:1757 #9 0x08070855 in main (argc=Cannot access memory at address 0x0 ) at main.c:2293 #10 0x00af77e4 in __libc_start_main () from /lib/libc.so.6 #11 0x0804d481 in _start () _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Mon Jun 12 08:57:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5781E3B0083 for ; Mon, 12 Jun 2006 08:57:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03281-01 for ; Mon, 12 Jun 2006 08:57:43 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 553873B00E5 for ; Mon, 12 Jun 2006 08:57:43 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FplbW-0003hK-00; Mon, 12 Jun 2006 08:33:14 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Mon, 12 Jun 2006 12:33:14 +0000 Date: Mon, 12 Jun 2006 12:33:14 +0000 To: Nick Shmyrev , mc-devel@gnome.org From: Nick Shmyrev X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; ru; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 195.98.173.2 (Savane authenticated user nshmyrev) Message-Id: <20060612-123314.sv25628.73913@savannah.gnu.org> References: <20060612-123140.sv25628.90055@savannah.gnu.org> In-Reply-To: <20060612-123140.sv25628.90055@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.809 tagged_above=-999 required=2 tests=[AWL=-0.767, BAYES_00=-2.599, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001] X-Spam-Score: -1.809 X-Spam-Level: Cc: Subject: [bug #16829] Crash when formatting paragraph X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 12:57:44 -0000 Follow-up Comment #1, bug #16829 (project mc): The file that causes the crash. You have to put cursor on last in the text (line 2303 for example) and press Alt+p. _______________________________________________________ Additional Item Attachment: File name: translate-concepts.xml.patch.gz Size:9 KB _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From proski@gnu.org Mon Jun 12 16:15:26 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6B0E03B0100 for ; Mon, 12 Jun 2006 16:15:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28924-05 for ; Mon, 12 Jun 2006 16:15:25 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id 3CD0A3B00C8 for ; Mon, 12 Jun 2006 16:15:25 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1Fpsnb-0000tI-Ch for mc-devel@gnome.org; Mon, 12 Jun 2006 16:14:11 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FpsnX-0003XN-9f; Mon, 12 Jun 2006 16:14:07 -0400 From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150113275.2520.29.camel@athlon> References: <1150113275.2520.29.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Mon, 12 Jun 2006 16:14:07 -0400 Message-Id: <1150143247.4297.5.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC development Subject: Re: Dialogs, hotkeys and capitalization X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 20:15:26 -0000 Hello! On Mon, 2006-06-12 at 13:54 +0200, Leonard den Ottolander wrote: > The three options I think are most appropriate are: > No added capitalization of hotkeys ("C&hange time") (no emphasis apart > from colourization) > Add capitalization to hotkeys ("C&Hange time") (double capitalization) > Only capitalize the hotkey ("c&Hange time") (missing capitals in first > position) I suggest no capitalization. I believe capitalization was used when many terminals were unable to highlight or underline the hotkey, or mc couldn't use those capabilities. This is no longer true. -- Regards, Pavel Roskin From proski@gnu.org Mon Jun 12 18:09:18 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 85D7A3B00F5 for ; Mon, 12 Jun 2006 18:09:18 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00701-05 for ; Mon, 12 Jun 2006 18:09:16 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id AA3743B0010 for ; Mon, 12 Jun 2006 18:09:16 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FpuZr-0004zP-6S for mc-devel@gnome.org; Mon, 12 Jun 2006 18:08:07 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FpuZm-0003cR-GF; Mon, 12 Jun 2006 18:08:02 -0400 From: Pavel Roskin To: Jindrich Novy In-Reply-To: <1150102528.2242.17.camel@localhost.localdomain> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <1150102528.2242.17.camel@localhost.localdomain> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Mon, 12 Jun 2006 18:08:02 -0400 Message-Id: <1150150082.4297.34.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC development , Leonard den Ottolander Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 22:09:18 -0000 Hello! On Mon, 2006-06-12 at 10:55 +0200, Jindrich Novy wrote: > The problem is that Vladimir and me use different versions of mc. My > approach is to be more in sync with upstream so that there's a more > recent CVS snapshot in Fedora for now because of a very rare release > period of mc. This helps me to do only minimal changes when I want to > send a patch to upstream. SuSE uses the stable mc-4.6.1, AFAIK. > > +1 for storing useful patches in contrib. It would be quite hard to keep > them in sync with devel mc though. When I see a proposal to store any patches under version control, it makes me think that the version control system is inadequate. The natural representation of patches is differences between file revisions under version control. I think CVS it too centralized for the decentralized development that is done on mc. It's not possible for a non-committing user to create a separate branch. Recent years gave us several decentralized version control systems, such as Arch, BitKeeper, Monotone, Git and Mercurial. Their common feature is that every user has the complete repository of the project. Changes are exchanged between repositories in the form of changesets, either by e-mail or using other protocols. Branching is more advanced, merging is easier, and the merge history is recorded. Most importantly, branching is local. It should be possible to use an old version as the base and then rebase the patches while keeping track of what was actually merged. I think Git would be a great choice because it's free, actively developed and used by major projects such as Linux kernel and Wine. It also has a frontend called StGIT, which allows refining patches before submitting them to other developers. Git repositories work over http. Perhaps ibiblio.com would be persuaded to host the main repository. -- Regards, Pavel Roskin From INVALID.NOREPLY@gnu.org Tue Jun 13 04:02:49 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B0DCD3B00C9 for ; Tue, 13 Jun 2006 04:02:49 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15320-10 for ; Tue, 13 Jun 2006 04:02:46 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id A32783B00F5 for ; Tue, 13 Jun 2006 04:02:46 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq3U0-0002RY-00; Tue, 13 Jun 2006 03:38:40 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 07:38:39 +0000 Date: Tue, 13 Jun 2006 07:38:39 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060613-073838.sv47365.94722@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> In-Reply-To: <20060611-105933.sv36205.22318@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.504 tagged_above=-999 required=2 tests=[AWL=0.019, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.504 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 08:02:49 -0000 Follow-up Comment #9, bug #16762 (project mc): $ patch < getmntinfo-fix.patch can't find file to patch at input line 4 Perhaps you should have used the -p or --strip option? The text leading up to this was: -------------------------- |diff -Nrup mc-orig/acinclude.m4 mc/acinclude.m4 |--- mc-orig/acinclude.m4 2006-06-07 17:37:13.000000000 +0300 |+++ mc/acinclude.m4 2006-06-07 17:22:02.000000000 +0300 -------------------------- File to patch: _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 04:57:28 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3F2D43B00F5 for ; Tue, 13 Jun 2006 04:57:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17194-01 for ; Tue, 13 Jun 2006 04:57:27 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id DE4663B00AF for ; Tue, 13 Jun 2006 04:57:26 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq4MQ-000486-00; Tue, 13 Jun 2006 04:34:54 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 11:34:53 +0300 Date: Tue, 13 Jun 2006 11:34:53 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-113453.sv36205.79891@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> In-Reply-To: <20060613-073838.sv47365.94722@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.504 tagged_above=-999 required=2 tests=[AWL=0.019, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.504 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 08:57:28 -0000 Follow-up Comment #10, bug #16762 (project mc): 1) Enter in your MC directory 2) patch -p1 < getmntinfo-fix.patch _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 06:56:01 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AA2D43B000A for ; Tue, 13 Jun 2006 06:56:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20528-03 for ; Tue, 13 Jun 2006 06:56:00 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 813563B000C for ; Tue, 13 Jun 2006 06:56:00 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq6YC-0000LL-00; Tue, 13 Jun 2006 06:55:12 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 10:55:11 +0000 Date: Tue, 13 Jun 2006 10:55:11 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060613-105511.sv47365.57796@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> In-Reply-To: <20060613-113453.sv36205.79891@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.057, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 10:56:01 -0000 Follow-up Comment #11, bug #16762 (project mc): MOUNT_UFS still undeclared :( But I can fix this by undefining HAVE_INFOMOUNT_LIST in config.h before compiling. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 07:18:04 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A48483B000A for ; Tue, 13 Jun 2006 07:18:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20874-09 for ; Tue, 13 Jun 2006 07:18:03 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 207263B000C for ; Tue, 13 Jun 2006 07:18:03 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq6sz-0000bV-00; Tue, 13 Jun 2006 07:16:41 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 14:16:41 +0300 Date: Tue, 13 Jun 2006 14:16:41 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-141640.sv36205.93232@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> In-Reply-To: <20060613-105511.sv47365.57796@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.057, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 11:18:04 -0000 Follow-up Comment #12, bug #16762 (project mc): With the patch I've submitted the code which uses MOUNT_UFS shouldn't be compiled in. Can you attach your config.log to this bug report, please ? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 07:38:03 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D4A503B008F for ; Tue, 13 Jun 2006 07:38:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21364-10 for ; Tue, 13 Jun 2006 07:38:02 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 9E3293B000C for ; Tue, 13 Jun 2006 07:38:02 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq6tQ-0000c6-00; Tue, 13 Jun 2006 07:17:08 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 14:17:08 +0300 Date: Tue, 13 Jun 2006 14:17:08 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-141708.sv36205.99230@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> In-Reply-To: <20060613-141640.sv36205.93232@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.057, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 11:38:04 -0000 Follow-up Comment #13, bug #16762 (project mc): .. and your config.h too. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 08:55:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 611923B0114 for ; Tue, 13 Jun 2006 08:55:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23753-04 for ; Tue, 13 Jun 2006 08:55:40 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id DC9023B000A for ; Tue, 13 Jun 2006 08:55:39 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq8Q2-0004jO-00; Tue, 13 Jun 2006 08:54:54 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 14:54:54 +0200 Date: Tue, 13 Jun 2006 14:54:54 +0200 To: Nick Shmyrev , Leonard den Ottolander , mc-devel@gnome.org From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060613-145453.sv26390.71423@savannah.gnu.org> References: <20060612-123140.sv25628.90055@savannah.gnu.org> <20060612-123314.sv25628.73913@savannah.gnu.org> In-Reply-To: <20060612-123314.sv25628.73913@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.544 tagged_above=-999 required=2 tests=[AWL=0.056, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.544 X-Spam-Level: Cc: Subject: [bug #16829] Crash when formatting paragraph X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 12:55:44 -0000 Update of bug #16829 (project mc): Category: None => Editor Status: None => Invalid Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #2: This is an issue with the utf8ization of mcedit. The UTF-8 patches are no part of the official mc. Please report your issue in Red Hats bugzilla (http://bugzilla.redhat.com). _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 09:25:37 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7D6C53B00AF for ; Tue, 13 Jun 2006 09:25:37 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24676-05 for ; Tue, 13 Jun 2006 09:25:35 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 01AE43B000A for ; Tue, 13 Jun 2006 09:25:34 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq8sK-0005Bc-00; Tue, 13 Jun 2006 09:24:08 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 16:24:08 +0300 Date: Tue, 13 Jun 2006 16:24:08 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-162408.sv36205.31330@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> In-Reply-To: <20060613-141708.sv36205.99230@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.544 tagged_above=-999 required=2 tests=[AWL=0.056, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.544 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 13:25:37 -0000 Follow-up Comment #14, bug #16762 (project mc): My bad. I see what's wrong - will fix it and attach a new patch. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 09:51:11 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9CA853B00E5 for ; Tue, 13 Jun 2006 09:51:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24974-08 for ; Tue, 13 Jun 2006 09:51:09 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 0FF243B008F for ; Tue, 13 Jun 2006 09:51:09 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq9Hc-0006nV-00; Tue, 13 Jun 2006 09:50:16 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 16:50:16 +0300 Date: Tue, 13 Jun 2006 16:50:16 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-165016.sv36205.72008@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> In-Reply-To: <20060613-162408.sv36205.31330@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.506 tagged_above=-999 required=2 tests=[AWL=0.017, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.506 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 13:51:11 -0000 Follow-up Comment #15, bug #16762 (project mc): Ok. Attaching the new patch. Before applying this one - apply the old patch with -R: patch -p1 -R < getmntinfo-fix.patch and then apply the new one: patch -p1 < getmntinfo-fix-1.patch _______________________________________________________ Additional Item Attachment: File name: getmntinfo-fix-1.patch Size:3 KB _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 10:01:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 85AA33B00AF for ; Tue, 13 Jun 2006 10:01:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25629-05 for ; Tue, 13 Jun 2006 10:01:20 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 53A013B008F for ; Tue, 13 Jun 2006 10:01:20 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq9Qw-0006uf-00; Tue, 13 Jun 2006 09:59:54 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 13:59:54 +0000 Date: Tue, 13 Jun 2006 13:59:54 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060613-135953.sv47365.47118@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> In-Reply-To: <20060613-165016.sv36205.72008@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.506 tagged_above=-999 required=2 tests=[AWL=0.017, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.506 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 14:01:21 -0000 Follow-up Comment #16, bug #16762 (project mc): With getmntinfo-fix-1.patch compilation process finished successfully. 10x! Will you include this patch into source tree? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 10:22:29 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 912F33B00A5 for ; Tue, 13 Jun 2006 10:22:29 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26410-04 for ; Tue, 13 Jun 2006 10:22:26 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 45D1D3B00E5 for ; Tue, 13 Jun 2006 10:22:26 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq9lr-0007EE-00; Tue, 13 Jun 2006 10:21:31 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 17:21:31 +0300 Date: Tue, 13 Jun 2006 17:21:31 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-172130.sv36205.64124@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> In-Reply-To: <20060613-135953.sv47365.47118@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.544 tagged_above=-999 required=2 tests=[AWL=0.056, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.544 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 14:22:29 -0000 Follow-up Comment #17, bug #16762 (project mc): Yes. I just wanted to hear from Rolland Illig before commiting. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From kloczek@rudy.mif.pg.gda.pl Tue Jun 13 13:16:01 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 86F433B0438 for ; Tue, 13 Jun 2006 13:16:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31972-09 for ; Tue, 13 Jun 2006 13:16:00 -0400 (EDT) Received: from rudy.mif.pg.gda.pl (rudy.mif.pg.gda.pl [153.19.42.16]) by menubar.gnome.org (Postfix) with ESMTP id 26D0B3B0407 for ; Tue, 13 Jun 2006 13:16:00 -0400 (EDT) X-Virus-Scanned: at rudy.mif.pg.gda.pl Received: by rudy.mif.pg.gda.pl (plum, from userid 2732) id A1066233D5; Tue, 13 Jun 2006 19:14:41 +0200 (CEST) Date: Tue, 13 Jun 2006 19:14:41 +0200 (CEST) From: =?ISO-8859-2?Q?Tomasz_K=B3oczko?= To: Egmont Koblinger In-Reply-To: <20060612083045.GA22700@cs.bme.hu> Message-ID: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <20060612083045.GA22700@cs.bme.hu> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-59671104-1150218881=:31655" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.541 tagged_above=-999 required=2 tests=[AWL=-0.017, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_SG=0.077] X-Spam-Score: -2.541 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 17:16:01 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --0-59671104-1150218881=:31655 Content-Type: TEXT/PLAIN; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 8BIT On Mon, 12 Jun 2006, Egmont Koblinger wrote: [..] BTW: anyone is working on UFT-8 support for ncurses(w) backend ? BTW2: few monts ago was on this list about converting in source tree alle po/*.po files to UTF-8 .. still not done. Any reasons ? It can be performed by: [mc]$ for i in po/*.po; do msgconv -t UTF-8 $i -o $i; done and commiting changes. kloczek -- ----------------------------------------------------------- *Ludzie nie mają problemów, tylko sobie sami je stwarzają* ----------------------------------------------------------- Tomasz Kłoczko, sys adm @zie.pg.gda.pl|*e-mail: kloczek@rudy.mif.pg.gda.pl* --0-59671104-1150218881=:31655-- From egmont@uhulinux.hu Wed Jun 14 09:17:10 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1073B3B0406 for ; Wed, 14 Jun 2006 09:17:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31014-06 for ; Wed, 14 Jun 2006 09:17:08 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id 32A1D3B0081 for ; Wed, 14 Jun 2006 09:17:08 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id F42397F9A; Wed, 14 Jun 2006 15:16:24 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26249-05; Wed, 14 Jun 2006 15:16:21 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id BB0867E02; Wed, 14 Jun 2006 15:16:21 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Wed, 14 Jun 2006 15:16:21 +0200 Date: Wed, 14 Jun 2006 15:16:21 +0200 From: Egmont Koblinger To: Tomasz =?iso-8859-2?Q?K=B3oczko?= Subject: Re: utf8 patch for mc, slang 2 version Message-ID: <20060614131621.GE29389@cs.bme.hu> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <20060612083045.GA22700@cs.bme.hu> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.548 tagged_above=-999 required=2 tests=[AWL=-0.026, BAYES_00=-2.599, TW_SG=0.077] X-Spam-Score: -2.548 X-Spam-Level: Cc: mc-devel@gnome.org X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 13:17:10 -0000 On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz Kłoczko wrote: > BTW: anyone is working on UFT-8 support for ncurses(w) backend ? I don't think so, and I don't think it is worth it. Maintaining two backends IMHO just causes headaches while it doesn't make mc better. I still can't see why developers do not decide which one to use and drop the other one. With Unicode support maintaining the two will be much harder since AFAIK slang works with UTF-8 while ncurses uses UCS-4. Hence a completely different patch would be required for the two cases. > BTW2: few monts ago was on this list about converting in source > tree alle po/*.po files to UTF-8 .. still not done. Any reasons ? > > It can be performed by: > > [mc]$ for i in po/*.po; do msgconv -t UTF-8 $i -o $i; done Are you sure it is safe to use the same output file? I'd rather use a tmp file. It depends on msgconv's internal implementation, but I can easily imagine a situation where the writing file descriptor's position exceeds the reading position (since UTF-8 is longer than the 8-bit version) and this may cause invalid results. Due to buffered read and write requests I guess it needs larger files (with approx. 4096 -- 8192 accented characters) for this bug to occur. I'm not sure, though, just reasonably paranoid :-) -- Egmont From nadvornik@suse.cz Wed Jun 14 10:23:23 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3724F3B041B for ; Wed, 14 Jun 2006 10:23:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03772-05 for ; Wed, 14 Jun 2006 10:23:09 -0400 (EDT) Received: from mail.suse.cz (styx.suse.cz [82.119.242.94]) by menubar.gnome.org (Postfix) with ESMTP id A494D3B0570 for ; Wed, 14 Jun 2006 10:23:09 -0400 (EDT) Received: from sphinx.suse.cz (sphinx.suse.cz [10.20.1.5]) by mail.suse.cz (SUSE CR ESMTP Mailer) with ESMTP id 9710C628067 for ; Wed, 14 Jun 2006 16:22:51 +0200 (CEST) From: Vladimir Nadvornik To: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version Date: Wed, 14 Jun 2006 16:22:49 +0200 User-Agent: KMail/1.9.1 References: <200509191419.01556.arekm@pld-linux.org> <1150024126.2478.14.camel@athlon> <1150102528.2242.17.camel@localhost.localdomain> In-Reply-To: <1150102528.2242.17.camel@localhost.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606141622.50049.nadvornik@suse.cz> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 14:23:23 -0000 On Monday 12 June 2006 10:55, Jindrich Novy wrote: > > > Please take notice. It would probably be good if Vladimir and you could > > keep your UTF-8 patch sets in sync. It just seems wasted effort to do > > this in two places independently. Some inter-distro communication is not > > going to hurt. Maybe these patches should be centrally maintained in a > > contribs tree. > > The problem is that Vladimir and me use different versions of mc. My > approach is to be more in sync with upstream so that there's a more > recent CVS snapshot in Fedora for now because of a very rare release > period of mc. This helps me to do only minimal changes when I want to > send a patch to upstream. SuSE uses the stable mc-4.6.1, AFAIK. > It would not be a problem to have a more recent mc snapshot in openSUSE Factory. Even better, if it is synced 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 From bartoldeman@users.sourceforge.net Wed Jun 14 17:52:11 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CBF073B0433 for ; Wed, 14 Jun 2006 17:52:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31602-06 for ; Wed, 14 Jun 2006 17:52:08 -0400 (EDT) Received: from mail2.woosh.co.nz (webmail.woosh.co.nz [202.74.207.2]) by menubar.gnome.org (Postfix) with ESMTP id 9AAF83B041B for ; Wed, 14 Jun 2006 17:52:07 -0400 (EDT) Received: from enm-bo-lt.localnet (202-74-212-77.ue.woosh.co.nz [202.74.212.77]) by woosh.co.nz (Rockliffe SMTPRA 6.1.22) with ESMTP id ; Thu, 15 Jun 2006 09:51:23 +1200 Received: from enbeo (helo=localhost) by enm-bo-lt.localnet with local-esmtp (Exim 4.62) (envelope-from ) id 1FqdB0-000326-Ma; Thu, 15 Jun 2006 09:45:26 +1200 Date: Thu, 15 Jun 2006 09:45:26 +1200 (NZST) From: Bart Oldeman X-X-Sender: enbeo@enm-bo-lt.localnet To: Egmont Koblinger Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <20060614131621.GE29389@cs.bme.hu> Message-ID: References: <200509191419.01556.arekm@pld-linux.org><200606071218.32428.nadv ornik@suse.cz><1149685131.2269.10.camel@localhost.localdomain><200606081202 .51002.nadvornik@suse.cz><20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon><20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: Cc: mc-devel@gnome.org, Tomasz =?iso-8859-2?Q?K=B3oczko?= X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 21:52:12 -0000 On Wed, 14 Jun 2006, Egmont Koblinger wrote: > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > I don't think so, and I don't think it is worth it. Maintaining two backends > IMHO just causes headaches while it doesn't make mc better. I still can't > see why developers do not decide which one to use and drop the other one. Maybe compatibility with older UN*Xes with curses but no slang? > With Unicode support maintaining the two will be much harder since AFAIK > slang works with UTF-8 while ncurses uses UCS-4. Hence a completely > different patch would be required for the two cases. Last time I played with it ncursesw (but not plain ncurses) handled UTF-8 just fine. e.g. you can pass a UTF-8 encoded string to addstr(), and provided the locale is set correctly, ncursesw will compute its width correctly. It is *also* possible to use addwstr() with UCS-4, but not compulsory. Bart From proski@gnu.org Wed Jun 14 18:12:25 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 13D573B0145 for ; Wed, 14 Jun 2006 18:12:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08738-03 for ; Wed, 14 Jun 2006 18:12:23 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id 67B653B00D6 for ; Wed, 14 Jun 2006 18:12:23 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FqdaT-0000qj-3U for mc-devel@gnome.org; Wed, 14 Jun 2006 18:11:45 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FqdaL-00062m-Lp; Wed, 14 Jun 2006 18:11:37 -0400 Subject: Re: utf8 patch for mc, slang 2 version From: Pavel Roskin To: Bart Oldeman In-Reply-To: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadv ornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202 .51002.nadvornik@suse.cz><20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon><20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Wed, 14 Jun 2006 18:11:37 -0400 Message-Id: <1150323097.23144.2.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: Egmont Koblinger , mc-devel@gnome.org, Tomasz =?iso-8859-2?Q?K=B3oczko?= X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 22:12:25 -0000 Hello! On Thu, 2006-06-15 at 09:45 +1200, Bart Oldeman wrote: > On Wed, 14 Jun 2006, Egmont Koblinger wrote: > > > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: > > > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > > > I don't think so, and I don't think it is worth it. Maintaining two backends > > IMHO just causes headaches while it doesn't make mc better. I still can't > > see why developers do not decide which one to use and drop the other one. > > Maybe compatibility with older UN*Xes with curses but no slang? It's a bogus argument. UNIX curses was removed long ago, and it had never worked well anyway. I don't remember a single person complaining. Besides, S-Lang is included with mc and it's quite portable. -- Regards, Pavel Roskin From ossi@kde.org Wed Jun 14 18:23:28 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 168E43B000E for ; Wed, 14 Jun 2006 18:23:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00410-04 for ; Wed, 14 Jun 2006 18:23:24 -0400 (EDT) Received: from ktown.kde.org (ktown.kde.org [131.246.120.250]) by menubar.gnome.org (Postfix) with SMTP id 194493B0099 for ; Wed, 14 Jun 2006 18:23:24 -0400 (EDT) Received: (qmail 6653 invoked from network); 14 Jun 2006 22:22:34 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 14 Jun 2006 22:22:34 -0000 Received: from ossi by ugly.local with local (masqmail 0.2.21) id 1Fqdkw-2f5-00 for ; Thu, 15 Jun 2006 00:22:34 +0200 Date: Thu, 15 Jun 2006 00:22:34 +0200 From: Oswald Buddenhagen To: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version Message-ID: <20060614222234.GA9122@ugly.local> Mail-Followup-To: mc-devel@gnome.org References: <20060614131621.GE29389@cs.bme.hu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.585 tagged_above=-999 required=2 tests=[AWL=0.014, BAYES_00=-2.599] X-Spam-Score: -2.585 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 22:23:28 -0000 On Thu, Jun 15, 2006 at 09:45:26AM +1200, Bart Oldeman wrote: > On Wed, 14 Jun 2006, Egmont Koblinger wrote: > > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > > > I don't think so, and I don't think it is worth it. Maintaining two backends > > IMHO just causes headaches while it doesn't make mc better. I still can't > > see why developers do not decide which one to use and drop the other one. > > Maybe compatibility with older UN*Xes with curses but no slang? > that doesn't sound too convincing. > > With Unicode support maintaining the two will be much harder since AFAIK > > slang works with UTF-8 while ncurses uses UCS-4. Hence a completely > > different patch would be required for the two cases. > > Last time I played with it ncursesw (but not plain ncurses) handled UTF-8 > just fine. > good. i'm all for killing slang support. why that one? libslang is twice as big as libncursesw. probably because it was meant to be much more than just a display lib. -- Hi! I'm a .signature virus! Copy me into your ~/.signature, please! -- Chaos, panic, and disorder - my work here is done. From kloczek@rudy.mif.pg.gda.pl Thu Jun 15 00:21:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2CCA43B002B for ; Thu, 15 Jun 2006 00:21:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10727-08 for ; Thu, 15 Jun 2006 00:21:33 -0400 (EDT) Received: from rudy.mif.pg.gda.pl (rudy.mif.pg.gda.pl [153.19.42.16]) by menubar.gnome.org (Postfix) with ESMTP id D320E3B00B5 for ; Thu, 15 Jun 2006 00:21:32 -0400 (EDT) X-Virus-Scanned: at rudy.mif.pg.gda.pl Received: by rudy.mif.pg.gda.pl (plum, from userid 2732) id DE57C233C2; Thu, 15 Jun 2006 06:20:42 +0200 (CEST) Date: Thu, 15 Jun 2006 06:20:42 +0200 (CEST) From: =?ISO-8859-2?Q?Tomasz_K=B3oczko?= To: Egmont Koblinger Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <20060614131621.GE29389@cs.bme.hu> Message-ID: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-590361060-1150344476=:31655" Content-ID: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.54 tagged_above=-999 required=2 tests=[AWL=-0.016, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_SG=0.077] X-Spam-Score: -2.54 X-Spam-Level: Cc: mc-devel@gnome.org X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 04:21:36 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --0-590361060-1150344476=:31655 Content-Type: TEXT/PLAIN; CHARSET=ISO-8859-2; FORMAT=flowed Content-Transfer-Encoding: 8BIT Content-ID: On Wed, 14 Jun 2006, Egmont Koblinger wrote: > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz Kłoczko wrote: > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > I don't think so, and I don't think it is worth it. Maintaining two backends > IMHO just causes headaches while it doesn't make mc better. I still can't > see why developers do not decide which one to use and drop the other one. If someone want ask which backend is more importand and will be better keep as major IMO answer tn this kind question is very simple: # rpm -q --whatrequires libslang.so.2 | grep -v slang | wc -l 4 # rpm -q --whatrequires libncurses.so.5 libncursesw.so.5 | grep -v ncurses |wc -l 55 Above slang list contain only packages which do not have now ncurses backend and are not importand as mc :) Also current state have other sick points on Linux. In case using mc with gpm it causes runtime linking with more than one term toolkit library (slang or internal slang and ncurses used by libgpm). [..] >> [mc]$ for i in po/*.po; do msgconv -t UTF-8 $i -o $i; done > > Are you sure it is safe to use the same output file? I'd rather use a tmp > file. I'm sure. msgconv cumulates output in memory and aftewr finish conversion writes output to file name passed in -o parameter in single step. kloczek -- ----------------------------------------------------------- *Ludzie nie mają problemów, tylko sobie sami je stwarzają* ----------------------------------------------------------- Tomasz Kłoczko, sys adm @zie.pg.gda.pl|*e-mail: kloczek@rudy.mif.pg.gda.pl* --0-590361060-1150344476=:31655-- From ptsekov@gmx.net Thu Jun 15 00:35:07 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 45C963B0324 for ; Thu, 15 Jun 2006 00:35:07 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11437-01 for ; Thu, 15 Jun 2006 00:34:58 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 4B94E3B0184 for ; Thu, 15 Jun 2006 00:34:56 -0400 (EDT) Received: (qmail invoked by alias); 15 Jun 2006 04:34:23 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp036) with SMTP; 15 Jun 2006 06:34:23 +0200 X-Authenticated: #14308112 Date: Thu, 15 Jun 2006 07:33:12 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole Cc: MC dev Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <1150323097.23144.2.camel@dv> Message-ID: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadv ornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202 .51002.nadvornik@suse.cz><20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon><20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> <1150323097.23144.2.camel@dv> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.546 tagged_above=-999 required=2 tests=[AWL=0.054, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.546 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 04:35:07 -0000 On Wed, 14 Jun 2006, Pavel Roskin wrote: > Hello! > > On Thu, 2006-06-15 at 09:45 +1200, Bart Oldeman wrote: >> On Wed, 14 Jun 2006, Egmont Koblinger wrote: >> >>> On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: >>> >>>> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? >>> >>> I don't think so, and I don't think it is worth it. Maintaining two backends >>> IMHO just causes headaches while it doesn't make mc better. I still can't >>> see why developers do not decide which one to use and drop the other one. >> >> Maybe compatibility with older UN*Xes with curses but no slang? > > It's a bogus argument. UNIX curses was removed long ago, and it had > never worked well anyway. I don't remember a single person complaining. > Besides, S-Lang is included with mc and it's quite portable. We had that argument once already. curses is not that old and it is standard. And it has unicode support. Its just a matter of using it. From egmont@uhulinux.hu Thu Jun 15 06:33:33 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5B1473B0440 for ; Thu, 15 Jun 2006 06:33:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30159-02 for ; Thu, 15 Jun 2006 06:33:28 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id 78AEC3B03EB for ; Thu, 15 Jun 2006 06:33:28 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id DC5CA8036 for ; Thu, 15 Jun 2006 12:33:20 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12764-06 for ; Thu, 15 Jun 2006 12:33:17 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id 281557FF0 for ; Thu, 15 Jun 2006 12:33:17 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Thu, 15 Jun 2006 12:33:14 +0200 Date: Thu, 15 Jun 2006 12:33:14 +0200 From: Egmont Koblinger To: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version Message-ID: <20060615103314.GA14523@cs.bme.hu> References: <20060614131621.GE29389@cs.bme.hu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.584 tagged_above=-999 required=2 tests=[AWL=0.015, BAYES_00=-2.599] X-Spam-Score: -2.584 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 10:33:36 -0000 Hi, > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > > > I don't think so, and I don't think it is worth it. Maintaining two backends > > IMHO just causes headaches while it doesn't make mc better. I still can't > > see why developers do not decide which one to use and drop the other one. > > Maybe compatibility with older UN*Xes with curses but no slang? Asking these sysadmins to install slang (or compile mc to its bundled slang) is IMHO easier than to do double work in mc. > Last time I played with it ncursesw (but not plain ncurses) handled UTF-8 > just fine. > > e.g. you can pass a UTF-8 encoded string to addstr(), and provided the > locale is set correctly, ncursesw will compute its width correctly. It is > *also* possible to use addwstr() with UCS-4, but not compulsory. It's clear now, thanks! Anyway, there are plenty of apps (e.g. vim, joe) that perfectly support UTF-8 and use ncurses (not the w version). I wonder how it is possible... -- Egmont From INVALID.NOREPLY@gnu.org Wed Jun 14 15:03:01 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D204A3B0190 for ; Wed, 14 Jun 2006 15:03:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15652-08 for ; Wed, 14 Jun 2006 15:03:00 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3A7723B00C7 for ; Wed, 14 Jun 2006 15:03:00 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fqad3-0005RO-00; Wed, 14 Jun 2006 15:02:13 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 14 Jun 2006 19:02:13 +0000 Date: Wed, 14 Jun 2006 19:02:13 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: purportex X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.0.4) Gecko/20060508 Firefox/1.5.0.4 X-Apparently-From: 81.31.39.117 (Savane authenticated user purportex) Message-Id: <20060614-190212.sv50251.32349@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> In-Reply-To: <20060613-172130.sv36205.64124@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 08:58:02 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 19:03:02 -0000 Follow-up Comment #18, bug #16762 (project mc): Hi, when I compiling current cvs version, I have such problem.. $ ./autogen ; make ... mountlist.c: In function 'fstype_to_string': mountlist.c:176: error: 'MOUNT_UFS' undeclared (first use in this function) mountlist.c:176: error: (Each undeclared identifier is reported only once mountlist.c:176: error: for each function it appears in.) mountlist.c:178: error: 'MOUNT_NFS' undeclared (first use in this function) $ uname -a Darwin MacBookPro.local 8.6.1 Darwin Kernel Version 8.6.1: Tue Mar 7 16:55:45 PST 2006; root:xnu-792.9.22.obj~1/RELEASE_I386 i386 i386 _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 15 00:37:55 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E3FD13B00CA for ; Thu, 15 Jun 2006 00:37:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11437-06 for ; Thu, 15 Jun 2006 00:37:53 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id A34FB3B00BA for ; Thu, 15 Jun 2006 00:37:53 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FqjbZ-0008C3-00; Thu, 15 Jun 2006 00:37:17 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 15 Jun 2006 07:37:16 +0300 Date: Thu, 15 Jun 2006 07:37:16 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Opera/8.51 (Windows ME; U; en) X-Apparently-From: 87.126.52.205 (Savane authenticated user ptsekov) Message-Id: <20060615-073715.sv36205.52677@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> In-Reply-To: <20060614-190212.sv50251.32349@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 08:58:02 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 04:37:55 -0000 Follow-up Comment #19, bug #16762 (project mc): purportex, have you tried to fix the problem by applying the suggested patch ? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From bartoldeman@users.sourceforge.net Thu Jun 15 17:15:00 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 891BA3B01FF for ; Thu, 15 Jun 2006 17:15:00 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01106-01 for ; Thu, 15 Jun 2006 17:14:59 -0400 (EDT) Received: from mail2.woosh.co.nz (webmail.woosh.co.nz [202.74.207.2]) by menubar.gnome.org (Postfix) with ESMTP id 5C5023B00DD for ; Thu, 15 Jun 2006 17:14:58 -0400 (EDT) Received: from enm-bo-lt.localnet (202-74-216-93.ue.woosh.co.nz [202.74.216.93]) by woosh.co.nz (Rockliffe SMTPRA 6.1.22) with ESMTP id for ; Fri, 16 Jun 2006 09:14:10 +1200 Received: from enbeo (helo=localhost) by enm-bo-lt.localnet with local-esmtp (Exim 4.62) (envelope-from ) id 1Fqz4P-0003ds-F4 for mc-devel@gnome.org; Fri, 16 Jun 2006 09:08:05 +1200 Date: Fri, 16 Jun 2006 09:08:04 +1200 (NZST) From: Bart Oldeman X-X-Sender: enbeo@enm-bo-lt.localnet To: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <20060615103314.GA14523@cs.bme.hu> Message-ID: References: <20060614131621.GE29389@cs.bme.hu> <20060615103314.GA14523@cs.bme.hu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 21:15:00 -0000 On Thu, 15 Jun 2006, Egmont Koblinger wrote: > Anyway, there are plenty of apps (e.g. vim, joe) that perfectly support > UTF-8 and use ncurses (not the w version). I wonder how it is possible... Because they only use the terminfo (low-level) parts of ncurses, see "man 3ncurses terminfo". Those parts do not care about UTF-8. MC uses a higher level part of ncurses (the display routines), but restricted to "stdscr". There's an even higher level part of ncurses that supports managing (overlapping) windows, but MC does not use it. SLang (without the newt library) does not support that. So one advantage of using ncurses over slang is that MC could make use of ncurses' windowing code, thereby simplifying its own code. In the way that MC uses SLang and ncurses right now there is very little difference between the two libraries. If you google (groups) for it (Miguel's posts) you'll find that around '95/'96 SLang was preferred over ncurses because it was faster, smaller, and less buggy. But that is no longer the case, there is not much difference now. Bart From leonard@den.ottolander.nl Thu Jun 15 19:55:20 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E1A6F3B00DD for ; Thu, 15 Jun 2006 19:55:19 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06118-09 for ; Thu, 15 Jun 2006 19:55:14 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id AE7613B0011 for ; Thu, 15 Jun 2006 19:55:14 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id ABA4E4023 for ; Fri, 16 Jun 2006 01:54:08 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id Maxju7m2nPkZ for ; Fri, 16 Jun 2006 01:54:02 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id ED55C4021 for ; Fri, 16 Jun 2006 01:54:01 +0200 (CEST) Subject: Symlink attack in file.c? From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Fri, 16 Jun 2006 01:53:56 +0200 Message-Id: <1150415636.2615.24.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 23:55:20 -0000 Hi, Something I came across a couple of times this week, just now in relation to an RFE regarding file permissions on copying fat files in RHs bugzilla (https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=195614): http://cvs.savannah.gnu.org/viewcvs/mc/src/file.c?root=mc&r1=1.28&r2=1.29 A commit by "pavel" (Machek?) who added the remark "FIXME: You have security hole here, btw. Imagine copying to /tmp and symlink attack :-(" Is there anybody that can explain to me what he's concerned about and if that is still an issue? If so this is a rather long standing hole... If not, let's get rid of that warning. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Thu Jun 15 18:27:59 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C15DE3B01A1 for ; Thu, 15 Jun 2006 18:27:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03783-05 for ; Thu, 15 Jun 2006 18:27:58 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 02FDC3B0007 for ; Thu, 15 Jun 2006 18:27:57 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fr0JH-0002nT-00; Thu, 15 Jun 2006 18:27:31 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 15 Jun 2006 22:27:30 +0000 Date: Thu, 15 Jun 2006 22:27:30 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: purportex X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.0.4) Gecko/20060508 Firefox/1.5.0.4 X-Apparently-From: 81.31.39.117 (Savane authenticated user purportex) Message-Id: <20060615-222730.sv50251.60290@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > In-Reply-To: <20060615-073715.sv36205.52677@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.548 tagged_above=-999 required=2 tests=[AWL=0.052, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.548 X-Spam-Level: X-Mailman-Approved-At: Fri, 16 Jun 2006 05:26:01 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 22:28:00 -0000 Follow-up Comment #20, bug #16762 (project mc): Yeah, great! I can't compile it with tuesday's version, but with yesterday's I can, thanx :] _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Fri Jun 16 09:43:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 40C913B0076 for ; Fri, 16 Jun 2006 09:43:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30254-02 for ; Fri, 16 Jun 2006 09:43:41 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3835D3B000B for ; Fri, 16 Jun 2006 09:43:41 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrEbH-0000KJ-00; Fri, 16 Jun 2006 09:43:03 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Fri, 16 Jun 2006 15:43:02 +0200 Date: Fri, 16 Jun 2006 15:43:02 +0200 To: Nick Shmyrev , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16829] Crash when formatting paragraph From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060616-154301.sv26390.44190@savannah.gnu.org> References: <20060612-123140.sv25628.90055@savannah.gnu.org> <20060612-123314.sv25628.73913@savannah.gnu.org> <20060613-145453.sv26390.71423@savannah.gnu.org> In-Reply-To: <20060613-145453.sv26390.71423@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.548 tagged_above=-999 required=2 tests=[AWL=0.052, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.548 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 13:43:44 -0000 Update of bug #16829 (project mc): Status: Invalid => None Assigned to: None => leonardjo Open/Closed: Closed => Open Operating System: GNU/Hurd => All _______________________________________________________ Follow-up Comment #3: Turns out to be a general mc issue after all: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=194562 Jindrich Novy proposes the following solution: https://bugzilla.redhat.com/bugzilla/attachment.cgi?id=131038 _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From jnovy@redhat.com Fri Jun 16 10:44:35 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 295C73B0012 for ; Fri, 16 Jun 2006 10:44:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32146-01 for ; Fri, 16 Jun 2006 10:44:33 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id B4BEC3B000B for ; Fri, 16 Jun 2006 10:44:33 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5GCUXa8011193 for ; Fri, 16 Jun 2006 08:30:33 -0400 Received: from pobox.stuttgart.redhat.com (pobox.stuttgart.redhat.com [172.16.2.10]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5GCUV2V007457 for ; Fri, 16 Jun 2006 08:30:33 -0400 Received: from vpn-4-42.stuttgart.redhat.com (vpn-4-42.stuttgart.redhat.com [10.32.4.42]) by pobox.stuttgart.redhat.com (8.12.8/8.12.8) with ESMTP id k5GCUUTK005881 for ; Fri, 16 Jun 2006 14:30:30 +0200 Subject: [PATCH] segfault fix while formatting paragraph (alt-p) From: Jindrich Novy To: MC Devel Content-Type: multipart/mixed; boundary="=-2pcaSwIryKoHMMTlNz7W" Date: Fri, 16 Jun 2006 14:30:29 +0200 Message-Id: <1150461029.2294.6.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.5) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.601 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.601 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 14:44:35 -0000 --=-2pcaSwIryKoHMMTlNz7W Content-Type: text/plain Content-Transfer-Encoding: 7bit Hi, there's a segfault while formatting a paragraph with alt-p. The next_word_start() in wordproc.c misses the upper boundary check. The attached patch fixes it. References/Reproducer: http://bugzilla.redhat.com/194562 Jindrich --=-2pcaSwIryKoHMMTlNz7W Content-Disposition: attachment; filename=mc-segfault.patch Content-Type: text/x-patch; name=mc-segfault.patch; charset=UTF-8 Content-Transfer-Encoding: 7bit --- mc/edit/wordproc.c.jn 2005-05-27 05:35:12.000000000 +0200 +++ mc/edit/wordproc.c 2006-06-16 14:19:38.000000000 +0200 @@ -198,10 +198,10 @@ } static int -next_word_start (unsigned char *t, int q) +next_word_start (unsigned char *t, int q, int size) { int i; - for (i = q;; i++) { + for (i = q; i < size; i++) { switch (t[i]) { case '\n': return -1; @@ -220,11 +220,11 @@ /* find the start of a word */ static int -word_start (unsigned char *t, int q) +word_start (unsigned char *t, int q, int size) { int i = q; if (t[q] == ' ' || t[q] == '\t') - return next_word_start (t, q); + return next_word_start (t, q, size); for (;;) { int c; if (!i) @@ -253,9 +253,9 @@ break; if (t[q] == '\n') break; - p = word_start (t, q); + p = word_start (t, q, size); if (p == -1) - q = next_word_start (t, q); /* Return the end of the word if the beginning + q = next_word_start (t, q, size); /* Return the end of the word if the beginning of the word is at the beginning of a line (i.e. a very long word) */ else --=-2pcaSwIryKoHMMTlNz7W-- From ptsekov@gmx.net Fri Jun 16 11:59:15 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 55D4D3B0005 for ; Fri, 16 Jun 2006 11:59:15 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01930-07 for ; Fri, 16 Jun 2006 11:59:12 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 01C653B000B for ; Fri, 16 Jun 2006 11:59:11 -0400 (EDT) Received: (qmail invoked by alias); 16 Jun 2006 15:58:30 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp028) with SMTP; 16 Jun 2006 17:58:30 +0200 X-Authenticated: #14308112 Date: Fri, 16 Jun 2006 18:57:18 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: MC dev Subject: Problems with the mailing list ? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.549 tagged_above=-999 required=2 tests=[AWL=-0.943, BAYES_20=-0.74, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -1.549 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 15:59:15 -0000 Hello, Does anyone miss messages from the mc-devel list ? It seems like some messages do not reach the mailing list at all while others don't reach the mailing list subcsribers. Can anyone confirm or deny this ? Thanks! From jnovy@redhat.com Fri Jun 16 12:57:33 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E085B3B033E for ; Fri, 16 Jun 2006 12:57:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06357-08 for ; Fri, 16 Jun 2006 12:57:25 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 838633B050A for ; Fri, 16 Jun 2006 12:55:21 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5GGsPDw006893 for ; Fri, 16 Jun 2006 12:54:25 -0400 Received: from pobox.stuttgart.redhat.com (pobox.stuttgart.redhat.com [172.16.2.10]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5GGsOK7007658 for ; Fri, 16 Jun 2006 12:54:24 -0400 Received: from vpn-4-3.stuttgart.redhat.com (vpn-4-3.stuttgart.redhat.com [10.32.4.3]) by pobox.stuttgart.redhat.com (8.12.8/8.12.8) with ESMTP id k5GGsNTK026570 for ; Fri, 16 Jun 2006 18:54:23 +0200 Subject: better [PATCH] segfault fix while formatting paragraph (alt-p) From: Jindrich Novy To: MC Devel Content-Type: multipart/mixed; boundary="=-3u5KXe3b23+1fD2VbBs1" Date: Fri, 16 Jun 2006 18:54:23 +0200 Message-Id: <1150476863.19192.3.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.5) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.601 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.601 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 16:57:33 -0000 --=-3u5KXe3b23+1fD2VbBs1 Content-Type: text/plain Content-Transfer-Encoding: 7bit Hi, after some refinement I'm sending a better patch that rewrites next_word_start() and fixes the segfault. Jindrich --=-3u5KXe3b23+1fD2VbBs1 Content-Disposition: attachment; filename=mc-segfault.patch Content-Type: text/x-patch; name=mc-segfault.patch; charset=UTF-8 Content-Transfer-Encoding: 7bit --- mc/edit/wordproc.c.jn 2005-05-27 05:35:12.000000000 +0200 +++ mc/edit/wordproc.c 2006-06-16 18:48:42.000000000 +0200 @@ -198,33 +198,25 @@ } static int -next_word_start (unsigned char *t, int q) +next_word_start (unsigned char *t, int q, int size) { int i; - for (i = q;; i++) { - switch (t[i]) { - case '\n': + for (i = q; i X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6AA2F3B04C9 for ; Fri, 16 Jun 2006 16:21:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19862-05 for ; Fri, 16 Jun 2006 16:21:41 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 7B4BC3B03B3 for ; Fri, 16 Jun 2006 16:21:41 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrKoG-0007SH-00; Fri, 16 Jun 2006 16:20:52 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Fri, 16 Jun 2006 22:20:52 +0200 Date: Fri, 16 Jun 2006 22:20:52 +0200 To: Nick Shmyrev , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16829] Crash when formatting paragraph From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060616-222051.sv26390.93326@savannah.gnu.org> References: <20060612-123140.sv25628.90055@savannah.gnu.org> <20060612-123314.sv25628.73913@savannah.gnu.org> <20060613-145453.sv26390.71423@savannah.gnu.org> <20060616-154301.sv26390.44190@savannah.gnu.org> In-Reply-To: <20060616-154301.sv26390.44190@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.55 tagged_above=-999 required=2 tests=[AWL=0.050, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.55 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 20:21:44 -0000 Update of bug #16829 (project mc): Status: None => Fixed Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #4: Pavel Tsekov committed patches to fix this issue. Closing. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From proski@gnu.org Fri Jun 16 23:17:46 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AFAEF3B00C5 for ; Fri, 16 Jun 2006 23:17:46 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00723-05 for ; Fri, 16 Jun 2006 23:17:45 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id B49B33B0137 for ; Fri, 16 Jun 2006 23:17:45 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FrRIQ-0002kb-1Z for mc-devel@gnome.org; Fri, 16 Jun 2006 23:16:26 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FrRIJ-00025L-VK; Fri, 16 Jun 2006 23:16:19 -0400 Subject: Re: Problems with the mailing list ? From: Pavel Roskin To: Pavel Tsekov In-Reply-To: References: Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Fri, 16 Jun 2006 23:16:19 -0400 Message-Id: <1150514179.29738.20.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 03:17:46 -0000 Hello! On Fri, 2006-06-16 at 18:57 +0300, Pavel Tsekov wrote: > Hello, > > Does anyone miss messages from the mc-devel list ? It seems like some > messages do not reach the mailing list at all while others don't reach > the mailing list subcsribers. Can anyone confirm or deny this ? I have sent an email to the GNOME mailing list administrator. I don't see any delays or mail loss, but let's see what would happen to this message. -- Regards, Pavel Roskin From proski@gnu.org Sat Jun 17 00:33:48 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 099BB3B015A for ; Sat, 17 Jun 2006 00:33:48 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01828-10 for ; Sat, 17 Jun 2006 00:33:46 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id 8FE6D3B00CB for ; Sat, 17 Jun 2006 00:33:46 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FrRT5-0002yB-Q6 for mc-devel@gnome.org; Fri, 16 Jun 2006 23:27:27 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FrRT0-00025j-D6; Fri, 16 Jun 2006 23:27:22 -0400 Subject: Re: Symlink attack in file.c? From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150415636.2615.24.camel@athlon> References: <1150415636.2615.24.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Fri, 16 Jun 2006 23:27:22 -0400 Message-Id: <1150514842.29738.32.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 04:33:48 -0000 Hello, Leonard! On Fri, 2006-06-16 at 01:53 +0200, Leonard den Ottolander wrote: > Something I came across a couple of times this week, just now in > relation to an RFE regarding file permissions on copying fat files in > RHs bugzilla > (https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=195614): > http://cvs.savannah.gnu.org/viewcvs/mc/src/file.c?root=mc&r1=1.28&r2=1.29 > > A commit by "pavel" (Machek?) who added the remark > "FIXME: You have security hole here, btw. Imagine copying to /tmp and > symlink attack :-(" > > Is there anybody that can explain to me what he's concerned about and if > that is still an issue? If so this is a rather long standing hole... If > not, let's get rid of that warning. I think it's still an issue. Suppose the target doesn't exist. Then mc decides that it's OK to create the file and creates it. In the meantime, somebody could have created a symlink, so mc truncates the file pointed to by the symlink. It is a hole indeed, but it needs a good timing to be exploited. The attacker should know which file is about to be overwritten and the symlink should be created after mc has checked that the target doesn't exist, but before mc opens the file for writing. Since mc needs to be interactive, it's hard to avoid accessing the target file more than once. The simplest fix would be to use O_EXCL is there was no target file initially. If it fails for the reason that the file exists, there should be a huge warning that no user should be able to ignore. -- Regards, Pavel Roskin From niko_2501@yahoo.co.jp Wed Jun 14 02:52:08 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3C1A73B00A4 for ; Wed, 14 Jun 2006 02:52:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19764-06 for ; Wed, 14 Jun 2006 02:52:07 -0400 (EDT) Received: from web3704.mail.tnz.yahoo.co.jp (web3704.mail.tnz.yahoo.co.jp [203.216.226.186]) by menubar.gnome.org (Postfix) with SMTP id 5C6D73B000C for ; Wed, 14 Jun 2006 02:52:06 -0400 (EDT) Received: (qmail 50747 invoked by uid 60001); 14 Jun 2006 06:50:59 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=yj20050223; d=yahoo.co.jp; h=Message-ID:Received:Date:From:Subject:To:MIME-Version:Content-Type; b=fKfMo4MtcFdN3Oi44x+rUCTdRh804D+vSygKDCE2SnLqfIE0VSjG32inB55EtTlWaKDRmUId67rQxnl7zaB+WjYH1rDaTntn7UzdA4w9jA/f4iZEZp/9P9n5p/oH5Exk ; Message-ID: <20060614065059.50745.qmail@web3704.mail.tnz.yahoo.co.jp> Received: from [220.98.134.208] by web3704.mail.tnz.yahoo.co.jp via HTTP; Wed, 14 Jun 2006 15:50:59 JST Date: Wed, 14 Jun 2006 15:50:59 +0900 (JST) From: sipieter nicolas Subject: mc bugs To: mc-devel@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-2022-jp X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.709 tagged_above=-999 required=2 tests=[BAYES_50=0.001, DNS_FROM_RFC_POST=1.708] X-Spam-Score: 1.709 X-Spam-Level: * X-Mailman-Approved-At: Thu, 15 Jun 2006 08:58:02 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 06:52:08 -0000 hi there, i would like to say i use a lot mc, it's just great. lately i've been updating my website, and i discovered i could edit my document remotely with mc. (cd /#ftp:bleh:pass@some.ftp.net then push f4 key on the document i wish to edit....) it's really nice but, i've been experiencing problems, at least with the ftp server i use: when i edit documents it take some time, enough to be disconnected from ftp server. in that case mc just re-log me in and properly save the document .. so far so good, but, after a while working like that, mc seems unable from time to time to connect to the ftp server. i even get seg fault, or it just fail to connect randomly.. when this happen, the only choice left is to quit mc and re-launch it .. i would say, i spend between 1 and 10minutes on a document, and i do lots of em per day (maybe 100 or 200minimum) and i have to restart mc at least 20times... i would say something is wrong in the ftp code inside mc. thanks for your time and efforts, mc is really cool to use. -------------------------------------- Let's start Yahoo! Auction - Free Campaign Now! http://pr.mail.yahoo.co.jp/auction/ From ptsekov@gmx.net Sat Jun 17 02:59:14 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 42DB83B0744 for ; Sat, 17 Jun 2006 02:59:14 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11195-01 for ; Sat, 17 Jun 2006 02:59:12 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 7F8FF3B0302 for ; Sat, 17 Jun 2006 02:59:11 -0400 (EDT) Received: (qmail invoked by alias); 17 Jun 2006 06:58:19 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp020) with SMTP; 17 Jun 2006 08:58:19 +0200 X-Authenticated: #14308112 Date: Sat, 17 Jun 2006 09:57:06 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Pavel Roskin Subject: Re: Problems with the mailing list ? In-Reply-To: <1150514179.29738.20.camel@dv> Message-ID: References: <1150514179.29738.20.camel@dv> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 06:59:14 -0000 Hello Pavel, On Fri, 16 Jun 2006, Pavel Roskin wrote: > On Fri, 2006-06-16 at 18:57 +0300, Pavel Tsekov wrote: >> Hello, >> >> Does anyone miss messages from the mc-devel list ? It seems like some >> messages do not reach the mailing list at all while others don't reach >> the mailing list subcsribers. Can anyone confirm or deny this ? > > I have sent an email to the GNOME mailing list administrator. > > I don't see any delays or mail loss, but let's see what would happen to > this message. I got a copy of your reply which you CC-ed directly to me. The message destined to the mailing list is still not here though. I see that the mailing list software at mail.gnome.org has been changed - maybe the administrators are doing some kind of upgrade... From leonard@den.ottolander.nl Sat Jun 17 08:47:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C72863B075D for ; Sat, 17 Jun 2006 08:47:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22117-06 for ; Sat, 17 Jun 2006 08:47:18 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id BDA1E3B03E5 for ; Sat, 17 Jun 2006 08:47:18 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 788374023 for ; Sat, 17 Jun 2006 14:46:35 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id tXpVqRKSrvlX for ; Sat, 17 Jun 2006 14:46:33 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id EA55E4021 for ; Sat, 17 Jun 2006 14:46:32 +0200 (CEST) Subject: Re: mc bugs From: Leonard den Ottolander To: MC development In-Reply-To: <20060614065059.50745.qmail@web3704.mail.tnz.yahoo.co.jp> References: <20060614065059.50745.qmail@web3704.mail.tnz.yahoo.co.jp> Content-Type: text/plain Date: Sat, 17 Jun 2006 14:46:33 +0200 Message-Id: <1150548393.2528.12.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 12:47:22 -0000 Hello Sipieter, On Wed, 2006-06-14 at 15:50 +0900, sipieter nicolas wrote: > but, after a while working like that, mc seems unable from > time to time to connect to the ftp server. i even get seg > fault, or it just fail to connect randomly.. Connection failures are not necessarily a problem with mc (not saying the ftp code is perfect though ;) ). However, if you do see segmentation faults please open a bug report at http://savannah.gnu.org/bugs/?group=mc and attach a backtrace. Don't forget to mention system information and please do *not* report bugs against mc versions before 4.6.1. (Use ulimit -c 99999 to enable core dumps on your system. Use gdb and the bt command to get a backtrace.) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Sat Jun 17 08:54:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9B7C83B03E5 for ; Sat, 17 Jun 2006 08:54:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22162-08 for ; Sat, 17 Jun 2006 08:54:26 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 81F0C3B0165 for ; Sat, 17 Jun 2006 08:54:25 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id AAF4B4023; Sat, 17 Jun 2006 14:52:42 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id MvD+6iJVdikt; Sat, 17 Jun 2006 14:52:39 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 205F44021; Sat, 17 Jun 2006 14:52:39 +0200 (CEST) Subject: Bugzilla submits only against >= 4.6.1 From: Leonard den Ottolander To: Pavel Roskin Content-Type: text/plain Date: Sat, 17 Jun 2006 14:52:38 +0200 Message-Id: <1150548759.2528.20.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 12:54:27 -0000 Hello Pavel, IMO it doesn't make much sense for people to be able to report bugs against mc versions older than 4.6.1. I presume most developers will agree with me (please protest if not). Could you please update the Savannah bugs "Release" drop down menu to only contain the following elements? older than 4.6.1 (upgrade first!) 4.6.1 current (CVS or snapshot) I don't think we need the entries "All versions" and "None" but these might be hard coded default entries. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Sat Jun 17 09:02:22 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B72163B0165 for ; Sat, 17 Jun 2006 09:02:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22628-01 for ; Sat, 17 Jun 2006 09:02:21 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3F8343B000D for ; Sat, 17 Jun 2006 09:02:21 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FraOq-0003fU-00; Sat, 17 Jun 2006 08:59:40 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sat, 17 Jun 2006 14:59:39 +0200 Date: Sat, 17 Jun 2006 14:59:39 +0200 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060617-145938.sv26390.15283@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > <20060615-222730.sv50251.60290@savannah.gnu.org> In-Reply-To: <20060615-222730.sv50251.60290@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.552 tagged_above=-999 required=2 tests=[AWL=0.048, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.552 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 09:19:08 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 13:02:22 -0000 Follow-up Comment #21, bug #16762 (project mc): If Roland doesn't feel the need to add any remarks to this approach I suppose this patch can be submitted and this report closed. (I did not verify the code other than glancing over it, but I trust it to be ok ;) .) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sat Jun 17 11:52:37 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id DC5333B00A7 for ; Sat, 17 Jun 2006 11:52:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26174-02 for ; Sat, 17 Jun 2006 11:52:35 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 81C363B000D for ; Sat, 17 Jun 2006 11:52:35 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Frd56-0001Zf-00; Sat, 17 Jun 2006 11:51:28 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sat, 17 Jun 2006 18:51:25 +0300 Date: Sat, 17 Jun 2006 18:51:25 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Opera/8.51 (Windows ME; U; en) X-Apparently-From: 87.126.52.205 (Savane authenticated user ptsekov) Message-Id: <20060617-185125.sv36205.47362@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > <20060615-222730.sv50251.60290@savannah.gnu.org> <20060617-145938.sv26390.15283@savannah.gnu.org> In-Reply-To: <20060617-145938.sv26390.15283@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.514 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TV=0.077] X-Spam-Score: -2.514 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 09:19:08 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 15:52:37 -0000 Update of bug #16762 (project mc): Status: None => Fixed Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #22: I've just commited the patch. It should be OK. It was tested and reported to work by Pavel Shirshov, purportex and yaroslav. If coreutils configure tests are modified to include tests for: 1) the presence of field f_fstypename in struct statvfs 2) the type of the first argument ot getmntinfo() we will remove the homebrew tests from AC_GET_FS_INFO and use those provided by coreutils. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sat Jun 17 15:48:22 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4F4D33B074C for ; Sat, 17 Jun 2006 15:48:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05618-08 for ; Sat, 17 Jun 2006 15:48:21 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id C83323B01A6 for ; Sat, 17 Jun 2006 15:48:20 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrgRN-0008Lb-00; Sat, 17 Jun 2006 15:26:41 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sat, 17 Jun 2006 21:26:40 +0200 Date: Sat, 17 Jun 2006 21:26:40 +0200 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060617-212640.sv26390.65809@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > <20060615-222730.sv50251.60290@savannah.gnu.org> <20060617-145938.sv26390.15283@savannah.gnu.org> <20060617-185125.sv36205.47362@savannah.gnu.org> In-Reply-To: <20060617-185125.sv36205.47362@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.514 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TV=0.077] X-Spam-Score: -2.514 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 09:19:08 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 19:48:22 -0000 Follow-up Comment #23, bug #16762 (project mc): > If coreutils configure tests are modified to include tests for: > > 1) the presence of field f_fstypename in struct statvfs > > 2) the type of the first argument ot getmntinfo() > > we will remove the homebrew tests from AC_GET_FS_INFO and use > those provided by coreutils. Have you contacted the coreutils maintainers about this? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sat Jun 17 15:48:23 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9AC3F3B033C for ; Sat, 17 Jun 2006 15:48:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05730-03 for ; Sat, 17 Jun 2006 15:48:21 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 688E63B02E2 for ; Sat, 17 Jun 2006 15:48:21 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrgZ2-0001NR-00; Sat, 17 Jun 2006 15:34:36 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sat, 17 Jun 2006 22:34:36 +0300 Date: Sat, 17 Jun 2006 22:34:36 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Opera/8.51 (Windows ME; U; en) X-Apparently-From: 87.126.52.205 (Savane authenticated user ptsekov) Message-Id: <20060617-223436.sv36205.11011@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > <20060615-222730.sv50251.60290@savannah.gnu.org> <20060617-145938.sv26390.15283@savannah.gnu.org> <20060617-185125.sv36205.47362@savannah.gnu.org> <20060617-212640.sv26390.65809@savannah.gnu.org> In-Reply-To: <20060617-212640.sv26390.65809@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.552 tagged_above=-999 required=2 tests=[AWL=0.048, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.552 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 09:19:08 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 19:48:23 -0000 Follow-up Comment #24, bug #16762 (project mc): No. Maybe you can drop them a message ? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 10:58:13 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B73953B08E2 for ; Sun, 18 Jun 2006 10:58:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31385-03 for ; Sun, 18 Jun 2006 10:58:12 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id DED683B0078 for ; Sun, 18 Jun 2006 10:58:11 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrygF-0006eY-00; Sun, 18 Jun 2006 10:55:15 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 14:55:15 +0000 Date: Sun, 18 Jun 2006 14:55:15 +0000 To: hajma , mc-devel@gnome.org Subject: [bug #16871] czech translation - description overlaps in the chmod dialogue From: hajma X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16871 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060531 Mandriva/1.5.0.4-1mdv2007.0 (2007.0) Firefox/1.5.0.4 X-Apparently-From: 82.208.37.13 (Savane authenticated user tropikhajma) Message-Id: <20060618-145515.sv50336.41107@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.555 tagged_above=-999 required=2 tests=[AWL=0.045, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.555 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 14:58:13 -0000 URL: Summary: czech translation - description overlaps in the chmod dialogue Project: GNU Midnight Commander Submitted by: tropikhajma Submitted on: Sunday 06/18/2006 at 14:55 Category: None Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Linux _______________________________________________________ Details: see screenshot: ftp://tropikhajma.vserver.cz/bugs/mc.png the first two lines of the "File" rectangle get overwritten by text from the "mode" rectangle. IMHO replacing číslo uĹživatele with UID would make it. Side note: caron is missing above the second e in "změne" and the word "nastavenĂ­" should follow the word "změně" _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 11:22:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 468D33B0CB2 for ; Sun, 18 Jun 2006 11:22:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00310-01 for ; Sun, 18 Jun 2006 11:22:30 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 482A53B0CD0 for ; Sun, 18 Jun 2006 11:22:29 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Frymc-0007y2-00; Sun, 18 Jun 2006 11:01:50 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 15:01:50 +0000 Date: Sun, 18 Jun 2006 15:01:50 +0000 To: Istvan Kispal , mc-devel@gnome.org Subject: [bug #16872] ftpfs lists directories begining with '2006 ' incorrectly From: Istvan Kispal X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16872 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.4) Gecko/20060508 Firefox/1.5.0.4 X-Apparently-From: 81.183.183.18 (Savane authenticated user kispaljr) Message-Id: <20060618-150150.sv50338.79195@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.554 tagged_above=-999 required=2 tests=[AWL=0.046, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.554 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 15:22:36 -0000 URL: Summary: ftpfs lists directories begining with '2006 ' incorrectly Project: GNU Midnight Commander Submitted by: kispaljr Submitted on: Sunday 06/18/2006 at 15:01 Category: VFS Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Linux _______________________________________________________ Details: if a directory on an ftp server has the following subdirectories: 1990 06 19 hetfo 2005 06 23 akarmi 2006 06 23 akarmi then they are listed in mc (console mode version, using ftpfs) incorrectly as: 06 19 hetfo 06 23 akarmi 06 23 akarmi if you type cd 2006 06 19 hetfo manually then you can cd into the subdir, but not with taping enter on the (incorrectly listed) directory name. it's rather uncomofortable. _______________________________________________________ Carbon-Copy List: CC Address | Comment ------------------------------------+----------------------------- kispaljr | _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 11:34:10 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D616B3B0CB1 for ; Sun, 18 Jun 2006 11:34:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00460-07 for ; Sun, 18 Jun 2006 11:34:09 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 78DD03B0C2B for ; Sun, 18 Jun 2006 11:34:09 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrzGu-0005Zh-00; Sun, 18 Jun 2006 11:33:08 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 17:33:07 +0200 Date: Sun, 18 Jun 2006 17:33:07 +0200 To: hajma , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16871] czech translation - description overlaps in the chmod dialogue From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16871 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060618-173307.sv26390.76425@savannah.gnu.org> References: <20060618-145515.sv50336.41107@savannah.gnu.org> In-Reply-To: <20060618-145515.sv50336.41107@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.554 tagged_above=-999 required=2 tests=[AWL=0.046, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.554 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 15:34:11 -0000 Update of bug #16871 (project mc): Status: None => Need Info Assigned to: None => leonardjo _______________________________________________________ Follow-up Comment #1: Please provide a patch. Mske sure you use the correct character set in the file. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 12:09:52 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3B8693B0CD1 for ; Sun, 18 Jun 2006 12:09:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01904-07 for ; Sun, 18 Jun 2006 12:09:51 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 113B43B0CD5 for ; Sun, 18 Jun 2006 12:09:51 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Frzol-0007KE-00; Sun, 18 Jun 2006 12:08:07 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 18:08:05 +0200 Date: Sun, 18 Jun 2006 18:08:05 +0200 To: Istvan Kispal , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16872] ftpfs lists directories begining with '2006 ' incorrectly From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16872 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060618-180805.sv26390.79688@savannah.gnu.org> References: <20060618-150150.sv50338.79195@savannah.gnu.org> In-Reply-To: <20060618-150150.sv50338.79195@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 16:09:52 -0000 Update of bug #16872 (project mc): Status: None => Duplicate Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #1: Be so kind to check for exisiting reports before submitting new reports. This is a duplicate of 10645 and 4327. This issue has been fixed in CVS. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 12:13:08 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8693F3B0CC5 for ; Sun, 18 Jun 2006 12:12:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02109-10 for ; Sun, 18 Jun 2006 12:12:49 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id E95503B0AA3 for ; Sun, 18 Jun 2006 12:12:48 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Frzpt-0007L8-00; Sun, 18 Jun 2006 12:09:17 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 16:09:17 +0000 Date: Sun, 18 Jun 2006 16:09:17 +0000 To: hajma , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16871] czech translation - description overlaps in the chmod dialogue From: hajma X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16871 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060531 Mandriva/1.5.0.4-1mdv2007.0 (2007.0) Firefox/1.5.0.4 X-Apparently-From: 82.208.37.13 (Savane authenticated user tropikhajma) Message-Id: <20060618-160916.sv50336.88803@savannah.gnu.org> References: <20060618-145515.sv50336.41107@savannah.gnu.org> <20060618-173307.sv26390.76425@savannah.gnu.org> In-Reply-To: <20060618-173307.sv26390.76425@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 16:13:09 -0000 Follow-up Comment #2, bug #16871 (project mc): I found out that the bug was fixed in revision 1.67 of cs.po, it just didn't make it into mc-4.6.1 in Mandriva Cooker I'm using. as regards the side note I attach corrected cs.po that fixes it. _______________________________________________________ Additional Item Attachment: File name: cs.po Size:73 KB cs.po _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 12:13:09 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 82DF63B0C4F for ; Sun, 18 Jun 2006 12:12:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01996-09 for ; Sun, 18 Jun 2006 12:12:49 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 690A33B0C35 for ; Sun, 18 Jun 2006 12:12:48 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrzsE-0007MO-00; Sun, 18 Jun 2006 12:11:42 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 18:11:42 +0200 Date: Sun, 18 Jun 2006 18:11:42 +0200 To: hajma , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16871] czech translation - description overlaps in the chmod dialogue From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16871 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060618-181142.sv26390.23707@savannah.gnu.org> References: <20060618-145515.sv50336.41107@savannah.gnu.org> <20060618-173307.sv26390.76425@savannah.gnu.org> <20060618-160916.sv50336.88803@savannah.gnu.org> In-Reply-To: <20060618-160916.sv50336.88803@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 16:13:09 -0000 Update of bug #16871 (project mc): Status: Need Info => Invalid Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #3: Ok. Closing "invalid" as the issue didn't exist anymore when the issue was reported. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From proski@gnu.org Mon Jun 19 17:50:46 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 51A1F3B05A8 for ; Mon, 19 Jun 2006 17:50:46 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02882-07 for ; Mon, 19 Jun 2006 17:50:45 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id A34B13B03BA for ; Mon, 19 Jun 2006 17:50:44 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FsRcm-00020v-BN for mc-devel@gnome.org; Mon, 19 Jun 2006 17:49:36 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FsRcg-0003zX-7s; Mon, 19 Jun 2006 17:49:30 -0400 Subject: Re: Bugzilla submits only against >= 4.6.1 From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150548759.2528.20.camel@athlon> References: <1150548759.2528.20.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Mon, 19 Jun 2006 17:49:30 -0400 Message-Id: <1150753770.12841.19.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 21:50:46 -0000 Hello! On Sat, 2006-06-17 at 14:52 +0200, Leonard den Ottolander wrote: > Hello Pavel, > > IMO it doesn't make much sense for people to be able to report bugs > against mc versions older than 4.6.1. I presume most developers will > agree with me (please protest if not). > > Could you please update the Savannah bugs "Release" drop down menu to > only contain the following elements? > > older than 4.6.1 (upgrade first!) > 4.6.1 > current (CVS or snapshot) I think that would be solving a social problem using technical means. If you check Red Hat's Bugzilla you'll see that it's possible to enter a bug e.g. for Fedora Core 1. Some bugs can be more long-lived than you may think. I believe the quality of the bug report should be judged not only by the version. Bugs against old versions should be discouraged, but not outright forbidden. Besides, there is only one bug filed for "older than 4.5.55". > I don't think we need the entries "All versions" and "None" but these > might be hard coded default entries. "None" is hardcoded, "All versions" is not. I think "all version" is a valid value in some cases. -- Regards, Pavel Roskin From leonard@den.ottolander.nl Mon Jun 19 19:04:28 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5EEEE3B0A79 for ; Mon, 19 Jun 2006 19:04:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06061-07 for ; Mon, 19 Jun 2006 19:04:27 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id DF06B3B0335 for ; Mon, 19 Jun 2006 19:04:26 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id BFCB94023; Tue, 20 Jun 2006 01:02:55 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 752vGUiocrMK; Tue, 20 Jun 2006 01:02:50 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 25F3E4021; Tue, 20 Jun 2006 01:02:50 +0200 (CEST) Subject: Re: Bugzilla submits only against >= 4.6.1 From: Leonard den Ottolander To: Pavel Roskin In-Reply-To: <1150753770.12841.19.camel@dv> References: <1150548759.2528.20.camel@athlon> <1150753770.12841.19.camel@dv> Content-Type: text/plain Date: Tue, 20 Jun 2006 01:02:49 +0200 Message-Id: <1150758169.2571.7.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 23:04:28 -0000 Hello Pavel, On Mon, 2006-06-19 at 17:49 -0400, Pavel Roskin wrote: > Some bugs can be more long-lived than you may think. I believe the > quality of the bug report should be judged not only by the version. > Bugs against old versions should be discouraged, but not outright > forbidden. > > Besides, there is only one bug filed for "older than 4.5.55". I didn't mean old bugs should be removed from the bug list. I just feel it doesn't make much sense for people to file new bugs against anything older than 4.6.1. There is no added value to let people add bugs against older versions. If the issue no longer exists it's just wasted time, and if it does still exist the reporter should make the effort to verify the issue indeed still exists in 4.6.1 or later. > "None" is hardcoded, "All versions" is not. I think "all version" is a > valid value in some cases. Yes, but only if you keep all the other versions as valid options. If we'd drop anything but latest stable and CVS there's not much use leaving "all versions" around. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From proski@gnu.org Tue Jun 20 14:08:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1A9943B02AC for ; Tue, 20 Jun 2006 14:08:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02911-01 for ; Tue, 20 Jun 2006 14:08:18 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id 921CB3B000C for ; Tue, 20 Jun 2006 14:08:18 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1Fskdk-00031J-4G for mc-devel@gnome.org; Tue, 20 Jun 2006 14:08:01 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FskdX-0005Ef-Ch; Tue, 20 Jun 2006 14:07:39 -0400 Subject: Re: Bugzilla submits only against >= 4.6.1 From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150758169.2571.7.camel@athlon> References: <1150548759.2528.20.camel@athlon> <1150753770.12841.19.camel@dv> <1150758169.2571.7.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 20 Jun 2006 14:07:39 -0400 Message-Id: <1150826859.1969.7.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.595 tagged_above=-999 required=2 tests=[AWL=0.005, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.595 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 18:08:27 -0000 On Tue, 2006-06-20 at 01:02 +0200, Leonard den Ottolander wrote: > I didn't mean old bugs should be removed from the bug list. I just feel > it doesn't make much sense for people to file new bugs against anything > older than 4.6.1. > > There is no added value to let people add bugs against older versions. Anyone who takes time to file a new bug is adding some value to the project. It may be more or less valuable, but we shouldn't give the impression that we don't want to hear about the problem. > If the issue no longer exists it's just wasted time, and if it does > still exist the reporter should make the effort to verify the issue > indeed still exists in 4.6.1 or later. Ideally, yes. But not everyone can do it. It's better to have 10 reports for already fixed bugs and one for a bug that still exists than to have neither of them. If you have an example where time was wasted as a result of the availability of the older versions in the bug tracker, I may reconsider. > > "None" is hardcoded, "All versions" is not. I think "all version" is a > > valid value in some cases. > > Yes, but only if you keep all the other versions as valid options. If > we'd drop anything but latest stable and CVS there's not much use > leaving "all versions" around. I generally assume the bug reporters to be intelligent persons who can make there own judgment how to file a bug. -- Regards, Pavel Roskin From ptsekov@gmx.net Tue Jun 20 14:28:43 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 409073B08C6 for ; Tue, 20 Jun 2006 14:28:43 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04451-05 for ; Tue, 20 Jun 2006 14:28:38 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 586743B06E3 for ; Tue, 20 Jun 2006 14:28:33 -0400 (EDT) Received: (qmail invoked by alias); 20 Jun 2006 18:28:32 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp034) with SMTP; 20 Jun 2006 20:28:32 +0200 X-Authenticated: #14308112 Date: Tue, 20 Jun 2006 21:27:19 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: "Stan. S. Krupoderov" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <20060620060123.GD99474@inode.hvn> Message-ID: References: <20060620060123.GD99474@inode.hvn> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: mc@gnome.org, MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 18:28:43 -0000 Hello Stan, On Tue, 20 Jun 2006, Stan. S. Krupoderov wrote: > This Midnight Commander build is modified to use Colorer-take5 as a syntax highlighting engine in standard mc editor. > http://colorer.sourceforge.net/mc.html That's just great! > Maybe it can be useful for someone. Any opinions? Sure it will! Some time ago I tried myself to get colorer to work with MC. Unfortunately due to time constraints I abandoned the idea - I just didn't have enough time to study how colorer works properly. I've downloaded MC-Colorer's source tarball today and I took a look at the code. Though I haven't studied the code in depth I can say that it seems pretty high quality. After all it is written by the colorer's author himself - who could understand better how colorer works :) I'll try to contact him and see what he thinks about integrating his work into MC's source tree. It would be also very useful if we could use the work done on MC-Colorer to get syntax highlighting in the viewer too - this was one of the tasks I was trying to achieve when I started investigating colorer. Thanks! From irusskih@gmail.com Wed Jun 21 08:50:40 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6E7343B0F9B for ; Wed, 21 Jun 2006 08:50:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05808-06 for ; Wed, 21 Jun 2006 08:50:35 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.198]) by menubar.gnome.org (Postfix) with ESMTP id 0490A3B0FE0 for ; Wed, 21 Jun 2006 08:50:33 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id s1so170251nze for ; Wed, 21 Jun 2006 05:50:33 -0700 (PDT) Received: by 10.37.13.61 with SMTP id q61mr445036nzi; Wed, 21 Jun 2006 05:50:33 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Wed, 21 Jun 2006 05:50:33 -0700 (PDT) Message-ID: <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> Date: Wed, 21 Jun 2006 16:50:33 +0400 From: "Igor Russkih" To: mc@gnome.org, mc-devel@gnome.org Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_Part_1775_638873.1150894233203" References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.225 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, HTML_30_40=0.374, HTML_MESSAGE=0.001, SPF_PASS=-0.001] X-Spam-Score: -2.225 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 12:50:40 -0000 ------=_Part_1775_638873.1150894233203 Content-Type: multipart/alternative; boundary="----=_Part_1776_131830.1150894233203" ------=_Part_1776_131830.1150894233203 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi Pavel, Hi All, I'll be really glad to help to improve MC in this area, I've downloaded MC-Colorer's source tarball today and I took > a look at the code. Though I haven't studied the code in depth > I can say that it seems pretty high quality. After all it is > written by the colorer's author himself - who could understand > better how colorer works :) I'll try to contact him and see what > he thinks about integrating his work into MC's source tree. It If somebody is interested, attached is a full diff on MC tree to support colorer. For now I'm using sf.net SVN repository to store modified MC code. Information on how to access it: http://sourceforge.net/svn/?group_id=34855 There are also some questions which I believe should be discussed. At first there is one C++ file in this mod (to link with c++ colorer code). As far as I understand MC uses C only. Is this a problem? Another is that this mod dynamically links to the libcolorer - this means that to use it, colorer library should be installed in system. This introduces MC additional dependency. would be also very useful if we could use the work done on MC-Colorer > to get syntax highlighting in the viewer too - this was one of the > tasks I was trying to achieve when I started investigating colorer. > That's a good idea, I'll try investigate it in near time. -- Igor ------=_Part_1776_131830.1150894233203 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline
Hi Pavel, Hi All,

I'll be really glad to help to improve MC in this area,

I've downloaded MC-Colorer's source tarball today and I took
a look at the code. Though I haven't studied the code in depth
I can say that it seems pretty high quality. After all it is
written by the colorer's author himself - who could understand
better how colorer works :) I'll try to contact him and see what
he thinks about integrating his work into MC's source tree. It

If somebody is interested, attached is a full diff on MC tree to support colorer.

For now I'm using sf.net SVN repository to store modified MC code.
Information on how to access it: http://sourceforge.net/svn/?group_id=34855

There are also some questions which I believe should be discussed.
At first there is one C++ file in this mod (to link with c++ colorer code). As far as I understand MC uses C only. Is this a problem?
Another is that this mod dynamically links to the libcolorer - this means that to use it, colorer library should be installed in system. This introduces MC additional dependency.

would be also very useful if we could use the work done on MC-Colorer
to get syntax highlighting in the viewer too - this was one of the
tasks I was trying to achieve when I started investigating colorer.

That's a good idea, I'll try investigate it in near time.

--
  Igor


------=_Part_1776_131830.1150894233203-- ------=_Part_1775_638873.1150894233203 Content-Type: application/x-gzip; name=mccolorer.diff.gz Content-Transfer-Encoding: base64 X-Attachment-Id: f_eopn4lol Content-Disposition: attachment; filename="mccolorer.diff.gz" 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 /wGW3psI2yABAA== ------=_Part_1775_638873.1150894233203-- From leonard@den.ottolander.nl Wed Jun 21 10:03:05 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E951D3B103C for ; Wed, 21 Jun 2006 10:03:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10784-07 for ; Wed, 21 Jun 2006 10:03:01 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 0180D3B1033 for ; Wed, 21 Jun 2006 10:03:00 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id DDE3C4023; Wed, 21 Jun 2006 16:02:57 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id M5kjYx2Phqne; Wed, 21 Jun 2006 16:02:54 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 05A1E4021; Wed, 21 Jun 2006 16:02:53 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: Igor Russkih In-Reply-To: <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> Content-Type: text/plain Date: Wed, 21 Jun 2006 16:02:52 +0200 Message-Id: <1150898573.2801.45.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 14:03:05 -0000 Hello Igor, On Wed, 2006-06-21 at 16:50 +0400, Igor Russkih wrote: > I'll be really glad to help to improve MC in this area, This looks really nice. I'm very exited. With just minor patching to the xml (introduction of ControlKeyword, eg "if", "else" etc.) and a custom colour scheme I've already got the php syntax looking much like the original in mc (where can I send patches? Is there a mailing list for colorer?). Only have to look at the String type as we normally distinguish between single quoted (FixedString) and double quoted (VariableString) in php (and perl too for that matter). Although the startup of the viewer seems a bit slow with colorer this has much added value over the default syntax highlighting, and although I think we could well include the colorer hooks in the main mc tree I don't believe we should drop the existing highlighting, over even make colorer the default. Firstly the default syntax is more lightweight, which some people might prefer. Secondly the use of colorer requires the installation of a(n extra) third party library. > If somebody is interested, attached is a full diff on MC tree to > support colorer. Is this a fully functional patch? Much lighter than the diff I got diffing your tarball against CVS :) . In that patch I noticed a couple of things: - You got rid of the COPYING.LGPL file in vfs. I think this might be a mistake on your part. You might want to rectify that for your version. - In your version you got rid of the pipethrough files. This has no bearing on us as it's not in your patch. - There are a lot of fixes to the po files and some to the Russian and Serbian(?) man page. Please submit these to this list separately. - I noticed a CR here and there. There seem to be even more in the patch you sent. Please get rid of those (fe with dos2unix). - You made some fixes to the config files as well that seem same. Please submit those separately for review. - I noticed changes in vfs/samba/configure. Most of this are somewhat odd whitespace changes, but there appear to be some hunks at the top and bottom to actually do something. Please submit (not the whitespace) :) . - Why did you get rid of vfs/extfs/README.it? (not much of an issue) - There are a lot of added comments/fixes in config.h.in that I do not see in your patch. Please submit separately. > For now I'm using sf.net SVN repository to store modified MC code. > Information on how to access it: > http://sourceforge.net/svn/?group_id=34855 Good to know. > There are also some questions which I believe should be discussed. > At first there is one C++ file in this mod (to link with c++ colorer > code). As far as I understand MC uses C only. Is this a problem? Yes, it might. The overall approach towards accepted language constructs is a bit conservative to maintain compatibility with older systems. Would it be much work to rewrite these parts? > Another is that this mod dynamically links to the libcolorer - this > means that to use it, colorer library should be installed in system. > This introduces MC additional dependency. This is why I do not want to make colorer the default. I think this is something we should leave to the distributions. > to get syntax highlighting in the viewer too > That's a good idea, I'll try investigate it in near time. That would be great. Thanks a lot! Leonard. P.S. Could you please set your mail client to produce plain text mails and use an indentation character and a "replying to" line for quotes? -- mount -t life -o ro /dev/dna /genetic/research From ptsekov@gmx.net Wed Jun 21 10:28:00 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8E9D53B106A for ; Wed, 21 Jun 2006 10:28:00 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12487-02 for ; Wed, 21 Jun 2006 10:27:59 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 7C4863B106C for ; Wed, 21 Jun 2006 10:27:58 -0400 (EDT) Received: (qmail invoked by alias); 21 Jun 2006 14:27:57 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp032) with SMTP; 21 Jun 2006 16:27:57 +0200 X-Authenticated: #14308112 Date: Wed, 21 Jun 2006 17:26:43 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole Cc: MC development Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150898573.2801.45.camel@athlon> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 14:28:00 -0000 On Wed, 21 Jun 2006, Leonard den Ottolander wrote: >> There are also some questions which I believe should be discussed. >> At first there is one C++ file in this mod (to link with c++ colorer >> code). As far as I understand MC uses C only. Is this a problem? > > Yes, it might. The overall approach towards accepted language constructs > is a bit conservative to maintain compatibility with older systems. > Would it be much work to rewrite these parts? Yes it will take a lot of work - colorer is written entirely in C++ . Thus there is a thin wrapper to translate from C to C++ and vice versa. In my opinion this is not a big deal and a necessary sacrifice. For system which do not have C++ support obviously colorer syntax highlighting would be disabled by configure. Since I have tried to embed colorer in MC in the past I have configure code that deals with those issues. >> Another is that this mod dynamically links to the libcolorer - this >> means that to use it, colorer library should be installed in system. >> This introduces MC additional dependency. > > This is why I do not want to make colorer the default. I think this is > something we should leave to the distributions. This we are not going to make it the default (at least not at this time). This can be achieved with configure too - I have code for that too. I still haven't looked at the patch that Igor sent today but I'll do that as soon as I get some free time. I am willing to make the necessary changes to MC to adopt Igor's patch. I think patch has great value. From leonard@den.ottolander.nl Wed Jun 21 11:04:35 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 10A383B0FA5 for ; Wed, 21 Jun 2006 11:04:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15002-05 for ; Wed, 21 Jun 2006 11:04:34 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id CE3943B0FDD for ; Wed, 21 Jun 2006 11:04:33 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id BE3F44023 for ; Wed, 21 Jun 2006 17:04:32 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id nGjmWqt66RAz for ; Wed, 21 Jun 2006 17:04:31 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 428F34021 for ; Wed, 21 Jun 2006 17:04:31 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> Content-Type: text/plain Date: Wed, 21 Jun 2006 17:04:30 +0200 Message-Id: <1150902270.2801.52.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 15:04:35 -0000 Hello Pavel, On Wed, 2006-06-21 at 17:26 +0300, Pavel Tsekov wrote: > Yes it will take a lot of work - colorer is written entirely in C++ . > Thus there is a thin wrapper to translate from C to C++ and vice > versa. In my opinion this is not a big deal and a necessary sacrifice. I'm not sure what you say here: Is it a necessary sacrifice to port syntax-colorer.cpp to c or is it a necessary sacrifice to include c++ code into the tree? I'd rather go for the first option. > This can be achieved with configure too - I have code for that too. All it needs is the current default in the patch to change. > I still haven't looked at the patch that Igor sent today but I'll > do that as soon as I get some free time. I am willing to make the > necessary changes to MC to adopt Igor's patch. Maybe Igor is just as willing to make some changes to the patch for mc to adopt it ;) . > I think patch has great value. We totally agree then :-) . Leonard. -- mount -t life -o ro /dev/dna /genetic/research From ptsekov@gmx.net Wed Jun 21 11:46:22 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6005D3B106E for ; Wed, 21 Jun 2006 11:46:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18001-02 for ; Wed, 21 Jun 2006 11:46:20 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 72F443B1076 for ; Wed, 21 Jun 2006 11:46:19 -0400 (EDT) Received: (qmail invoked by alias); 21 Jun 2006 15:46:17 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp036) with SMTP; 21 Jun 2006 17:46:17 +0200 X-Authenticated: #14308112 Date: Wed, 21 Jun 2006 18:45:04 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150902270.2801.52.camel@athlon> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <1150902270.2801.52.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 15:46:22 -0000 On Wed, 21 Jun 2006, Leonard den Ottolander wrote: > Hello Pavel, > > On Wed, 2006-06-21 at 17:26 +0300, Pavel Tsekov wrote: >> Yes it will take a lot of work - colorer is written entirely in C++ . >> Thus there is a thin wrapper to translate from C to C++ and vice >> versa. In my opinion this is not a big deal and a necessary sacrifice. > > I'm not sure what you say here: Is it a necessary sacrifice to port > syntax-colorer.cpp to c or is it a necessary sacrifice to include c++ > code into the tree? I'd rather go for the first option. You cannot avoid the inclusion of C++ code. colorer is written in C++ and as such it cannot be linked directly with MC. You'll need a wrapper which must be compiled with C++ compiler. We can discuss however where to put that code ? It can be moved into a directory of its own or it can be left where it is now. From INVALID.NOREPLY@gnu.org Wed Jun 21 13:36:11 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B39933B0646 for ; Wed, 21 Jun 2006 13:36:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25350-05 for ; Wed, 21 Jun 2006 13:36:07 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 95CA53B0578 for ; Wed, 21 Jun 2006 13:36:05 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6cP-0008Df-00; Wed, 21 Jun 2006 13:35:57 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:35:56 +0200 Date: Wed, 21 Jun 2006 19:35:56 +0200 To: SGh , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16303] More functionally u7z From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16303 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-193556.sv26390.77497@savannah.gnu.org> References: <20060408-134359.sv45177.11632@savannah.gnu.org> <20060408-134508.sv45177.86924@savannah.gnu.org> <20060408-134854.sv45177.29103@savannah.gnu.org> <20060518-165152.sv36205.74443@savannah.gnu.org> <20060530-195233.sv45177.57929@savannah.gnu.org> In-Reply-To: <20060530-195233.sv45177.57929@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.558 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.558 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:36:11 -0000 Follow-up Comment #4, bug #16303 (project mc): It's easier to see what changed (and if there are unwanted regressions) if you patch the existing version instead of writing a new version from scratch. So if you want to get any improvements considered for inclusion you will have to rewrite your patch. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 13:37:06 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 36E093B014E for ; Wed, 21 Jun 2006 13:37:06 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25325-10 for ; Wed, 21 Jun 2006 13:37:04 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 66A103B059D for ; Wed, 21 Jun 2006 13:37:04 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6cj-0008JI-00; Wed, 21 Jun 2006 13:36:17 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:36:17 +0200 Date: Wed, 21 Jun 2006 19:36:17 +0200 To: Rudolf Polzer , Oswald Buddenhagen , Roland Illig , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16452] mcedit forgets POSIX newline at end of file From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16452 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-193617.sv26390.27833@savannah.gnu.org> References: <20060427-072754.sv49027.45360@savannah.gnu.org> <20060427-180523.sv41304.99027@savannah.gnu.org> <20060427-214753.sv49027.21116@savannah.gnu.org> <20060427-215010.sv49027.73709@savannah.gnu.org> <20060429-101230.sv20990.85981@savannah.gnu.org> <20060429-102521.sv41304.56758@savannah.gnu.org> <20060429-091823.sv49027.23806@savannah.gnu.org> In-Reply-To: <20060429-091823.sv49027.23806@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.559 tagged_above=-999 required=2 tests=[AWL=0.041, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.559 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:37:06 -0000 Follow-up Comment #7, bug #16452 (project mc): Any patches forthcoming? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 13:37:35 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 426863B04F6 for ; Wed, 21 Jun 2006 13:37:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25593-02 for ; Wed, 21 Jun 2006 13:37:34 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id E733D3B0494 for ; Wed, 21 Jun 2006 13:37:33 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6dv-0008Pw-00; Wed, 21 Jun 2006 13:37:31 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:37:31 +0200 Date: Wed, 21 Jun 2006 19:37:31 +0200 To: Rolf Offermanns , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16383] Build system does not allow cross compiling From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16383 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-193731.sv26390.16849@savannah.gnu.org> References: <20060419-132319.sv48822.2441@savannah.gnu.org> In-Reply-To: <20060419-132319.sv48822.2441@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.56 tagged_above=-999 required=2 tests=[AWL=0.040, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.56 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:37:35 -0000 Follow-up Comment #1, bug #16383 (project mc): Please provide a patch. Thanks. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 13:47:41 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1B4753B063E for ; Wed, 21 Jun 2006 13:47:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26098-05 for ; Wed, 21 Jun 2006 13:47:39 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 2A6D33B00B0 for ; Wed, 21 Jun 2006 13:47:39 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6nT-0001MS-00; Wed, 21 Jun 2006 13:47:23 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:47:23 +0200 Date: Wed, 21 Jun 2006 19:47:23 +0200 To: PB , Leonard den Ottolander , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #15621] file/dir entries with international characters mess up the columns From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 15621 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-194722.sv26390.13446@savannah.gnu.org> References: <20060204-101232.sv47152.80354@savannah.gnu.org> <20060211-093708.sv47312.65124@savannah.gnu.org> In-Reply-To: <20060211-093708.sv47312.65124@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.561 tagged_above=-999 required=2 tests=[AWL=0.039, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.561 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:47:41 -0000 Update of bug #15621 (project mc): Status: None => Duplicate Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #2: This is a duplicate of bug 7936 and bug 15100. Please check for existing bug reports before submitting. If you do submit please specify your platform, the version of mc used and if any patches have been applied. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Wed Jun 21 14:07:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5C2753B0706 for ; Wed, 21 Jun 2006 14:07:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27026-09 for ; Wed, 21 Jun 2006 14:07:15 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 1053F3B0733 for ; Wed, 21 Jun 2006 14:07:15 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 257144023; Wed, 21 Jun 2006 20:07:14 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id tHnFxEPUHYqg; Wed, 21 Jun 2006 20:07:12 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 513C24021; Wed, 21 Jun 2006 20:07:12 +0200 (CEST) Subject: Progress bar From: Leonard den Ottolander To: Pavel Tsekov Content-Type: text/plain Date: Wed, 21 Jun 2006 20:07:11 +0200 Message-Id: <1150913231.2801.73.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 18:07:16 -0000 Hello Pavel, Looking at bugs 10507 and 13100. The patch from Hampa Hug that you've committed should fix the issue for moving files. Does it also fix the issue when copying files? Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Wed Jun 21 14:07:52 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 025663B06D1 for ; Wed, 21 Jun 2006 14:07:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27422-01 for ; Wed, 21 Jun 2006 14:07:49 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id DD4563B05EB for ; Wed, 21 Jun 2006 14:07:48 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft778-00051S-00; Wed, 21 Jun 2006 14:07:42 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 20:07:42 +0200 Date: Wed, 21 Jun 2006 20:07:42 +0200 To: Thomas Zajic , Leonard den Ottolander , Oleg Broytmann , Rihards , mc-devel@gnome.org Subject: [bug #13100] Bytes and Count progess bars when moving multiple files From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 13100 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-200741.sv26390.85621@savannah.gnu.org> References: <20050516-170931.sv14402.91225@savannah.gnu.org> In-Reply-To: <20050516-170931.sv14402.91225@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.562 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.562 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 18:07:52 -0000 Update of bug #13100 (project mc): Status: None => Duplicate Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #1: This is a duplicate of bug 10507. Should be fixed by the patch from Hampa Hug to file_move_move() in file.c. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Wed Jun 21 14:56:53 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7BFFF3B0235 for ; Wed, 21 Jun 2006 14:56:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30644-03 for ; Wed, 21 Jun 2006 14:56:52 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id A71023B02AF for ; Wed, 21 Jun 2006 14:56:51 -0400 (EDT) Received: (qmail invoked by alias); 21 Jun 2006 18:56:50 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp042) with SMTP; 21 Jun 2006 20:56:50 +0200 X-Authenticated: #14308112 Date: Wed, 21 Jun 2006 21:55:37 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Progress bar In-Reply-To: <1150913231.2801.73.camel@athlon> Message-ID: References: <1150913231.2801.73.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 18:56:53 -0000 On Wed, 21 Jun 2006, Leonard den Ottolander wrote: > Looking at bugs 10507 and 13100. The patch from Hampa Hug that you've > committed should fix the issue for moving files. Does it also fix the > issue when copying files? No. From INVALID.NOREPLY@gnu.org Wed Jun 21 14:58:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A18373B02AF for ; Wed, 21 Jun 2006 14:58:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30612-07 for ; Wed, 21 Jun 2006 14:58:33 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3D90C3B02A3 for ; Wed, 21 Jun 2006 14:58:33 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft7uI-0006zh-00; Wed, 21 Jun 2006 14:58:30 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 20:58:30 +0200 Date: Wed, 21 Jun 2006 20:58:30 +0200 To: Leonard den Ottolander , Rihards , mc-devel@gnome.org Subject: [bug #10507] copy/move progress bar show none/bad values on big transactions From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 10507 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-205829.sv26390.48736@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.562 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.562 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 18:58:36 -0000 Update of bug #10507 (project mc): Status: None => Fixed Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #1: The poor counting appears to be fixed in CVS. Closing this bug as FIXED. The progress counter only calculates estimates per file. If you want a progress counter for the total time for all files you should file this as an RFE. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 15:15:43 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 433423B03D6 for ; Wed, 21 Jun 2006 15:15:43 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31772-04 for ; Wed, 21 Jun 2006 15:15:42 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 0CB6A3B0397 for ; Wed, 21 Jun 2006 15:15:41 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft8Aq-0007zn-00; Wed, 21 Jun 2006 15:15:36 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:15:35 +0000 Date: Wed, 21 Jun 2006 19:15:35 +0000 To: SGh , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16303] More functionally u7z From: SGh X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16303 User-Agent: Opera/8.51 (X11; Linux i686; U; ru) X-Apparently-From: 80.91.160.214 (Savane authenticated user sgh) Message-Id: <20060621-191535.sv45177.54566@savannah.gnu.org> References: <20060408-134359.sv45177.11632@savannah.gnu.org> <20060408-134508.sv45177.86924@savannah.gnu.org> <20060408-134854.sv45177.29103@savannah.gnu.org> <20060518-165152.sv36205.74443@savannah.gnu.org> <20060530-195233.sv45177.57929@savannah.gnu.org> <20060621-193556.sv26390.77497@savannah.gnu.org> In-Reply-To: <20060621-193556.sv26390.77497@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.563 tagged_above=-999 required=2 tests=[AWL=0.037, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.563 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 19:15:43 -0000 Follow-up Comment #5, bug #16303 (project mc): OK, Understand. I will download latest CVS, and see if I have something to patch un u7z. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From irusskih@gmail.com Wed Jun 21 15:26:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7DF953B01F3 for ; Wed, 21 Jun 2006 15:26:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32350-07 for ; Wed, 21 Jun 2006 15:26:40 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.193]) by menubar.gnome.org (Postfix) with ESMTP id ABDF33B0536 for ; Wed, 21 Jun 2006 15:26:33 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id s1so277067nze for ; Wed, 21 Jun 2006 12:26:33 -0700 (PDT) Received: by 10.36.227.49 with SMTP id z49mr847594nzg; Wed, 21 Jun 2006 12:26:33 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Wed, 21 Jun 2006 12:26:32 -0700 (PDT) Message-ID: <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> Date: Wed, 21 Jun 2006 23:26:32 +0400 From: "Igor Russkih" To: "Leonard den Ottolander" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150898573.2801.45.camel@athlon> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.412 tagged_above=-999 required=2 tests=[AWL=0.188, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.412 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 19:26:44 -0000 On 6/21/06, Leonard den Ottolander wrote: > Hello Igor, > > original in mc (where can I send patches? Is there a mailing list for > colorer?). Only have to look at the String type as we normally Sure, you can use colorer-talks@lists.sourceforge.net (http://lists.sourceforge.net/mailman/listinfo/colorer-talks) > Although the startup of the viewer seems a bit slow with colorer this > has much added value over the default syntax highlighting, and although Yep, the startup time is a bit heavier. Basically this depends on a syntax complexity and dependencies. > I think we could well include the colorer hooks in the main mc tree I > don't believe we should drop the existing highlighting, over even make > colorer the default. Firstly the default syntax is more lightweight, > which some people might prefer. Secondly the use of colorer requires the > installation of a(n extra) third party library. This was one of the ideas I've tried to reach in my patch. Colorer library can be disabled either during compilation time (thus making no dependencies on libcolorer) or in runtime (in this case regular mc syntax highlighter can work). > Is this a fully functional patch? Much lighter than the diff I got > diffing your tarball against CVS :) . Tarball can contain some additional generated files or codes which are not included into SVN repository. From the other side, colorer's SVN repository contains the only files from MC-2006-05-30-15 snapshot which I've altered. This can be a reason. > In that patch I noticed a couple of things: > - There are a lot of fixes to the po files and some to the Russian and > Serbian(?) man page. Please submit these to this list separately. Just a single ru.po file with a few additions. > - I noticed a CR here and there. There seem to be even more in the patch > you sent. Please get rid of those (fe with dos2unix). thanks, that's because of windows-based SVN client. For all the next comments it seems to be a misunderstanding (possibly because my diff is based on MC-2006-05-30-15 snapshot, not the latest one). > - There are a lot of added comments/fixes in config.h.in that I do not > see in your patch. Please submit separately. > - You got rid of the COPYING.LGPL file in vfs. I think this might be a > mistake on your part. You might want to rectify that for your version. > - In your version you got rid of the pipethrough files. This has no > bearing on us as it's not in your patch. > - You made some fixes to the config files as well that seem same. Please > submit those separately for review. > - I noticed changes in vfs/samba/configure. Most of this are somewhat > odd whitespace changes, but there appear to be some hunks at the top and > bottom to actually do something. Please submit (not the whitespace) :) . > - Why did you get rid of vfs/extfs/README.it? (not much of an issue) I'll upmerge with latest CVS MC revision and resend it. > > code). As far as I understand MC uses C only. Is this a problem? > Yes, it might. The overall approach towards accepted language constructs > is a bit conservative to maintain compatibility with older systems. > Would it be much work to rewrite these parts? The main problem with this is that syntax-colorer.cpp file makes direct connection between mc editor data and colorer's code. Technically it is possible to extract a kind of 'generic' C API and include it on library side. In this case MC will have pure C codes. >From the other side this will not release MC from libcolorer dependency - and this means that if user wants to compile and use mc-colorer, he anyway should have C++ environment. I mean I see no reason to eliminate that C++ code from MC: those who have C-only environments can just disable colorer's support in compile time. > This is why I do not want to make colorer the default. I think this is > something we should leave to the distributions. Agreed. > P.S. Could you please set your mail client to produce plain text mails > and use an indentation character and a "replying to" line for quotes? sorry, fixed. -- Igor From leonard@den.ottolander.nl Wed Jun 21 16:05:47 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0DEE23B056F for ; Wed, 21 Jun 2006 16:05:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02395-09 for ; Wed, 21 Jun 2006 16:05:45 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 4133B3B0556 for ; Wed, 21 Jun 2006 16:05:45 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 048E54023 for ; Wed, 21 Jun 2006 22:05:44 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id XchkQtXZk6gl for ; Wed, 21 Jun 2006 22:05:43 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id C653F4021 for ; Wed, 21 Jun 2006 22:05:43 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> Content-Type: text/plain Date: Wed, 21 Jun 2006 22:05:43 +0200 Message-Id: <1150920343.2801.92.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 20:05:47 -0000 Hello Igor, On Wed, 2006-06-21 at 23:26 +0400, Igor Russkih wrote: > On 6/21/06, Leonard den Ottolander wrote: > Colorer library can be disabled either during compilation time Switching at run time would be nice. At least as a startup option. > Just a single ru.po file with a few additions. And sr.po. > For all the next comments it seems to be a misunderstanding (possibly > because my diff is based on MC-2006-05-30-15 snapshot, not the latest > one). These are no misunderstandings, just differences I noticed between mccolorer and mc-CVS. I already filtered out some m4 related makefile issues. > > - There are a lot of added comments/fixes in config.h.in that I do not > > see in your patch. Please submit separately. These are comments and fixes in your mccolorer, not available in CVS. Are you using patches from others? > > - You got rid of the COPYING.LGPL file in vfs. I think this might be a > > mistake on your part. You might want to rectify that for your version. For some reason this file got lost in your mccolorer tarball. > > - You made some fixes to the config files as well that seem same. Please > > submit those separately for review. > > - I noticed changes in vfs/samba/configure. Most of this are somewhat > > odd whitespace changes, but there appear to be some hunks at the top and > > bottom to actually do something. Please submit (not the whitespace) :) . These are patches you seem to be using that are not in CVS. This is why I ask you to submit them for review. > I'll upmerge with latest CVS MC revision and resend it. The CVS tarball I'm using is only 2 weeks newer than yours. I'm not speaking of the recent changes to CVS. > The main problem with this is that syntax-colorer.cpp file makes > direct connection between mc editor data and colorer's code. > Technically it is possible to extract a kind of 'generic' C API and > include it on library side. In this case MC will have pure C codes. Is it technically possible to reimplement that c++ code in c? (This is just theoretical question, I don't ask you to do it.) > >From the other side this will not release MC from libcolorer > dependency - and this means that if user wants to compile and use > mc-colorer, he anyway should have C++ environment. > > I mean I see no reason to eliminate that C++ code from MC: those who > have C-only environments can just disable colorer's support in compile > time. Yes, I guess you are right. We might want to put the colorer code in a different directory though. > > P.S. Could you please set your mail client to produce plain text mails > > and use an indentation character and a "replying to" line for quotes? > sorry, fixed. Thanks :) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Wed Jun 21 16:06:51 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5314E3B0573 for ; Wed, 21 Jun 2006 16:06:51 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02504-10 for ; Wed, 21 Jun 2006 16:06:50 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 537BD3B056B for ; Wed, 21 Jun 2006 16:06:50 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 8C1574023 for ; Wed, 21 Jun 2006 22:06:44 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id HM0rfGtmzMsH for ; Wed, 21 Jun 2006 22:06:43 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id B9AD84021 for ; Wed, 21 Jun 2006 22:06:43 +0200 (CEST) Subject: Re: Progress bar From: Leonard den Ottolander To: MC development In-Reply-To: References: <1150913231.2801.73.camel@athlon> Content-Type: text/plain Date: Wed, 21 Jun 2006 22:06:43 +0200 Message-Id: <1150920403.2801.95.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 20:06:51 -0000 On Wed, 2006-06-21 at 21:55 +0300, Pavel Tsekov wrote: > > Does it also fix the > > issue when copying files? > > No. Seems to work fine though. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Wed Jun 21 17:21:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F34E73B00E8 for ; Wed, 21 Jun 2006 17:21:15 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06624-06 for ; Wed, 21 Jun 2006 17:21:14 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 925423B00F2 for ; Wed, 21 Jun 2006 17:21:14 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id B529F4023 for ; Wed, 21 Jun 2006 23:21:13 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id tbmp1FvQgFwr for ; Wed, 21 Jun 2006 23:21:07 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 4373F4021 for ; Wed, 21 Jun 2006 23:21:07 +0200 (CEST) Subject: Snapshots availability From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Wed, 21 Jun 2006 23:21:06 +0200 Message-Id: <1150924866.2801.100.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 21:21:16 -0000 Hi, Who is the creator of the two weekly snapshots found at http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/snapshots/ ? Pavel? Miguel? Could you please keep a couple of months worth of snapshots around? I couldn't find the May 30th snapshot when I wanted to compare it with mccolorer. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Wed Jun 21 19:05:41 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2C4D23B0138 for ; Wed, 21 Jun 2006 19:05:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11604-09 for ; Wed, 21 Jun 2006 19:05:39 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 756083B006C for ; Wed, 21 Jun 2006 19:05:39 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtBlM-0000CL-00; Wed, 21 Jun 2006 19:05:32 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 01:05:32 +0200 Date: Thu, 22 Jun 2006 01:05:32 +0200 To: Leonard den Ottolander , mc-devel@gnome.org Subject: [task #5671] Data Export #2 (bugs) From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: task X-Savane-Item-ID: 5671 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-010531.sv26390.89793@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.564 tagged_above=-999 required=2 tests=[AWL=0.036, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.564 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 23:05:41 -0000 URL: Summary: Data Export #2 (bugs) Project: GNU Midnight Commander Submitted by: leonardjo Submitted on: Thursday 22/06/06 at 01:05 Should Start On: Thursday 22/06/06 at 00:00 Should be Finished on: Friday 23/06/06 at 00:00 Category: None Priority: 5 - Normal Status: None Privacy: Private Assigned to: None Percent Complete: 0% Open/Closed: Open Effort: 0.00 _______________________________________________________ Details: A new export job has been registered. This task has been created to keep the project informed. However, only Leonard den Ottolander, that created the job, can remove the job itself. ######### JOB URL ######### Once the job will be done, it will be available at: ######### JOB REMOVAL ######### Closing this task will not remove the job. To remove the job, Leonard den Ottolander must go at ######### JOB DETAILS ######### The SQL query will be: SELECT bug_id FROM bugs WHERE group_id=3521 (Note: We are aware this information is not tremendously user-friendly. This will be improved in future Savane releases) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Thu Jun 22 00:53:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8FED23B0377 for ; Thu, 22 Jun 2006 00:53:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28223-01 for ; Thu, 22 Jun 2006 00:53:37 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 25D633B027A for ; Thu, 22 Jun 2006 00:53:36 -0400 (EDT) Received: (qmail invoked by alias); 22 Jun 2006 04:53:35 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp016) with SMTP; 22 Jun 2006 06:53:35 +0200 X-Authenticated: #14308112 Date: Thu, 22 Jun 2006 07:52:21 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Progress bar In-Reply-To: <1150920403.2801.95.camel@athlon> Message-ID: References: <1150913231.2801.73.camel@athlon> <1150920403.2801.95.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 04:53:39 -0000 On Wed, 21 Jun 2006, Leonard den Ottolander wrote: > On Wed, 2006-06-21 at 21:55 +0300, Pavel Tsekov wrote: >>> Does it also fix the >>> issue when copying files? >> >> No. > > Seems to work fine though. Hampa's patch behaves exactly as described: [...] If a file is moved by copy/remove the progress bar is advanced twice. On the other hand, if a file is moved by renaming the progress bar is never updated. [...] I don't see how it could possibly fix other issues. From INVALID.NOREPLY@gnu.org Thu Jun 22 02:16:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7DB7B3B014A for ; Thu, 22 Jun 2006 02:16:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32693-10 for ; Thu, 22 Jun 2006 02:16:42 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 885D53B026A for ; Thu, 22 Jun 2006 02:16:42 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtIUZ-000551-00; Thu, 22 Jun 2006 02:16:39 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 06:16:38 +0000 Date: Thu, 22 Jun 2006 06:16:38 +0000 To: Rolf Offermanns , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16383] Build system does not allow cross compiling From: Rolf Offermanns X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16383 User-Agent: Mozilla/5.0 (compatible; Konqueror/3.5; Linux) KHTML/3.5.2 (like Gecko) Kubuntu 6.06 Dapper X-Apparently-From: 84.58.135.66 (Savane authenticated user roffermanns) Message-Id: <20060622-061638.sv48822.49212@savannah.gnu.org> References: <20060419-132319.sv48822.2441@savannah.gnu.org> <20060621-193731.sv26390.16849@savannah.gnu.org> In-Reply-To: <20060621-193731.sv26390.16849@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.564 tagged_above=-999 required=2 tests=[AWL=0.036, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.564 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 06:16:44 -0000 Follow-up Comment #2, bug #16383 (project mc): I would, but I have no clue about the auto* stuff. Sorry. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 02:56:50 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C01823B02D2 for ; Thu, 22 Jun 2006 02:56:50 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02668-05 for ; Thu, 22 Jun 2006 02:56:49 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 61ED03B00C2 for ; Thu, 22 Jun 2006 02:56:49 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtJ7N-0000cX-00; Thu, 22 Jun 2006 02:56:45 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 09:56:45 +0300 Date: Thu, 22 Jun 2006 09:56:45 +0300 To: Rolf Offermanns , Leonard den Ottolander , Pavel Tsekov , mc-devel@gnome.org Subject: [bug #16383] Build system does not allow cross compiling From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16383 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060622-095644.sv36205.99030@savannah.gnu.org> References: <20060419-132319.sv48822.2441@savannah.gnu.org> <20060621-193731.sv26390.16849@savannah.gnu.org> <20060622-061638.sv48822.49212@savannah.gnu.org> In-Reply-To: <20060622-061638.sv48822.49212@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.565 tagged_above=-999 required=2 tests=[AWL=0.035, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.565 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 06:56:51 -0000 Follow-up Comment #3, bug #16383 (project mc): The major problem here is that man2hlp relies on glib. This complicates the task of making it build in cross environment. One way to fix this is to drop the glib dependency - there are tree or four functions which need to be replaced. When I have time I'll do this if noone beats me to it. I have already made some changes to the auto stuff so that MC will build properly in cross environment but whithout changing man2hlp they are of no use. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From irusskih@gmail.com Thu Jun 22 06:17:30 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 84BC73B0191 for ; Thu, 22 Jun 2006 06:17:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15568-03 for ; Thu, 22 Jun 2006 06:17:27 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.195]) by menubar.gnome.org (Postfix) with ESMTP id 9A6723B02D2 for ; Thu, 22 Jun 2006 06:17:26 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id l8so363567nzf for ; Thu, 22 Jun 2006 03:17:25 -0700 (PDT) Received: by 10.36.252.49 with SMTP id z49mr1712665nzh; Thu, 22 Jun 2006 03:17:25 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Thu, 22 Jun 2006 03:17:25 -0700 (PDT) Message-ID: <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> Date: Thu, 22 Jun 2006 14:17:25 +0400 From: "Igor Russkih" To: "Leonard den Ottolander" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150920303.2801.89.camel@athlon> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_Part_3415_13609534.1150971445577" References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.499 tagged_above=-999 required=2 tests=[AWL=0.101, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.499 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 10:17:30 -0000 ------=_Part_3415_13609534.1150971445577 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Leonard, all, Here attached the patch over mc-2006-06-17-02 (snapshot from ibiblio.org). Please don't make direct diffs between mc-colorer and cvs snapshot since they are different versions. Use this patch for reviewing. I've separated the patch for easier understanding: build.diff - make/configs changes edit.diff - changes in existing edit/* files mccolorer.diff - new colorer's code edit/syntax-colorer-* lang.diff - ru.po additions for colorer > > Colorer library can be disabled either during compilation time > Switching at run time would be nice. At least as a startup option. "either during compilation time or in runtime" - I meant this is already implemented. > These are comments and fixes in your mccolorer, not available in CVS. > Are you using patches from others? No, just clean mc snapshot from ibiblio.org. > > > odd whitespace changes, but there appear to be some hunks at the top and > > > bottom to actually do something. Please submit (not the whitespace) :) . > These are patches you seem to be using that are not in CVS. This is why > I ask you to submit them for review. Sorry, it seems to be a difference in our original MC tarballs. I didn't touch it. See the patch attached for all the files changed. > > The main problem with this is that syntax-colorer.cpp file makes > > direct connection between mc editor data and colorer's code. > > Technically it is possible to extract a kind of 'generic' C API and > > include it on library side. In this case MC will have pure C codes. > Is it technically possible to reimplement that c++ code in c? (This is > just theoretical question, I don't ask you to do it.) It is possible to move this code to libcolorer side and implement plain C API from library side - however this'll take more time and I see no reason in doing this. > Yes, I guess you are right. We might want to put the colorer code in a > different directory though. That's easy. -- Igor ------=_Part_3415_13609534.1150971445577 Content-Type: application/x-gzip; name=mccolorer.diff.tgz Content-Transfer-Encoding: base64 X-Attachment-Id: f_eoqy6k46 Content-Disposition: attachment; filename="mccolorer.diff.tgz" H4sIALpqmkQAA+w8aXfbSI75av2KGsXPlqPDok4f7R7LFG1ro8MryUlm0nlsmipZXFOkQlI+xp3/ vkBVkSJFSrFjd++8nag7YR0ACgWgAFQVmamu26btUKcwMsbj3Td/xo9UivVikbwh5XK1UidvpDr+ oB78ikQqVio1+K9erRIilUvl6htS/VO4WfrNXU9zCHljOHPXvTEmq+D+Ln5/BU9/4W8a1f/V3DBH rPiKY0jFdfovF2u1aqD/Wr0M+q+WpfobUnxFHlb+/sP137JG9P6A6LY1Nq4Lk4JhpY5e/kvl8/kw zY1MoVDYvXI0S59Qd7cj5z8o3WavvxuY385GxqG3hmvYFqnXazupbDYbp+A5c+tmDdLxMcnXS8Vc jWTxsU+Oj1Nk9x1p0rFhUeLZhFralUmJYXnUsTST0JHh2Q55t5sib+cgizG5HChqqztU+t1GW1Wa rWGKpLJJNAQTiJsN4cq9dq+v9FPZpZHnLiWWPndc6pIxDOnqDqUWmWqWdk2n1PKWmejKl/2BMoDh I0qaO/SVVQQUX6SgAP8p6ilLUq5OsvyB6nlLLfA3aZgm0XTVnV+NDMdVNdM8Sm9GG8jt2N11temV lk7leZfrqbea4x5tD86VdptcNIbn6kC5aPQbw14fqvL7xhlIstFRgsqw0Y/UPyj9QavXDeqDYb/V PQuqJ5dnfeWi1x8Sek91deaAQu9J8LCvHW2qeiA4F5Q6VS1tSsmVAVMCDYunaVwhLhZHmqexrgcX ZceKE82hI/BCHmXAtq6Zi5qBswdz1c35iLXY5ihUM6yxjU+wInww9w2iMjSXTGwQDi+Ch7umfqWp nA6IIp/3VJk/uvwxJO3WyYC0uoNho91WL/q9s36jE9QHcr91MQyqzcawQeR/nDGJf/SlRXxhNuR2 T260SeNy2JN73VNW6DTeK6xwrjSaSp9gvdU97cEsYMKmqboTgtK/QEPQPZWXAwawFrA1vYH5qjPS +PieDJShymiDJlSTgoCta3Vke6TRAWWzVvTx+JxbWOo0YIHDH6WvdnpNMIn+pRJrPG20B6KVy1VI V5/NRekWLNf2hW5ziXOxIwwrCBBWBghZJvJpu3E2IO0mf8oXF7zApwwAyidF+TQkvZP/wkdTuWi2 +ByE2ln569z2KMwPujn3vMh5ZuUT0Mig3Ricw6BQxSkxzLHmeiM6k2WOF23i+MATUdDqycX7MxXV 1zojZ2AdqmCelZm18FYBAWNctpUASFQZXLurDgjqgs0SCp8kSf348SPpvBf6hVkOuNtrD0hncHba GQIJ/vx0pgyHKA2od5Q+2BmOK5dIv9GFgqAqKkALTE9ASGA+wzZYh9wbfOKsnDc+KOpFb9D6BMYE vae8pTEI1wbdcO2jqAB+Cyb7gbSHQRHpn7QGYPMnl612E0KH3L5sKk0cDPtEPFlqlME/CQXDQoK5 M5eEohDNZ0oXYBh1aBnwaQD2sNeDpXB5esrYV+DBuriQBXHOHZZgmpcnpNmTAbV7dtlgMIzeJ19N jAyXzCf/AQz0G7zyT1iBl138m0kCCmzFXij9NunIA6X/gYHxQIAuiIFZjj0ew9qBECLjQ+Vjsb7T VluRO03AZpj9i07ggoWvZyLDyMtNNKhx68Tqh9PBog8r0a6uMox2Y8MC5LLbVNpqmETQsgAaNDon jQhQ0LIA6shhAFbjnYHCYQl2zzjIUptYa+eN/sBn16+Irl53AIOCcETvos4BmJ5Rm9up7M9w+DMc /gyH/w/DodhOLLyM37DwQj8j5s+I+TNiPjNikiBijg2TQsjcxh3oW9KyDM+A0PAvSlwbghfEUwO3 +y5xqUeuHog982BD6xbYbna/KOFhAz74bnbNz9/8f3ZNzbomxpiMbdjt5wg1XUqmOmv+giTy+TvD m+Q96kx1bRYiMXQeyNwFf078PoygVxrgf7Yt8wGJWjbrxFAYJoYHHVF+lOSjkM8P1P2SygaI/jFH DFEWHYMHiCL35Ny4npjwB7njNECeAxQhsGLOqYViJdS6NRzbYucdgWgPkE/w9cFPhuUxnYFeHCxg NOdnB8VarY7yxsJeriwxkY8NHCmVfUvkCdVvyN2EehPAXOLf9lvsuRc03kEGcG1AWCqksiA7j0LI Sm8+IpgqYLKg929pcoT6PyRA2ULhIMSthmcUYdh0KpvKjo1DfPjk7iMQ5G9H5N6yfUKprK555Ndf WfZDx25hQn755Te1ISu9U5jRiJ8ehdw+kVJZvzuV3Zi71Kd8BDKHFlFTp+71URqagKUN7jiAV+FB 8qbPTR5yq5GezaZxTkL2IgQDeBCN863duevsipC7G2DzZpajLXfiuI+E6hMbBKq56pQebIJLVbq9 A2HCPhWX289E2I+HfdS6homnya9b1VQ2QuRZyLXDb4AOy2tZMJadRkWhDNl/6I5d1dVuQY7pNFRx SW36eYphpSD1tOb378QZVrFernA7rNeKOanK7DDkl49+Zzxv+m76DzCeEdl2d/O7u9fbv3N79Q0k b8HkQopML6xsOQE4Wm5kbu1o++22P80EHNabhBZIgMRYcadXY9dnBLnl096vimnv7+3npDKb9qU7 h2T1AUANl0wpZP6IBSm47thsfXHHZN3aNyADkDO4GXCgiFNAHZVAR2h3jyRD78FHSTuHhBcOyTf4 ny3whbD+hetzeY6wPre2VgGwyX4LSfWRrDJM6ji2cxBmkvyWDtH6Lc1mZFGwE8IX5wg8x0tFELPx /yM+UBXZdapAgyFxVfjJRaIagmQjUAH5IRUAneRpv9gCq+Jgui7x4CLVq/u5PWbcbu5YpFjHuU1R yh16xGNdkawLACL1BDAmhjAca+CAWQEYNmsBGm5KBg4TjrRFmfD1JCD9ahwoTC+ox8H8rDEE6Tdx YCbXUr1azlVBrqX6PgqYp0mw4yGgR8uDxGo+m9mOdxCE/81Hj957U3tE1XvYGIl+5iY+QizFrNed UNNcwtx89DsYaCua2CzIM1BsxFjALF5eEU0OGGgocjDCAz4qu8XRJxokdQveAZq3COi0f3nT0W4o ZpqvecMWovmDFzgxCk+5wpH2q7hO8MFXCd/uHJFjVsCG6AYEe6JrILW0YwlDMIsCZxbb6wqgqNFH AcPEIisplbyrFKDL7QI8tD0RgIuWMEh41KDhOHZtV9D017+5A6IvvbwLSDxF+dViGe/v8FGqMO1v +EuJp1U8H8+OLJP9tVhbfNUURFdDVhv9M/Vja3ieEePlFkno55dtP9j+48uXnXCatTYP3wB2msop xKBMyHRyRMqRz7GLXzEykP93T8BhVp3BmdrtDVuykvn81NQZZ/a9rJkw3bINF0oY4m1vQIzAmUOg vXpgzZhZ2yA1llwXvp9pMyOr1dDDVPfKYlvN93iNDh6ugY+AnLrRzvgeA3QUzV7RINM4iQSEQLWf k5NvNJoENIhtPkr6niHcQoIMi/4eTW0lDsZDH++eD2RBbNAhtDFkWHF0BbZ/whLjFN8QMGHwL3xB 1ipFjK616t5/bGzF8Xb/jAC7TPgHPW0ymSe9zFLOSUWSxUdt4Wxv6INb2Mzwg88dRn5KrflSk39Q tWj9TeCDv7gJNXPNhBrAypypNlvCvLOd0cyx9VAzZPC2S5fx0T/EI7A2VfHmB01DUxFSHg5I9kiM 7vv5EPGlnvzI0Ez7OsZ30H/naLNZmAJ6qfiQR2Qzk8QLrEKIAI3L9tBPBxA23yrAn82M6+CF1Q4r g2RVdsuBLeAI6QxPqxhhdu+2QziMwNnlgXZXwKXYJQNU2LmjOtUerijg+g3Jwjte3G0cs5uNVlth 0ivsbmb4pcjO7pIkL+w1vb401wP5Ir2wUZZyr3MB47KJyjLOEi/PxDMiOGwLl9G9iVDGbQkIBHXe HVRECYaT201/LLYYSpW9nFQi2VK14p+5BJgMMHQpA/jLOadl48Uapnj9Rr/FtJtaTjsTYIShFLSo OQ16l32ZAeB8rmz7Zqo5NwWdLT3x0KcjUbozRtfUbx452p0ospWsBwuTrWI9snoDSrDfLUw4df7I C6KT6LrmCKw48Ze2HizpSVDSSbCgOQORxaxj6hS3w/j84ytYn81WLF191ZLVUbb8DqXZGgxBqPJE s65p276G5WKaB/hXXpuKg6jSPn+HrFgU6QGkESbs+/NcfYH2DmBW+cVxRGZZuztp8scfxJmS/Jgk 9Kbyge4PoD/uMSKNsIQgFihdGVFBeD+Mi0xznhamhytmAd7o7yz6vk8dZtRoNncYEX7lF0IXe/Qy O/kol/yFFXY4xwm3oscb3GUcBb6DLVRxtYoV4e52BKngAhaJJxIEfO5gwMvqZPMXtMAkG1wyN/sg wQATfWj8vvd4w0DNL8ZdkWZ3hmQTxNRpwp8L+HOK1uT7zM13heHMTiPTeRvhEtbDIaywp7KEOxIy vUUDSBgl2nRhpw/5/RG3mDjC4gQPE/f1kSVZL649d3R6tL35yzaxr/6H6h6Uj7fRhDzbNo8sO67i HxpIhECgHp3iNvGms+TOIfa+zuhPNt/v63GVQYOTK+gFkOFBbA0kWuPzzO53QPXfQNkhqK7f0eyS R/oTjSwxKQff/eck5dr0VZJyn8xTkvIay8nhb/5+eTxnSBH2TrM4fQi/FP5vm0BkfyCBiOQP2aX8 gTWtCvdPzA+4J+cnEcmCy75ccNl/u8wr61vPqpToFb//WPr+h03ylT//+c73P5WKVCsvvv+q1PD7 H6lS+fn9z1/xCzvriPG/rruOkH6Jw04g9BSXXSnhhgH+lviZ9Vv/7cE0EIB9+q7wQJP0xu47ApvI RldW2vyLnGXQO8x6XAH633NDv2kyZAadyi7gI66CvRry1hjHPhPyX/LoXQzVZvtMPSfSHrQyr0cS OuvYyRxENt7/kdRL7D0mY7ziYyZ2qsS/kKrnJCl4aQmP1gg6aNWk1rU3+VwufckRT7tS3ZmmG9Y1 b3g3gz9fDzmOYXkcBY8TwUMVQ+22OVK5R1Mn5iE/3cZ2SOVUA43uMFkcCfhCsWEiLBREu2F8bhhx NCEvEkWHCKDS6dzUEAmw442h6Qijw5fFTBWk4qrsNgFlQ93F0IndCWTw/Fud2a4hxk5qPuSXbcVy bp9kJamaq/DNLppdjRnbxuNXND9Vx2P4K/s+F7KDXVIiWby/CJpyISvKk70c4C9acqSrZtLsLmUr eieQ3skBMCn6/3cv2+1vuUTlMdbqL2ZtH6jHWNtaOkcWL/nshDgLMYeM7LEv817CiFRMFBIoiWDS SLZ8Va1jY//lbEhJApHxVNHZmpIrOgbB4P2K0FZtBSeQtb6YlVISK6dg9egqXPZaHNniZr9OKOB4 XsxKOdFM+tSbOxYZ2bAstblno6+xvLW8lF7OSyWRlxNNv2GyIN7EsefXEyaktbyUX85LNZGXU9jp kIlmjr/PQyXCg6ONDDtHqisHrOfCg6XTOVIWZJEPvO7zVB22nxkWYt69y/GY4XoOMJHG8jQdjF2N jG1qV9TMkcoaLxYaG4fDuX4EkgRDUjBL7EmYaO15E5UqsZmWvjNTEU78yUIVaovZ1p83W6maNN33 9IEEIWutYoVHxDaVJS4fWXLiZxvZwH2/yAAT3ffTnSYJfPeLgkiy736W02Tht8zfddmriqPmpysr Yi3Iy1OVRRI1tEhhvh1iioe/cPbJyqrIjckR575ay5WqJFsq1nPlapDr8RnwzNT9XP1SwCthyEJC 2d7hCkgwZNWh7txE+K2viWC1L4UFSCRVC+cVh6l8HLUeQU3OihLQ9uIjsks3Z8qQE3H2k4Zakb8l oEvFJHyHRR8Vo4+K0Ufl4SeZgpRE4cqPGaqIGYydZAKlxCmAo1fR0QtEwtPmIO8G2Pqa3Ds6RICV za5UaizPfgadZA0/l5Gorp8//AqtP5/QSvU/n9QqO/iB2S0ZRFZsR8YkIyAYqzPN0VT8aFPzcHni dVF4byeJpc7OgUO43sOM3jmGRx0VwZfRSiG0pa7iGisMW6tUOQwiVKyvHNreJa6RclgkwfDJ6wlg bzVzjsyFINdJfAXx9SgJYyTzXo2b+tL+dAWWP0IizloLKn13yO+hrx07HLf8WFUQZAAnQvZQ3PZK eyUMwaVKWfyDLht8mQXUIkcNsWOAaMxZaXHx84YnHCgsVtJshzwCZwIBz3dVfpgCm1RxogL0NNiP IOxh+D3aUnVfTIwF92BWK2cRCPeZM0yazDKt5EOTmJcN0KKuN8L40hHHCl8fRll1uPIdP81eCSgV c3sgy726fy0TESaklG1bG+FHYHPLxJI4RnDm+GmfeIORDwO7JBePw6xrOsI0NL/kLZM08rejqBXu iLOq52Gt1t0ff6xQX5SEaI1GYsHL42rqgYodirJR8TIkA0bKr0bUsUOpPwKXV+YOO3bCVsJBGboQ LQfiWW1uiX2MGjuHUd2I6xEUmuFt42cedMQ1sGCQ0UdAFSEXbAhlf4Pgtnyize98Xv84m9N96Vl2 mMpTDrJLUg1PsvEh7QV2jkeLD7BQHPsONkX8dSbl0xA/Rxu25EZb7Z2eDpRh6CASxnBViPrujYFv ruHZTeZ+55AfYCcdycYs2ecSDWuDkWQtQMx/pxP/kQWwNw2iCYfO+OrCLV6fXkNYcPCzSt7Lzmys bQ9vx27IhDoUhMJ3o6Z9Z9JbaqoL4Iw/3BE4UvJ3NuleX+32+h2YL+OdHAieAgvh2QsyHCKUgLkw Kf8gHn/fx1kczAcWO7XBW2buYaP64Bv8BIMCyWyT7RxeFCNN3MrCnnGhufNev/XPXncY6A567yWg sGze/OLy9c2b032peYepPMm8axVm3vAoLe4mkIqqT0ckI79XO5qnT9QTB/JjisbEnHzMaAn+myGG Tm5tY5TKMgIuNanuqVd4QUsy2AHMPnJFR0YYcMATBEStolfJrqeHcdDDb5qfSleVOYKgHxhOZByO bmKYRRKcNOYZAWlIr0jmkzzst8Gevm7viMyixI4rsqX9ff99rjhZ30sHVH9o4SfkDiq/SyOZhGUX Bo+BRRbbKkg/4LDQHp4VfzGwzP9xuWquVGTzjgnrvfIP9ZRkJGmH20581nFN+xNzvQeTLqtYpEEc QqS0EY6Zfa4mas897g/WkeUwS2RD7kaQZ4TBqpwHcmqYtAPVz1/wfRQhhkfmc9h5cG9GLXYgB0sT z6H833YPILjdYawFwxMnYeUaS8PL+8G1YZzomY2fySCr6LpDv07exEG2z3zi1zYEHwTE864oFU5k issck6StK77UGZUrRuUkQkX0izupuAUvKPMFSHDFbt2QKH9fGOX3PuXw4v6WW0PoBsLdFl/7nNCM EeomEfK9RJxgDxS8FRcbI3jICLZ8gks2waYdStU5TTybZoViXL4tC/Inj2yZuGnXzMWQcv4rG6od WAD3PFESEdLMMPbYxzqVUu2nYfw0jJBhVCTmMSrVemh/GzIKdieA5x/CBW0PAtngHpF9oxQbBTHb VHMssvUeX+ESqKgfE5vRy7txFPGV4NZ5aP/l454HwzKgJ9jLlsze2OLfNpEBhgWfmLysDhY0nq+M /23vW5vbOJIE7yv9K0rckAyS4AMUqQcpcoKmqMcN9TiSGo9Pw0CAQIOCBKJhNCiKXmt+22p2tLuy PNZa0pxvJuIu4uI+3beNmA/79fJR76puAhRla+/QsysT3VVZWVlZWVlZmVlEHNA4Dy90FegufCLK 4OsukeYzPAzwVULtc3L2WqEG/aGKoQdooLDjOXJSZ4cIxU4Z1IQJZ+1OaUu/bDm1TFp7zuUx3Ho0 kqzea/FmP21GAyGxsNhL8M/DzNqF3tyBzbCYZLebjMFttrI+wpEvOSFwzlYbF3kxqXjjUa3TAGQR iHJvYA9rwV9kcmHH2gRlObNB1j9sNjViuAOj99UWY8UmUhKY8Pbhbhn3SZQfqC96ST3tYV44UZPA AIzPRuwhefY8xHA/lIFsKIPFLVNE6Zz2eULCSbWJTm6N/89BrUvMAu/Ttv0WdSm9uIm1zR1Quvc+ h6npb0tEvgyR1XZlNXtPILT4l4W6kUJq4xAUXpaFJSNV70m9MhA9svyBRrzVFlr+CLWZaKq2UeBo 9LxCHVnobnKEX30O+hjc8+GcMwzXXLxCOu8VKXFc3z729B33X1suf94X5Us8nuMJqAt7btBUQQ6h KaQdi8fZ489zU0QX6EfjJAqetpKjaopJsXDRKE0g72PvrlSuYveuzM/bnoC44ztHHVmFJbjVbIH4 u3BByFcN4MV+QknTJqTz8/QqUgJKrSgjHbApnfWX+DP+jZlAlQHEA06HS/nOgIUbUKUNKYkqbS4M WdubsMRzb+84O8mrygInJIf/XtXRZJS6nU8ZOJdM2mxi+re0STqsaJFdWEqPdtrZ/2yK/uX+wyrQ qPKe7ssNeCEm2RCKIhpfmz08vmmVxWM+DaMd7NxlPhSYu3JRZVhy9rlWE0r/Va3Qp9Nv5fGzIiPB x8mw105UO0xNTHpgxrCZ9uqJ+HZFbG1c31r7snp/7eYG2vfUCY1PeVNTIS95Bm2Fuj9Mrgr83xw8 imsQv3YtM+XOrbiwDD/G0WL6XmEL01zUNiKRwd2D2mcEZNZUJqxw3MXXy6cj+deetdShdGA9sYn4 dQHh0JlkIg8jbzAQwa/FNahgn6vlDdP0KuYwrChSXuWDOfJNvajlB1suoFzak9ZPRutrMW0DyTXd TQXj4VrunGFQ5hI9DANQXWvmEqxHdI95NfmVqBmE9JLSHoU90FIM1npPKgDyoNUpWeQBek0E5eax XO2ZX26q4pSE/h0edCpmzOj3vDxyP3Hy+ubOcAyMtfMjjYVq4BMcE4/WBaNyxmNiTMS0doECK3Yw 4Rnm0j7so7erypUpMMf1I/Y3hbUL9QRYaTCtKaZlgfFS3qg19E8kSN1ekmWw3V+vtdvoecKOvF/e vn5zY6f6642vECRsFaBQbR/0YiiVcbq1WrOf9FgcLC5Q+rT5S3OXyxWTDZUSvPgK8pJKG5QjauW4 i7G9XlJ7kifLFGhbP17SVmZHaGhGUgDz6iv9OgrHMH4hPE8FX/JOWYusuqbDlpBWcB/gwScadZF8 fAoKP0Jq2Xq4jio7U01cQf0QXdyFMZA2ToZG+Peq1Itc9bpYFz8LlVup1lhIBgDp3EFZPFrooNbq yKIH9eojzId7clSRnGhGU1+4QhuRhasVNbU+s/WVxD2DcTXCMgvkvWNQ28kowJooGyFOpS4qbfFc gW/Dt9+Kc4Y2KGf/XmqOk+qc2CJd9Py2evvu9Y3fiiUSkVRVi+qx59ba4Xdfyn27w/oYuFAzxT6x GGY3B9j1GCCwXMjNDumg8B6+FyR8LqANwLVIQ45DdGVCGwQ02bDwZF6OJPdFDzNZuIIOTpgeUlZq zpJ89UrFs8ir/Ub+Ob/eAPg+H45OqonI1MNXtlvhOakiuwqloa40lEmzXuUK7UIroJqr8Dzmrkl3 90ibUHIcQWdqCwshh/J0OrjqseW6IunbxVazspDOKrm8I3veJGW+U6/1q3gZAyzEchOMkx5flcX2 V3d31n5L2XvUrqanNBcQ3dqPx2yeDRZN5gKYKh5ZlgS5uo+NScZDNmm2esCkWBCUcN6K0pjozgSm mo9gLP5wK/FQ5uHyAjBRmRhoenZSxWtPC5TA6soQOvGk69z8z+Yr21nX0+5xDyesKK1PiMrVq5fK +O9lUqluoBF4O232j2o9+IVp3MnBUeWnqcyzk868TMlmbdxDXypn9758VnKdfEolMIyRr6KmCuXo iMeDowwT/Fcd6+IfptrXh0nvOI7DgHXx+rbCmpN15bswT6v8/PyiEl74mejB3tToHwrKqWtbIVJ0 XfJxZ2WtiC2GP7h1/AN8OpTPsU6ZWnnH/6p2pKSn+4Ulc5wqNEJy3QoqeAWtAsDpbf3Z3rmpUuz9 TZ7g+71a16cx0oz2J9rLhC4/QGcTVsiSZ5gVkMN3486eYQnYOGFGwzT6cXAH19y6oUNrWJT837m8 QYPPjkK3RRdRKWJlMQpUqnbaVaBikjZDMasswGcvbBXkDxW5LpxBBO/VK6xsKHOlikmHDcvGs/76 QWNsbGF+gdR180VvZfDjYnTttko7pyTqWZi/lFtIn5IszF92CvmnIxLSFXsxh9Wh1u22W3WODMc9 Xy9ts9puNYesfT3JnvTTLnRiseJ8vZscVb8EAZMe4bd5xQio6dPp7RluyCyYpxz8AMJgnqhsqK4s 2qf7vO0yM8ILDxkviwvxL9bpkgIhBaZxMMfawctIxYjYsBqOaeQF53UeUJUnNoCnPLLt8zapHgND BYkYOFuEQrzTqoPmn6LRDS/rqmWPsIHwrVA+N5fZGeuyTXz2Dej3oHBJjN9pZXUAMt5oZd127Zhy znZhUzkuyQX64r5MRYuvq61GSfhlBSiM3V6KahFf5YZLhekU3U4kr+BRp94hCS20BEZgKvqN61Pw XkN+Hy+L8CXa+dGHHDTfyMcl6CH7GI9rXO31kTu7T4qXKJkCimJIWeJ9cwazuEC3XCziYfGcpm6z 321mVQDw7LhKV5utiEYqdw2qc4rmUNYqiW/2YWs3bqiXu/9y4Z1ELKvr4feyUDnKbm1dl/f4VTc3 7t7cuWX7KtPmTYRt677gUVBrvwPQcROTjbPfivRBwVZVe7gJEVnrG1j5RCn8PmEf5ISfxcO53YlQ Tp7dUmnB/GA5OcTyOM+HJPqI1VYv8KImhwgPdz0FhD/yhU61tl2qaMXMG3dxaUGrSga8wzUI21oL LVUHEyXhoLWTZl+FrUU+06Yp8v1p0ttLM3j5S6c8Gj3W4+X/wivIfub8X+LiwuKCyf916SLl/6os jvJ//RyPlLfddLZ3ONNNz0zYKoCnlLRu9YHELO0/pub1NmT8t9M3k07Sq1F++l9/gfkaRGWmMjdT +V2HXGYOsn3Y9I4L6cwZcwMc/2waSoFkFOO/6//7X/7w5q34x59evn/z01/++PL7lz+8+lG8e/XD +xev371692L8sylVVpxQVNjtXxNrsP8Uq+P0hupfE//rp/dv/vTi/av/+fLd61f0zSq/RWF6Yv2w 18M9jvRtXbWQ/beXb1/+9cU/v/3zX1+9/+/i/cvXf/4fL1+6+Ly08L0m4hW43b8D7WKabQMW0Wod 9CRMMYzgfEb5+nt81yx0jo4sLpNZF/8j/Sxk1WI3bkMEROm796/Ea/GvL97+8OY78e71mwt/eP1S 6JLUAQRZ7L9t+gnD8vYF9O8P37957ZnruWAMYsSRO4T47s0fX779b6/+9OYlAX+hC2qIxZ7cBuLf 3r/98+v3f377Iq+gJmShv7ah47+/e//iJxzVC9+/ev/y7YvvLcBckrVePl1bXFBbCkWJHM9p08CF /+3wlcXnXE6TIMdt2qGmnjZv/vmNePf+1fc/chGDj+sYbaHxtzf/8vbFD9jTH168e//2zXevX+nO salq8epFpdLbvfMzng3SNeoXzIzm4TffHFs9jGYpMz38tzd/fAcggUGUbu93zUuSY3D525sL2L8f oX//+uavr/7x1T+In8Q/vfju+5eqlxcvwRjiTVuXFnWmQwmak4dmOPOogTbuSwzs//PXP738gYTU H7//kYC+gEaAW3784S/c0997/BCwgyzi9fJvLi9M2ZCEMsK4lYWeAcKvEPKPXzfKQQRHGDggr9Bq jtfNiPMNIkg2rgoQHCjxhxffvQcCw3cix7+M/z+puHr6n/vzjNoo1P9A01u8XDH6H7CtqFyan6+M 9L+f45H639bG2vU7G9NqJ3lWWqALdjhdcI41wRiIQfTBufIcHgcuzqMUBClyp9Xo0HHeOjtJgYyW Eni6X3uSLGIg0mdT04M8fGfsbbQKNw7rdO43FRQg36weaBHou4Mm5Fqrk4kIFtoNGkTzIea4cdEi x6v8q7pmdFt37l3H+7fwMuiGAErcWcctNxFlfm7u0vTc4vTFuWlQxchDrNHIPptCj7HDbhvdm0Un ORLNpNY/7JFcBGToDs06nTljJvy0AxrQDPf9hixo9ZvxSADOs74BhMejtae1VlteNS3v6EwbS1he TCvd1emZc02ZJIPuLSottY7YAx3gqAUqJF40hg5rgDD02CcUeb4JYJd+64DTB2GegcMeN4BXTJON f0Zi85sWXiWKB4PK+A+U6dZaPb43lIONKGcNwbrNh8qZcryj5fXx4UEX0OsfJaAZI63xFJSIycqk /EQA4C1wBzAJ3oedKSxubV0X29CzA4C8DvIpPWh9w9iUnjKCfBJLkWWY3YNqqcW0jdFIdH2W3B7w kTf+b7NVTzrIYvagbbc69QRpBwPTaKERaO8Q/QQPiTtv3t98Ol8m9Lu1Xj9TrIIW4s+mWsRmfTSt 0ki3sxQvEKMIJuIggNnmRqlzt9IjurvVZfF2C2RC71i0+lnSbkbxgPl7f1OU7qTftNrtmrh/uAdg hezPRJndFYEtZAYXnkqI/Owm/GMmiZ5sd9apC6Jx3KkdtOp0fyyQ70kmJOcrRU4iJxl/bS897Cv6 kRTYB0pv8dJBATkJnrLOPq7t7SWw7VSriqj1xT5+EY2UppNxCYTn6OhoSTzq97tLs+rOkZmsOdPB xH8RZz7jpPYxnPoM9FPJ6wJIQ4jtykXaxE/NTvKMj2nVwPPr0OBeD138xCPYfCKfyPK28waKP2EP lLiWOy6rEgJxS7eX7vdqB8iRdHyQSY+PZXGcHoo68BsIBs2q6FkL8302lTL9mADBS55JyFRox6Up hD9u3n0g2ELR9hgahX4X32Qk3o6VrMj1O1kWSYvuvNcSXzUiIZZB7hGUEnQYkO/JmTIBGAPj1/qm 7kwOBew5SYIcaA67f/gDQEIvjzAJ8B65GzcP2xycBqUF3vB578GOWLv7lfhybWtr7e7OV8s0YWEq 0TWFBKt10G3jxISeAcP1j6EDBOLOxtb6Laiz9sXtzds7X6H8vnF75+7G9ra4cW9LrIn7a5jj5sHm 2pa4/2Dr/r3tDdjdbieIGEv8Ajo3aayAlI0E1ud2pvr+FQxvBvi1G+IR7sl6ST1pPQXscMXsHp88 ggSlRk4pJJr6FjGXZRQm5sGFnbsSOM7YUn0zvmVcambKYrECxWqdJyCpYPsDFQDIjVYTGrjRTtNe WXwB2zosfmeNIMzNVyqw5l+cq5TFg+016J48paPk8HfW+eYzfVxgThAin7TfRbVa77YPM/x/fZgw vj5uRahM4cTFmavDWj/PRNZq4AqBd5Vil2YbifmBRWel80vEH8/3HJLpdSelZxyHb/JL5avnATvZ 7WrKxvrW1rrYAUgZiJrDA7Qh4qRau39bIoqtIClYIdCBDzYiiNty+JpCjyPv93ugiVkZ7oExDrIq NL5HvivPdU+w6ayKizzhHL420cUK94S/Gt+hGHEMgFIMpvmbAShKSa2jNxxxsHdWZ9kLrJtmTk+V ixSRwums88X0F4+z3U+el1O0404N1+Eppz3np0sOJQ3YQlsWnFAtQ4Yqk16H6nkWY3cuGSKsIG8l Xx8mWZ8trTXW8kAMGeXa0gmjDeyr7FWckSDDYD8zItHJNMns6iKCcgplGSzd6WEGahN7xaJwBMl9 HG2bCF3QeKztSNNbCaxAsGJkWrelMG3yTJBLUtZN6qzhsduGxMaG7BCE4XC4dz7xlfVs2GZlpjUZ 4VTQXJ4Q0ygQGl/gXhLT+9RQZe+mfKMEDACxhuSAZi89cPdT2XEGnKqgxPji9E6mFpG2k1oPFUUB 44Z7Hxk+KpR9n9UgDgykjRHo+7S5molQKxqAmjs+uun9drpHunz6VKtcsB+VWzgJJ9aeHX15Rs1Q Fd4APqHwLNoI8iaQ6rWimHhRiT8fMplQ0U3JM9zXIuvI2tnJiOqQvfxJBEiigkc3z9E+TO6xH+Gt YB2yxjqzx2FT9mBVgd3h4h3ISekaQ9YBXF07DTVBrL1x7mwNcxeGTcb0ISdQT/6Vv4OzLkD9iDs5 08pZ7eh8iMPs7C7PD7SzE7IJXvDQwMI2LRoFJfGQoWEPwvpZNtr8jTZ/o83fCZs/K+bxGl9MPvNo 1Q6ElPGIvKrIwMmc+EcRxD+GZWX8I+ctMgGQYUEdAMlF7QjIsLD0wht3+qODQAvvYJud9d3kbmys 7TzY2qhu3ru5ufGbjc3cD9UbDzY3Qze7wev/lwe3N3ZcnD3B2k72a/Xjab6Lzi7HEnB2M93fxxNX 7ktuuIPMqQKKb46XX66LIKU4EnOYV2wq2DABf/USmbXKVV85rxUfF7hJLCnW3cp2hcHyVMyPJXyu m3NU9LA1A5/rRptRAN1lXYdVUfxmsabLzczOkp/EJt70u7a+URq/s07+vBLGyvmGwIBQ+fe4G3bq BYy64ZPCQSaM6VQ9CHctKvRvAKKoogqYTYx+2q+1KTowGwCSVZpyIETAcbr7AWCRrygVjgF6lODq HQeD5fi7TqUgZzdhZiWdUKVWQI9RrVfcAeAiMRSQyrTH76ZZbhafE9hD17coxywSEHTCwpsOca7B DPz2W042tBopr3owXYmwlM4/JHmKsI31kmMpYENmD5sommJQ1hm2ONUiFAM6uINo0h7pVwd4X8ic euQHQxiZgKpeQ921+rTWpnS5+NVKBIKLeqlFgEULyHi3unn77kZ1fW391sY2vJqactJGGSFFo8X2 tuxha1dzF73n9E/yvcIMn+cUS9p/hMu3LMQ60RGsck866dEkHYwRUeZQ35wjnZXP/fpH6RItbwWY VHad1DuK+JEaCkddo7qXtu34cZN3p6jBedOgxXDFTc7nNxnIPmtZsAZSrleSpPwHTh0DVkVDp9Li prgCS62uBK2ZxhwG9rq67MK5tkJ7Hq/mnNxfCpxXpK3V23hdc1/gAHekHUaN45AMiFU7Fmk6Khl/ nPumFQF0fUC9A80cBGyNs8mGjA/OuJbLvtZ/ENYBC8xByPd4d1mQroZksLOkJc9q9X77WJPEg17B QP7HOGgXrXaQZI+XDaoAN+3ImYO+SAnt16cp9wx6TZBw30NHtrRLwS549NyvHWsnA2IvjYO5Pkg1 dlFMiVIPZyMomedFyRkoaOjixEQggojZYjPg8W4oikg5g+9xUfJ4t3ge+iLIorqpd/SIEgUwWgh5 YhDZNjXlsYWFZTXRU43g6XRHFp94gB3hiD/cXEuG8r8Yba4NTpvp6QLa7Dm0mXZE6alokz+5Wru5 C7a0W2e+TSp/ydbqmqPMU3Q+mgojcfmkoPGfSafhK/R2eixZEkvlJsbKK1P/0KRYA1jWPqqPhGnl zC1rw/tMXBoZ1kaGtZFh7VPzqvhya+3+/WLvCqtI7FRhzHaz8LwsxO0+shGG4mS1ZiL2mXDt4zKx CQ4FUYmc/ltU9t6vZxyjmm/Vk4C3+4d7nNK8xVfKIix0uCK/OaVXqcN+WlloHVGS++QoU6tYUd4O 7mYHyjXxKu3mYYd9MAWbMxEKsYTZgETMOvLAR60/pkIybIUTs/sqlNenkVrt2jGeeiqaMbTTGNWW raonGcgcxXVA+5G1ET/JQBQtGjH+RMpFbDuRUicYEgpqFBlsItWGsgfm1VcWlNCnKLe5mP62HOGN IXS0nCPJsaHPJG0T9EdVnuyGzkx/CoEOo0JdHkSF2qQmPAf1PVjrFoBlyDxfVuscrNxbG3fu/Wbj +sxIiRopUSMlaqjTSffEa1VliZoTs7OC57macOh+yJ5PNA9P9lZ11CgSudX/Wlkwvqf7+0mvdf/X 9e256v16iZYQvIDS9dOq4yLqvjrIYPI/rbHX5FMplKXa50IvajDYq/P3atLrwaoxCAog+NjeoXFZ lr9o2Sg9LWOsI685biOl3NPLja2te1vQFjfJPZ1QYBM0pD2diFoaJPbAPZ1fDHmY33cHwj2Geb8H mucvhjqdLJ0a91anmf5iqN++e+PegBzzd4e0fXIhD+RmNYhSw2kPP7KflWrkzJQZF+AQisw8X395 kiajzD7cTiayw2437fWXZMEyuxML9vTDdsguxO7PI31mpM+M9JmfwdtKCoHoN+00VegjNZSHVGFK fL2088ZXxUfE0t66p/1ycxvz+p90gmLwMr299Jm6tU8GuhhrRiTvvJKHlM7bz9FtahqAmKi7l2Bg TJtbqx5Rqk5RWpgri8qVsqiW4skmJvg6e8/AkhNhUboge3jBimXACvYZMRXB4x59NDy2eXt754t7 v62iUfDudboPXJQM9nSjCUGEagYf5/6mSPbECxcASL9XP+iKkmo0ljZwgk+A1T1PikLK2/tYHlHZ GOHZFeLVsq5ZkaMFncTwa0Vou5bt9NLC4+A5c5d81k7wJBwwgj80urqb9Blq5Cc4JEg06gwptyR5 0NB1AtBYp949jtCwLAzBEB7hETFq4jflITLGt9xzWA/MAdChMGgDJBDmlj3GOUAhJXS/PRsWg5T7 R8ouxAXsDPVHbAfCkS2LMEmxd99NbhxOSXKoZtDnuXM8lrDa9+ipcwyX3aQXO6WCuT7uVOfG3Lu1 3DivI8dEhxzIVXiyOM4UsWZOL1V0zpu4KGGnl6Mcj59QfBDawJgzFFI3nAxx6vqCRPrV6DKENMoQ +WaqwvUUydBdrc6H7VYJsruKX0yWqKGiQKlaD9nA8ioyfnJyNjmdnRBT5oXha3y01VfecKbq221M 24PoeAocFR5q583aCPtKhK1pK2/tgu6irSOps8HZSwwfW4PJSM0nHl4oWqvfTjDzQ856TllMsczD +cXFXb3CZV0QiP1miT6VMZ/SQ8wStzvuLK3RjHt4R4VuVAOMyIr8+Ta/wPNNtq4YW0I6aWZ8vvY5 Yanz8nkz9WQAWwpAXqK+CR+pM9AIzBJlIytZaZiZJ/lgat6gJz1K8iYfMPt8bO0ousLAZacG7DUf Q9MUBs1iBftUx7VM/YypkFQeJzT2OVaAI59zv1MDoILWaQHEP/xAbG4BycUocSC0/KkJVBwyba1E Xkx2yXVmtKsMsBLJtima1F3s7EBTs9ZxeU2z/eoBheDDWFLS5hLSZHJCTAqDx8M5FvMqFt1drpht G8/kWtTAS5Ly61KJiP9j8qyFAXsr4sba5vaGJSkJPHsJi8cA2owF/I548pJqSCpuiYs+fLxbthGC 9ndn6JPUcn0IJN0VOjtbD2xsrOkUaZAZpyx0wwUtOGz+OL8J60+7JeZZv1t0wW68TeZuaMuvY2+8 XOQihe2ZEcHuHNMtaFwSxIzd7gCwTUWs4Tgsuj6rUehysiuGl56AFQc185czGjmrpuQnW0KVJVnt pd2liAX4WmRU7JsDZY98pHCScgcNLLPI4uOLI13fk5zmC6fCZ1Fj464kpZIKQwgF+GgtFvh8uGBQ RPSm17CTmco/1FSK8V5sEvhV83oNK18hbCsLSF7Hhp7NsSHWSEQae57TtWBmeYWfe7zhUtFaUPGJ c17ebCJI1vJuzyVvDhloK2L6Yija0g6ojYc2keXtsG7t2AR0Jr4uunzCLA3unmU04kkelKI+IC9p JHYnTkLDlYKROS3fsfxQL/NSvvjpXTT5LRIB/edZHY2bK4S1qQ4MFmIIi0Vu864E9zKnnFnjRW7F M/Vu96MmXQP4Z5Z2TcMayon40nCJ10bHQKNjoNEx0InHQANEnX9w2PkQcecnhJ3nF9ThCeO5ZTwI 1+Rrul0u7c1iEqMN+tM5CvOLqcRifqHAJ0h/q2WYDl/6CfH2HlihI7MTPKTAdvw0vteu1Z+Ml+mv w4T+2MeMRfRX/bjGf4Cgof8e1PZhNa9x+V56xF/JXgW8dYy/CAD/CUXwiwbMPw14/q0b4Z+qKf5l N3icgCp+RH/CLqafcGscm287lrJN/6DWfVi5NFm5tCt3PyYtzp31bT4Owjvbhfy7tpehZwsnusUk QBnKhIT9uMXa9vrt2yBQMPaO8v/A9OgJjPVDj4E0yTqf94WM6UeZdthpkZszrMd00TxMpJrKG1Rv w+gYJJZY2NYlImQL4jfyrnRV0gsCx0+WBoBzfHoVv0mTrmv0+r2G4laVn8lOBQrbfZlqv2TilL12 yP8FmnCtwLOzQdi3BY0rcby3F7PJJ1JetB2WgYWValll7UM9x1lZVqPyUwARlSPQkcTnv+t9Hmi6 +H061B4H6AXU5D7IYy9VjSdbSZ7DzTnmRmM8g8/7/UelCba5BZYs/B47vjmi2cvxR2nv4W5J2ggl nGB8yOpPe0yKmsc/ASnEGEOzgWFBmNxrfoHCfeNZPaF1uMSs8QWxN/acfy+J8Ympbck22KTdaYn1 yeOBFU3Hur3WU5gRkrUtjrbMjNKZmwnC81tN3U0U+ujFhRewEGeBNoGBEOjumILIwJvBJFh7tu6k mJYuaRx2TSgXL4spZ2hO2i28VQwvQoDdRVtJBf5KIMi+rvx+uPcgPtpHteOM095hCjwJrVSnUxPZ NjaDLT0BmULJ6mo9YBiKL2thYnALD6oASzJoMhwLnnbaKE36oCNSNnEM+cUCQGqkBbDTQQK6TMMX Lvhxm2mjBYx5pw3O4QBouTRZl6dtnjAyUIoFElXHuOvkyIgw+6RxMKllNee2MdZI2kk/EXXrUHBM N3rYbrugWMIhZ/3ndI+dWDtpiHUoAGQVgTMfq0TAJp3GcEC5gmBhEsDkf9UwqJHOhS5FtWf1VgEg Ku+FaSVH0sl2ls7PXWxwbP2Kwk9L7TEV+M07UE+yIkjyi/VB4sUhasbgyJheW3fXqzEj/wMax+lV e0XyFg4lf6zRf66khZkGyKBy3xZbWK3PJ6yuveOIPa7bREIg3lHDFH4m9r9PE/4GaBdp77jkmzN4 PKAnSa0D8okT81GUjQAlJizL9kReBWybImk7ynyYZycLdCS0sIkVkzzFfjxrmfczb+76bTkxXdIE BFVd+xY+bSOzlNiwZr8vOvDx7EJam5b1jXoNQ1W24AcWJV1werVO57E3Wu0Esx6XLlyXoisaNEZI TRSjNQvLVsq3gfHYsiOpneyEyNk7jjER8pkOWLNcmQrNoWhPzfHe0dekxtgwYh61SQPTcSvZh8l4 hzY+hjbjqIuk7QQPcwOCWe5UfpvPYT3r1x+JklZFxIUk2qvTo2E6HLTuM2C0kfX0oAszt9TvHQZ8 E9hfs77gWpjduqlu1saULt3m9Cqwzq2tdZYGpQn6zaVLDrZLqlqIctjEBoZBDAmf6oTAOUm1zmLN c0j9LBnioIuU6ZsPZXaWIjMGBUO4hLIgWJ7UlIPFJLOu+I3MxuUBIKGhU0KyBx2g6YnP9LuLcPnP dVDEs9JEiCt2o4l2nBV2jWww0ZeW6rWsX7Lhw0zAwjugyU2Q14t/IIJf6QqXIUFhnQiogzr8sWJJ /Q7sbFUS1yEawD5zdi8XenVvfwUFV5VOyeSqgsl2S7golm2Tg+rZrqHfWHR4FDVB+yhreugfB3XW SlQpU0R9V+OfD53x1mDoJ2NFdRD/OySWtB5p7RZZYhULLCDVzr3r95bQztZqHosa3pSCJkxMTq6D UorQNODpWhlLT5Fcm8wAR95RiSF9/rSRycuJOOeVcxwqqKuq3/qP37saU0Tnz1/ySUuyoEvtXRM7 /OSKo/C7Ydbwm1nqY6o1Ke1sJd94inmarTx2Xo/sGYEl1mHj3OdKscjwQALZ9WUKb5xRPoSuyVE3 YTkic4B4IVC7G3Zktzk7Qscd5Y1NPXXSOnr9lc5vVXdD4cdqa19c1+5gAEeOqAyPyVmXd9z/SZFc +mDLbaW/wYomqjSYoPaq1uo2zjlvrTHfMz127lBYiZOwuqHvtJ+FKYzNN/yuxsdItnM52xaddBHG T5cGZUh6vIZ6mY3gqlsHN87yPydWvRapycmW7BoRvdAzQ7krXAwbXPNCIRnxZYqQITkFGaAXpyIC 1TtTEkhMTiSAMxlps2nzMVmhVkS7t8wGKclJ8tcK/Wd6Ff/196ARmwMWWzrfmEb7QGOFFjauL02A /AMQV3/2CIsCzcwfRQscpjS0yY0O3LoBsep8+/Zb07aUZSHhAYDECmMyJSHw7TnZKl6EUeNJNjZW OEwKzUEGxxt3R5i6nv904V3k7gjPkLaXpm1iveu9FN2smrV2pi1qtCAMthpQeVWW/b49IVW3jDhj w8omRznlyyTvq0qmuk87q1+4g8tbdEBlO+w2aqR2wL+f7Gpkd0spqe62FW/C2EzrtTYSxz0v0elt VTORBJrBOOBcUESMaLqR7VXIcYGxwctBHOfsuTymti8o8Xj5o7Drx+fU54OO7E0KjjyroQVZFSxv 56KaW85Aq0tRlvhsz4OVM+oFZuoAgvD22vKx1zWYPPqI7lexJRRPQGILcs4A+OmkA/bzbqXxORAo 7TAorx9qGsmh9TjHtoMrth97bkGM9zfiAujnSiK6hjQcbAwyFfyTo9edGnASAayGy4WpZ2qxs+EZ dTgXrw/rbgEdCzos/+vJyhPYUd899P8nW6Ku+HEG/5Nkyw/p7kmTe2i2dBdo98ao0NKQo77yHzJ4 LxZKFEQN5VqhcgOQrNNhfH6T4MHcNWX5FZOr0in8KX0IFYD8Yz/3KFO9fe5v69XJnXlLcRl8xuDD NHjJ4KaYqV9TRZXOSnwQGNkTMRjVA9+bGh+7+zO1RmODb+Uu2f7BsmNuFUVguhXbH4WHDlgMqShN 2Fmq8wMlnCp5ERKxsAEdDiAhyOvF1/rkz5Kzj4wSw4uRGADwdSzXYgebYeC7MUf58G9iuVzI0aEJ XO1XkJbhqbpzsarDwXJikgU1yPEw8CWawZR1TsjFJJ2cu2bvpW5zWa18Y5FZSEsVt2lmOL9UA2a/ 1NbuMb2ejkk5YCO8Kvj0Eru3LG2BLZXVQMZS0aRVGHBl5buBteWE1RP01tb12zIDQlaKnVy2eNaO qelKMPzZSl8NbvYkhbe+VaSgtBYmNrvG0JqE+oG5hZ017BHGVvQokBhQHycfWhjwVJ6dh+WngjIg BKJHbQgg/oUTkbJWJLEiiooWhnpWBWvGTc47RFT5RgrKT1U0dbwWFBN6gNRrzcG6Gr1VxNC1Ysqg PTfD7BYDXjIbTE0+UXm4KxQ2wYdchHLyXoQZKPLX8KLrhqN2bsfegi50MOVK05UyW7XitnG3EXf5 cr49dM+kplfxLVmEShNTld0o8Dx3nQJQeSuciwstFjJiywcGJL4NX+Ri0U+fJJ2CFSgCVx54FMNt d9KTIaFl5URIrjfx85yhKSK/JoU+slUaaoxnTMC4fe+4H7AWOR7DU648h4HhtUKvwLCuCDHVO7xa ObhNOdorVyksMGh5/lH+ua7VndDeWtDfzOqvWn4I2wltrfoVQRRLjoE6qpnIMLg8YSa0LoEPu+k5 DqO+n7IbXmAb7tV6b1wpxCQfUsTPVpv70Jg6xdgjr5Ff6d/0c0n7Niy7VfecquQlYqrSzyXtDOFV 7SV23gXj/Acgp0SpuX/t2oKjiSNDUJ2YmycDi7t9WA4fzf1dxwFkbz8I5IwhNKXQoc76PoWBERIr nc+WzqP19nxjl706irEoC7vb5ZPIUmwlNCg6bIMv+DW7lcrHdrQ2zon4IXBm0P5TVC/qC+F4eU8G Lg848PrJ95exnGBkRW2rpqZ9Dw05zwKNfdl433rfAkXeltL8P5OMmOOSgvStVvyqm/29YLchhZ1k 34gFW0d8AfglOn00t82racD+rVIuBuYLXwg5XVXXFWhvVtt5Rp1ChBmCI8HE8buNCnqEMPShixR6 JQeByQnbSmS56sSRwkK2C9EJ9wNwFiX2WzUIB9Qx3khDIKdGxqoeWbZimcoYH7yISVWl1VSK8sh1 o4Peuv7J9NDqmO0YVHBUpPtqr3HRU+PoHaQ/f4eDgxn52up6/NA71lHbIv4fp3+OHX+Z15qga94p 1afSu7mTOuefrsWGLefI4z9oH82RTR6Lurb0T0X0DMip3kGA6mPMSq/lVGjj/3unCU+liGUSy1lY rUQfxecEpk1t6AjMopH7um3antY4GhvRpaUAYjRfadjj01mB4jgMmDTVSStnE8TZmH4q0zUMFowz smsbiMulgj4WKaef5OQNEvgo7VgmN8yx0dkIuma+T0ZwDTrinpUyf47l97M8kCkzImx8s1XYsrRy /KzTKObyJPcXupBLWU+CKNOMYaPnn/2n0TN6Rs/oGT2jZ/SMntEzekbP6Bk9o2f0jJ7RM3pGz+gZ PaPn4z3/Fzf5qE4AQAEA ------=_Part_3415_13609534.1150971445577-- From INVALID.NOREPLY@gnu.org Thu Jun 22 07:54:37 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 138DC3B02A8 for ; Thu, 22 Jun 2006 07:54:37 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21553-06 for ; Thu, 22 Jun 2006 07:54:35 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 73FAA3B02F9 for ; Thu, 22 Jun 2006 07:54:35 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtNlY-0005Il-00; Thu, 22 Jun 2006 07:54:32 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 13:54:32 +0200 Date: Thu, 22 Jun 2006 13:54:32 +0200 To: Leonard den Ottolander , mc-devel@gnome.org Subject: [task #5673] Data Export #3 (bugs) From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: task X-Savane-Item-ID: 5673 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-135432.sv26390.82990@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.566 tagged_above=-999 required=2 tests=[AWL=0.034, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.566 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 11:54:37 -0000 URL: Summary: Data Export #3 (bugs) Project: GNU Midnight Commander Submitted by: leonardjo Submitted on: Thursday 22/06/06 at 13:54 Should Start On: Thursday 22/06/06 at 00:00 Should be Finished on: Friday 23/06/06 at 00:00 Category: None Priority: 5 - Normal Status: None Privacy: Private Assigned to: None Percent Complete: 0% Open/Closed: Open Effort: 0.00 _______________________________________________________ Details: A new export job has been registered. This task has been created to keep the project informed. However, only Leonard den Ottolander, that created the job, can remove the job itself. ######### JOB URL ######### Once the job will be done, it will be available at: ######### JOB REMOVAL ######### Closing this task will not remove the job. To remove the job, Leonard den Ottolander must go at ######### JOB DETAILS ######### The SQL query will be: SELECT bug_id FROM bugs WHERE group_id=3521 (Note: We are aware this information is not tremendously user-friendly. This will be improved in future Savane releases) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Thu Jun 22 08:09:08 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5CB333B0421 for ; Thu, 22 Jun 2006 08:09:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23152-01 for ; Thu, 22 Jun 2006 08:09:06 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 7DAD03B0401 for ; Thu, 22 Jun 2006 08:09:06 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 6AC464023 for ; Thu, 22 Jun 2006 14:09:05 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id xMGRfFcFP945 for ; Thu, 22 Jun 2006 14:09:03 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id CB99E4021 for ; Thu, 22 Jun 2006 14:09:03 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> Content-Type: text/plain Date: Thu, 22 Jun 2006 14:09:03 +0200 Message-Id: <1150978143.2807.11.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:09:08 -0000 Hello Igor, On Thu, 2006-06-22 at 14:17 +0400, Igor Russkih wrote: > "either during compilation time or in runtime" - I meant this is > already implemented. I should look for that switch then :) . > No, just clean mc snapshot from ibiblio.org. Can you make it available to me? I am quite curious where the changes I observe came from. They are quite a few, and if they are not in CVS I'm curious how they ended up in the tarball. > > Is it technically possible to reimplement that c++ code in c? (This is > > just theoretical question, I don't ask you to do it.) > It is possible to move this code to libcolorer side and implement > plain C API from library side - however this'll take more time and I > see no reason in doing this. My question was if it is technically possible to rewrite the cpp code for *mc* in c and (through trickery) still keep interface compatibility. A bit like linking Delphi (Pascal) to C code. This is possible through compiler switches changing the stack cleanup behaviour (and probably some alignment tricks). Again, I'm not asking you to do this, just inquiring about the theoretical possibility. It's a bit OT, I know ;) . Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Thu Jun 22 08:10:22 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CF08F3B0484 for ; Thu, 22 Jun 2006 08:10:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23399-04 for ; Thu, 22 Jun 2006 08:10:19 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id BBE813B0570 for ; Thu, 22 Jun 2006 08:10:19 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtO0n-00064f-00; Thu, 22 Jun 2006 08:10:17 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 14:10:17 +0200 Date: Thu, 22 Jun 2006 14:10:17 +0200 To: Leonard den Ottolander , mc-devel@gnome.org Subject: [task #5674] Data Export #4 (bugs) From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: task X-Savane-Item-ID: 5674 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-141017.sv26390.14093@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.566 tagged_above=-999 required=2 tests=[AWL=0.034, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.566 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:10:23 -0000 URL: Summary: Data Export #4 (bugs) Project: GNU Midnight Commander Submitted by: leonardjo Submitted on: Thursday 22/06/06 at 14:10 Should Start On: Thursday 22/06/06 at 00:00 Should be Finished on: Saturday 24/06/06 at 00:00 Category: None Priority: 5 - Normal Status: None Privacy: Private Assigned to: None Percent Complete: 0% Open/Closed: Open Effort: 0.00 _______________________________________________________ Details: A new export job has been registered. This task has been created to keep the project informed. However, only Leonard den Ottolander, that created the job, can remove the job itself. ######### JOB URL ######### Once the job will be done, it will be available at: ######### JOB REMOVAL ######### Closing this task will not remove the job. To remove the job, Leonard den Ottolander must go at ######### JOB DETAILS ######### The SQL query will be: SELECT bug_id FROM bugs WHERE group_id=3521 AND status_id IN (1) (Note: We are aware this information is not tremendously user-friendly. This will be improved in future Savane releases) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 13:49:13 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 721AA3B0733 for ; Wed, 21 Jun 2006 13:49:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26116-05 for ; Wed, 21 Jun 2006 13:49:11 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 8F2E03B06F1 for ; Wed, 21 Jun 2006 13:49:11 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6on-0001Zw-00; Wed, 21 Jun 2006 13:48:45 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:48:45 +0200 Date: Wed, 21 Jun 2006 19:48:45 +0200 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-194845.sv26390.25842@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> In-Reply-To: <20060306-153157.sv36205.31998@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.562 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.562 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 08:25:17 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:49:13 -0000 Follow-up Comment #25, bug #14155 (project mc): Ping. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Thu Jun 22 08:36:12 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 062EA3B0606 for ; Thu, 22 Jun 2006 08:36:12 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25706-05 for ; Thu, 22 Jun 2006 08:36:10 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id F034E3B03FD for ; Thu, 22 Jun 2006 08:36:09 -0400 (EDT) Received: (qmail invoked by alias); 22 Jun 2006 12:36:08 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp042) with SMTP; 22 Jun 2006 14:36:08 +0200 X-Authenticated: #14308112 Date: Thu, 22 Jun 2006 15:34:54 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150978143.2807.11.camel@athlon> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.477 tagged_above=-999 required=2 tests=[AWL=-0.012, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.477 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:36:12 -0000 On Thu, 22 Jun 2006, Leonard den Ottolander wrote: >>> Is it technically possible to reimplement that c++ code in c? (This is >>> just theoretical question, I don't ask you to do it.) >> It is possible to move this code to libcolorer side and implement >> plain C API from library side - however this'll take more time and I >> see no reason in doing this. > > My question was if it is technically possible to rewrite the cpp code > for *mc* in c and (through trickery) still keep interface compatibility. Not unless colorer exports C interfaces and it doesn't. The way it is implemented colorer exports a set of interfaces that one has to implement in terms of C++ classes. Theoretically it could be possible to create an C++ implementation of those interfaces, one that delegates the work to pure C functions. Again that means that colorer has to export a C. I don't see why this is such a big deal to you ? > A bit like linking Delphi (Pascal) to C code. This is possible through > compiler switches changing the stack cleanup behaviour (and probably > some alignment tricks). What about name mangling issues ? As I said above - you cannot avoid the C++ code. From leonard@den.ottolander.nl Thu Jun 22 08:36:29 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AFADE3B06C8 for ; Thu, 22 Jun 2006 08:36:29 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25640-08 for ; Thu, 22 Jun 2006 08:36:27 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id B69843B0677 for ; Thu, 22 Jun 2006 08:36:27 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 774334023 for ; Thu, 22 Jun 2006 14:36:21 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id XkAbOexUxtt9 for ; Thu, 22 Jun 2006 14:36:17 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id AA3E44021 for ; Thu, 22 Jun 2006 14:36:17 +0200 (CEST) Subject: Re: Progress bar From: Leonard den Ottolander To: MC development In-Reply-To: References: <1150913231.2801.73.camel@athlon> <1150920403.2801.95.camel@athlon> Content-Type: text/plain Date: Thu, 22 Jun 2006 14:36:17 +0200 Message-Id: <1150979777.2807.25.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:36:29 -0000 Hello Pavel, On Thu, 2006-06-22 at 07:52 +0300, Pavel Tsekov wrote: > Hampa's patch behaves exactly as described: > > [...] > If a file is moved by copy/remove the progress bar is advanced twice. On > the other hand, if a file is moved by renaming the progress bar is never > updated. > [...] I got confused by bug 10507 that doesn't distinguish clearly between copy and move. The copy progress bar behaves as expected. (copy_dir_dir() and move_dir_dir() do not show a bytes or count bar, but this is expected as they do not attempt to make an estimate of the number and size of the copied/moved files.) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Thu Jun 22 08:51:18 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C4EB23B06E1 for ; Thu, 22 Jun 2006 08:51:18 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27256-05 for ; Thu, 22 Jun 2006 08:51:17 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 562D33B066E for ; Thu, 22 Jun 2006 08:51:17 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtOdb-0000vu-00; Thu, 22 Jun 2006 08:50:23 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 14:50:22 +0200 Date: Thu, 22 Jun 2006 14:50:22 +0200 To: Gergely =?UTF-8?B?U3rDoXN6?= , Leonard den Ottolander , Pavel Tsekov , Oswald Buddenhagen , mc-devel@gnome.org Subject: [patch #4970] add label highlighting to c.syntax From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: patch X-Savane-Item-ID: 4970 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-145022.sv26390.88876@savannah.gnu.org> References: <20060312-194248.sv8412.23459@savannah.gnu.org> <20060317-170214.sv36205.75631@savannah.gnu.org> <20060317-161352.sv41304.82068@savannah.gnu.org> <20060317-211325.sv41304.63756@savannah.gnu.org> <20060318-120849.sv36205.36817@savannah.gnu.org> <20060318-144031.sv26390.61472@savannah.gnu.org> <20060319-090924.sv8412.83221@savannah.gnu.org> <20060319-164645.sv26390.22214@savannah.gnu.org> <20060319-204823.sv8412.33015@savannah.gnu.org> In-Reply-To: <20060319-204823.sv8412.33015@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.567 tagged_above=-999 required=2 tests=[AWL=0.033, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.567 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:51:19 -0000 Update of patch #4970 (project mc): Status: None => Done Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #9: Committed. Closing. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 08:59:11 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C623A3B071C for ; Thu, 22 Jun 2006 08:59:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28144-04 for ; Thu, 22 Jun 2006 08:59:10 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 8A51C3B0719 for ; Thu, 22 Jun 2006 08:59:10 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtOm3-0001Ef-00; Thu, 22 Jun 2006 08:59:07 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 14:59:07 +0200 Date: Thu, 22 Jun 2006 14:59:07 +0200 To: Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org Subject: [patch #4991] add .ipk extension to mc.ext From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: patch X-Savane-Item-ID: 4991 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-145906.sv26390.95959@savannah.gnu.org> References: <20060323-173337.sv36205.23406@savannah.gnu.org> <20060323-195337.sv26390.31728@savannah.gnu.org> In-Reply-To: <20060323-195337.sv26390.31728@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.568 tagged_above=-999 required=2 tests=[AWL=0.032, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.568 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:59:12 -0000 Update of patch #4991 (project mc): Category: None => Menu and associations Status: None => Done Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #2: Committed. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 09:01:57 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5704B3B0720 for ; Thu, 22 Jun 2006 09:01:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28587-02 for ; Thu, 22 Jun 2006 09:01:50 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id F38BE3B078C for ; Thu, 22 Jun 2006 09:00:53 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtOne-0001HY-00; Thu, 22 Jun 2006 09:00:46 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 15:00:44 +0200 Date: Thu, 22 Jun 2006 15:00:44 +0200 To: Sorin Sbarnea , Roland Illig , Leonard den Ottolander , mc-devel@gnome.org Subject: [patch #4741] Syntax Support for config files (conf,ini,cfg,...) From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: patch X-Savane-Item-ID: 4741 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-150044.sv26390.89917@savannah.gnu.org> References: <20051228-210650.sv46405.46961@savannah.gnu.org> <20051228-210735.sv46405.17938@savannah.gnu.org> <20060128-105039.sv20990.3126@savannah.gnu.org> In-Reply-To: <20060128-105039.sv20990.3126@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.568 tagged_above=-999 required=2 tests=[AWL=0.032, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.568 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:01:57 -0000 Follow-up Comment #2, patch #4741 (project mc): Ping. Sorin, if you do not fix these patches this report will be closed. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 08:40:20 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CEB323B06CE for ; Thu, 22 Jun 2006 08:40:20 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26231-01 for ; Thu, 22 Jun 2006 08:40:19 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 197813B0677 for ; Thu, 22 Jun 2006 08:40:19 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtOSt-00007u-00; Thu, 22 Jun 2006 08:39:19 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 15:39:19 +0300 Date: Thu, 22 Jun 2006 15:39:19 +0300 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060622-153919.sv36205.75620@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> <20060621-194845.sv26390.25842@savannah.gnu.org> In-Reply-To: <20060621-194845.sv26390.25842@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.567 tagged_above=-999 required=2 tests=[AWL=0.033, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.567 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 09:09:11 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:40:21 -0000 Follow-up Comment #26, bug #14155 (project mc): I guess we can safely close that one . If anyone has any kind of objections she/he could request that we reopen the bug report. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From irusskih@gmail.com Thu Jun 22 09:30:41 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72E753B06B5 for ; Thu, 22 Jun 2006 09:30:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30485-04 for ; Thu, 22 Jun 2006 09:30:40 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.204]) by menubar.gnome.org (Postfix) with ESMTP id BAB223B0559 for ; Thu, 22 Jun 2006 09:30:39 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id 18so390211nzp for ; Thu, 22 Jun 2006 06:30:39 -0700 (PDT) Received: by 10.37.22.14 with SMTP id z14mr1920162nzi; Thu, 22 Jun 2006 06:30:38 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Thu, 22 Jun 2006 06:30:38 -0700 (PDT) Message-ID: <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> Date: Thu, 22 Jun 2006 17:30:38 +0400 From: "Igor Russkih" To: "Leonard den Ottolander" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150978143.2807.11.camel@athlon> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.531 tagged_above=-999 required=2 tests=[AWL=0.069, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.531 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:30:41 -0000 > > already implemented. > I should look for that switch then :) . It's a runtime option in editor's settings dialog. You'll find it easily ;) > > No, just clean mc snapshot from ibiblio.org. > Can you make it available to me? I am quite curious where the changes I The latest one I've got from http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/snapshots/mc-2006-06-17-02.tar.gz The previous I've used (mc-2006-05-30-15.tar.gz) > > plain C API from library side - however this'll take more time and I > > see no reason in doing this. > My question was if it is technically possible to rewrite the cpp code > for *mc* in c and (through trickery) still keep interface compatibility. No. that's particular action is not possible as far as I know. Surely it is possible to make a kind of c++ API 'emulation' from pure C code - so that pure C component (mc) will start using pure C++ component (libcolorer). But this is just in theory and it's not a production solution. Hope I've answered your question ;) -- Igor From leonard@den.ottolander.nl Thu Jun 22 09:41:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 19F2E3B042A for ; Thu, 22 Jun 2006 09:41:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31154-10 for ; Thu, 22 Jun 2006 09:41:18 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id AAE543B00DE for ; Thu, 22 Jun 2006 09:41:18 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id C22344023 for ; Thu, 22 Jun 2006 15:41:17 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id sYin0FGGCowf for ; Thu, 22 Jun 2006 15:41:12 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 41DF34021 for ; Thu, 22 Jun 2006 15:41:12 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> Content-Type: text/plain Date: Thu, 22 Jun 2006 15:41:11 +0200 Message-Id: <1150983671.2807.29.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:41:21 -0000 Hello Igor, On Thu, 2006-06-22 at 17:30 +0400, Igor Russkih wrote: > The previous I've used (mc-2006-05-30-15.tar.gz) I cannot find that version anymore. Can you make it available to me somewhere so I can have a look? > No. that's particular action is not possible as far as I know. > Surely it is possible to make a kind of c++ API 'emulation' from pure > C code - so that pure C component (mc) will start using pure C++ > component (libcolorer). But this is just in theory and it's not a > production solution. > > Hope I've answered your question ;) Yup. Thanks :) . (No big deal, just curious.) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From irusskih@gmail.com Thu Jun 22 09:55:05 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 821D33B038B for ; Thu, 22 Jun 2006 09:55:05 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32339-08 for ; Thu, 22 Jun 2006 09:55:02 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.206]) by menubar.gnome.org (Postfix) with ESMTP id BC25B3B03A4 for ; Thu, 22 Jun 2006 09:55:01 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id s18so421398nze for ; Thu, 22 Jun 2006 06:55:01 -0700 (PDT) Received: by 10.37.13.43 with SMTP id q43mr2012277nzi; Thu, 22 Jun 2006 06:55:01 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Thu, 22 Jun 2006 06:55:01 -0700 (PDT) Message-ID: <861727ef0606220655o5a195eb2ub12e508c313f7779@mail.gmail.com> Date: Thu, 22 Jun 2006 17:55:01 +0400 From: "Igor Russkih" To: "Leonard den Ottolander" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150983671.2807.29.camel@athlon> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <1150983671.2807.29.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:55:05 -0000 > > The previous I've used (mc-2006-05-30-15.tar.gz) > I cannot find that version anymore. Can you make it available to me > somewhere so I can have a look? I've placed it at http://colorer.sourceforge.net/files/mc-2006-05-30-15.tar.gz -- Igor From leonard@den.ottolander.nl Thu Jun 22 10:10:01 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 74CA33B081D for ; Thu, 22 Jun 2006 10:10:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01047-02 for ; Thu, 22 Jun 2006 10:10:00 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 57E513B07DF for ; Thu, 22 Jun 2006 10:10:00 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id D18C44023 for ; Thu, 22 Jun 2006 16:09:58 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id lUd8k95cotkD for ; Thu, 22 Jun 2006 16:09:54 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 4FCBC4021 for ; Thu, 22 Jun 2006 16:09:54 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606220655o5a195eb2ub12e508c313f7779@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <1150983671.2807.29.camel@athlon> <861727ef0606220655o5a195eb2ub12e508c313f7779@mail.gmail.com> Content-Type: text/plain Date: Thu, 22 Jun 2006 16:09:48 +0200 Message-Id: <1150985388.2807.32.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 14:10:01 -0000 Hello Igor, On Thu, 2006-06-22 at 17:55 +0400, Igor Russkih wrote: > I've placed it at > http://colorer.sourceforge.net/files/mc-2006-05-30-15.tar.gz Thanks. Well, that clears things up for me :-) . It turns out all the changes I observed are caused by the autogen step used to create the snapshots. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Thu Jun 22 10:32:26 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D276D3B041B for ; Thu, 22 Jun 2006 10:32:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02378-03 for ; Thu, 22 Jun 2006 10:32:25 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id AADAE3B0658 for ; Thu, 22 Jun 2006 10:32:25 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id B61094023 for ; Thu, 22 Jun 2006 16:32:24 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id uGEZi1J4kOTe for ; Thu, 22 Jun 2006 16:32:23 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 3F85C4021 for ; Thu, 22 Jun 2006 16:32:23 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> Content-Type: text/plain Date: Thu, 22 Jun 2006 16:32:22 +0200 Message-Id: <1150986742.2807.34.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 14:32:27 -0000 Hi Igor, On Thu, 2006-06-22 at 17:30 +0400, Igor Russkih wrote: > It's a runtime option in editor's settings dialog. You'll find it easily ;) Yes, got it. But you've introduced a duplicate hotkey C. Please choose another one. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Thu Jun 22 11:11:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 551443B0501 for ; Thu, 22 Jun 2006 11:11:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04503-07 for ; Thu, 22 Jun 2006 11:11:20 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 158503B0331 for ; Thu, 22 Jun 2006 11:11:20 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 0F4434023; Thu, 22 Jun 2006 17:11:19 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 5-UDyn51ImKM; Thu, 22 Jun 2006 17:11:15 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 9317F4021; Thu, 22 Jun 2006 17:11:15 +0200 (CEST) Subject: Where to report issues with mccolorer? From: Leonard den Ottolander To: Igor Russkih Content-Type: text/plain Date: Thu, 22 Jun 2006 17:11:15 +0200 Message-Id: <1150989075.2807.39.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 15:11:21 -0000 Hello Igor, Where do you want us to report issues with mccolorer? In the colorer bug system? (I'm seeing a crash when opening the syntax highlighting dialog for the old syntax highlighting.) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From ossi@kde.org Thu Jun 22 12:10:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C556D3B01D2 for ; Thu, 22 Jun 2006 12:10:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08495-02 for ; Thu, 22 Jun 2006 12:10:20 -0400 (EDT) Received: from ktown.kde.org (ktown.kde.org [131.246.120.250]) by menubar.gnome.org (Postfix) with SMTP id 97E283B07A2 for ; Thu, 22 Jun 2006 12:10:19 -0400 (EDT) Received: (qmail 3801 invoked from network); 22 Jun 2006 16:10:17 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 22 Jun 2006 16:10:17 -0000 Received: from ossi by ugly.local with local (masqmail 0.2.21) id 1FtRkx-0uH-00 for ; Thu, 22 Jun 2006 18:10:11 +0200 Date: Thu, 22 Jun 2006 18:10:11 +0200 From: Oswald Buddenhagen To: mc-devel@gnome.org Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine Message-ID: <20060622161011.GC3368@ugly.local> Mail-Followup-To: mc-devel@gnome.org References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.586 tagged_above=-999 required=2 tests=[AWL=0.013, BAYES_00=-2.599] X-Spam-Score: -2.586 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 16:10:22 -0000 On Thu, Jun 22, 2006 at 05:30:38PM +0400, Igor Russkih wrote: > > > already implemented. > > I should look for that switch then :) . > It's a runtime option in editor's settings dialog. You'll find it easily ;) > fwiw, i think this is silly. typical example of over-configurability. if it has to be runtime-switchable (why?), don't put it in the dialog at least. -- Hi! I'm a .signature virus! Copy me into your ~/.signature, please! -- Chaos, panic, and disorder - my work here is done. From proski@gnu.org Thu Jun 22 14:15:51 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0453A3B0750 for ; Thu, 22 Jun 2006 14:15:51 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16309-05 for ; Thu, 22 Jun 2006 14:15:48 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id E86833B082D for ; Thu, 22 Jun 2006 14:15:47 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FtTiV-0003Lh-2P for mc-devel@gnome.org; Thu, 22 Jun 2006 14:15:47 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FtTiL-0008PV-3w; Thu, 22 Jun 2006 14:15:37 -0400 Subject: Re: Snapshots availability From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150924866.2801.100.camel@athlon> References: <1150924866.2801.100.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Thu, 22 Jun 2006 14:15:37 -0400 Message-Id: <1151000137.3539.23.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.595 tagged_above=-999 required=2 tests=[AWL=0.005, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.595 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 18:15:51 -0000 Hello, Leonard! On Wed, 2006-06-21 at 23:21 +0200, Leonard den Ottolander wrote: > Hi, > > Who is the creator of the two weekly snapshots found at > http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/snapshots/ ? > Pavel? Miguel? I generate them using maint/mcsnap > Could you please keep a couple of months worth of snapshots around? I > couldn't find the May 30th snapshot when I wanted to compare it with > mccolorer. Snapshots are not intended for developers. Developers should be using proper version control systems. Snapshots are for users who want to try the latest features and check if some bug has been fixed, but who don't intend to keep the sources up-to-date. -- Regards, Pavel Roskin From ptsekov@gmx.net Fri Jun 23 03:10:45 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EBAB33B0646 for ; Fri, 23 Jun 2006 03:10:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21658-09 for ; Fri, 23 Jun 2006 03:10:39 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id D4E653B00ED for ; Fri, 23 Jun 2006 03:10:38 -0400 (EDT) Received: (qmail invoked by alias); 23 Jun 2006 07:10:36 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp019) with SMTP; 23 Jun 2006 09:10:36 +0200 X-Authenticated: #14308112 Date: Fri, 23 Jun 2006 10:09:20 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole Cc: MC development Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.477 tagged_above=-999 required=2 tests=[AWL=-0.012, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.477 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 07:10:45 -0000 Hello Igor, On Thu, 22 Jun 2006, Igor Russkih wrote: > Here attached the patch over mc-2006-06-17-02 (snapshot from > ibiblio.org). Please don't make direct diffs between mc-colorer and > cvs snapshot since they are different versions. Use this patch for > reviewing. > > I've separated the patch for easier understanding: > build.diff - make/configs changes There is no need to include configure, config.h.in, Makefile.in and and any other autogenerated files in your patches. Next time, please, submit only your changes to configure.ac and Makefile.am. From ptsekov@gmx.net Fri Jun 23 03:59:56 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0322F3B0393 for ; Fri, 23 Jun 2006 03:59:56 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25386-04 for ; Fri, 23 Jun 2006 03:59:54 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id F0DE13B013B for ; Fri, 23 Jun 2006 03:59:53 -0400 (EDT) Received: (qmail invoked by alias); 23 Jun 2006 07:59:49 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp033) with SMTP; 23 Jun 2006 09:59:49 +0200 X-Authenticated: #14308112 Date: Fri, 23 Jun 2006 10:58:32 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 07:59:56 -0000 Hello Igor, On Thu, 22 Jun 2006, Igor Russkih wrote: > Here attached the patch over mc-2006-06-17-02 (snapshot from > ibiblio.org). Please don't make direct diffs between mc-colorer and > cvs snapshot since they are different versions. Use this patch for > reviewing. > > I've separated the patch for easier understanding: > build.diff - make/configs changes Index: edit/Makefile.am =================================================================== --- edit/Makefile.am (.../branches/MC-VENDOR/mccolorer) (revision 776) +++ edit/Makefile.am (.../trunk/mccolorer) (revision 776) @@ -6,10 +6,19 @@ noinst_LIBRARIES = endif +if USE_COLORER libedit_a_SOURCES = \ bookmark.c edit.c editcmd.c editwidget.c editdraw.c editkeys.c \ editmenu.c editoptions.c editcmddef.h edit.h edit-widget.h \ + editlock.c editlock.h syntax.c usermap.h usermap.cwordproc.c \ ^^^^^^^^^^^^^^^^^^^ JFYI, there is a missing space here. From ptsekov@gmx.net Fri Jun 23 05:07:03 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 598393B01BA for ; Fri, 23 Jun 2006 05:07:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30249-08 for ; Fri, 23 Jun 2006 05:07:02 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 83B173B012A for ; Fri, 23 Jun 2006 05:07:01 -0400 (EDT) Received: (qmail invoked by alias); 23 Jun 2006 09:06:59 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp035) with SMTP; 23 Jun 2006 11:06:59 +0200 X-Authenticated: #14308112 Date: Fri, 23 Jun 2006 12:05:39 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Where to report issues with mccolorer? In-Reply-To: <1150989075.2807.39.camel@athlon> Message-ID: References: <1150989075.2807.39.camel@athlon> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="-559023410-851401618-1151053539=:24144" X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 09:07:03 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. ---559023410-851401618-1151053539=:24144 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed On Thu, 22 Jun 2006, Leonard den Ottolander wrote: > Where do you want us to report issues with mccolorer? In the colorer bug > system? > > (I'm seeing a crash when opening the syntax highlighting dialog for the > old syntax highlighting.) Find attached a patch. ---559023410-851401618-1151053539=:24144 Content-Type: TEXT/PLAIN; charset=US-ASCII; name=edit_free_syntax_rules_fix.diff Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: attachment; filename=edit_free_syntax_rules_fix.diff SW5kZXg6IGVkaXQvc3ludGF4LmMNCj09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0N ClJDUyBmaWxlOiAvY3Zzcm9vdC9tYy9tYy9lZGl0L3N5bnRheC5jLHYNCnJl dHJpZXZpbmcgcmV2aXNpb24gMS44MA0KZGlmZiAtdSAtcCAtcjEuODAgc3lu dGF4LmMNCi0tLSBlZGl0L3N5bnRheC5jCTMgQXByIDIwMDYgMjE6MjI6MDkg LTAwMDAJMS44MA0KKysrIGVkaXQvc3ludGF4LmMJMjMgSnVuIDIwMDYgMDk6 MDI6NDMgLTAwMDANCkBAIC05NjksNiArOTgzLDEyIEBAIHZvaWQgZWRpdF9m cmVlX3N5bnRheF9ydWxlcyAoV0VkaXQgKiBlZGkNCiANCiAgICAgaWYgKCFl ZGl0KQ0KIAlyZXR1cm47DQorDQorI2lmIFVTRV9DT0xPUkVSDQorICAgIGNv bG9yZXJfZnJlZV9zeW50YXhfcnVsZXMoZWRpdCk7DQorICAgIHJldHVybjsN CisjZW5kaWYgICAgDQorDQogICAgIGlmIChlZGl0LT5kZWZpbmVzKQ0KIAlk ZXN0cm95X2RlZmluZXMgKCZlZGl0LT5kZWZpbmVzKTsNCiAgICAgaWYgKCFl ZGl0LT5ydWxlcykNCg== ---559023410-851401618-1151053539=:24144-- From irusskih@gmail.com Fri Jun 23 07:08:31 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 679073B069B for ; Fri, 23 Jun 2006 07:08:31 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05406-10 for ; Fri, 23 Jun 2006 07:08:29 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.204]) by menubar.gnome.org (Postfix) with ESMTP id 229933B00EF for ; Fri, 23 Jun 2006 07:08:29 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id 9so741233nzo for ; Fri, 23 Jun 2006 04:08:28 -0700 (PDT) Received: by 10.36.252.42 with SMTP id z42mr3610654nzh; Fri, 23 Jun 2006 04:08:28 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Fri, 23 Jun 2006 04:08:28 -0700 (PDT) Message-ID: <861727ef0606230408p69fe14dbhf846cedd458dfb0e@mail.gmail.com> Date: Fri, 23 Jun 2006 15:08:28 +0400 From: "Igor Russkih" To: "Pavel Tsekov" Subject: Re: Where to report issues with mccolorer? In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <1150989075.2807.39.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 11:08:31 -0000 > > (I'm seeing a crash when opening the syntax highlighting dialog for the > > old syntax highlighting.) > > Find attached a patch. > Thanks, Pavel! -- Igor From INVALID.NOREPLY@gnu.org Thu Jun 22 09:43:19 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9E7BD3B04F0 for ; Thu, 22 Jun 2006 09:43:19 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31278-09 for ; Thu, 22 Jun 2006 09:43:18 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 109113B00E0 for ; Thu, 22 Jun 2006 09:43:18 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtPSa-0003x3-00; Thu, 22 Jun 2006 09:43:04 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 15:43:04 +0200 Date: Thu, 22 Jun 2006 15:43:04 +0200 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-154303.sv26390.2544@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> <20060621-194845.sv26390.25842@savannah.gnu.org> <20060622-153919.sv36205.75620@savannah.gnu.org> In-Reply-To: <20060622-153919.sv36205.75620@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.569 tagged_above=-999 required=2 tests=[AWL=0.031, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.569 X-Spam-Level: X-Mailman-Approved-At: Fri, 23 Jun 2006 08:55:54 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:43:19 -0000 Update of bug #14155 (project mc): Status: Need Info => Fixed Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #27: Not sure why you didn't close it then. You should be able to. Closing. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 10:21:29 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0BCC83B0331 for ; Thu, 22 Jun 2006 10:21:29 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01617-09 for ; Thu, 22 Jun 2006 10:21:27 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 97F493B055E for ; Thu, 22 Jun 2006 10:21:27 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtQ3Y-0005T3-00; Thu, 22 Jun 2006 10:21:16 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 17:21:15 +0300 Date: Thu, 22 Jun 2006 17:21:15 +0300 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060622-172115.sv36205.4532@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> <20060621-194845.sv26390.25842@savannah.gnu.org> <20060622-153919.sv36205.75620@savannah.gnu.org> <20060622-154303.sv26390.2544@savannah.gnu.org> In-Reply-To: <20060622-154303.sv26390.2544@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.569 tagged_above=-999 required=2 tests=[AWL=0.031, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.569 X-Spam-Level: X-Mailman-Approved-At: Fri, 23 Jun 2006 08:55:54 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 14:21:29 -0000 Follow-up Comment #28, bug #14155 (project mc): This is getting annoying. I didn't close it because of comment #24. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 10:35:57 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9C2443B0578 for ; Thu, 22 Jun 2006 10:35:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02525-02 for ; Thu, 22 Jun 2006 10:35:56 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 0E9E23B06AE for ; Thu, 22 Jun 2006 10:35:56 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtQHD-0006LN-00; Thu, 22 Jun 2006 10:35:23 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 16:35:22 +0200 Date: Thu, 22 Jun 2006 16:35:22 +0200 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-163522.sv26390.98931@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> <20060621-194845.sv26390.25842@savannah.gnu.org> <20060622-153919.sv36205.75620@savannah.gnu.org> <20060622-154303.sv26390.2544@savannah.gnu.org> <20060622-172115.sv36205.4532@savannah.gnu.org> In-Reply-To: <20060622-172115.sv36205.4532@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.569 tagged_above=-999 required=2 tests=[AWL=0.031, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.569 X-Spam-Level: X-Mailman-Approved-At: Fri, 23 Jun 2006 08:55:54 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 14:35:57 -0000 Follow-up Comment #29, bug #14155 (project mc): Sorry. I took comment #26 as a "we can close this report", and thought you still weren't aware you could close bugs. Well, you can reopen it yourself if you want. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Fri Jun 23 16:11:47 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A0C263B04C1 for ; Fri, 23 Jun 2006 16:11:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02632-04 for ; Fri, 23 Jun 2006 16:11:43 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 458263B06F5 for ; Fri, 23 Jun 2006 16:11:43 -0400 (EDT) Received: (qmail invoked by alias); 23 Jun 2006 20:11:41 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp027) with SMTP; 23 Jun 2006 22:11:41 +0200 X-Authenticated: #14308112 Date: Fri, 23 Jun 2006 23:10:28 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <20060622161011.GC3368@ugly.local> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <20060622161011.GC3368@ugly.local> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 20:11:47 -0000 On Thu, 22 Jun 2006, Oswald Buddenhagen wrote: > On Thu, Jun 22, 2006 at 05:30:38PM +0400, Igor Russkih wrote: >>>> already implemented. >>> I should look for that switch then :) . >> It's a runtime option in editor's settings dialog. You'll find it easily ;) >> > fwiw, i think this is silly. typical example of over-configurability. if > it has to be runtime-switchable (why?), don't put it in the dialog at > least. Today I've modified Igor's patch as follows: 1) The part of his patch which depends on libcolorer is built as shared library (libcolorer_glue). The library exports a single method which is used to get an array of function pointers - these are methods from the library that the editor calls. 2) The part of his patch which doesn't directly depend on libcolorer remains in the editor source tree (only C code). It exports a set of functions which the code in libcolorer_glue needs to query to the editor, again passed as an array of functions pointers. 3) The editor tries to dynamically load libcolorer_glue.so and if it fails it fallbacks to the default syntax highlighting code. Otherwise colorer is used. These changes allow one to build MC with colorer support but doesn't require libcolorer to be present on the target system. I've made also some other changes - mainly related to the autoconf stuff. Since I am to tired to diff now I'll post patches tomorrow. From INVALID.NOREPLY@gnu.org Fri Jun 23 19:07:00 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EB3193B0968 for ; Fri, 23 Jun 2006 19:06:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10295-10 for ; Fri, 23 Jun 2006 19:06:56 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id C31D33B0957 for ; Fri, 23 Jun 2006 19:06:56 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ftujd-0000Pu-00; Fri, 23 Jun 2006 19:06:45 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Fri, 23 Jun 2006 23:06:44 +0000 Date: Fri, 23 Jun 2006 23:06:44 +0000 To: SGh , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16303] More functionally u7z From: SGh X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16303 User-Agent: Opera/8.51 (X11; Linux i686; U; ru) X-Apparently-From: 80.91.160.214 (Savane authenticated user sgh) Message-Id: <20060623-230644.sv45177.8861@savannah.gnu.org> References: <20060408-134359.sv45177.11632@savannah.gnu.org> <20060408-134508.sv45177.86924@savannah.gnu.org> <20060408-134854.sv45177.29103@savannah.gnu.org> <20060518-165152.sv36205.74443@savannah.gnu.org> <20060530-195233.sv45177.57929@savannah.gnu.org> <20060621-193556.sv26390.77497@savannah.gnu.org> <20060621-191535.sv45177.54566@savannah.gnu.org> In-Reply-To: <20060621-191535.sv45177.54566@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.571 tagged_above=-999 required=2 tests=[AWL=0.029, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.571 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 23:07:00 -0000 Follow-up Comment #6, bug #16303 (project mc): Here is my patch to original u7z, fixed things: 1) Detection if we have 7z or only 7za installed. (With 7z we can work with all 7z-supported archives, i.e. CABs, etc... Only have to rename this script in ucab.) 2) Workaround for old version p7zip archives with prefix ./ in filenames. 3) Fixed directory creation in mcu7zip_mkdir, now it works properly. _______________________________________________________ Additional Item Attachment: File name: u7z.patch Size:1 KB u7z patch _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Sun Jun 25 11:04:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 440133B0079 for ; Sun, 25 Jun 2006 11:04:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18607-01 for ; Sun, 25 Jun 2006 11:04:13 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 4E6B43B008C for ; Sun, 25 Jun 2006 11:04:12 -0400 (EDT) Received: (qmail invoked by alias); 25 Jun 2006 15:03:15 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp041) with SMTP; 25 Jun 2006 17:03:15 +0200 X-Authenticated: #14308112 Date: Sun, 25 Jun 2006 18:02:00 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Where to report issues with mccolorer? In-Reply-To: <861727ef0606230408p69fe14dbhf846cedd458dfb0e@mail.gmail.com> Message-ID: References: <1150989075.2807.39.camel@athlon> <861727ef0606230408p69fe14dbhf846cedd458dfb0e@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jun 2006 15:04:16 -0000 On Fri, 23 Jun 2006, Igor Russkih wrote: >>> (I'm seeing a crash when opening the syntax highlighting dialog for the >>> old syntax highlighting.) >> >> Find attached a patch. >> > Thanks, Pavel! There are some issues with edit_syntax_colorer_dialog() too: 1) The number of elements allocated for 'groups' is one less than it should be. The extra element is needed for the NULL terminator. Memory could be overwritten if the number of groups is equal to the number of syntax types i.e. unique groups. This is unlikely to happen but still... 2) This one is worse because it trashes memory every time :) The memory allocated for 'types' in the while loop is used to store the descriptions of the syntax types and the names of the syntax types. Syntax type names are stored starting at the end of the array and syntax names are stored at the beginning. Now this line is wrong : types[types_list[0].items_number * 2 - types_num] = types_list[idx].name The first time it is invoked it trashes the memory after the last element of the 'types' array. I fixed it like this: types = g_malloc(sizeof(char*) * ((types_list[0].items_number * 2) + 1)); i.e. allocat one more element. It makes sense to do so because you use a NULL terminator for which no space is allocated again and this extra bytes makes the wrong indexing above work as expected. From ptsekov@gmx.net Sun Jun 25 16:16:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72FA33B02DF for ; Sun, 25 Jun 2006 16:16:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31539-10 for ; Sun, 25 Jun 2006 16:16:25 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id E6E853B016D for ; Sun, 25 Jun 2006 16:04:45 -0400 (EDT) Received: (qmail invoked by alias); 25 Jun 2006 20:04:23 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp022) with SMTP; 25 Jun 2006 22:04:23 +0200 X-Authenticated: #14308112 Date: Sun, 25 Jun 2006 23:03:09 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <20060622161011.GC3368@ugly.local> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jun 2006 20:16:36 -0000 Hello, Find attached the patch. In order to build MC you have to run libtoolize in the MC source tree. I've added the ability to tell configure where you colorer is installed. You can pass the colorer directory via the --with-colorer configure option - for example: --with-colorer=/home/ptsekov/colorer This command line option defaults to /usr/local. This patch is just a proof of concept thing. I am posting it so that you can test it and then we can discuss it. Igor, do you mind moving the declarations of the classes found in syntax-colorer.cpp to syntax-colorer.h ? This way we could move all the C functions from syntax-colorer.cpp to syntax-colorer-interface.cpp and make them static and only accessible thru colorer_interface_t. On Fri, 23 Jun 2006, Pavel Tsekov wrote: > On Thu, 22 Jun 2006, Oswald Buddenhagen wrote: > >> On Thu, Jun 22, 2006 at 05:30:38PM +0400, Igor Russkih wrote: >>>>> already implemented. >>>> I should look for that switch then :) . >>> It's a runtime option in editor's settings dialog. You'll find it easily ;) >>> >> fwiw, i think this is silly. typical example of over-configurability. if >> it has to be runtime-switchable (why?), don't put it in the dialog at >> least. > > > Today I've modified Igor's patch as follows: > > 1) The part of his patch which depends on libcolorer > is built as shared library (libcolorer_glue). The library > exports a single method which is used to get an array > of function pointers - these are methods from the library > that the editor calls. > > 2) The part of his patch which doesn't directly depend > on libcolorer remains in the editor source tree (only > C code). It exports a set of functions which the code > in libcolorer_glue needs to query to the editor, again > passed as an array of functions pointers. > > 3) The editor tries to dynamically load libcolorer_glue.so > and if it fails it fallbacks to the default syntax highlighting > code. Otherwise colorer is used. > > These changes allow one to build MC with colorer support but > doesn't require libcolorer to be present on the target system. > > I've made also some other changes - mainly related to the autoconf > stuff. > > Since I am to tired to diff now I'll post patches tomorrow. From ptsekov@gmx.net Sun Jun 25 16:17:03 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8F76F3B035B for ; Sun, 25 Jun 2006 16:17:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31756-01 for ; Sun, 25 Jun 2006 16:16:47 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id A94903B0018 for ; Sun, 25 Jun 2006 16:06:13 -0400 (EDT) Received: (qmail invoked by alias); 25 Jun 2006 20:05:56 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp039) with SMTP; 25 Jun 2006 22:05:56 +0200 X-Authenticated: #14308112 Date: Sun, 25 Jun 2006 23:04:36 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <20060622161011.GC3368@ugly.local> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="-559023410-851401618-1151265835=:10990" Content-ID: X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jun 2006 20:17:03 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. ---559023410-851401618-1151265835=:10990 Content-Type: TEXT/PLAIN; CHARSET=US-ASCII; FORMAT=flowed Content-ID: I forgot to attach the patch :( ---559023410-851401618-1151265835=:10990 Content-Type: APPLICATION/octet-stream; name=colorer-dynload.patch.gz Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: attachment; filename=colorer-dynload.patch.gz H4sICArGnkQCA2NvbG9yZXItZHlubG9hZC5wYXRjaADsPWt32zayn+1fgbq3 qSRLsuRXGil26yp24nucOFd2tu3J5uhQJCRxQ4lakrLju/X+9juDB4kXJdlN 2rP3JNu1SQAzGAxmBjMDEA7C0Yg03iSLOWl8Ir2/XeGv72vNOAnH34vnhP5D PP6b/25+W2MP3iKLp/sZbfqeP6HEj6g325n6O34cxQlNBuNoQXdeex/pKIxo 05uSJXWbjUZjNYaN9rOnrUarDf+R1m6n1YL/mi35j2y3dlutze3t7WU9bUCb wwb8t7tP2nud3YPO/tPmD3sHh/uHHMce4PjpJ9Jo1eGtXW+3yU8/bW73Li8u +6f9wfmb3sW7F6dX5Ij8ZJYpzS7Of9aa4DtUR+FQpWsQeYPe2cXJS2z7XxUT XxXKXgKkaFN1w//660MwMByDi2so7J/0z9lADKzNyBPtzL6uLt/1ewzk75vb G+ndLPM+NUSjpj+fE72oEc4ymow8H0SkBOPFC5t45FWVNCLRdjP44kJaTjZZ v+kSES4HerREL0GZC/gBaf/Q2Xvaae02dw/29/Z3nQK+v8cEfKe2uU0I6cXz O+DrJCOVXpUgKnI+jhPSX6Tpx3BCnoeJePIyMp56YUSCOCN+PD3GKQYM15Mw JfMkHieg8vA4SiglaTzKbr2EdsldvCC+NyMJDcI0S8LhIqMkzIg3C3agn2kM 033HEEHhYhbQhGQwcTC8aUriEXt5+eYdeUlnNPEi8nYxjEKfXIQ+naWUeNA3 lqQTGpAhR4QgZ0jFlaCCnMWA2cvCeNYlNIT6hNzQJIV3sis7ERjrJE4YlgoM GIhPSDxHwCpQfEciLytgmyUcKAYakHDGkE/iOYxpAihhlLdhFJEhJYuUjhZR neGA1uSX8+tXl++uycmb38gvJ/3+yZvr37rQOpvEUEtvKMcVTudRCKhhZIk3 y+5gAAzF69N+7xXAnPx8fnF+/RuMg5ydX785vboiZ5d9ckLenvSvz3vvLk76 5O27/tvLq9MmIVcUCaMMwxI+j9hcASsDmoEQpHLsv8H0pkBfFJCJd0Nhmn0a 3gB1HsjI/G71DDIsXhTPxmyk0LpgZpeEIzKLszq5TUIQmyy255bBF/NbJ+cz v1knB21o5s0+RjABVxkAAJKzcAQdnEVxnNTJz3GaYfPXJwxDa7fdbjXae612 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 5OS+D/GYiwKgaFxtV2Mio2x5++12zh2jBymEBiJZnEtwDsZKJTNyKJeDqeqm 9bnUuh9LlWyrvf9AJDVWRSlBJZ/PWR/tLVnDDVDXxSn6roCWccKjlqBylUa7 znOA7p0E864WdfnS6t7rO4iNYyxlGbJKdbv9wYm87DjWElRlK5xOC1ss8BGw msiAxedQIxaLLP5IZ0tWIAdesYO0HG80i1djwmzRSkz6OfX7kqlZxv6cFflu uPRQXTKTr2fabQbGN8MOsWQbjGVnMh7uFRoNHnraw+V6W1dNVaxvnJ2j0p3C f6191I21d2en7PzzkvGmynjl8sOoreY5th8ZRtLR0vlOz4R/BbvkjMBIoYsf w9SOEJtH2/VvYtRtDrneF6dVSI1v6bj3t0d4jEru+QzZwZwf83f22smPjXR1 0KEGyg7iFKDstZOfMzFAE+3WrOJwJ6DcJpXR+Pnzfc0TR4FgMK6jvhzZiqM1 yqGa0fiDdshmOP5QtU6P2ZRtS7rYqLNVB6cQ6Lu08x2mpr8LPvCTM8upqBN1 /PVV/Fme1ixI1ORHXQzNb4T4P/VkfnF+FSus4yj5ITYG5zzNon0hULMOraAw WEfD7ONJypkjAZin31nX5hkboXuWF6985GXUWc69arn5/4pLbPgHdpvb9vf0 6g1n5BHHuIVoO3Ly8kYs7KDD9nG1+yHE90y5xSyWG+00lk2xGR3rn+iDedWa 6Wee5GiKEQhofSeW3XZm3ndo3yznup5gHY4gpq1iVyc/VIxEm9zIW8nPN4xh dl21TvqtKw0ffKtGPjYXxXZmSndoa8Y9ivkIlAvsKvqJFXsM2mWKqy/z+EME 23Sqp7XUC0Puza8+nTvsy4RlPfqsnR9dahVK3Vv8LlLVLPmfSaGWne9yI28R Z+xnfQb6WmuSZ+6kdVdSl29F/GVUFpshZROtZ5T/7Ok28tmSSFeyueSqzEpB oOjJWAWt9uWWvOhu1YUsxQW2Ml63snu5/XCb3cfm+Fzff3c6FkaBo7irxT3i xyUz3DTYCJ1EWH6D45pf8jkE0f6Acako6kGqW7lXU+m4/eqLKZBJT76TcK97 dka6p/S63b+A6UbGqlxQVxFaXyu55dBbM5Fh91/EvW65l/UF4//8a3FXXob7 gCtwP9vFt9Z1t/utTnu/edA+OCj7CxW77YddQ0Qm1Avwg4qvtxF9vY3o621E j7ofd8mtuK8e8HcCVl2aS7Rbc+UdFULFv09JGkIXLOXFxr4T0OJF3tfwmVMV 3UcG9F39gp1X/R5hpwOI9DVRF0/enguyH+TPFhcG/jEPVbsJJM9xFUQ91Dko Z8QXW6y1IUiF67PVti6y0Skyvw4/XrC8dyoG51q/C7ZKlH36zwVNs5TZA48w FoKKezdgE/B7PfXrcSdm65b9B93DWBCCNgDtBL0J40Ua3QmfCQ0PWMU7Z9/2 Vf0PuLlR5QFYd7DGqbwvmQUybFtSmnv2fQL7Cxb8vFMuQI/047X+exNvNn5E 75/BL1fpYLRgohhUOEs8dvFMjH2AlU64mAhpYJfnTMDJYLeK4YGE9C4FcZVY dj57ik3j1xU7bw0Mg5mksIaKhI486CycDn7gnF2+E4J8Y2a56WDcujkpNwVj dugbpJXdH8b9nE8Z64zmJ69d3a7IL/2B3hgIjnrqfaR42xkeJyRDWEY+crjQ SdDqnNKXpSkl8k+p0E+41KJUCeh0Nb3Lsky6rgGt6GpNQG54wpSvruDszOfg vqDKaUr2R/Ksbksr8j0E90XwSNYskGoVJ7kNKFX0tfJVf/21sUi/+dcCzTI9 GjNrMW46aLSesr/sd4h/+OzgBy0A2ysCMBes/KuAu7udg0P4r/ms3T48ONBj rnarfghBF/6E1ygcshnW/zQe++rrI0ps02fzIn7500A83WIYJouDxLsVjx/p XQqPiAJfp+DmiBoegqQFJpgpiF8Zdv6rIZBOcnDUFgHAHiciJoQyCDySqTeH Ivnkk9s4CcDt9hkBjQ2+uy4h8FyUVmD+rb/bhF1JYlcEIfj2Y8BANsnpr9f9 k8GL86trYBRfxS7i8RcUKJ0xzlKHUGn1QjT2Gu2npP20s9/u7LbL4vpSaC5Y 7c4+IDhsHrQODtvPdMHaRbnarT/DUJ6YocUv5y9enl5DZAE8LCKLZnMnTfwd weDJ1sbGTo38wjomInZBfX53dSpjEzUuAeg1//7OltR8vCRIwYadKORwWdxi NEr6T34dvD7p9S8HF6dvXl6/Iu3W7j4b7h7To729ehvvUCbGffxMqUAZcOub eyf/2iT5H7LAO1Jhbehuknu7JZS6Ry5Qs5v79FtC879AIFJV/HI/uRuO28a5 CSQqFkmUYDmfcuyfG4o9Zina+/V2C4foghRlSuxE8EeX13K3S1SysbEZDorj keh5izhO864Yy4YUH0G/AzZR+O/lNQbONT47KUd3ITx4UchvfHIxkLi3kQf8 StMu4pK5J3FJIa9Jikuk7FhTXSj56QLBa7Ipr6Waen4S/197z9rcxq3rZ+dX MJrWkWJJ0a7eUtw7iq0knviRYzttejyeHVmWbcWyVpHk2L6t//sFwMeSXO5K SuvefkinTaNdEuQCIAgCIACougUhIT8ENzh6Hgz5V/Dr/KB40tOT0zzeUuG2 A7RIgGijBK4CGIB5WpnDK4dqPxOkjCrX6QPDMK/S8putcm2heLGqfDZbpWbL LxWbZa9ct2pilRu00BpSshjLlW8LGfuxkl6xN3LjyTyBdNHHUvtTxinycCcV 8u7bcHAXhGjQC+BpNoe0xe+ue/jddVh9+OHEMHwP5TrZWTgHEgageU4HFJxf gkWnn3ZE47sr4NgAH80Cfm0Tk0+VPL9cqdbqjWbvrA9YuLwafrke3YzDydcp MOq3u/uH/w0yCFGHhfrb7STgd/kx3VmirBLP3nd+7Qbv9g62P+12DaPS60vQ KUFQiFzQIujl3R49jBYVb9RWDZJLCkQR9HpRgbZuhjFKDbibSjEZictXLwuw YF/ifwxINHiBuvzX2yGo8TPQwgGbwjw46j2Et/MWy56HmCZ5eiuSp2KW2dvL K1rf43kxR7StNCtI3CqoYX4dqSsKxYBgzWrCO6rdMxN6diQ85iEZAwThKb6T EwmXdlS+0GujBDocwGmZC9aQ1j4D0Qvn/+kDwPoWXvMDAcqmFchp+YcEsdBN RJnwKC780rQU8CbBhaiNteZ6DpO+lA/Oboej82DSm1+xLAKNQmdoUWZUMk0n oOf6THC2YjYUFrOmbwZy6tHIIRyN3GDz7F3AURC82dnfDnY7//09F0sLGMcH pnmgYCQ1BmVTY1nV+ZJT1DmqjIF3fq/jS2Xn2cPNWTiyO+h41FcRJi9fW1vj 95fpHPgyx9adSyunXfh4dK0ciY7nlHwSFQbBRd39zhtA3v7uEaj5r17SgqiW q7Qg6n7eK6++IHgEJQiJ/nWAtxMwrdpx5/A4gD+3PgRHO//ttt0tQe2aXTua swJex9O6wKEVltWc52wD9JKZmmWzsaE3QEcEIc7wR4ipYkDjowseSSqJvKIa RzGRk6sb6h38ECcVptJ6rsW60hwx6s1VaCXP+JUK56COHlpwtNzo9MA9bo2/ oAs8NCMiNm5t1tveaDronT+wyyFaHnsggWgB3PCsZiR+iLmFaOOisuE1kTMa NdC0fa6G0lYwHFNcPU8jHBkphG0DmMbiQK0kLyZh4Y+4P5hmlxNnTqz/2r+m DI9i+kDY6OMwokqUkTPYQ6v36y2gdQKdY481oGJoU2Hla5VWq3h9O50FVvIw SbBHVEPEYmvUSvk622jC7tPU1hpmbXestn5OKbIizQkaBgbTmdJlBQbgqcc2 NlV2evr9izY3z0IZNPCtDn6sg3Jg6bjUoIAePichRoePCJr5PA7VVtJ75+jw wyXDk6Ijqe4GL8gfiDryOe3ymKpBbfh47BgPIpUeWS2rjcPW2R4//r759Jak So7zdLPkEQGqZU6AiIk5FYIeOrgVLVQBPDndVIRvrozxzadB+WY6zjm6NHzR 3bOcE2lyaXLSzPyTeLdffmFHZr9TQ1CbINucDj5fCKBkKx2byCCCaA0C5FzY L6zK7oW/ld0L38fuE3XpwI3QQgJCT4yf0Cwb7xYnHz4/lVaFZrWBKPdKXkUT PniwmE1o91kd5Zsr43zzaZC+uRjrL7MG3r0TQ14k4R1vTsQbOhZKO2FpJfeA rYeMPRWPRJJXqTXzdCIZzoKzUW98be0IZL/iedCIOripqKT0KBZFjjQQkrQ/ D1E8FsSejZ2fbdCfnO7kiqJ2bi0PhvgjOvIM8+wLP++QvbFUJ53R99AIV9ZU A5oj0SYqc4/hdeyZcbMpmoFsZjPfH8QZK+3izlcJYdiuTT2XExq8UDZCvHzy 5yY77G4fdn4LPnbeddv6lQCHXiY4TH06fafmfWPi8oMH/6KJRucaA2vPN01Y kRx2T4tTpVFBRvK9SjPvVTWqLMS5gzqXIeiCN3g7Bs6usS6KSpFl9Wt7dZJ9 1e5zaSTT/ZVOSknsq/wmOhG+piC+lOdVcZwTdSjZX7F6DSJfUj2RzGK1S1I0 uU3eq1XzlbKTFAkIjkYQWcxAu/42kPP/qlKWKZH7KCwHtsXaGk66MMkNapJx Q68Q/bWdQjXztOugnOXYTSKetYhiaWqWIaEW8apRygKt71ab7GY41iUzoDMX a+dju9693W7DM1rCJ93ejL2I9vTb19KhpAqRR83y5iaR9DF/N6mWJJHyZf/7 SWWRIIVYfzOpIic2neOYrJo0uB/0b+cUYiDcShhQivGWl1e0IaMlmqHdYEhF 2oCM0iTZY9eDB4I0mcIZvMgoVoCuv1Ico3Dafej+jiB76qCOBZZESabeBZCU S5tqpU7Splat573IqCnmh7Zt1+ESpyycRRiHs/UhoMuQwRuRwk9sOUmCSlhA 2JpM5uGUqRL0Eee6N8jbLWlaMWWSMqnouXxc/YMtzrNOONHCSYUnvE2y4EIr YmjD6CPj47ifVBgM1Qdrm4WE+wlIHuwNxreIPqR/gI74OLae2IVk+qsTHdXK x+wXShT4UPFaFX+xC8mMM6+2KtCzWqxVq6AZWq5prihWuSPTcMi8ns3PhyG6 Idg/42/eiJzL+0SWGavqHuejbudw632wvdPZPXgXHHw83jnYD/YPgqOtzv7b tazHXpPcos/yfK5q1XgwRyTEjfhY04rQv4L1puli8dBXQwlu643jUW0m7PR4 NvasIIBhdElAOd8sqxMz1X9pgIK+dGtfdft6O5g+uOewZF+sEZfa82VfGAl8 v0bc4zeFAVLlY087Io3QWqPsCdz5E9wNz9GTEW89MfEsrEC8l0Nq8hdmHxFf o4SEDHx18XTUS4mYhN6OlpYwirfUOQQ6LAZpGrV1VUOTbzH4FlzdEtwbjtRr E5zI6EO1EYNJb9q7hGGvHCimjVhyQJM4oFwSAoSJ8PYE3yiMIhoo+sN2cDGc 3gSz3reB+ZorAoEe/JDoVJXDLuvP1L2YlPqO5x3iUS9C3JA5YHvnUMsHkSne 9DPsY+f4fXDU/RgcHR+yTB8/I6NJqd/3jzufg7c7u13ZTUEyex4RtTJPvNeo eDLXw4R9R76Odh+PIhHqLW9xfJTVmcKjvHLLh22oXmx6pZq9BzUpjAH+JFNF hEnYrrv3862b87W1il/RdwJ9I8eXVRHiaO1PUWtdPVHUrPi1xEZSh4FGdaOR pZhISA2Lp2DFjqTHBTWeaTgymAuHA44Ptgez63k4gY+oesbb/cFd8BtIs/AO 3/lPzCQiTjH+KIFB+EsRldkslKqsVG1RiEtqVKbZVYudq4Je0yjW/FpN78p3 8prcyb0GSpjJdIhh7WHAA1lce8Y0vMuzyDj2gLldwju2wRficffzcfBrF29L dXaDg7dvj7rH7ag1iIsZgp9dD9Es2TuDff8+13ae4hdZvBCcldLBtqOY4buJ pzyKVLi8HYFYnUnfpCo8fRdOrykEo1gskiK1NgrvRoNvg1EQNc7KmVCS3/8h XBwcgv50uAdooE9iLTHduAFnTQPk6Gm41bBMHw+BW9jH9IkLZyWaU+7hoPgg zW9X3A76gr3Io5sJYaJngxU0gr4/ONz57wGIXklSeHtPBpgnXjoirjf+KGHp 8JffJVmNrrZcbdSrDXPpVCkOE/706BIpIwGkct5iOFQ8FlNF8YmnovI8r6HC OrvHQIazF7l87DjKHvMJC0R2OxXdDFn8mDcbTRyNlCy2G7dFY1sm01S0w59s f6MmPhxhI/Hy89bx4S68vpBjo2BW07MajUUjkM/49ml5SwSJxx8l8BZ/ycWy 58G/rAQyudYqVRbyVtRVnRsbcNaE3sVas1lu2GK5VuEmjUreJ8UP+3NThLJA kPrJ8Udvyc5h881SJtJnGwTAtEdw8NLiZoygc0/OYc9zwIvsEkvClVyZs4xQ uiX5Ge8+Qj0XQQiMcMeS3+Bn76Y8PVFbcdxQbePQ5OFVAVthXzINxGlnktwy vhT7wCGJyY8GFCRd9soiTJMmr0wuFkIiLgHBw7Ifur8Hb1nW83Ic5DLcoS4D UdVZi4ypR7oUFrHOdulgHcaoR93VKcATYLxW90BHD1RiUcxKvijXyDdRbla5 4HZ0A51Y78VFFG2P+0E2s/4uxGBGnAsqBNo/e4URJtl98Q5aRgsWGypBp6Bw INKuyNblskYoZwTljQFFvE/eBhRkvoroxtf6NTPnd0qQP0jI+gpV0t8F6Bp2 rnW+gDmgCQHadwGSSz0OEDeQ9TjaCGCbAO5IgBbRY1sOwcxkoAv+pRTH7w63 76yDcMB7vNGQW4WvNNSuHEqIDxOEAZoHg9NRHE5Ki9ime9Prz37wzg/eUbxT 8UjkVKpVHnkSZ52DyTySOBbLoL6E9yfx02n0I4U51KTwTXwO2HN30JuO2foH VGtFV6TeCB/jPjCLd+E2E7b+XrMKyb7v1bDUaAluWt+ie2/8bgvPryqBbdnE om1ldVIRcuAgdLs+kaAn8Iowg48nhBrY457S55BwbY8teO/QMhNarpIgJxWO lR/Ha5XLRb/pV5qeMz+O75eXyY+zt8XISMCHmbHZ7WQSTuct0TDPUxqIujlo skFfoVidP1Lp/Eil8yOVzoJUOvr9JbLoX4rrSwv9hnjli6cNEDfPkm7AOt7d zcMQMOx8R7I1/moFN2Xs8utG4k06vEqFHg9luKOCDZhd/ERlDjrcRqv/zv47 cV/2NMoVs9jfFGWdQx9XO55VXqY3ETlNRAu8/3kW3suLployxrQzonYtxzgA iizMChQaNacDTNQz4uMEd2SwZtlKKc+8Rp7B/sfiWyzDXZBGaLvqOFgGUiOB 4rr4zHUtc0tU/oAXPpBlMLQaHLs7R8dvDj4HnY8fu/vbZDBk2ehDKBJGlsmI pkYRi0DG/s2EZSXUvIPIlJO/JMMTJTKk2vggy+BoI2LVUxx3GM+uDx+BV+Qk TvVeel7oIQbVliI782wEUo8KIMBf1Gyjz8DX0CORHaMLUgJSYktKx0hFR2Cw cX/ykI1jJM8ifCE84yqOtjrw3amsdMPN3Dw7ETA6r15D1/Imk9EDMjplxiED t9tDn71TQSW2s5+/4sTNywuB2v3rnDOxsRGoulw6z6U9w+aa5iVA26klTfTa Eu6lveqyFu1FRZKEFWhmr7pLi/gkzuTQ1Gix/NHfJ0ekcTdBePCqsXfWdR+Z TD8uJUTtEF7QY0VRYfS15AVNBBaaaiNqnwu8nAw3PFlEhGMI6y1Sp9dMa8Gr 5v2/iRS9rMO8N0UuiGr5RrHpclEZH4vF/tQDs+SKHTYr++tjFHQieno5hLvU QMAlFu8SjCy+RVvN6lLdHMMMBv3AZfh0bcUi+w9m8LGSbQ3no8EES9i6t3Vs RG1O/Gr1NFow5Pm8yNIrOHT+PDthP8/YacbYZ10pI3DJRIMqgA4RkrwU/Qpf imJ0yfMC0qJF86Lzgmb5mnXwivUv9iJeDOBQAuD57tiWyI0kDAIGxL9NJ4g2 MX2ygstWWZSCDzb8aHqyokfCuoR14Lu2lLQQIpOdzuFc+wWGpkp/omwRfFMf dzv506VJUvuZSmMQb8DTMia+pwFAE+3Tvoh/IYhabRA+AqKLT4lnaRQ/41Ut kgpsOpa5K7d5JOD03pofJKnAgZiGqIeZpJ7q+aYT90YOSmE2unvHr0Jnqegc Xo3OppRRxMt85q6XXMvSBcBV8IvisO6HmIpsk73t7B517VKZ/F4R+wKgI7rB b0flsEhfzvKmJ19O8+7Kk0JltiHQJiGnc3z4qWsV5HlMHJAzWZ6pgVNGMJbE l+QhHs1aRXIkzt+uQqAJY/bNYp5WkU+7SpFZmdPCWztxds853mKDC4REtDtd AnbUEXtsbMSHfdRZ2oIuBINke1HB0ixSrxXh06mRsMMKftKlWV6g1V1sj1Sx CPBrB1XskrRG/VxFBfGBEaxTo1KvLbpUf0vKRm94Kgu+zmVoz28DNh6gLWiM AZDTHpyZQgq0VCa+4biH9ZpUtiU5tCZM4rIkTZi8ZH5OSZRlquMuK1ES1uWq UoDanyj0ni65euyuSd8O22sqbJGGxQb9l8SAizfUJByDPSZ8WmxJJostBxa1 Xdtah9q0kpYhQdJ0CH0RWosvgrbJCuW4TAzHoJuapft4tJnZ27VyDYmhmrYX LG9nsXXnBaxldvX8smym5herR+cQQLpkteSE9ozLpFw7/bSjpca202A7JCRS ydfCQhy3H5Rxha3Fr1Isb15JHN5bdvhk2mmlJ/7qJB9Tbqr8Y566KPPmogaL fXWq6V911kWA9EjEegvjeEvFZqXUaFbd1SwaS3nrtpgYgScix4tw4Vj58GT2 aXLRTURy+dkPL90PL90PL933eelW8seREIBXlPRoJgziM5GT1moL62uMTSnT Zz+4Cm8G7obKkceb8su0PN9jmmfPeqndf8wkvTKddn/ZNZggGTl0kdBWy/HO 082pnLT6nQWhccSKt4mMliOZWEVcVRStpYUoNtTge4caLBpKzz8eXSx/mA8S x9MKVtKQr145a+tKOJs/n1OKEvF3eKXfm9TSy+BjqzapMSHjMxxVM7m5ykCb zGAW+xQnsjjsKO+ZC0XzcN4bkbF8pgNdAqrWk67WO0BPuBV+pcnO5r3pXDpH YjCvBrh7pkDExryRurHP/xQLi+arORVkWzoQiel4JtF4k6R6jGSxR8eAg72i ZDgL+EoB0ZDKeSuGa90jQr4bOIGgj4b+/ksShXKxYnU6R0YOE50lE0ujKjfJ 6tTVPV/CduxCaBIyAUUxv+QXzbRBuZnht6/UxVg8wXNjOqjizoJvvRGZp61S 5YY/DvC8H+zu7IOi3dl63z2KTPWGcVADTkTlZy000lv8SG95yiXxtmSetWCn mV/h3isacYXmDrao63F495KhpkW4KqGyWCKFE/Zr0B7md2HLMMUkzsqzZxXz TLp6y1mr3vENwIZpOMoSp+Pb09E4eJkJ+ctNKCadbaA6W4i0kMbhUPM1wkDG OMihxhlW+Fvd48fKMaagpm3CfM1DOhxVZ4l1cEmT+tYfYeWEOUOmGYsiOZI3 VmRw7DrWUDaW9w/T+LogUaJbX8Yw2E1s8eDKHVtGCFzdw0QjBMK6kdEty6Ly y2mbJ45ElOiZzwb3vf589KDQY43hoZv8CxKzrI02JBt9NGGAi6klaWXiOXxA bsACpV6Bw8wNbTdwHAG9eEKRKDNMMN974GcX0Mb5sVvOgW4rGoOVMafcFFc7 aKA/s6xBNBiobDlhFBMmr5svp3HhR1nL4X2a2Ppyusyqdos+jRqaC52b4vl0 cZTc8vI1ZnLUZo9qo7FMCbbKCGRZJdPFNP4wPa0Rjf5F+Hu9Kv4KhRT8nTnw VzCE+l/A36IFOzxNVe55wMbqeojnrB5LmUawLFSCCkL6Kf/rYGxdtZLQ9SxU oj22bbtbyixU6S3tPFTp2agWpw9bMpnHXY6pT3SXawyn/LeeuNpsJ7JWy9nJ DnyW4dTRcVEX/n8MqHI2uhnMr8LzWVEeajftY+7CXoNYr8ESveRBy+qqnb+S +2uqDsZDOc5nC7rzw5Y2tHyU2k+dlcwT1sJPtcaSj5bqJ2K1XKeoxeTEk/ym +4Sf2lmeV+zO8vnCkUWNvs0kAZQKQEkVrb96ltqTfKcirhML1aFTjmdBMh4L GHeRH0gtLh1u+8mKXadZ4q8WmeqvlncPXP1d7oGEBDCVUqPhO90D5foP78AP 78AP78C/rBz2b4cYIplaFltr8p1m7/Z32rDb0oy7nBW3vZRxNqFtkrW1vZwJ tb26Ka79nebQ9tJmend6QicAtcHHASQO6Dg6qA5LnApY4rGg/Y/ULFUFMe0H idupcopXMGMn7J0+7KDpSbGsjurua7lVrhe9WrPkVayybzznXs2RszMq1Jh8 V+3vTOWZcusuVvfNciCuxRyILMmBuGb6D1my/3DNdh/S7fYGJZirNH2RfVfP 7IzFrWe401GYCSb+inJnImr/nhSfqybMl/nyn5tBKkZU/59/sucRAvGqiLzB 9VLmHNPw60z4Fezsb3c/sxa/f2XEQNMFr4SYZx0L7vo7Bh5USrHUfDKyZlLh Fx7vs76uAWGvbccfvH/GEv9JQRvA1bBG9ZgSeSAybUe1LLIxf2L0hZTNsNbk 6QwrIsn/shlljeovIoG/flNr1exzSXFhxoW5xIRzrhdR9GACJblR1KanqD6K n3MOuvk0fAhkQdLsutmkHStNRdPkSX09r0Go9XxP1pZNTOmrMvrihYWXE1E+ 6/lL02FL9a4o8gsa6OwfBQSvnlsJgZL1JJZryYFPB5H0S4tmL37QdN5ATVld gh4XNNq435sH58NpABMQtbtQrOKjvJ66VFJCnm8DrE8mWSeq+ZVnE3Hb6YKv E5AzFopBuOQBu6J0HmNcQZvCMhbnZq5TEMPzoMrcE6XCiDYo2tC1n+Z2rr1Q afr8Mka4lf2W10g6C8e78a2cjtCVcrFcq1btwLhyned6qtdF4hWVFsRIn8Yf E6WzLLM3nPXRsQ1Hr8moh8mezwcT2PEyIvkIoJpfnOaPg+F5ltltGeAaDh5I pYDIhASP4h2pnCUcsA4xkaI4HMSXgTYtls2IA3tGq6AYMWjGxbVqCvGKQLLg Y9RAIgKT3HMMqXo31QqvGVr1ReojvoRiaLyYTy5mAYC8fwBlgu4QnYdCfMiv kMiFtlpLiiOADSIToSkxIagJbxFWMiIBKK8v6URS8p1tLYMmiV4WH199D4Yg DC/HAB0X+yzD09aIFDTiVjONh4tVlWiMvzdKKcVfs5PSae6p1++Vud6uktYv maAqBc8vlMqYZhZrvNcXr98Ey1W9XvWs9evzMjKS7/Ts13HUnJxGCa75Jc/B 9Ca9BX8pLoCM9FZp+Y6T+IXVKlGq7IR8FadGVlYtHTcdwOCLRoMLqihpZeuW r8m+5nj/bTA9C2fw0CAVj0K8nQ6KvUholupYswCEpldKOjg5+4Gw9UtI45JX rPplkAp2PtQyT4hazpd5snLKVMvjxG9ml5uZcQgnpwvUxDbOxyP6I7JD8pxB RfGqsxV0Dt8FaMaSqkA+8tCdMFYooIlHHpw2o0Ti3XHvbDRQcMUFVpnQipbQ ycNgdnqKTuNnG0pZBSDjMKrZrCa8AXwwR5vn/U84omyM6sf9OGyjFWnMjxPU KmM2y4AQvIfhVDulN2Jt4c3Mq9vZ9NUo7PdGGdRiyBNrtzEBwntA4QZbAxR9 PDx4F2x9/qz/3N15c3xwsAvN4MnRpzdHx1nJsTv7W7uftrtHIJsKOz/pg7wS Rz55OM3kXP0BNPXdNfuOhmey/Xb37c5+N6utG6r2dbLNl848ZAODPEiDNZ0E gCq9OjMSAR5lOPS9o3dwvjre2epmT25nw8ie5byWzU3aOALiC3c+4rerQf8a hSta/w6O0MYqWI+MvjzmJBzPQkxYBRvwtMiLm1OytelmJsN5vUZGgmqzJGrW CeoXxizzE37P7ObsYpYRVOc8zzp7gJR9OCbuHOx3dglJeGgE9Jh9KeM9ztvR QWHV6iPpBt1c4/z69kh2AQbFDt9geoI3k/sE+101vXs+0FioPtR5Pr0dJPT+ BEff3SAaVs0U7fIjGPyUnzqq3HpQgzMHYRKY6dVe73qAaskzhpuG9mvUG1+q 34yX8tN+bximFa0fcYf24Kai/cARb/pFEKY0oVqllK/ChGp1XttkS8hCMgm3 cG/+DLsRWtDnWqYz+c9Pf6CVjXLy3XteIN4/Yrff0CQ9uz2bXQ1GI6vnT3/I F9R0B48rsCMJ31dLP3v/9IcUqBR+sJWwAlrUVFtIBPiIj8pdO7BFwS7aigCL J6J1xtxLJMKKvRuRmB53BdS/K03Q3JO2EqubvpPUcCdp+o0mpaXXt31KSS/z agN7fTo+2Ot86IqiNEcY01bE2jUb9h4N8gp2AmwAm+KITUIgNQNW56zDdP7g 5ylgMGQAUFT7AoWwhdO+tQBUcm+pZ3c/Hx92gu2do2O6+/0f0Pq3PoC2wHb2 j447u7vFtx14tdfZgVMhCE0Y6rDb2d7rFv+z/5kdH2wfsMk1SLCLsDgcoyY/ D/H0hj+AW79OLvF/s8mg/+z/AByqCwGL+gAA ---559023410-851401618-1151265835=:10990-- From irusskih@gmail.com Mon Jun 26 09:42:38 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 111A63B03DD for ; Mon, 26 Jun 2006 09:42:38 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21373-08 for ; Mon, 26 Jun 2006 09:42:37 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.207]) by menubar.gnome.org (Postfix) with ESMTP id 041D23B030E for ; Mon, 26 Jun 2006 09:42:36 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id 40so1223015nzk for ; Mon, 26 Jun 2006 06:42:36 -0700 (PDT) Received: by 10.64.114.10 with SMTP id m10mr4858289qbc; Mon, 26 Jun 2006 06:42:36 -0700 (PDT) Received: by 10.65.150.4 with HTTP; Mon, 26 Jun 2006 06:42:36 -0700 (PDT) Message-ID: <861727ef0606260642j2e005a12u9b73c9183fcca227@mail.gmail.com> Date: Mon, 26 Jun 2006 17:42:36 +0400 From: "Igor Russkih" To: "Pavel Tsekov" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620060123.GD99474@inode.hvn> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <20060622161011.GC3368@ugly.local> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.463 tagged_above=-999 required=2 tests=[AWL=-0.063, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -2.463 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jun 2006 13:42:38 -0000 Hello, > This command line option defaults to /usr/local. This patch is > just a proof of concept thing. I am posting it so that you can > test it and then we can discuss it. For me this patch looks fine, its good idea for MC to detect colorer's library presence in runtime. However the implementation is not rather straightforward because of that separate glue library. If such a dynamic loading is best case for MC, maybe it is worth implementing it in more 'valid' way? I mean I can develop a set of 'neutral' C API, which will be included directly into libcolorer. Then MC can dynamically load libcolorer and import all the required API functionality as it imports 'colorer_get_interface' via gmodule in Pavel's version. Surely it will require additional efforts as on my side, as on MC side, but with this we'll get better colorer's integration with MC. Moreover colorer will get a general C-based API, which it doesn't have now. Pavel, whats your opinion on this? > Igor, do you mind moving the declarations of the classes found in > syntax-colorer.cpp to syntax-colorer.h ? This way we could move > all the C functions from syntax-colorer.cpp to > syntax-colorer-interface.cpp and make them static and only accessible > thru colorer_interface_t. Within this model surely it can be changed in this way. -- Igor From ptsekov@gmx.net Mon Jun 26 12:23:54 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2F7093B036C for ; Mon, 26 Jun 2006 12:23:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32045-09 for ; Mon, 26 Jun 2006 12:23:52 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 049713B0196 for ; Mon, 26 Jun 2006 12:23:51 -0400 (EDT) Received: (qmail invoked by alias); 26 Jun 2006 16:23:50 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp023) with SMTP; 26 Jun 2006 18:23:50 +0200 X-Authenticated: #14308112 Date: Mon, 26 Jun 2006 19:22:35 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <861727ef0606260642j2e005a12u9b73c9183fcca227@mail.gmail.com> Message-ID: References: <20060620060123.GD99474@inode.hvn> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <20060622161011.GC3368@ugly.local> <861727ef0606260642j2e005a12u9b73c9183fcca227@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jun 2006 16:23:54 -0000 Hello, On Mon, 26 Jun 2006, Igor Russkih wrote: > For me this patch looks fine, its good idea for MC to detect colorer's > library presence in runtime. > > However the implementation is not rather straightforward because of > that separate glue library. Yes, it adds another level, but at the moment it is the only working solution. By using this library we avoid linking to libcolorer at build time. > If such a dynamic loading is best case for MC, maybe it is worth > implementing it in more 'valid' way? I mean I can develop a set of > 'neutral' C API, which will be included directly into libcolorer The dynamic loading is desired since it drops the dependency on libcolorer. For the package maintainer this means that she/he can build MC with colorer support but the package will not pull libcolorer unless specifically requested to do so (by the user). This is very important IMHO. > Then MC can dynamically load libcolorer and import all the required > API functionality as it imports 'colorer_get_interface' via gmodule in > Pavel's version. Yes. > Surely it will require additional efforts as on my side, as on MC > side, but with this we'll get better colorer's integration with MC. > Moreover colorer will get a general C-based API, which it doesn't have > now. > > Pavel, whats your opinion on this? If you are willing to change colorer so that it will become C-friendly you are more than welcome. Providing a generic interface seems a better solution than writing a new plugin for every editor in the wild. Of course custom plugins could be tuned better to fit the specific requirements of XYZ editor. I think it is up to you after all - either way I'll try to help getting colorer support into MC. From leonard@den.ottolander.nl Tue Jun 27 09:09:09 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72ACC3B008D for ; Tue, 27 Jun 2006 09:09:09 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30079-04 for ; Tue, 27 Jun 2006 09:09:08 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id D41E73B0084 for ; Tue, 27 Jun 2006 09:09:07 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 2E6DC4026 for ; Tue, 27 Jun 2006 15:08:30 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id xShjqIOGYA0c for ; Tue, 27 Jun 2006 15:08:26 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 948134021 for ; Tue, 27 Jun 2006 15:08:26 +0200 (CEST) Subject: Crash in mccolorer when choosing old syntax highlighting From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Tue, 27 Jun 2006 15:08:21 +0200 Message-Id: <1151413701.2841.22.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 13:09:09 -0000 Hi, (The patch by Pavel Tsekov did not fix the issue I was seeing, but then I didn't yet report what it was exactly.) How to reproduce: Edit a file Choose options->general menu Disable colorer Choose options->syntax highlighting boom (Backtrace is for mccolorer with Pavel's patch applied.) I suppose the switching to the menu's necessary for the old syntax highlighting doesn't yet work correctly. #0 0x080aaf1e in colorer_get_handle (edit=0x0) at syntax-colorer-wrapper.c:50 #1 0x080a97ab in colorer_free_syntax_rules (edit=0x0) at syntax-colorer.cpp:493 #2 0x080a7839 in edit_load_syntax (edit=0x0, pnames=0xbfaee638, type=0x0) at syntax.c:1203 #3 0x080a8ca5 in edit_syntax_dialog () at choosesyntax.c:66 #4 0x0807952c in menubar_execute (menubar=Variable "menubar" is not available. ) at menu.c:242 #5 0x08079d98 in menubar_callback (w=0x9697268, msg=WIDGET_HOTKEY, parm=10) at menu.c:326 #6 0x08063ebe in dlg_process_event (h=0x96722b8, key=10, event=0xbfaee6e4) at dialog.c:603 #7 0x080640d4 in run_dlg (h=0x96722b8) at dialog.c:785 #8 0x080a25f5 in edit_file (_file=0x9667908 "Makefile", line=0) at editwidget.c:217 #9 0x0805e39a in do_edit_at_line (what=0x9667908 "Makefile", start_line=0) at cmd.c:270 #10 0x0805e3e6 in do_edit (what=Variable "what" is not available. ) at cmd.c:289 #11 0x08095643 in buttonbar_call (bb=Variable "bb" is not available. ) at widget.c:2279 #12 0x08095831 in buttonbar_callback (w=0x966e0a8, msg=WIDGET_HOTKEY, parm=1004) at widget.c:2301 #13 0x08063d17 in dlg_process_event (h=0x9658298, key=1004, event=0xbfaee804) at dialog.c:614 #14 0x080640d4 in run_dlg (h=0x9658298) at dialog.c:785 #15 0x08078c16 in main (argc=1, argv=0xbfaefa24) at main.c:1675 Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Tue Jun 27 09:11:43 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E1A1C3B0084 for ; Tue, 27 Jun 2006 09:11:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30031-10 for ; Tue, 27 Jun 2006 09:11:40 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 728063B012D for ; Tue, 27 Jun 2006 09:11:36 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id BEB36403C; Tue, 27 Jun 2006 15:11:21 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id UkhQHR1PwEmH; Tue, 27 Jun 2006 15:11:21 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 46DBC4026; Tue, 27 Jun 2006 15:11:21 +0200 (CEST) Subject: Re: Snapshots availability From: Leonard den Ottolander To: Pavel Roskin In-Reply-To: <1151000137.3539.23.camel@dv> References: <1150924866.2801.100.camel@athlon> <1151000137.3539.23.camel@dv> Content-Type: text/plain Date: Tue, 27 Jun 2006 15:11:16 +0200 Message-Id: <1151413876.2841.25.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 13:11:43 -0000 Hello Pavel, On Thu, 2006-06-22 at 14:15 -0400, Pavel Roskin wrote: > Snapshots are not intended for developers. Developers should be using > proper version control systems. Snapshots are for users who want to try > the latest features and check if some bug has been fixed, but who don't > intend to keep the sources up-to-date. Which doesn't contradict the fact that in circumstances it might be useful for me to take a look at a snapshot somebody used to create a mod, like in the case of mccolorer where I did not have the correct snapshot available to diff against. Hence my request. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Tue Jun 27 10:39:56 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EAF473B0500 for ; Tue, 27 Jun 2006 10:39:55 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03870-10 for ; Tue, 27 Jun 2006 10:39:55 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id C50273B04FC for ; Tue, 27 Jun 2006 10:39:54 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 444054026; Tue, 27 Jun 2006 16:39:33 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id DujbSwckqNA4; Tue, 27 Jun 2006 16:39:32 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id C395E4021; Tue, 27 Jun 2006 16:39:32 +0200 (CEST) Subject: Re: Crash in mccolorer when choosing old syntax highlighting From: Leonard den Ottolander To: Igor Russkih In-Reply-To: <861727ef0606270708j12fe8828p9d5464aa9f426071@mail.gmail.com> References: <1151413701.2841.22.camel@athlon> <861727ef0606270708j12fe8828p9d5464aa9f426071@mail.gmail.com> Content-Type: text/plain Date: Tue, 27 Jun 2006 16:39:26 +0200 Message-Id: <1151419167.2841.42.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 14:39:56 -0000 Hello Igor, On Tue, 2006-06-27 at 18:08 +0400, Igor Russkih wrote: > For me Pavel's patch fixes the problem. > > However Pavel diff-ed it with original mc source I believe because > this it can fail to apply. > + if (!edit) > + return; > + > #if USE_COLORER > colorer_free_syntax_rules(edit); > return; > #endif After applying Pavel's patch the if (!edit) ended up *after the (first) #if USE_COLORER. Bringing it to the front indeed fixes this crash. Thanks you both. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From proski@gnu.org Tue Jun 27 11:46:24 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3404A3B02AF for ; Tue, 27 Jun 2006 11:46:24 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06517-02 for ; Tue, 27 Jun 2006 11:46:23 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id D7CB33B015C for ; Tue, 27 Jun 2006 11:46:22 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FvFkw-0003lu-7L for mc-devel@gnome.org; Tue, 27 Jun 2006 11:45:39 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FvFkW-0004lr-Dl; Tue, 27 Jun 2006 11:45:12 -0400 Subject: Re: Snapshots availability From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1151413876.2841.25.camel@athlon> References: <1150924866.2801.100.camel@athlon> <1151000137.3539.23.camel@dv> <1151413876.2841.25.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 27 Jun 2006 11:45:12 -0400 Message-Id: <1151423112.18089.7.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.595 tagged_above=-999 required=2 tests=[AWL=0.005, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.595 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 15:46:24 -0000 On Tue, 2006-06-27 at 15:11 +0200, Leonard den Ottolander wrote: > Hello Pavel, > > On Thu, 2006-06-22 at 14:15 -0400, Pavel Roskin wrote: > > Snapshots are not intended for developers. Developers should be using > > proper version control systems. Snapshots are for users who want to try > > the latest features and check if some bug has been fixed, but who don't > > intend to keep the sources up-to-date. > > Which doesn't contradict the fact that in circumstances it might be > useful for me to take a look at a snapshot somebody used to create a > mod, like in the case of mccolorer where I did not have the correct > snapshot available to diff against. Hence my request. Contributors should send patches and make sure that the patches only contains their modifications and that the modifications are intended. They should also be able to explain the reasons for every change. If they cannot do it, I would not consider such changes for committing to CVS, for the reason that either the contributor is too sloppy, has problems with memory or is not the original author of all the changes. -- Regards, Pavel Roskin From INVALID.NOREPLY@gnu.org Thu Jun 29 06:41:30 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CE1033B0286 for ; Thu, 29 Jun 2006 06:41:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04510-06 for ; Thu, 29 Jun 2006 06:41:29 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 142013B020C for ; Thu, 29 Jun 2006 06:41:29 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fvtxf-00018T-00; Thu, 29 Jun 2006 06:41:27 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 29 Jun 2006 10:41:27 +0000 Date: Thu, 29 Jun 2006 10:41:27 +0000 To: Denis Vlasenko , mc-devel@gnome.org Subject: [bug #16967] unrar passworded_file.rar hangs From: Denis Vlasenko X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16967 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.9) Gecko/20050711 Firefox/1.0.5 (CK-IBM) X-Apparently-From: 195.212.29.187 (Savane authenticated user vda) Message-Id: <20060629-104126.sv50573.85488@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.805 tagged_above=-999 required=2 tests=[AWL=-0.738, BAYES_00=-2.599, RCVD_IN_SORBS_WEB=1.456, SPF_PASS=-0.001, TW_TX=0.077] X-Spam-Score: -1.805 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 10:41:31 -0000 URL: Summary: unrar passworded_file.rar hangs Project: GNU Midnight Commander Submitted by: vda Submitted on: Thursday 06/29/2006 at 10:41 Category: None Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Linux _______________________________________________________ Details: unrar of password-protected archives hangs (unrar opens /dev/tty and sits there, waiting for the password) The patch adds -p- switch. A few unsafe "$var" expansions are fixed in several etxfs scripts. _______________________________________________________ File Attachments: ------------------------------------------------------- Date: Thursday 06/29/2006 at 10:41 Name: 1.diff Size: 6.49KB By: vda _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From master@iaas.msu.ru Thu Jun 29 16:24:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D8EE23B00D0 for ; Thu, 29 Jun 2006 16:24:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07075-05 for ; Thu, 29 Jun 2006 16:24:36 -0400 (EDT) Received: from serv.iaas.msu.ru (serv.iaas.msu.ru [212.192.224.252]) by menubar.gnome.org (Postfix) with ESMTP id 808AA3B007B for ; Thu, 29 Jun 2006 16:24:35 -0400 (EDT) Received: from isaa.radio-msu.net (isaa.radio-msu.net [194.67.81.166]) by serv.iaas.msu.ru (8.13.4/8.13.1) with ESMTP id k5TKOWZR043918; Fri, 30 Jun 2006 00:24:33 +0400 (MSD) (envelope-from master@iaas.msu.ru) Date: Fri, 30 Jun 2006 00:24:06 +0400 (MSD) From: Michail Vidiassov X-X-Sender: master@isaa.radio-msu.net To: Egmont Koblinger Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <20060614131621.GE29389@cs.bme.hu> Message-ID: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: ClamAV version 0.88.2, clamav-milter version 0.88.2 on serv.iaas.msu.ru X-Virus-Status: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.524 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_DN=0.077] X-Spam-Score: -2.524 X-Spam-Level: Cc: mc-devel@gnome.org, Tomasz =?iso-8859-2?Q?K=B3oczko?= X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 20:24:40 -0000 Dear All, On Wed, 14 Jun 2006, Egmont Koblinger wrote: > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > I don't think so, and I don't think it is worth it. Maintaining two backends > IMHO just causes headaches while it doesn't make mc better. I still can't > see why developers do not decide which one to use and drop the other one. > > With Unicode support maintaining the two will be much harder since AFAIK > slang works with UTF-8 while ncurses uses UCS-4. Hence a completely > different patch would be required for the two cases. > Why not to follow the way used in non-UTF mc, and use curses-like calls (translated to ncurses calls or emulated by slang calls in myslang.h)? I have made mc 4.6.1 with UTF patches compile and run when linked against ncrurses 5.4 by replacing SLsmg_write_nwchars by addnwstr. Thus, it may be a good idea to use addnwstr as the wide character output routine, addnwstr being a ncurses call or a wrapper around SLsmg_write_nwchars (along the lines addch is implemented now). Sincerely, Michail From ptsekov@gmx.net Thu Jun 1 08:53:31 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E31023B01AD for ; Thu, 1 Jun 2006 08:53:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03324-10 for ; Thu, 1 Jun 2006 08:53:29 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by menubar.gnome.org (Postfix) with SMTP id D77263B017F for ; Thu, 1 Jun 2006 08:53:28 -0400 (EDT) Received: (qmail invoked by alias); 01 Jun 2006 12:53:27 -0000 Received: from 87-126-39-234.btc-net.bg (EHLO sole) [87.126.39.234] by mail.gmx.net (mp040) with SMTP; 01 Jun 2006 14:53:27 +0200 X-Authenticated: #14308112 Date: Thu, 1 Jun 2006 15:52:18 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: mc@rigacci.org In-Reply-To: Message-ID: References: <20060529075733.GD12204@rigacci.org> <20060530085432.GB15022@rigacci.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.555 tagged_above=-999 required=2 tests=[AWL=0.045, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.555 X-Spam-Level: Cc: MC dev Subject: Re: Blocking DNS lookup on MC startup X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 01 Jun 2006 12:53:31 -0000 On Wed, 31 May 2006, Pavel Tsekov wrote: > There are more calls to gethostbyname() after the get_myname () call. > load_interfaces() is doing gethostbyname() for every single value of the > "interfaces" parameter of smb.conf. If interfaces doesn't contain an > ip_address/netmask pair load_interfaces() tries to resolve the value > via gethostbyname() :( Another solution would be to delay the samba lib initialization until the first samba request. This way it will be clearly visible for the user that the hang is due to a samba request. Of course the initialization must be made interruptable. Opinions ? From ptsekov@gmx.net Fri Jun 2 09:09:02 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 74C403B01DB for ; Fri, 2 Jun 2006 09:09:02 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27932-10 for ; Fri, 2 Jun 2006 09:09:01 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by menubar.gnome.org (Postfix) with SMTP id 8AF793B000C for ; Fri, 2 Jun 2006 09:09:00 -0400 (EDT) Received: (qmail invoked by alias); 02 Jun 2006 13:08:58 -0000 Received: from 87-126-39-234.btc-net.bg (EHLO sole) [87.126.39.234] by mail.gmx.net (mp032) with SMTP; 02 Jun 2006 15:08:58 +0200 X-Authenticated: #14308112 Date: Fri, 2 Jun 2006 16:07:49 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: vadim In-Reply-To: <200605051503.27061.vadim-lvv@yandex.ru> Message-ID: References: <200605051503.27061.vadim-lvv@yandex.ru> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: [patch] for gnome & kde trash X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 13:09:02 -0000 Hello Vadim, On Fri, 5 May 2006, vadim wrote: > This patch being proposed is created for support of the trash in gnome or in kde. > The files get into the trash only from /home directory and while mc is run in gnome or kde. > I think that root does not need the trash but users must not delete files outside home directory > and not work without GUI. This patch is not acceptable as is. I suppose both GNOME and KDE provide means for moving a file to the trash. I'd be happy to review patches which delete a file to the trash with the appropriate interfaces. Btw note that both GNOME and KDE are supported on systems other than Linux. Next time when you submit a patch for review, please, remove any debugging output that you've used while developing the patch. Patches should be stripped off any information which is not related to the patch. Also avoid whitespace changes, formating changes, etc - they make the patch harder to read. Thanks! From leonard@den.ottolander.nl Fri Jun 2 12:38:53 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 04A363B045F for ; Fri, 2 Jun 2006 12:38:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08517-02 for ; Fri, 2 Jun 2006 12:38:52 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 6EB3C3B00A5 for ; Fri, 2 Jun 2006 12:38:50 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id ECE05402A for ; Fri, 2 Jun 2006 18:38:48 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id agae4SbZ5JJN for ; Fri, 2 Jun 2006 18:38:44 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 5E80C4023 for ; Fri, 2 Jun 2006 18:38:44 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <20060601184743.E643513D16@server8.alinet.sk> References: <20060601184743.E643513D16@server8.alinet.sk> Content-Type: text/plain Date: Fri, 02 Jun 2006 18:40:21 +0200 Message-Id: <1149266421.2605.17.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.306 tagged_above=-999 required=2 tests=[AWL=-0.150, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, TW_RW=0.077, TW_SR=0.077, TW_WX=0.077, TW_XR=0.077] X-Spam-Score: -2.306 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 16:38:53 -0000 Hello Dusan, You are slightly overdoing it with the info. Not sure what the ps, mount and dmesg output are needed for for example... Plus the use of multipart html mail causes quite some waste of disk space and bandwidth. Please be a bit more considerate next time you ask a question. O, and please ask user questions on the user list. On Thu, 2006-06-01 at 20:47 +0200, rekcah wrote: > # ls -l /usr/lib/mc/cons.saver > -rwsrwxrwx 1 root root 5696 May 5 2005 /usr/lib/mc/cons.saver Well that binary is suid root which should work - although suid vcsa is preferred, assuming the /dev/vcsa devices are owned by a user vcsa. Please take a look just below the header of src/cons.saver.c -, but I am wondering if you are actually looking at the correct binary. The latest FC4 mc rpm I checked has cons.saver located in /usr/libexec/mc/. By the way, you do *not* want suid binaries world writable!!! Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Fri Jun 2 12:40:25 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4F39A3B012E for ; Fri, 2 Jun 2006 12:40:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08459-09 for ; Fri, 2 Jun 2006 12:40:24 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 441803B00C8 for ; Fri, 2 Jun 2006 12:40:24 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 6374C4023 for ; Fri, 2 Jun 2006 18:40:23 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id Sv8OzhsaaR-J for ; Fri, 2 Jun 2006 18:40:23 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 0150A4021 for ; Fri, 2 Jun 2006 18:40:22 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <1149266421.2605.17.camel@athlon> References: <20060601184743.E643513D16@server8.alinet.sk> <1149266421.2605.17.camel@athlon> Content-Type: text/plain Date: Fri, 02 Jun 2006 18:42:00 +0200 Message-Id: <1149266520.2605.18.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.714 tagged_above=-999 required=2 tests=[AWL=-0.739, BAYES_05=-1.11, FORGED_RCVD_HELO=0.135] X-Spam-Score: -1.714 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 16:40:25 -0000 On Fri, 2006-06-02 at 18:40 +0200, Leonard den Ottolander wrote: > O, and please ask user questions on the user list. Duh! It was not sent to this list in the first place. Scuze me ;) . Leonard. -- mount -t life -o ro /dev/dna /genetic/research From egmont@uhulinux.hu Fri Jun 2 12:43:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 32D323B0135 for ; Fri, 2 Jun 2006 12:43:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08798-05 for ; Fri, 2 Jun 2006 12:43:33 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id E8D213B0507 for ; Fri, 2 Jun 2006 12:43:32 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id 4CE6B7FA5 for ; Fri, 2 Jun 2006 18:43:31 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25536-07 for ; Fri, 2 Jun 2006 18:43:27 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id 99CA67F4E for ; Fri, 2 Jun 2006 18:43:27 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Fri, 2 Jun 2006 18:43:27 +0200 Date: Fri, 2 Jun 2006 18:43:27 +0200 From: Egmont Koblinger To: mc-devel@gnome.org Message-ID: <20060602164326.GB5134@cs.bme.hu> References: <20060601184743.E643513D16@server8.alinet.sk> <1149266421.2605.17.camel@athlon> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1149266421.2605.17.camel@athlon> User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.855 tagged_above=-999 required=2 tests=[AWL=-0.745, BAYES_05=-1.11] X-Spam-Score: -1.855 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 16:43:36 -0000 On Fri, Jun 02, 2006 at 06:40:21PM +0200, Leonard den Ottolander wrote: > By the way, you do *not* want suid binaries world writable!!! OT: The linux kernel removes the set[ug]id bit as soon as you modify the file. However, other systems may not do so. -- Egmont From leonard@den.ottolander.nl Fri Jun 2 12:50:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1FBE63B0325 for ; Fri, 2 Jun 2006 12:50:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09252-02 for ; Fri, 2 Jun 2006 12:50:26 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 174AD3B0135 for ; Fri, 2 Jun 2006 12:50:26 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 1F6824023 for ; Fri, 2 Jun 2006 18:50:25 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 9HbEI4Iozrqp for ; Fri, 2 Jun 2006 18:50:23 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 3AD194021 for ; Fri, 2 Jun 2006 18:50:23 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <20060602164326.GB5134@cs.bme.hu> References: <20060601184743.E643513D16@server8.alinet.sk> <1149266421.2605.17.camel@athlon> <20060602164326.GB5134@cs.bme.hu> Content-Type: text/plain Date: Fri, 02 Jun 2006 18:52:00 +0200 Message-Id: <1149267120.2605.23.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 16:50:27 -0000 Hello Egmont, On Fri, 2006-06-02 at 18:43 +0200, Egmont Koblinger wrote: > OT: > The linux kernel removes the set[ug]id bit as soon as you modify the file. > However, other systems may not do so. Ok. I didn't know that. Does this only happen with 2.6 kernels or also with 2.4 kernels? Leonard. -- mount -t life -o ro /dev/dna /genetic/research From egmont@uhulinux.hu Fri Jun 2 13:03:12 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3E6D63B00A5 for ; Fri, 2 Jun 2006 13:03:12 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 09674-09 for ; Fri, 2 Jun 2006 13:03:09 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id A4DE33B026C for ; Fri, 2 Jun 2006 13:03:09 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id 88C9E803E for ; Fri, 2 Jun 2006 19:03:08 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25507-04 for ; Fri, 2 Jun 2006 19:03:04 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id C51957F4E for ; Fri, 2 Jun 2006 19:03:04 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Fri, 2 Jun 2006 19:03:04 +0200 Date: Fri, 2 Jun 2006 19:03:04 +0200 From: Egmont Koblinger To: mc-devel@gnome.org Message-ID: <20060602170304.GC5134@cs.bme.hu> References: <20060601184743.E643513D16@server8.alinet.sk> <1149266421.2605.17.camel@athlon> <20060602164326.GB5134@cs.bme.hu> <1149267120.2605.23.camel@athlon> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1149267120.2605.23.camel@athlon> User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.58 tagged_above=-999 required=2 tests=[AWL=0.019, BAYES_00=-2.599] X-Spam-Score: -2.58 X-Spam-Level: Subject: Re: mc cons.saver not work for normal user X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 17:03:12 -0000 On Fri, Jun 02, 2006 at 06:52:00PM +0200, Leonard den Ottolander wrote: > Ok. I didn't know that. Does this only happen with 2.6 kernels or also > with 2.4 kernels? I think it's a really very old feature. BTW a world-writable binary (even without a setuid bit) that is likely to be executed by many different users _is_ a big security hole. Anyone can easily replace it with a binary that removes your files or similar... -- Egmont From ossi@kde.org Fri Jun 2 14:51:49 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A82423B0B87 for ; Fri, 2 Jun 2006 14:51:49 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15831-06 for ; Fri, 2 Jun 2006 14:51:45 -0400 (EDT) Received: from ktown.kde.org (ktown.kde.org [131.246.120.250]) by menubar.gnome.org (Postfix) with SMTP id 90FC63B0414 for ; Fri, 2 Jun 2006 14:51:44 -0400 (EDT) Received: (qmail 27395 invoked from network); 2 Jun 2006 18:51:43 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 2 Jun 2006 18:51:43 -0000 Received: from ossi by ugly.local with local (masqmail 0.2.21) id 1FmEhZ-0yc-00 for ; Fri, 02 Jun 2006 20:48:53 +0200 Date: Fri, 2 Jun 2006 20:48:53 +0200 From: Oswald Buddenhagen To: mc-devel@gnome.org Message-ID: <20060602184853.GB3439@ugly.local> Mail-Followup-To: mc-devel@gnome.org References: <200605051503.27061.vadim-lvv@yandex.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.585 tagged_above=-999 required=2 tests=[AWL=0.014, BAYES_00=-2.599] X-Spam-Score: -2.585 X-Spam-Level: Subject: Re: [patch] for gnome & kde trash X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Jun 2006 18:51:49 -0000 On Fri, Jun 02, 2006 at 04:07:49PM +0300, Pavel Tsekov wrote: > This patch is not acceptable as is. > indeed. > I suppose both GNOME and KDE provide means for moving a file to the > trash. > who cares? the authoritative reference is http://www.ramendik.ru/docs/trashspec.html -- Hi! I'm a .signature virus! Copy me into your ~/.signature, please! -- Chaos, panic, and disorder - my work here is done. From nerijus@users.sourceforge.net Sun Jun 4 14:45:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4D6763B02F2 for ; Sun, 4 Jun 2006 14:45:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03996-07 for ; Sun, 4 Jun 2006 14:45:14 -0400 (EDT) Received: from mx.dtiltas.lt (mx.dt.lt [84.32.38.8]) by menubar.gnome.org (Postfix) with ESMTP id 4BE163B02D7 for ; Sun, 4 Jun 2006 14:45:14 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by mx.dtiltas.lt (UAB "Duomenu Tiltas" Mail service) with ESMTP id E3E8BC6D5 for ; Sun, 4 Jun 2006 21:45:11 +0300 (EEST) Received: from mx.dtiltas.lt ([84.32.38.8]) by localhost (mx.dt.lt [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05781-01-4 for ; Sun, 4 Jun 2006 21:45:10 +0300 (EEST) Received: from nerijus.sat.lt (clt-84-32-63-24.dtiltas.lt [84.32.63.24]) by mx.dtiltas.lt (UAB "Duomenu Tiltas" Mail service) with ESMTP id 6D96FCEAC for ; Sun, 4 Jun 2006 21:20:11 +0300 (EEST) Received: (qmail 25458 invoked from network); 4 Jun 2006 18:18:56 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 4 Jun 2006 18:18:56 -0000 Date: Sun, 4 Jun 2006 21:18:56 +0300 From: Nerijus Baliunas To: Leonard den Ottolander MIME-Version: 1.0 Content-Type: TEXT/PLAIN; CHARSET=US-ASCII Content-Disposition: INLINE X-Mailer: Mahogany 0.66.0 'Clio', compiled for Linux 2.6.16-1.2080_3.rhfc5.cubbi_suspend2 i686 Message-Id: <20060604182011.6D96FCEAC@mx.dtiltas.lt> X-Virus-Scanned: amavisd-new at dt.lt X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.49 tagged_above=-999 required=2 tests=[AWL=-0.885, BAYES_20=-0.74, FORGED_RCVD_HELO=0.135] X-Spam-Score: -1.49 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Open mailboxes with mailfs X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Jun 2006 18:45:16 -0000 Hello, I see you added it to mc.ext.in (very nice btw!): +# Mailboxes +type/^ASCII\ mail\ text$ + Open=%cd %p#mailfs But 'file' on some of my mailboxes gives: ASCII mail text, with very long lines So I suggest removing "$" from the end. Regards, Nerijus From leonard@den.ottolander.nl Mon Jun 5 06:25:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 71A173B0152 for ; Mon, 5 Jun 2006 06:25:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21866-05 for ; Mon, 5 Jun 2006 06:25:20 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 1F2F03B002C for ; Mon, 5 Jun 2006 06:25:19 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 5F3184023 for ; Mon, 5 Jun 2006 12:25:14 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id lf2l-E6+Tgqm for ; Mon, 5 Jun 2006 12:25:13 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id DE0E34021 for ; Mon, 5 Jun 2006 12:25:12 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <20060604182011.6D96FCEAC@mx.dtiltas.lt> References: <20060604182011.6D96FCEAC@mx.dtiltas.lt> Content-Type: text/plain Date: Mon, 05 Jun 2006 12:26:51 +0200 Message-Id: <1149503211.2473.5.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.526 tagged_above=-999 required=2 tests=[AWL=-0.921, BAYES_20=-0.74, FORGED_RCVD_HELO=0.135] X-Spam-Score: -1.526 X-Spam-Level: Subject: Re: Open mailboxes with mailfs X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 10:25:21 -0000 Hi Nerijus, On Sun, 2006-06-04 at 21:18 +0300, Nerijus Baliunas wrote: > So I suggest removing "$" from the end. Sure. Done. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Mon Jun 5 07:06:58 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 89C683B0382 for ; Mon, 5 Jun 2006 07:06:58 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24348-01 for ; Mon, 5 Jun 2006 07:06:57 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 35A883B00CC for ; Mon, 5 Jun 2006 07:06:57 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id E530E4023 for ; Mon, 5 Jun 2006 13:06:55 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id hdr8SfqyTbj0 for ; Mon, 5 Jun 2006 13:06:54 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 55EE44021 for ; Mon, 5 Jun 2006 13:06:54 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: References: <20060529075733.GD12204@rigacci.org> <20060530085432.GB15022@rigacci.org> Content-Type: text/plain Date: Mon, 05 Jun 2006 13:08:29 +0200 Message-Id: <1149505709.2473.19.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.454 tagged_above=-999 required=2 tests=[AWL=0.010, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.454 X-Spam-Level: Subject: Re: Blocking DNS lookup on MC startup X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 11:06:58 -0000 Hello Pavel, On Thu, 2006-06-01 at 15:52 +0300, Pavel Tsekov wrote: > On Wed, 31 May 2006, Pavel Tsekov wrote: > > load_interfaces() is doing gethostbyname() for every single value of the > > "interfaces" parameter of smb.conf. If interfaces doesn't contain an > > ip_address/netmask pair load_interfaces() tries to resolve the value > > via gethostbyname() :( Are you referring to interpret_addr()? I'd say the case where the interface is identified by a name is a bit of a corner case. > Another solution would be to delay the samba lib initialization until the > first samba request. This way it will be clearly visible for the user that > the hang is due to a samba request. Of course the initialization must be > made interruptable. > > Opinions ? I don't have any fundamental objections against delaying the initialization of smbfs, but is it really worth the effort? Don't you think we catch most cases with making the call to Get_Hostbyname() in get_myname() conditional? Leonard. -- mount -t life -o ro /dev/dna /genetic/research From ptsekov@gmx.net Mon Jun 5 07:42:54 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id DF5603B027B for ; Mon, 5 Jun 2006 07:42:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26687-06 for ; Mon, 5 Jun 2006 07:42:52 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.20]) by menubar.gnome.org (Postfix) with SMTP id A04B23B0704 for ; Mon, 5 Jun 2006 07:42:51 -0400 (EDT) Received: (qmail invoked by alias); 05 Jun 2006 11:42:49 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp039) with SMTP; 05 Jun 2006 13:42:49 +0200 X-Authenticated: #14308112 Date: Mon, 5 Jun 2006 14:41:39 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander In-Reply-To: <1149505709.2473.19.camel@athlon> Message-ID: References: <20060529075733.GD12204@rigacci.org> <20060530085432.GB15022@rigacci.org> <1149505709.2473.19.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.489 tagged_above=-999 required=2 tests=[AWL=-0.024, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.489 X-Spam-Level: Cc: MC development Subject: Re: Blocking DNS lookup on MC startup X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Jun 2006 11:42:54 -0000 On Mon, 5 Jun 2006, Leonard den Ottolander wrote: >>> load_interfaces() is doing gethostbyname() for every single value of the >>> "interfaces" parameter of smb.conf. If interfaces doesn't contain an >>> ip_address/netmask pair load_interfaces() tries to resolve the value >>> via gethostbyname() :( > > Are you referring to interpret_addr()? Yes. > I'd say the case where the interface is identified by a name is a bit of > a corner case. Not really. Please, look here: http://mail.gnome.org/archives/mc-devel/2006-April/msg00036.html http://mail.gnome.org/archives/mc/2006-May/msg00005.html It seems historic samba didn't allow interface names in the "interfaces" directive. However newer samba versions allow the use of interface names and it is used by people. If you think about it - it makes a lot of sense. >> Another solution would be to delay the samba lib initialization until the >> first samba request. This way it will be clearly visible for the user that >> the hang is due to a samba request. Of course the initialization must be >> made interruptable. >> >> Opinions ? > > I don't have any fundamental objections against delaying the > initialization of smbfs, but is it really worth the effort? Don't you > think we catch most cases with making the call to Get_Hostbyname() in > get_myname() conditional? Unfortunately not. Switching to a newer samba lib is another option. It has been discussed in the past - at least in bugzilla there is an entry discussing a switch to newer samba. Of course we can hack the intree samba lib but I think it is not worth doing it. From INVALID.NOREPLY@gnu.org Tue Jun 6 02:43:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 153953B00E1 for ; Tue, 6 Jun 2006 02:43:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28705-10 for ; Tue, 6 Jun 2006 02:43:35 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id EA2AB3B0750 for ; Tue, 6 Jun 2006 02:43:34 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnVHn-0005rO-00; Tue, 06 Jun 2006 02:43:31 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 6 Jun 2006 10:43:31 +0400 Date: Tue, 6 Jun 2006 10:43:31 +0400 To: Oleg Broytmann , mc-devel@gnome.org From: Oleg Broytmann X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16757 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060516 SeaMonkey/1.0.2 X-Apparently-From: 80.252.150.251 (Savane authenticated user phd) Message-Id: <20060606-104330.sv47300.22684@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.591 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.591 X-Spam-Level: Cc: Subject: [bug #16757] Environment variables in a subshell X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 06:43:39 -0000 URL: Summary: Environment variables in a subshell Project: GNU Midnight Commander Submitted by: phd Submitted on: Вторник 06.06.2006 at 10:43 Category: Subshell Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Linux _______________________________________________________ Details: I have a lot of different environments (Python, Java, Postgres and so on), and I source a config file when I want to change the environment; for example running "include svn" runs . $HOME/lib/config/svn that adds SVN directories to PATH, LD_LIBRARY_PATH and MANPATH. When I do this under Midnight Commander I have a minor problem with subshell (at least I think the problem is in the subshell). When I run a program in the mc command line (type "./a_script", press [Enter]) mc (subshell?) passes the modified env vars to the program. But if I just press [Enter] on the program mc passes an old environment as if I didn't source any config file; it seems after pressing [Enter] on a program mc passes its own original environment, not the subshell's environment. I think that's a bug; I'd like mc to pass the modified environment to all programs regardless of the way I start them. Debian GNU/Linux 3.1, mc 4.6.1-pre3. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 6 10:18:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 67F1F3B0189 for ; Tue, 6 Jun 2006 10:18:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27630-03 for ; Tue, 6 Jun 2006 10:18:38 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id BBD723B0184 for ; Tue, 6 Jun 2006 10:18:37 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FncO9-0007M9-00; Tue, 06 Jun 2006 10:18:33 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 6 Jun 2006 14:18:33 +0000 Date: Tue, 6 Jun 2006 14:18:33 +0000 To: yaroslav , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060606-141833.sv47365.36914@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.591 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.591 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:18:39 -0000 URL: Summary: Cannot compile mc-2006-06-05-20 Project: GNU Midnight Commander Submitted by: s68 Submitted on: Вторник 06.06.2006 at 14:18 Category: Core Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: current (CVS or snapshot) Operating System: FreeBSD _______________________________________________________ Details: mountlist.c: In function 'fstype_to_string': mountlist.c:186: error: 'MOUNT_UFS' undeclared (first use in this function) Operating systems are: Darwin Kernel Version 8.4.1: Tue Jan 3 18:23:53 PST 2006; root:xnu-792.7.90.obj~1/RELEASE_I386 i386 i386 and FreeBSD 4.10-RELEASE Configure options are "--with-subshell=optional" _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 6 15:46:07 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id BEA503B0AE1 for ; Tue, 6 Jun 2006 15:46:07 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17438-06 for ; Tue, 6 Jun 2006 15:46:06 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 5191C3B0B37 for ; Tue, 6 Jun 2006 15:46:06 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnhUx-00034K-00; Tue, 06 Jun 2006 15:45:55 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 6 Jun 2006 21:45:55 +0200 Date: Tue, 6 Jun 2006 21:45:55 +0200 To: yaroslav , Leonard den Ottolander , mc-devel@gnome.org From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060606-214555.sv26390.24839@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> In-Reply-To: <20060606-141833.sv47365.36914@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 19:46:07 -0000 Follow-up Comment #1, bug #16762 (project mc): Does this fix your issue? _______________________________________________________ Additional Item Attachment: File name: mountlist.c.patch Size:0 KB Define HAVE_F_FSTYPE if HAVE_STRUCT_STATFS_F_FSTYPENAME is defined (regardless of HAVE_STATVFS) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Tue Jun 6 16:12:49 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7DD663B0B94 for ; Tue, 6 Jun 2006 16:12:49 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19120-04 for ; Tue, 6 Jun 2006 16:12:47 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 3125D3B0236 for ; Tue, 6 Jun 2006 16:12:47 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 55F6A4023 for ; Tue, 6 Jun 2006 22:12:45 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 8yy9hanIHWkZ for ; Tue, 6 Jun 2006 22:12:44 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id DCC014021 for ; Tue, 6 Jun 2006 22:12:43 +0200 (CEST) From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Tue, 06 Jun 2006 22:14:23 +0200 Message-Id: <1149624863.2506.3.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Subject: FTP: Cannot change to write-only directory X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 20:12:49 -0000 >From Red Hat's bugzilla: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=194277 Leonard. -- mount -t life -o ro /dev/dna /genetic/research From niccolo@rigacci.org Tue Jun 6 19:21:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 015E33B032C for ; Tue, 6 Jun 2006 19:21:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28814-10 for ; Tue, 6 Jun 2006 19:21:38 -0400 (EDT) Received: from paros.rigacci.org (host50-109.pool8838.interbusiness.it [88.38.109.50]) by menubar.gnome.org (Postfix) with ESMTP id 0704C3B012A for ; Tue, 6 Jun 2006 19:21:37 -0400 (EDT) Received: from niccolo by paros.rigacci.org with local (Exim 4.61) (envelope-from ) id 1Fnkrg-0000eR-Pe for mc-devel@gnome.org; Wed, 07 Jun 2006 01:21:36 +0200 Date: Wed, 7 Jun 2006 01:21:36 +0200 From: mc@rigacci.org To: MC dev Message-ID: <20060606232136.GB2405@rigacci.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.11+cvs20060403 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.516 tagged_above=-999 required=2 tests=[AWL=-0.872, BAYES_20=-0.74, FORGED_RCVD_HELO=0.135, NO_REAL_NAME=0.961] X-Spam-Score: -0.516 X-Spam-Level: Subject: Re: Blocking DNS lookup on MC startup X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 23:21:39 -0000 > Another solution would be to delay the samba lib initialization until the > first samba request. This way it will be clearly visible for the user that > the hang is due to a samba request. Is the problem related only to smbfs support? If so, my preference will be an option (or a config file parameter) to start mc with smbfs disabled. Delaying samba lib initialization can be a good solution too, but I think more hard to implement. -- Niccolo Rigacci Firenze - Italy Iraq, missione di pace: 38254 morti - www.iraqbodycount.net From INVALID.NOREPLY@gnu.org Wed Jun 7 04:08:31 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 922DF3B02FF for ; Wed, 7 Jun 2006 04:08:31 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25660-03 for ; Wed, 7 Jun 2006 04:08:28 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 8C01F3B0164 for ; Wed, 7 Jun 2006 04:08:28 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fnt5M-0005Iz-00; Wed, 07 Jun 2006 04:08:16 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 08:08:16 +0000 Date: Wed, 7 Jun 2006 08:08:16 +0000 To: yaroslav , Leonard den Ottolander , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060607-080816.sv47365.26756@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> In-Reply-To: <20060606-214555.sv26390.24839@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 08:08:31 -0000 Follow-up Comment #2, bug #16762 (project mc): > Does this fix your issue? No :( _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 7 05:36:46 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E80643B00A8 for ; Wed, 7 Jun 2006 05:36:45 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31652-05 for ; Wed, 7 Jun 2006 05:36:43 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id D094D3B0BBC for ; Wed, 7 Jun 2006 05:36:42 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnuSs-0001hc-00; Wed, 07 Jun 2006 05:36:38 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 12:36:37 +0300 Date: Wed, 7 Jun 2006 12:36:37 +0300 To: yaroslav , Leonard den Ottolander , Pavel Tsekov , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060607-123637.sv36205.98656@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> In-Reply-To: <20060607-080816.sv47365.26756@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001, UPPERCASE_25_50=0] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 09:36:46 -0000 Follow-up Comment #3, bug #16762 (project mc): The real problem here is that noone sets HAVE_STRUCT_STATFS_F_FSTYPENAME. I.e. there is no test at configure time which sets this. Before Leonard's changes to configure there was a test which used to set HAVE_F_FSTYPENAME. #if defined(HAVE_STATVFS) # if defined(HAVE_STRUCT_STATVFS_F_FSTYPENAME) # define HAVE_F_FSTYPENAME # endif #else # if defined(HAVE_STRUCT_STATFS_F_FSTYPENAME) # define HAVE_F_FSTYPENAME # endif #endif So what happens is that on FreeBSD we take the second branch and since HAVE_F_FSTYPENAME is not set the fstype_to_string() routine is compiled in. Apparently MOUNT_UFS is not available on FreeBSD and the build fails. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 7 05:46:33 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 935FB3B0AE7 for ; Wed, 7 Jun 2006 05:46:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32285-09 for ; Wed, 7 Jun 2006 05:46:32 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3B1893B00A8 for ; Wed, 7 Jun 2006 05:46:32 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnuXU-0001tO-00; Wed, 07 Jun 2006 05:41:24 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 12:41:24 +0300 Date: Wed, 7 Jun 2006 12:41:24 +0300 To: yaroslav , Leonard den Ottolander , Pavel Tsekov , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060607-124124.sv36205.81804@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> In-Reply-To: <20060607-123637.sv36205.98656@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.593 tagged_above=-999 required=2 tests=[AWL=0.007, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.593 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 09:46:33 -0000 Follow-up Comment #4, bug #16762 (project mc): In fact in the past the code used to check whether MOUNT_UFS was defined but the check was removed later and the code assumed the availability of MOUNT_UFS for granted: http://cvs.savannah.gnu.org/viewcvs/mc/mc/src/mountlist.c?sortby=date&r2=1.5&r1=1.4&diff_format=u In my opinion this issue should be handled carefully. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From nadvornik@suse.cz Wed Jun 7 06:18:40 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CEC4B3B08CC for ; Wed, 7 Jun 2006 06:18:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02299-01 for ; Wed, 7 Jun 2006 06:18:37 -0400 (EDT) Received: from mail.suse.cz (styx.suse.cz [82.119.242.94]) by menubar.gnome.org (Postfix) with ESMTP id B22FA3B0B10 for ; Wed, 7 Jun 2006 06:18:36 -0400 (EDT) Received: from sphinx.suse.cz (sphinx.suse.cz [10.20.1.5]) by mail.suse.cz (SUSE CR ESMTP Mailer) with ESMTP id A60356283DB for ; Wed, 7 Jun 2006 12:18:33 +0200 (CEST) From: Vladimir Nadvornik To: mc-devel@gnome.org Date: Wed, 7 Jun 2006 12:18:31 +0200 User-Agent: KMail/1.9.1 References: <200509191419.01556.arekm@pld-linux.org> <1131825589.2735.24.camel@athlon> In-Reply-To: <1131825589.2735.24.camel@athlon> MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_4fqhE9aq8TcWQqY" Message-Id: <200606071218.32428.nadvornik@suse.cz> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 10:18:40 -0000 --Boundary-00=_4fqhE9aq8TcWQqY Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline On Saturday 12 November 2005 20:59, Leonard den Ottolander wrote: > Hi Bart, list, > > On Tue, 2005-09-20 at 08:14 +1200, Bart Oldeman wrote: > > Basically you'd need to apply Fedora's patch, and then (sorry no proper > > patch here but it's not a big deal) > > Attached you'll find a proper patch. I've moved the hunk from global.h > to myslang.h (and dropped the inclusion of slang.h as it is redundant). > > Jindrich, please merge this patch with the UTF8 patch. You might even > consider to build the next mc for FC --with-screen=mcslang, as I see the > FC development tree does not yet feature slang-2. > Hi all, In non-UTF-8 mode slang2 behaves a bit different than the patched slang1. As a result, mc does work with 8bit encodings, like 8859-2 or KOI8. The attached patch fixes the SLsmg_write_nwchars() function to 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. e-mail: nadvornik@suse.cz Drahobejlova 27 tel:+420 2 9654 2373 190 00 Praha 9 fax:+420 2 9654 2374 Ceska republika http://www.suse.cz --Boundary-00=_4fqhE9aq8TcWQqY Content-Type: text/x-diff; charset="iso-8859-6"; name="mc-slang2-fix.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="mc-slang2-fix.patch" diff -ruN mc-4.6.1.orig/edit/editdraw.c mc-4.6.1/edit/editdraw.c --- mc-4.6.1.orig/edit/editdraw.c 2006-06-07 11:57:19.000000000 +0200 +++ mc-4.6.1/edit/editdraw.c 2006-06-07 11:56:30.000000000 +0200 @@ -234,7 +234,7 @@ lowlevel_set_color (color); } #ifdef UTF8 - SLsmg_write_char(textchar); + SLsmg_write_nwchars(&textchar, 1); #else addch (textchar); #endif diff -ruN mc-4.6.1.orig/src/help.c mc-4.6.1/src/help.c --- mc-4.6.1.orig/src/help.c 2006-06-07 11:57:19.000000000 +0200 +++ mc-4.6.1/src/help.c 2006-06-07 11:56:30.000000000 +0200 @@ -461,7 +461,7 @@ len = mbrtowc(&wc, p, MB_CUR_MAX, &mbs); if (len <= 0) len = 1; /* skip broken multibyte chars */ - SLsmg_write_char(wc); + SLsmg_write_nwchars(&wc, 1); p += len - 1; } else #endif diff -ruN mc-4.6.1.orig/src/util.c mc-4.6.1/src/util.c --- mc-4.6.1.orig/src/util.c 2006-06-07 11:57:19.000000000 +0200 +++ mc-4.6.1/src/util.c 2006-06-07 11:56:30.000000000 +0200 @@ -58,8 +58,26 @@ #if SLANG_VERSION >= 20000 void SLsmg_write_nwchars(wchar_t *s, size_t n) { - while(n--) - SLsmg_write_char(*s++); + if (SLsmg_is_utf8_mode()) { /* slang can handle it directly */ + while(n-- && *s) + SLsmg_write_char(*s++); + } + else { /* convert wchars back to 8bit encoding */ + mbstate_t mbs; + memset (&mbs, 0, sizeof (mbs)); + while (n-- && *s) { + char buf[MB_LEN_MAX + 1]; /* should use 1 char, but to be sure */ + if (*s < 0x80) { + SLsmg_write_char(*s++); /* ASCII */ + } + else { + if (wcrtomb(buf, *s++, &mbs) == 1) + SLsmg_write_char((wchar_t)(buf[0])); + else + SLsmg_write_char('?'); /* should not happen */ + } + } + } } #endif diff -ruN mc-4.6.1.orig/src/view.c mc-4.6.1/src/view.c --- mc-4.6.1.orig/src/view.c 2006-06-07 11:57:19.000000000 +0200 +++ mc-4.6.1/src/view.c 2006-06-07 11:56:30.000000000 +0200 @@ -852,7 +852,7 @@ #ifndef UTF8 #define view_add_character(view,c) addch (c) #else /* UTF8 */ -#define view_add_character(view,c) SLsmg_write_char(c) +#define view_add_character(view,c) {wchar_t tmp=c; SLsmg_write_nwchars(&tmp, 1);} #endif /* UTF8 */ #define view_add_one_vline() one_vline() #define view_add_string(view,s) addstr (s) --Boundary-00=_4fqhE9aq8TcWQqY-- From INVALID.NOREPLY@gnu.org Wed Jun 7 07:11:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CBAC03B02C0 for ; Wed, 7 Jun 2006 07:11:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05334-02 for ; Wed, 7 Jun 2006 07:11:24 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id A80AC3B01EA for ; Wed, 7 Jun 2006 07:11:24 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnvwN-0004SN-00; Wed, 07 Jun 2006 07:11:11 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 14:11:10 +0300 Date: Wed, 7 Jun 2006 14:11:10 +0300 To: yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060607-141110.sv36205.29236@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> In-Reply-To: <20060607-124124.sv36205.81804@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.593 tagged_above=-999 required=2 tests=[AWL=0.007, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.593 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 11:11:28 -0000 Update of bug #16762 (project mc): Assigned to: None => ptsekov _______________________________________________________ Follow-up Comment #5: I'll fix this. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From adel@uaemet.gov.ae Tue Jun 6 10:12:04 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6DE6E3B0151 for ; Tue, 6 Jun 2006 10:12:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27387-02 for ; Tue, 6 Jun 2006 10:12:02 -0400 (EDT) Received: from www.uaemet.gov.ae (unknown [213.42.139.195]) by menubar.gnome.org (Postfix) with ESMTP id 90B9A3B00A1 for ; Tue, 6 Jun 2006 10:12:00 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by www.uaemet.gov.ae (Postfix) with ESMTP id A68531DF170 for ; Tue, 6 Jun 2006 18:11:57 +0400 (GST) Received: from uaemet.gov.ae (localhost.localdomain [127.0.0.1]) by www.uaemet.gov.ae (Postfix) with ESMTP id 8116B1DF16F for ; Tue, 6 Jun 2006 10:11:55 -0400 (EDT) From: "Adel Gabr" To: mc-devel@gnome.org Date: Tue, 6 Jun 2006 18:11:55 +0400 Message-Id: <20060606140640.M23835@uaemet.gov.ae> X-Mailer: Open WebMail 1.90 20030212 X-OriginatingIP: 213.42.139.195 (adel) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 X-Virus-Scanned: by AMaViS perl-11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.36 tagged_above=-999 required=2 tests=[BAYES_20=-0.74, DEAR_SOMETHING=2.1] X-Spam-Score: 1.36 X-Spam-Level: * X-Mailman-Approved-At: Wed, 07 Jun 2006 08:10:53 -0400 Subject: mc bug X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: adel@uaemet.gov.ae List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Jun 2006 14:12:04 -0000 Dear Sir, I have installed Suse in my machine,when I try to use Midnight Commander 4.6.0 using the command 'mc' is not working.But if I use mc -x it is working. The output of `mc -V'is :- master:/rhome> mc -V GNU Midnight Commander 4.6.0 Virtual File System: tarfs, extfs, cpiofs, ftpfs, fish With builtin Editor Using system-installed S-Lang library with terminfo database With subshell support as default With support for background operations With mouse support on xterm and Linux console With support for X11 events With internationalization support With multiple codepages support Please advise and send me the good way to reinstall th mc again. Best regards Adel -- Open WebMail Project (http://openwebmail.org) From jnovy@redhat.com Wed Jun 7 08:58:57 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C33CB3B0599 for ; Wed, 7 Jun 2006 08:58:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 13391-09 for ; Wed, 7 Jun 2006 08:58:52 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 88D823B0CD3 for ; Wed, 7 Jun 2006 08:58:52 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k57CwpAG011897; Wed, 7 Jun 2006 08:58:51 -0400 Received: from pobox.stuttgart.redhat.com (pobox.stuttgart.redhat.com [172.16.2.10]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k57CwpR1031982; Wed, 7 Jun 2006 08:58:51 -0400 Received: from vpn-4-41.stuttgart.redhat.com (vpn-4-41.stuttgart.redhat.com [10.32.4.41]) by pobox.stuttgart.redhat.com (8.12.8/8.12.8) with ESMTP id k57CwoY5017421; Wed, 7 Jun 2006 14:58:50 +0200 From: Jindrich Novy To: Vladimir Nadvornik In-Reply-To: <200606071218.32428.nadvornik@suse.cz> References: <200509191419.01556.arekm@pld-linux.org> <1131825589.2735.24.camel@athlon> <200606071218.32428.nadvornik@suse.cz> Content-Type: text/plain Date: Wed, 07 Jun 2006 14:58:51 +0200 Message-Id: <1149685131.2269.10.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.1) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.601 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.601 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 12:58:57 -0000 Hi, On Wed, 2006-06-07 at 12:18 +0200, Vladimir Nadvornik wrote: > On Saturday 12 November 2005 20:59, Leonard den Ottolander wrote: > > Hi Bart, list, > > > > On Tue, 2005-09-20 at 08:14 +1200, Bart Oldeman wrote: > > > Basically you'd need to apply Fedora's patch, and then (sorry no proper > > > patch here but it's not a big deal) > > > > Attached you'll find a proper patch. I've moved the hunk from global.h > > to myslang.h (and dropped the inclusion of slang.h as it is redundant). > > > > Jindrich, please merge this patch with the UTF8 patch. You might even > > consider to build the next mc for FC --with-screen=mcslang, as I see the > > FC development tree does not yet feature slang-2. > > slang-2.0.5 is used since FC5 so only FC4 now uses the old slang-1.4.9. > Hi all, > > In non-UTF-8 mode slang2 behaves a bit different than the patched slang1. > As a result, mc does work with 8bit encodings, like 8859-2 or KOI8. > The attached patch fixes the SLsmg_write_nwchars() function to 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. Thanks for the patch. The last hunk didn't apply as there's no view_add_character used in editdraw.c. Jindrich From INVALID.NOREPLY@gnu.org Wed Jun 7 10:42:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 53FEF3B0CC1 for ; Wed, 7 Jun 2006 10:42:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21355-08 for ; Wed, 7 Jun 2006 10:42:37 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 9ADAF3B0CC8 for ; Wed, 7 Jun 2006 10:42:37 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FnzEr-0003qw-00; Wed, 07 Jun 2006 10:42:29 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 17:42:29 +0300 Date: Wed, 7 Jun 2006 17:42:29 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060607-174228.sv36205.47259@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> In-Reply-To: <20060607-141110.sv36205.29236@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.555 tagged_above=-999 required=2 tests=[AWL=-0.032, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.555 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 14:42:39 -0000 Follow-up Comment #6, bug #16762 (project mc): Hello yaroslav, Fetch the latest CVS version of MC and apply the attached patch. Let us know wheter it fixes your problem or not. _______________________________________________________ Additional Item Attachment: File name: getmntinfo-fix.patch Size:3 KB _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 7 15:21:42 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 686D93B029F for ; Wed, 7 Jun 2006 15:21:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07968-09 for ; Wed, 7 Jun 2006 15:21:41 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id CF6CD3B0288 for ; Wed, 7 Jun 2006 15:21:40 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fo3aq-0005OI-00; Wed, 07 Jun 2006 15:21:28 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 7 Jun 2006 21:21:28 +0200 Date: Wed, 7 Jun 2006 21:21:28 +0200 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060607-212128.sv26390.34564@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> In-Reply-To: <20060607-174228.sv36205.47259@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 19:21:42 -0000 Follow-up Comment #7, bug #16762 (project mc): Having the essential code moved into acinclude.m4 instead of mountlist.c seems appropriate as this is where it dissappeared from in the first place. And the inclusion of fstypename.m4 also reintroduces the tests that got lost when I introduced ls-mntd-fs.m4 and fsusage.m4. Haven't tested but appears ok. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Wed Jun 7 16:00:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 29F343B03C4 for ; Wed, 7 Jun 2006 16:00:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10546-07 for ; Wed, 7 Jun 2006 16:00:40 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id DCEC73B0546 for ; Wed, 7 Jun 2006 16:00:39 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id CAC5F4023 for ; Wed, 7 Jun 2006 22:00:38 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id LefPSXgX7Ft3 for ; Wed, 7 Jun 2006 22:00:35 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 5B03B4021 for ; Wed, 7 Jun 2006 22:00:35 +0200 (CEST) From: Leonard den Ottolander To: MC development In-Reply-To: <1149624863.2506.3.camel@athlon> References: <1149624863.2506.3.camel@athlon> Content-Type: text/plain Date: Wed, 07 Jun 2006 22:02:15 +0200 Message-Id: <1149710535.2481.2.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Subject: Re: FTP: Cannot change to write-only directory X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Jun 2006 20:00:44 -0000 Hi, On Tue, 2006-06-06 at 22:14 +0200, Leonard den Ottolander wrote: > https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=194277 False alarm. The issue seems to be recently fixed. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From nadvornik@suse.cz Thu Jun 8 06:02:54 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B12DC3B0619 for ; Thu, 8 Jun 2006 06:02:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24798-05 for ; Thu, 8 Jun 2006 06:02:53 -0400 (EDT) Received: from mail.suse.cz (styx.suse.cz [82.119.242.94]) by menubar.gnome.org (Postfix) with ESMTP id 3DE9D3B0CF2 for ; Thu, 8 Jun 2006 06:02:53 -0400 (EDT) Received: from sphinx.suse.cz (sphinx.suse.cz [10.20.1.5]) by mail.suse.cz (SUSE CR ESMTP Mailer) with ESMTP id A084A62853A; Thu, 8 Jun 2006 12:02:51 +0200 (CEST) From: Vladimir Nadvornik To: Jindrich Novy Date: Thu, 8 Jun 2006 12:02:50 +0200 User-Agent: KMail/1.9.1 References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> In-Reply-To: <1149685131.2269.10.camel@localhost.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606081202.51002.nadvornik@suse.cz> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jun 2006 10:02:54 -0000 > > > > In non-UTF-8 mode slang2 behaves a bit different than the patched slang1. > > As a result, mc does work with 8bit encodings, like 8859-2 or KOI8. > > The attached patch fixes the SLsmg_write_nwchars() function to 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. > > Thanks for the patch. The last hunk didn't apply as there's no > view_add_character used in editdraw.c. > My patch is based on mc-4.6.1 The 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 From ptsekov@gmx.net Thu Jun 8 09:10:57 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 080363B0433 for ; Thu, 8 Jun 2006 09:10:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06345-06 for ; Thu, 8 Jun 2006 09:10:53 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.20]) by menubar.gnome.org (Postfix) with SMTP id 765B03B04FD for ; Thu, 8 Jun 2006 09:10:21 -0400 (EDT) Received: (qmail invoked by alias); 08 Jun 2006 13:10:20 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp029) with SMTP; 08 Jun 2006 15:10:20 +0200 X-Authenticated: #14308112 Date: Thu, 8 Jun 2006 16:09:10 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: MC dev Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.477 tagged_above=-999 required=2 tests=[AWL=-0.012, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.477 X-Spam-Level: Subject: Directory Tree feature X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jun 2006 13:10:57 -0000 Hello, I find the directory tree feature quite obscure and unusable ? Does anyone here feel the same way ? If this is the case I'd like that we discuss how it could be improved. There are several things which I think make the directory tree totally unusable: * When I invoke the "Directory Tree" command and the mode is "Static" I cannot easily navigate trough the directory structure. I'd expect that I'd be able to move around the tree using the arrow keys but it doesn't work this way. To enter a directory and list it contents I have to press Enter which closes the dialog box i.e. I cannot use left and right to navigate the subdirectories. So if I start from the root directory and want to go to /home/ptsekov it will take to invocations of the Directory Tree dialog to do so. * The directory tree remebers its state and if I navigate the directory hierarchy more and more directories become expanded I cannot close them - this makes the tree pretty hard to navigate. * The dynamic mode - I fee totally confused when using it. To some degree it is improvement over the static mode in terms of navigation but all the tree changes just confuse me too much and at some point I just become lost. * The whole dynamic/static mode thing is just too much - I'd prefer a single user friendly mode. From egmont@uhulinux.hu Thu Jun 8 14:13:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6ACE53B0F8F for ; Thu, 8 Jun 2006 14:13:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27351-01 for ; Thu, 8 Jun 2006 14:13:11 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id 7EF663B0F64 for ; Thu, 8 Jun 2006 14:13:11 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id 0A26A7DCA; Thu, 8 Jun 2006 20:13:10 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20809-07; Thu, 8 Jun 2006 20:13:03 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id 735F27EB8; Thu, 8 Jun 2006 20:13:03 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Thu, 8 Jun 2006 20:13:02 +0200 Date: Thu, 8 Jun 2006 20:13:02 +0200 From: Egmont Koblinger To: Vladimir Nadvornik Message-ID: <20060608181302.GA6254@cs.bme.hu> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200606081202.51002.nadvornik@suse.cz> User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.583 tagged_above=-999 required=2 tests=[AWL=0.016, BAYES_00=-2.599] X-Spam-Score: -2.583 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jun 2006 18:13:16 -0000 Hi Vladimir (and others), I've just upgraded to slang-2 in our distro and also updated the UTF-8 patches to mc-4.6.1 (based on SUSE's version). It was easier than I thought it would be. I was glad to see that you had applied plenty of my patches in SUSE (those named "00-*"). Please take a look at here again: https://svn.uhulinux.hu/packages/dev/mc/patches/ 00-77 had to be updated to slang-2. When a user searches for a file by ^S, panel->search_buffer is filled up individually with every single byte pressed. Hence it often contains partial UTF-8 string. Displaying it just happened to work with slang-1, but slang-2 prints the partial UTF-8 as "" or similar. As a result, the cyan box overflows: if you search in the left panel for an existing accented filename, two cyan blocks appear in the right panel. The updated patch first finds the longest valid UTF-8 prefix of the string and only prints that part. You might find 00-79 useful too, it fixes an off-by-one bug introduced by the UTF-8 patches that causes Alt+Backspace to behave differently (erase a whole word and one more character, usually a space) than in bash or in vanilla mc (erase only the word). bye, Egmont From INVALID.NOREPLY@gnu.org Sun Jun 11 04:01:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 29B6A3B0547 for ; Sun, 11 Jun 2006 04:01:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15580-01 for ; Sun, 11 Jun 2006 04:01:14 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 97FD53B00D8 for ; Sun, 11 Jun 2006 04:01:14 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FpKr9-0004mk-00; Sun, 11 Jun 2006 03:59:35 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 11 Jun 2006 10:59:34 +0300 Date: Sun, 11 Jun 2006 10:59:34 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Opera/8.51 (Windows ME; U; en) X-Apparently-From: 87.126.52.205 (Savane authenticated user ptsekov) Message-Id: <20060611-105933.sv36205.22318@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> In-Reply-To: <20060607-212128.sv26390.34564@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.592 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.592 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 08:01:16 -0000 Follow-up Comment #8, bug #16762 (project mc): Ping! _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Sun Jun 11 07:25:25 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1E7143B062A for ; Sun, 11 Jun 2006 07:25:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06549-04 for ; Sun, 11 Jun 2006 07:25:20 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id B6AB13B0635 for ; Sun, 11 Jun 2006 07:25:19 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id C683B4023; Sun, 11 Jun 2006 13:07:10 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id heh8eT5zCX4n; Sun, 11 Jun 2006 13:07:05 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 258354021; Sun, 11 Jun 2006 13:07:05 +0200 (CEST) From: Leonard den Ottolander To: Jindrich Novy In-Reply-To: <20060608181302.GA6254@cs.bme.hu> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> Content-Type: text/plain Date: Sun, 11 Jun 2006 13:08:46 +0200 Message-Id: <1150024126.2478.14.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 11:25:25 -0000 Hello Jindrich, On Thu, 2006-06-08 at 20:13 +0200, Egmont Koblinger wrote: > I've just upgraded to slang-2 in our distro and also updated the UTF-8 > patches to mc-4.6.1 (based on SUSE's version). It was easier than I thought > it would be. I was glad to see that you had applied plenty of my patches in > SUSE (those named "00-*"). Please take a look at here again: > > https://svn.uhulinux.hu/packages/dev/mc/patches/ Please take notice. It would probably be good if Vladimir and you could keep your UTF-8 patch sets in sync. It just seems wasted effort to do this in two places independently. Some inter-distro communication is not going to hurt. Maybe these patches should be centrally maintained in a contribs tree. Egmonts patches are worth looking at. I've blatantly ignored pushing them to you as I'd expected you to integrate them over time. I've probably not made it clear enough to you before that these patches are worth considering. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Sun Jun 11 08:00:33 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 70A6A3B057C for ; Sun, 11 Jun 2006 08:00:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08035-03 for ; Sun, 11 Jun 2006 08:00:30 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id DDF813B062F for ; Sun, 11 Jun 2006 08:00:29 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 6293F4023 for ; Sun, 11 Jun 2006 13:25:30 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id eSqOxfQ23SQl for ; Sun, 11 Jun 2006 13:25:27 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 44AED4021 for ; Sun, 11 Jun 2006 13:25:27 +0200 (CEST) From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Sun, 11 Jun 2006 13:27:09 +0200 Message-Id: <1150025229.2478.17.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Subject: [Fwd: [Bug 194777] New: mc hangs when copying file with no read perm over fish] X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 12:00:33 -0000 Hi, I can confirm this behaviour. Probably fish needs to test permissions before attempting to copy. Leonard. -------- Forwarded Message -------- From: bugzilla at redhat.com To: leonard-rh-bugzilla at den.ottolander.nl Subject: [Bug 194777] New: mc hangs when copying file with no read perm over fish Date: Sat, 10 Jun 2006 09:19:40 -0400 Please do not reply directly to this email. All additional comments should be made in the comments box of this bug report. https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=194777 Summary: mc hangs when copying file with no read perm over fish Product: Fedora Core Version: fc5 Platform: All OS/Version: Linux Status: NEW Severity: normal Priority: normal Component: mc AssignedTo: jnovy at redhat.com ReportedBy: stsp at aknet.ru CC: leonard-rh-bugzilla at den.ottolander.nl Description of problem: If I try to copy the file over the ssh connection (fish) for which there is no read permission, mc hangs. Version-Release number of selected component (if applicable): mc-4.6.1a-13.FC5 How reproducible: always Steps to Reproduce: 1. Make an ssh connection with mc, log is as user, not root 2. Try to read/copy some file, like /etc/shadow, for which you don't have the read permission. Actual results: mc hangs Expected results: mc displays the "permission denied" error. -- mount -t life -o ro /dev/dna /genetic/research From ptsekov@gmx.net Sun Jun 11 11:31:14 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72D893B0138 for ; Sun, 11 Jun 2006 11:31:14 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16333-02 for ; Sun, 11 Jun 2006 11:31:13 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 5CB043B008B for ; Sun, 11 Jun 2006 11:31:12 -0400 (EDT) Received: (qmail invoked by alias); 11 Jun 2006 15:30:20 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp010) with SMTP; 11 Jun 2006 17:30:20 +0200 X-Authenticated: #14308112 Date: Sun, 11 Jun 2006 18:29:08 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander In-Reply-To: <1150025229.2478.17.camel@athlon> Message-ID: References: <1150025229.2478.17.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development Subject: Re: [Fwd: [Bug 194777] New: mc hangs when copying file with no read perm over fish] X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2006 15:31:14 -0000 On Sun, 11 Jun 2006, Leonard den Ottolander wrote: > I can confirm this behaviour. Probably fish needs to test permissions > before attempting to copy. > > Leonard. I have a patch for this issue for quite some time. It just needs to be polished a bit. I'll try to post it in the next few days. From egmont@uhulinux.hu Mon Jun 12 04:31:53 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 301113B000D for ; Mon, 12 Jun 2006 04:31:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26350-02 for ; Mon, 12 Jun 2006 04:31:47 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id 5A2A33B00A7 for ; Mon, 12 Jun 2006 04:31:46 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id 9D1A07EE0 for ; Mon, 12 Jun 2006 10:30:48 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02190-01 for ; Mon, 12 Jun 2006 10:30:45 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id 5387C7EBA for ; Mon, 12 Jun 2006 10:30:45 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Mon, 12 Jun 2006 10:30:45 +0200 Date: Mon, 12 Jun 2006 10:30:45 +0200 From: Egmont Koblinger To: mc-devel@gnome.org Message-ID: <20060612083045.GA22700@cs.bme.hu> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1150024126.2478.14.camel@athlon> User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.585 tagged_above=-999 required=2 tests=[AWL=0.014, BAYES_00=-2.599] X-Spam-Score: -2.585 X-Spam-Level: Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 08:31:53 -0000 On Sun, Jun 11, 2006 at 01:08:46PM +0200, Leonard den Ottolander wrote: > Egmonts patches are worth looking at. I've blatantly ignored pushing > them to you as I'd expected you to integrate them over time. I've > probably not made it clear enough to you before that these patches are > worth considering. These patches hardly change nowadays. They only change if: - I face a new utf8 related bug in mc. It didn't happen in the last ~1.5 years (except for the off-by-one fix), and I always use the same small subset of mc's features, so it's unlikely for this to happen. - Something else (e.g. slang) is upgraded which introduces or triggers new bugs. - mc is upgraded in our distro. This will only happen if a new mainstream version is released. I don't want to bother with CVS snapshots, 4.6.1 is working reasonably well. After all, I'll try not to forget to mention it here if anything noticable changes in these patches. It's much simpler this way than for anyone to keep track of our changes. Finally, note that while these patches fix many issues with single-width UTF-8 characters, they may be really buggy with double-width (CJK) or zero-width Unicode characters, since I often assume that each Unicode entity occupies one column. I know it is totally false and I already knew it when I created these patches, but doing these things right would have required much more efforts. -- Egmont From jnovy@redhat.com Mon Jun 12 05:17:34 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 096F03B008D for ; Mon, 12 Jun 2006 05:17:34 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27996-03 for ; Mon, 12 Jun 2006 05:17:31 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 7F7723B0061 for ; Mon, 12 Jun 2006 05:17:30 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5C8tU0S007886; Mon, 12 Jun 2006 04:55:30 -0400 Received: from pobox.stuttgart.redhat.com (pobox.stuttgart.redhat.com [172.16.2.10]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5C8tTsF004862; Mon, 12 Jun 2006 04:55:29 -0400 Received: from vpn-4-29.stuttgart.redhat.com (vpn-4-29.stuttgart.redhat.com [10.32.4.29]) by pobox.stuttgart.redhat.com (8.12.8/8.12.8) with ESMTP id k5C8tSY5007832; Mon, 12 Jun 2006 10:55:28 +0200 From: Jindrich Novy To: Leonard den Ottolander In-Reply-To: <1150024126.2478.14.camel@athlon> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> Content-Type: text/plain Date: Mon, 12 Jun 2006 10:55:28 +0200 Message-Id: <1150102528.2242.17.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.5) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.601 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.601 X-Spam-Level: Cc: MC development Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 09:17:34 -0000 Hi Leonard, On Sun, 2006-06-11 at 13:08 +0200, Leonard den Ottolander wrote: > On Thu, 2006-06-08 at 20:13 +0200, Egmont Koblinger wrote: > > I've just upgraded to slang-2 in our distro and also updated the UTF-8 > > patches to mc-4.6.1 (based on SUSE's version). It was easier than I thought > > it would be. I was glad to see that you had applied plenty of my patches in > > SUSE (those named "00-*"). Please take a look at here again: > > > > https://svn.uhulinux.hu/packages/dev/mc/patches/ 00-74, 00-78 patches were helpful for me as well, thanks Egmont. They are now applied in devel FC. > Please take notice. It would probably be good if Vladimir and you could > keep your UTF-8 patch sets in sync. It just seems wasted effort to do > this in two places independently. Some inter-distro communication is not > going to hurt. Maybe these patches should be centrally maintained in a > contribs tree. The problem is that Vladimir and me use different versions of mc. My approach is to be more in sync with upstream so that there's a more recent CVS snapshot in Fedora for now because of a very rare release period of mc. This helps me to do only minimal changes when I want to send a patch to upstream. SuSE uses the stable mc-4.6.1, AFAIK. +1 for storing useful patches in contrib. It would be quite hard to keep them in sync with devel mc though. Cheers, Jindrich From leonard@den.ottolander.nl Mon Jun 12 07:54:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1D6DA3B00D4 for ; Mon, 12 Jun 2006 07:54:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00587-06 for ; Mon, 12 Jun 2006 07:54:25 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 349833B0078 for ; Mon, 12 Jun 2006 07:54:25 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 22A984023 for ; Mon, 12 Jun 2006 13:52:59 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id H8DbT-enwgdG for ; Mon, 12 Jun 2006 13:52:53 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 8D9594021 for ; Mon, 12 Jun 2006 13:52:53 +0200 (CEST) From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Mon, 12 Jun 2006 13:54:35 +0200 Message-Id: <1150113275.2520.29.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Subject: Dialogs, hotkeys and capitalization X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 11:54:27 -0000 Hi, This is a bit of a minor issue, but Pavel Tsekov brought it up when I changed a duplicate hotkey in the sort order dialog. I changed &Change time to C&Hange time thus capitalizing the hotkey, but also leaving the first letter of the phrase capitalized. Although the double capitalization might look somewhat odd it emphasizes the hotkey and I think the capitalized first letter looks nicer. The most widely used approach in the menus and dialogs is to only capitalize the (highlighted) hotkey ("c&Hange time"), but this is implemented inconsistently, which is most obvious in the Command menu. I have no idea how we should reach an agreement on this (vote??), but I think it's a good idea to decide on a format so the menus and dialogs will look more consistent. The three options I think are most appropriate are: No added capitalization of hotkeys ("C&hange time") (no emphasis apart from colourization) Add capitalization to hotkeys ("C&Hange time") (double capitalization) Only capitalize the hotkey ("c&Hange time") (missing capitals in first position) Opinions? Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Mon Jun 12 08:32:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6B86F3B00D8 for ; Mon, 12 Jun 2006 08:32:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02401-03 for ; Mon, 12 Jun 2006 08:32:43 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 58F0F3B00A7 for ; Mon, 12 Jun 2006 08:32:43 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fpla1-0003ZJ-00; Mon, 12 Jun 2006 08:31:41 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Mon, 12 Jun 2006 12:31:41 +0000 Date: Mon, 12 Jun 2006 12:31:41 +0000 To: Nick Shmyrev , mc-devel@gnome.org From: Nick Shmyrev X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; ru; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 195.98.173.2 (Savane authenticated user nshmyrev) Message-Id: <20060612-123140.sv25628.90055@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.814 tagged_above=-999 required=2 tests=[AWL=-0.772, BAYES_00=-2.599, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001] X-Spam-Score: -1.814 X-Spam-Level: Cc: Subject: [bug #16829] Crash when formatting paragraph X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 12:32:44 -0000 URL: Summary: Crash when formatting paragraph Project: GNU Midnight Commander Submitted by: nshmyrev Submitted on: Понедельник 12.06.2006 at 12:31 Category: None Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Hurd _______________________________________________________ Details: With Fedora's 5 stock mc-4.6.1a rpm I have a following crash when formatting paragraph. (gdb) bt #0 next_word_start (t=0x81fc138, q=Variable "q" is not available. ) at wordproc.c:227语言编写的插件,Gimp 还能够使用脚本。大部分现有的脚本都是用 S#1 0x080a975d in format_paragraph (edit=0x81ea598, force=1) at wordproc.c:280 #2 0x0809a035 in edit_execute_cmd (edit=0x81ea598, command=416, char_for_insertion=4294967295) at edit.c:2666 #3 0x0809aa05 in edit_execute_key_command (edit=0x81ea598, command=416, char_for_insertion=4294967295) at edit.c:2250 #4 0x080a268b in edit_callback (w=0x81ea598, msg=WIDGET_KEY, parm=8304) at editwidget.c:362 4Замена 5Копия 6Перемес7Поиск 8Удалить9МенюMC 10Вы #5 0x080599fb in dlg_process_event (h=0x81ef0a8, key=112, event=0xbff84d70) at dialog.c:659 #6 0x08059d0d in run_dlg (h=0x81ef0a8) at dialog.c:785 #7 0x080a22a4 in edit_file (_file=0x81b0850 "concepts.xml.save", line=0) at editwidget.c:225 #8 0x0806fe7b in do_nc () at main.c:1757 #9 0x08070855 in main (argc=Cannot access memory at address 0x0 ) at main.c:2293 #10 0x00af77e4 in __libc_start_main () from /lib/libc.so.6 #11 0x0804d481 in _start () _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Mon Jun 12 08:57:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5781E3B0083 for ; Mon, 12 Jun 2006 08:57:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03281-01 for ; Mon, 12 Jun 2006 08:57:43 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 553873B00E5 for ; Mon, 12 Jun 2006 08:57:43 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FplbW-0003hK-00; Mon, 12 Jun 2006 08:33:14 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Mon, 12 Jun 2006 12:33:14 +0000 Date: Mon, 12 Jun 2006 12:33:14 +0000 To: Nick Shmyrev , mc-devel@gnome.org From: Nick Shmyrev X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; ru; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 195.98.173.2 (Savane authenticated user nshmyrev) Message-Id: <20060612-123314.sv25628.73913@savannah.gnu.org> References: <20060612-123140.sv25628.90055@savannah.gnu.org> In-Reply-To: <20060612-123140.sv25628.90055@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.809 tagged_above=-999 required=2 tests=[AWL=-0.767, BAYES_00=-2.599, RCVD_IN_BL_SPAMCOP_NET=1.558, SPF_PASS=-0.001] X-Spam-Score: -1.809 X-Spam-Level: Cc: Subject: [bug #16829] Crash when formatting paragraph X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 12:57:44 -0000 Follow-up Comment #1, bug #16829 (project mc): The file that causes the crash. You have to put cursor on last in the text (line 2303 for example) and press Alt+p. _______________________________________________________ Additional Item Attachment: File name: translate-concepts.xml.patch.gz Size:9 KB _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From proski@gnu.org Mon Jun 12 16:15:26 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6B0E03B0100 for ; Mon, 12 Jun 2006 16:15:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28924-05 for ; Mon, 12 Jun 2006 16:15:25 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id 3CD0A3B00C8 for ; Mon, 12 Jun 2006 16:15:25 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1Fpsnb-0000tI-Ch for mc-devel@gnome.org; Mon, 12 Jun 2006 16:14:11 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FpsnX-0003XN-9f; Mon, 12 Jun 2006 16:14:07 -0400 From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150113275.2520.29.camel@athlon> References: <1150113275.2520.29.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Mon, 12 Jun 2006 16:14:07 -0400 Message-Id: <1150143247.4297.5.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC development Subject: Re: Dialogs, hotkeys and capitalization X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 20:15:26 -0000 Hello! On Mon, 2006-06-12 at 13:54 +0200, Leonard den Ottolander wrote: > The three options I think are most appropriate are: > No added capitalization of hotkeys ("C&hange time") (no emphasis apart > from colourization) > Add capitalization to hotkeys ("C&Hange time") (double capitalization) > Only capitalize the hotkey ("c&Hange time") (missing capitals in first > position) I suggest no capitalization. I believe capitalization was used when many terminals were unable to highlight or underline the hotkey, or mc couldn't use those capabilities. This is no longer true. -- Regards, Pavel Roskin From proski@gnu.org Mon Jun 12 18:09:18 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 85D7A3B00F5 for ; Mon, 12 Jun 2006 18:09:18 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00701-05 for ; Mon, 12 Jun 2006 18:09:16 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id AA3743B0010 for ; Mon, 12 Jun 2006 18:09:16 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FpuZr-0004zP-6S for mc-devel@gnome.org; Mon, 12 Jun 2006 18:08:07 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FpuZm-0003cR-GF; Mon, 12 Jun 2006 18:08:02 -0400 From: Pavel Roskin To: Jindrich Novy In-Reply-To: <1150102528.2242.17.camel@localhost.localdomain> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <1150102528.2242.17.camel@localhost.localdomain> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Mon, 12 Jun 2006 18:08:02 -0400 Message-Id: <1150150082.4297.34.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC development , Leonard den Ottolander Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2006 22:09:18 -0000 Hello! On Mon, 2006-06-12 at 10:55 +0200, Jindrich Novy wrote: > The problem is that Vladimir and me use different versions of mc. My > approach is to be more in sync with upstream so that there's a more > recent CVS snapshot in Fedora for now because of a very rare release > period of mc. This helps me to do only minimal changes when I want to > send a patch to upstream. SuSE uses the stable mc-4.6.1, AFAIK. > > +1 for storing useful patches in contrib. It would be quite hard to keep > them in sync with devel mc though. When I see a proposal to store any patches under version control, it makes me think that the version control system is inadequate. The natural representation of patches is differences between file revisions under version control. I think CVS it too centralized for the decentralized development that is done on mc. It's not possible for a non-committing user to create a separate branch. Recent years gave us several decentralized version control systems, such as Arch, BitKeeper, Monotone, Git and Mercurial. Their common feature is that every user has the complete repository of the project. Changes are exchanged between repositories in the form of changesets, either by e-mail or using other protocols. Branching is more advanced, merging is easier, and the merge history is recorded. Most importantly, branching is local. It should be possible to use an old version as the base and then rebase the patches while keeping track of what was actually merged. I think Git would be a great choice because it's free, actively developed and used by major projects such as Linux kernel and Wine. It also has a frontend called StGIT, which allows refining patches before submitting them to other developers. Git repositories work over http. Perhaps ibiblio.com would be persuaded to host the main repository. -- Regards, Pavel Roskin From INVALID.NOREPLY@gnu.org Tue Jun 13 04:02:49 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B0DCD3B00C9 for ; Tue, 13 Jun 2006 04:02:49 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15320-10 for ; Tue, 13 Jun 2006 04:02:46 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id A32783B00F5 for ; Tue, 13 Jun 2006 04:02:46 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq3U0-0002RY-00; Tue, 13 Jun 2006 03:38:40 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 07:38:39 +0000 Date: Tue, 13 Jun 2006 07:38:39 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060613-073838.sv47365.94722@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> In-Reply-To: <20060611-105933.sv36205.22318@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.504 tagged_above=-999 required=2 tests=[AWL=0.019, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.504 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 08:02:49 -0000 Follow-up Comment #9, bug #16762 (project mc): $ patch < getmntinfo-fix.patch can't find file to patch at input line 4 Perhaps you should have used the -p or --strip option? The text leading up to this was: -------------------------- |diff -Nrup mc-orig/acinclude.m4 mc/acinclude.m4 |--- mc-orig/acinclude.m4 2006-06-07 17:37:13.000000000 +0300 |+++ mc/acinclude.m4 2006-06-07 17:22:02.000000000 +0300 -------------------------- File to patch: _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 04:57:28 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3F2D43B00F5 for ; Tue, 13 Jun 2006 04:57:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 17194-01 for ; Tue, 13 Jun 2006 04:57:27 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id DE4663B00AF for ; Tue, 13 Jun 2006 04:57:26 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq4MQ-000486-00; Tue, 13 Jun 2006 04:34:54 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 11:34:53 +0300 Date: Tue, 13 Jun 2006 11:34:53 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-113453.sv36205.79891@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> In-Reply-To: <20060613-073838.sv47365.94722@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.504 tagged_above=-999 required=2 tests=[AWL=0.019, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.504 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 08:57:28 -0000 Follow-up Comment #10, bug #16762 (project mc): 1) Enter in your MC directory 2) patch -p1 < getmntinfo-fix.patch _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 06:56:01 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AA2D43B000A for ; Tue, 13 Jun 2006 06:56:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20528-03 for ; Tue, 13 Jun 2006 06:56:00 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 813563B000C for ; Tue, 13 Jun 2006 06:56:00 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq6YC-0000LL-00; Tue, 13 Jun 2006 06:55:12 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 10:55:11 +0000 Date: Tue, 13 Jun 2006 10:55:11 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060613-105511.sv47365.57796@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> In-Reply-To: <20060613-113453.sv36205.79891@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.057, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 10:56:01 -0000 Follow-up Comment #11, bug #16762 (project mc): MOUNT_UFS still undeclared :( But I can fix this by undefining HAVE_INFOMOUNT_LIST in config.h before compiling. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 07:18:04 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A48483B000A for ; Tue, 13 Jun 2006 07:18:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20874-09 for ; Tue, 13 Jun 2006 07:18:03 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 207263B000C for ; Tue, 13 Jun 2006 07:18:03 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq6sz-0000bV-00; Tue, 13 Jun 2006 07:16:41 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 14:16:41 +0300 Date: Tue, 13 Jun 2006 14:16:41 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-141640.sv36205.93232@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> In-Reply-To: <20060613-105511.sv47365.57796@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.057, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 11:18:04 -0000 Follow-up Comment #12, bug #16762 (project mc): With the patch I've submitted the code which uses MOUNT_UFS shouldn't be compiled in. Can you attach your config.log to this bug report, please ? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 07:38:03 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D4A503B008F for ; Tue, 13 Jun 2006 07:38:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21364-10 for ; Tue, 13 Jun 2006 07:38:02 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 9E3293B000C for ; Tue, 13 Jun 2006 07:38:02 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq6tQ-0000c6-00; Tue, 13 Jun 2006 07:17:08 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 14:17:08 +0300 Date: Tue, 13 Jun 2006 14:17:08 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-141708.sv36205.99230@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> In-Reply-To: <20060613-141640.sv36205.93232@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.543 tagged_above=-999 required=2 tests=[AWL=0.057, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.543 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 11:38:04 -0000 Follow-up Comment #13, bug #16762 (project mc): .. and your config.h too. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 08:55:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 611923B0114 for ; Tue, 13 Jun 2006 08:55:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23753-04 for ; Tue, 13 Jun 2006 08:55:40 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id DC9023B000A for ; Tue, 13 Jun 2006 08:55:39 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq8Q2-0004jO-00; Tue, 13 Jun 2006 08:54:54 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 14:54:54 +0200 Date: Tue, 13 Jun 2006 14:54:54 +0200 To: Nick Shmyrev , Leonard den Ottolander , mc-devel@gnome.org From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060613-145453.sv26390.71423@savannah.gnu.org> References: <20060612-123140.sv25628.90055@savannah.gnu.org> <20060612-123314.sv25628.73913@savannah.gnu.org> In-Reply-To: <20060612-123314.sv25628.73913@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.544 tagged_above=-999 required=2 tests=[AWL=0.056, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.544 X-Spam-Level: Cc: Subject: [bug #16829] Crash when formatting paragraph X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 12:55:44 -0000 Update of bug #16829 (project mc): Category: None => Editor Status: None => Invalid Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #2: This is an issue with the utf8ization of mcedit. The UTF-8 patches are no part of the official mc. Please report your issue in Red Hats bugzilla (http://bugzilla.redhat.com). _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 09:25:37 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7D6C53B00AF for ; Tue, 13 Jun 2006 09:25:37 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24676-05 for ; Tue, 13 Jun 2006 09:25:35 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 01AE43B000A for ; Tue, 13 Jun 2006 09:25:34 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq8sK-0005Bc-00; Tue, 13 Jun 2006 09:24:08 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 16:24:08 +0300 Date: Tue, 13 Jun 2006 16:24:08 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-162408.sv36205.31330@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> In-Reply-To: <20060613-141708.sv36205.99230@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.544 tagged_above=-999 required=2 tests=[AWL=0.056, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.544 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 13:25:37 -0000 Follow-up Comment #14, bug #16762 (project mc): My bad. I see what's wrong - will fix it and attach a new patch. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 09:51:11 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9CA853B00E5 for ; Tue, 13 Jun 2006 09:51:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 24974-08 for ; Tue, 13 Jun 2006 09:51:09 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 0FF243B008F for ; Tue, 13 Jun 2006 09:51:09 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq9Hc-0006nV-00; Tue, 13 Jun 2006 09:50:16 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 16:50:16 +0300 Date: Tue, 13 Jun 2006 16:50:16 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-165016.sv36205.72008@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> In-Reply-To: <20060613-162408.sv36205.31330@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.506 tagged_above=-999 required=2 tests=[AWL=0.017, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.506 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 13:51:11 -0000 Follow-up Comment #15, bug #16762 (project mc): Ok. Attaching the new patch. Before applying this one - apply the old patch with -R: patch -p1 -R < getmntinfo-fix.patch and then apply the new one: patch -p1 < getmntinfo-fix-1.patch _______________________________________________________ Additional Item Attachment: File name: getmntinfo-fix-1.patch Size:3 KB _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 10:01:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 85AA33B00AF for ; Tue, 13 Jun 2006 10:01:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25629-05 for ; Tue, 13 Jun 2006 10:01:20 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 53A013B008F for ; Tue, 13 Jun 2006 10:01:20 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq9Qw-0006uf-00; Tue, 13 Jun 2006 09:59:54 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 13:59:54 +0000 Date: Tue, 13 Jun 2006 13:59:54 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: yaroslav X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (OS/2; U; Warp 4.5; en-US; rv:1.7.13) Gecko/20060425 X-Apparently-From: 82.204.241.142 (Savane authenticated user s68) Message-Id: <20060613-135953.sv47365.47118@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> In-Reply-To: <20060613-165016.sv36205.72008@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.506 tagged_above=-999 required=2 tests=[AWL=0.017, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TM=0.077] X-Spam-Score: -2.506 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 14:01:21 -0000 Follow-up Comment #16, bug #16762 (project mc): With getmntinfo-fix-1.patch compilation process finished successfully. 10x! Will you include this patch into source tree? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Tue Jun 13 10:22:29 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 912F33B00A5 for ; Tue, 13 Jun 2006 10:22:29 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26410-04 for ; Tue, 13 Jun 2006 10:22:26 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 45D1D3B00E5 for ; Tue, 13 Jun 2006 10:22:26 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fq9lr-0007EE-00; Tue, 13 Jun 2006 10:21:31 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Tue, 13 Jun 2006 17:21:31 +0300 Date: Tue, 13 Jun 2006 17:21:31 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060613-172130.sv36205.64124@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> In-Reply-To: <20060613-135953.sv47365.47118@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.544 tagged_above=-999 required=2 tests=[AWL=0.056, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.544 X-Spam-Level: Cc: Subject: [bug #16762] Cannot compile mc-2006-06-05-20 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 14:22:29 -0000 Follow-up Comment #17, bug #16762 (project mc): Yes. I just wanted to hear from Rolland Illig before commiting. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From kloczek@rudy.mif.pg.gda.pl Tue Jun 13 13:16:01 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 86F433B0438 for ; Tue, 13 Jun 2006 13:16:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31972-09 for ; Tue, 13 Jun 2006 13:16:00 -0400 (EDT) Received: from rudy.mif.pg.gda.pl (rudy.mif.pg.gda.pl [153.19.42.16]) by menubar.gnome.org (Postfix) with ESMTP id 26D0B3B0407 for ; Tue, 13 Jun 2006 13:16:00 -0400 (EDT) X-Virus-Scanned: at rudy.mif.pg.gda.pl Received: by rudy.mif.pg.gda.pl (plum, from userid 2732) id A1066233D5; Tue, 13 Jun 2006 19:14:41 +0200 (CEST) Date: Tue, 13 Jun 2006 19:14:41 +0200 (CEST) From: =?ISO-8859-2?Q?Tomasz_K=B3oczko?= To: Egmont Koblinger In-Reply-To: <20060612083045.GA22700@cs.bme.hu> Message-ID: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <20060612083045.GA22700@cs.bme.hu> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-59671104-1150218881=:31655" X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.541 tagged_above=-999 required=2 tests=[AWL=-0.017, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_SG=0.077] X-Spam-Score: -2.541 X-Spam-Level: Cc: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Jun 2006 17:16:01 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --0-59671104-1150218881=:31655 Content-Type: TEXT/PLAIN; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 8BIT On Mon, 12 Jun 2006, Egmont Koblinger wrote: [..] BTW: anyone is working on UFT-8 support for ncurses(w) backend ? BTW2: few monts ago was on this list about converting in source tree alle po/*.po files to UTF-8 .. still not done. Any reasons ? It can be performed by: [mc]$ for i in po/*.po; do msgconv -t UTF-8 $i -o $i; done and commiting changes. kloczek -- ----------------------------------------------------------- *Ludzie nie mają problemów, tylko sobie sami je stwarzają* ----------------------------------------------------------- Tomasz Kłoczko, sys adm @zie.pg.gda.pl|*e-mail: kloczek@rudy.mif.pg.gda.pl* --0-59671104-1150218881=:31655-- From egmont@uhulinux.hu Wed Jun 14 09:17:10 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1073B3B0406 for ; Wed, 14 Jun 2006 09:17:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31014-06 for ; Wed, 14 Jun 2006 09:17:08 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id 32A1D3B0081 for ; Wed, 14 Jun 2006 09:17:08 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id F42397F9A; Wed, 14 Jun 2006 15:16:24 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26249-05; Wed, 14 Jun 2006 15:16:21 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id BB0867E02; Wed, 14 Jun 2006 15:16:21 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Wed, 14 Jun 2006 15:16:21 +0200 Date: Wed, 14 Jun 2006 15:16:21 +0200 From: Egmont Koblinger To: Tomasz =?iso-8859-2?Q?K=B3oczko?= Subject: Re: utf8 patch for mc, slang 2 version Message-ID: <20060614131621.GE29389@cs.bme.hu> References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <20060612083045.GA22700@cs.bme.hu> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.548 tagged_above=-999 required=2 tests=[AWL=-0.026, BAYES_00=-2.599, TW_SG=0.077] X-Spam-Score: -2.548 X-Spam-Level: Cc: mc-devel@gnome.org X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 13:17:10 -0000 On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz Kłoczko wrote: > BTW: anyone is working on UFT-8 support for ncurses(w) backend ? I don't think so, and I don't think it is worth it. Maintaining two backends IMHO just causes headaches while it doesn't make mc better. I still can't see why developers do not decide which one to use and drop the other one. With Unicode support maintaining the two will be much harder since AFAIK slang works with UTF-8 while ncurses uses UCS-4. Hence a completely different patch would be required for the two cases. > BTW2: few monts ago was on this list about converting in source > tree alle po/*.po files to UTF-8 .. still not done. Any reasons ? > > It can be performed by: > > [mc]$ for i in po/*.po; do msgconv -t UTF-8 $i -o $i; done Are you sure it is safe to use the same output file? I'd rather use a tmp file. It depends on msgconv's internal implementation, but I can easily imagine a situation where the writing file descriptor's position exceeds the reading position (since UTF-8 is longer than the 8-bit version) and this may cause invalid results. Due to buffered read and write requests I guess it needs larger files (with approx. 4096 -- 8192 accented characters) for this bug to occur. I'm not sure, though, just reasonably paranoid :-) -- Egmont From nadvornik@suse.cz Wed Jun 14 10:23:23 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3724F3B041B for ; Wed, 14 Jun 2006 10:23:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03772-05 for ; Wed, 14 Jun 2006 10:23:09 -0400 (EDT) Received: from mail.suse.cz (styx.suse.cz [82.119.242.94]) by menubar.gnome.org (Postfix) with ESMTP id A494D3B0570 for ; Wed, 14 Jun 2006 10:23:09 -0400 (EDT) Received: from sphinx.suse.cz (sphinx.suse.cz [10.20.1.5]) by mail.suse.cz (SUSE CR ESMTP Mailer) with ESMTP id 9710C628067 for ; Wed, 14 Jun 2006 16:22:51 +0200 (CEST) From: Vladimir Nadvornik To: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version Date: Wed, 14 Jun 2006 16:22:49 +0200 User-Agent: KMail/1.9.1 References: <200509191419.01556.arekm@pld-linux.org> <1150024126.2478.14.camel@athlon> <1150102528.2242.17.camel@localhost.localdomain> In-Reply-To: <1150102528.2242.17.camel@localhost.localdomain> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-6" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200606141622.50049.nadvornik@suse.cz> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 14:23:23 -0000 On Monday 12 June 2006 10:55, Jindrich Novy wrote: > > > Please take notice. It would probably be good if Vladimir and you could > > keep your UTF-8 patch sets in sync. It just seems wasted effort to do > > this in two places independently. Some inter-distro communication is not > > going to hurt. Maybe these patches should be centrally maintained in a > > contribs tree. > > The problem is that Vladimir and me use different versions of mc. My > approach is to be more in sync with upstream so that there's a more > recent CVS snapshot in Fedora for now because of a very rare release > period of mc. This helps me to do only minimal changes when I want to > send a patch to upstream. SuSE uses the stable mc-4.6.1, AFAIK. > It would not be a problem to have a more recent mc snapshot in openSUSE Factory. Even better, if it is synced 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 From bartoldeman@users.sourceforge.net Wed Jun 14 17:52:11 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CBF073B0433 for ; Wed, 14 Jun 2006 17:52:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31602-06 for ; Wed, 14 Jun 2006 17:52:08 -0400 (EDT) Received: from mail2.woosh.co.nz (webmail.woosh.co.nz [202.74.207.2]) by menubar.gnome.org (Postfix) with ESMTP id 9AAF83B041B for ; Wed, 14 Jun 2006 17:52:07 -0400 (EDT) Received: from enm-bo-lt.localnet (202-74-212-77.ue.woosh.co.nz [202.74.212.77]) by woosh.co.nz (Rockliffe SMTPRA 6.1.22) with ESMTP id ; Thu, 15 Jun 2006 09:51:23 +1200 Received: from enbeo (helo=localhost) by enm-bo-lt.localnet with local-esmtp (Exim 4.62) (envelope-from ) id 1FqdB0-000326-Ma; Thu, 15 Jun 2006 09:45:26 +1200 Date: Thu, 15 Jun 2006 09:45:26 +1200 (NZST) From: Bart Oldeman X-X-Sender: enbeo@enm-bo-lt.localnet To: Egmont Koblinger Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <20060614131621.GE29389@cs.bme.hu> Message-ID: References: <200509191419.01556.arekm@pld-linux.org><200606071218.32428.nadv ornik@suse.cz><1149685131.2269.10.camel@localhost.localdomain><200606081202 .51002.nadvornik@suse.cz><20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon><20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: Cc: mc-devel@gnome.org, Tomasz =?iso-8859-2?Q?K=B3oczko?= X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 21:52:12 -0000 On Wed, 14 Jun 2006, Egmont Koblinger wrote: > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > I don't think so, and I don't think it is worth it. Maintaining two backends > IMHO just causes headaches while it doesn't make mc better. I still can't > see why developers do not decide which one to use and drop the other one. Maybe compatibility with older UN*Xes with curses but no slang? > With Unicode support maintaining the two will be much harder since AFAIK > slang works with UTF-8 while ncurses uses UCS-4. Hence a completely > different patch would be required for the two cases. Last time I played with it ncursesw (but not plain ncurses) handled UTF-8 just fine. e.g. you can pass a UTF-8 encoded string to addstr(), and provided the locale is set correctly, ncursesw will compute its width correctly. It is *also* possible to use addwstr() with UCS-4, but not compulsory. Bart From proski@gnu.org Wed Jun 14 18:12:25 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 13D573B0145 for ; Wed, 14 Jun 2006 18:12:25 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08738-03 for ; Wed, 14 Jun 2006 18:12:23 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id 67B653B00D6 for ; Wed, 14 Jun 2006 18:12:23 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FqdaT-0000qj-3U for mc-devel@gnome.org; Wed, 14 Jun 2006 18:11:45 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FqdaL-00062m-Lp; Wed, 14 Jun 2006 18:11:37 -0400 Subject: Re: utf8 patch for mc, slang 2 version From: Pavel Roskin To: Bart Oldeman In-Reply-To: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadv ornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202 .51002.nadvornik@suse.cz><20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon><20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Wed, 14 Jun 2006 18:11:37 -0400 Message-Id: <1150323097.23144.2.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: Egmont Koblinger , mc-devel@gnome.org, Tomasz =?iso-8859-2?Q?K=B3oczko?= X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 22:12:25 -0000 Hello! On Thu, 2006-06-15 at 09:45 +1200, Bart Oldeman wrote: > On Wed, 14 Jun 2006, Egmont Koblinger wrote: > > > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: > > > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > > > I don't think so, and I don't think it is worth it. Maintaining two backends > > IMHO just causes headaches while it doesn't make mc better. I still can't > > see why developers do not decide which one to use and drop the other one. > > Maybe compatibility with older UN*Xes with curses but no slang? It's a bogus argument. UNIX curses was removed long ago, and it had never worked well anyway. I don't remember a single person complaining. Besides, S-Lang is included with mc and it's quite portable. -- Regards, Pavel Roskin From ossi@kde.org Wed Jun 14 18:23:28 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 168E43B000E for ; Wed, 14 Jun 2006 18:23:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00410-04 for ; Wed, 14 Jun 2006 18:23:24 -0400 (EDT) Received: from ktown.kde.org (ktown.kde.org [131.246.120.250]) by menubar.gnome.org (Postfix) with SMTP id 194493B0099 for ; Wed, 14 Jun 2006 18:23:24 -0400 (EDT) Received: (qmail 6653 invoked from network); 14 Jun 2006 22:22:34 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 14 Jun 2006 22:22:34 -0000 Received: from ossi by ugly.local with local (masqmail 0.2.21) id 1Fqdkw-2f5-00 for ; Thu, 15 Jun 2006 00:22:34 +0200 Date: Thu, 15 Jun 2006 00:22:34 +0200 From: Oswald Buddenhagen To: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version Message-ID: <20060614222234.GA9122@ugly.local> Mail-Followup-To: mc-devel@gnome.org References: <20060614131621.GE29389@cs.bme.hu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.585 tagged_above=-999 required=2 tests=[AWL=0.014, BAYES_00=-2.599] X-Spam-Score: -2.585 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 22:23:28 -0000 On Thu, Jun 15, 2006 at 09:45:26AM +1200, Bart Oldeman wrote: > On Wed, 14 Jun 2006, Egmont Koblinger wrote: > > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > > > I don't think so, and I don't think it is worth it. Maintaining two backends > > IMHO just causes headaches while it doesn't make mc better. I still can't > > see why developers do not decide which one to use and drop the other one. > > Maybe compatibility with older UN*Xes with curses but no slang? > that doesn't sound too convincing. > > With Unicode support maintaining the two will be much harder since AFAIK > > slang works with UTF-8 while ncurses uses UCS-4. Hence a completely > > different patch would be required for the two cases. > > Last time I played with it ncursesw (but not plain ncurses) handled UTF-8 > just fine. > good. i'm all for killing slang support. why that one? libslang is twice as big as libncursesw. probably because it was meant to be much more than just a display lib. -- Hi! I'm a .signature virus! Copy me into your ~/.signature, please! -- Chaos, panic, and disorder - my work here is done. From kloczek@rudy.mif.pg.gda.pl Thu Jun 15 00:21:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2CCA43B002B for ; Thu, 15 Jun 2006 00:21:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10727-08 for ; Thu, 15 Jun 2006 00:21:33 -0400 (EDT) Received: from rudy.mif.pg.gda.pl (rudy.mif.pg.gda.pl [153.19.42.16]) by menubar.gnome.org (Postfix) with ESMTP id D320E3B00B5 for ; Thu, 15 Jun 2006 00:21:32 -0400 (EDT) X-Virus-Scanned: at rudy.mif.pg.gda.pl Received: by rudy.mif.pg.gda.pl (plum, from userid 2732) id DE57C233C2; Thu, 15 Jun 2006 06:20:42 +0200 (CEST) Date: Thu, 15 Jun 2006 06:20:42 +0200 (CEST) From: =?ISO-8859-2?Q?Tomasz_K=B3oczko?= To: Egmont Koblinger Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <20060614131621.GE29389@cs.bme.hu> Message-ID: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-590361060-1150344476=:31655" Content-ID: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.54 tagged_above=-999 required=2 tests=[AWL=-0.016, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_SG=0.077] X-Spam-Score: -2.54 X-Spam-Level: Cc: mc-devel@gnome.org X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 04:21:36 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --0-590361060-1150344476=:31655 Content-Type: TEXT/PLAIN; CHARSET=ISO-8859-2; FORMAT=flowed Content-Transfer-Encoding: 8BIT Content-ID: On Wed, 14 Jun 2006, Egmont Koblinger wrote: > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz Kłoczko wrote: > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > I don't think so, and I don't think it is worth it. Maintaining two backends > IMHO just causes headaches while it doesn't make mc better. I still can't > see why developers do not decide which one to use and drop the other one. If someone want ask which backend is more importand and will be better keep as major IMO answer tn this kind question is very simple: # rpm -q --whatrequires libslang.so.2 | grep -v slang | wc -l 4 # rpm -q --whatrequires libncurses.so.5 libncursesw.so.5 | grep -v ncurses |wc -l 55 Above slang list contain only packages which do not have now ncurses backend and are not importand as mc :) Also current state have other sick points on Linux. In case using mc with gpm it causes runtime linking with more than one term toolkit library (slang or internal slang and ncurses used by libgpm). [..] >> [mc]$ for i in po/*.po; do msgconv -t UTF-8 $i -o $i; done > > Are you sure it is safe to use the same output file? I'd rather use a tmp > file. I'm sure. msgconv cumulates output in memory and aftewr finish conversion writes output to file name passed in -o parameter in single step. kloczek -- ----------------------------------------------------------- *Ludzie nie mają problemów, tylko sobie sami je stwarzają* ----------------------------------------------------------- Tomasz Kłoczko, sys adm @zie.pg.gda.pl|*e-mail: kloczek@rudy.mif.pg.gda.pl* --0-590361060-1150344476=:31655-- From ptsekov@gmx.net Thu Jun 15 00:35:07 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 45C963B0324 for ; Thu, 15 Jun 2006 00:35:07 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11437-01 for ; Thu, 15 Jun 2006 00:34:58 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 4B94E3B0184 for ; Thu, 15 Jun 2006 00:34:56 -0400 (EDT) Received: (qmail invoked by alias); 15 Jun 2006 04:34:23 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp036) with SMTP; 15 Jun 2006 06:34:23 +0200 X-Authenticated: #14308112 Date: Thu, 15 Jun 2006 07:33:12 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole Cc: MC dev Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <1150323097.23144.2.camel@dv> Message-ID: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadv ornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202 .51002.nadvornik@suse.cz><20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon><20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> <1150323097.23144.2.camel@dv> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.546 tagged_above=-999 required=2 tests=[AWL=0.054, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.546 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 04:35:07 -0000 On Wed, 14 Jun 2006, Pavel Roskin wrote: > Hello! > > On Thu, 2006-06-15 at 09:45 +1200, Bart Oldeman wrote: >> On Wed, 14 Jun 2006, Egmont Koblinger wrote: >> >>> On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: >>> >>>> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? >>> >>> I don't think so, and I don't think it is worth it. Maintaining two backends >>> IMHO just causes headaches while it doesn't make mc better. I still can't >>> see why developers do not decide which one to use and drop the other one. >> >> Maybe compatibility with older UN*Xes with curses but no slang? > > It's a bogus argument. UNIX curses was removed long ago, and it had > never worked well anyway. I don't remember a single person complaining. > Besides, S-Lang is included with mc and it's quite portable. We had that argument once already. curses is not that old and it is standard. And it has unicode support. Its just a matter of using it. From egmont@uhulinux.hu Thu Jun 15 06:33:33 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5B1473B0440 for ; Thu, 15 Jun 2006 06:33:33 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30159-02 for ; Thu, 15 Jun 2006 06:33:28 -0400 (EDT) Received: from sziami.cs.bme.hu (sziami.cs.bme.hu [152.66.242.225]) by menubar.gnome.org (Postfix) with ESMTP id 78AEC3B03EB for ; Thu, 15 Jun 2006 06:33:28 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by sziami.cs.bme.hu (Postfix) with ESMTP id DC5CA8036 for ; Thu, 15 Jun 2006 12:33:20 +0200 (CEST) Received: from sziami.cs.bme.hu ([127.0.0.1]) by localhost (sziami.cs.bme.hu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12764-06 for ; Thu, 15 Jun 2006 12:33:17 +0200 (CEST) Received: from pnp (pnp [152.66.242.224]) by sziami.cs.bme.hu (Postfix) with SMTP id 281557FF0 for ; Thu, 15 Jun 2006 12:33:17 +0200 (CEST) Received: by pnp (sSMTP sendmail emulation); Thu, 15 Jun 2006 12:33:14 +0200 Date: Thu, 15 Jun 2006 12:33:14 +0200 From: Egmont Koblinger To: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version Message-ID: <20060615103314.GA14523@cs.bme.hu> References: <20060614131621.GE29389@cs.bme.hu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.8i X-Virus-Scanned: by amavisd-new using ClamAV at cs.bme.hu X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.584 tagged_above=-999 required=2 tests=[AWL=0.015, BAYES_00=-2.599] X-Spam-Score: -2.584 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 10:33:36 -0000 Hi, > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > > > I don't think so, and I don't think it is worth it. Maintaining two backends > > IMHO just causes headaches while it doesn't make mc better. I still can't > > see why developers do not decide which one to use and drop the other one. > > Maybe compatibility with older UN*Xes with curses but no slang? Asking these sysadmins to install slang (or compile mc to its bundled slang) is IMHO easier than to do double work in mc. > Last time I played with it ncursesw (but not plain ncurses) handled UTF-8 > just fine. > > e.g. you can pass a UTF-8 encoded string to addstr(), and provided the > locale is set correctly, ncursesw will compute its width correctly. It is > *also* possible to use addwstr() with UCS-4, but not compulsory. It's clear now, thanks! Anyway, there are plenty of apps (e.g. vim, joe) that perfectly support UTF-8 and use ncurses (not the w version). I wonder how it is possible... -- Egmont From INVALID.NOREPLY@gnu.org Wed Jun 14 15:03:01 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D204A3B0190 for ; Wed, 14 Jun 2006 15:03:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15652-08 for ; Wed, 14 Jun 2006 15:03:00 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3A7723B00C7 for ; Wed, 14 Jun 2006 15:03:00 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fqad3-0005RO-00; Wed, 14 Jun 2006 15:02:13 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 14 Jun 2006 19:02:13 +0000 Date: Wed, 14 Jun 2006 19:02:13 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: purportex X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.0.4) Gecko/20060508 Firefox/1.5.0.4 X-Apparently-From: 81.31.39.117 (Savane authenticated user purportex) Message-Id: <20060614-190212.sv50251.32349@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> In-Reply-To: <20060613-172130.sv36205.64124@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 08:58:02 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 19:03:02 -0000 Follow-up Comment #18, bug #16762 (project mc): Hi, when I compiling current cvs version, I have such problem.. $ ./autogen ; make ... mountlist.c: In function 'fstype_to_string': mountlist.c:176: error: 'MOUNT_UFS' undeclared (first use in this function) mountlist.c:176: error: (Each undeclared identifier is reported only once mountlist.c:176: error: for each function it appears in.) mountlist.c:178: error: 'MOUNT_NFS' undeclared (first use in this function) $ uname -a Darwin MacBookPro.local 8.6.1 Darwin Kernel Version 8.6.1: Tue Mar 7 16:55:45 PST 2006; root:xnu-792.9.22.obj~1/RELEASE_I386 i386 i386 _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 15 00:37:55 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E3FD13B00CA for ; Thu, 15 Jun 2006 00:37:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11437-06 for ; Thu, 15 Jun 2006 00:37:53 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id A34FB3B00BA for ; Thu, 15 Jun 2006 00:37:53 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FqjbZ-0008C3-00; Thu, 15 Jun 2006 00:37:17 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 15 Jun 2006 07:37:16 +0300 Date: Thu, 15 Jun 2006 07:37:16 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Opera/8.51 (Windows ME; U; en) X-Apparently-From: 87.126.52.205 (Savane authenticated user ptsekov) Message-Id: <20060615-073715.sv36205.52677@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> In-Reply-To: <20060614-190212.sv50251.32349@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: X-Mailman-Approved-At: Thu, 15 Jun 2006 08:58:02 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 04:37:55 -0000 Follow-up Comment #19, bug #16762 (project mc): purportex, have you tried to fix the problem by applying the suggested patch ? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From bartoldeman@users.sourceforge.net Thu Jun 15 17:15:00 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 891BA3B01FF for ; Thu, 15 Jun 2006 17:15:00 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01106-01 for ; Thu, 15 Jun 2006 17:14:59 -0400 (EDT) Received: from mail2.woosh.co.nz (webmail.woosh.co.nz [202.74.207.2]) by menubar.gnome.org (Postfix) with ESMTP id 5C5023B00DD for ; Thu, 15 Jun 2006 17:14:58 -0400 (EDT) Received: from enm-bo-lt.localnet (202-74-216-93.ue.woosh.co.nz [202.74.216.93]) by woosh.co.nz (Rockliffe SMTPRA 6.1.22) with ESMTP id for ; Fri, 16 Jun 2006 09:14:10 +1200 Received: from enbeo (helo=localhost) by enm-bo-lt.localnet with local-esmtp (Exim 4.62) (envelope-from ) id 1Fqz4P-0003ds-F4 for mc-devel@gnome.org; Fri, 16 Jun 2006 09:08:05 +1200 Date: Fri, 16 Jun 2006 09:08:04 +1200 (NZST) From: Bart Oldeman X-X-Sender: enbeo@enm-bo-lt.localnet To: mc-devel@gnome.org Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <20060615103314.GA14523@cs.bme.hu> Message-ID: References: <20060614131621.GE29389@cs.bme.hu> <20060615103314.GA14523@cs.bme.hu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.464 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.464 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 21:15:00 -0000 On Thu, 15 Jun 2006, Egmont Koblinger wrote: > Anyway, there are plenty of apps (e.g. vim, joe) that perfectly support > UTF-8 and use ncurses (not the w version). I wonder how it is possible... Because they only use the terminfo (low-level) parts of ncurses, see "man 3ncurses terminfo". Those parts do not care about UTF-8. MC uses a higher level part of ncurses (the display routines), but restricted to "stdscr". There's an even higher level part of ncurses that supports managing (overlapping) windows, but MC does not use it. SLang (without the newt library) does not support that. So one advantage of using ncurses over slang is that MC could make use of ncurses' windowing code, thereby simplifying its own code. In the way that MC uses SLang and ncurses right now there is very little difference between the two libraries. If you google (groups) for it (Miguel's posts) you'll find that around '95/'96 SLang was preferred over ncurses because it was faster, smaller, and less buggy. But that is no longer the case, there is not much difference now. Bart From leonard@den.ottolander.nl Thu Jun 15 19:55:20 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E1A6F3B00DD for ; Thu, 15 Jun 2006 19:55:19 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06118-09 for ; Thu, 15 Jun 2006 19:55:14 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id AE7613B0011 for ; Thu, 15 Jun 2006 19:55:14 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id ABA4E4023 for ; Fri, 16 Jun 2006 01:54:08 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id Maxju7m2nPkZ for ; Fri, 16 Jun 2006 01:54:02 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id ED55C4021 for ; Fri, 16 Jun 2006 01:54:01 +0200 (CEST) Subject: Symlink attack in file.c? From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Fri, 16 Jun 2006 01:53:56 +0200 Message-Id: <1150415636.2615.24.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 23:55:20 -0000 Hi, Something I came across a couple of times this week, just now in relation to an RFE regarding file permissions on copying fat files in RHs bugzilla (https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=195614): http://cvs.savannah.gnu.org/viewcvs/mc/src/file.c?root=mc&r1=1.28&r2=1.29 A commit by "pavel" (Machek?) who added the remark "FIXME: You have security hole here, btw. Imagine copying to /tmp and symlink attack :-(" Is there anybody that can explain to me what he's concerned about and if that is still an issue? If so this is a rather long standing hole... If not, let's get rid of that warning. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Thu Jun 15 18:27:59 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C15DE3B01A1 for ; Thu, 15 Jun 2006 18:27:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03783-05 for ; Thu, 15 Jun 2006 18:27:58 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 02FDC3B0007 for ; Thu, 15 Jun 2006 18:27:57 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fr0JH-0002nT-00; Thu, 15 Jun 2006 18:27:31 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 15 Jun 2006 22:27:30 +0000 Date: Thu, 15 Jun 2006 22:27:30 +0000 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: purportex X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.0.4) Gecko/20060508 Firefox/1.5.0.4 X-Apparently-From: 81.31.39.117 (Savane authenticated user purportex) Message-Id: <20060615-222730.sv50251.60290@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > In-Reply-To: <20060615-073715.sv36205.52677@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.548 tagged_above=-999 required=2 tests=[AWL=0.052, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.548 X-Spam-Level: X-Mailman-Approved-At: Fri, 16 Jun 2006 05:26:01 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2006 22:28:00 -0000 Follow-up Comment #20, bug #16762 (project mc): Yeah, great! I can't compile it with tuesday's version, but with yesterday's I can, thanx :] _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Fri Jun 16 09:43:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 40C913B0076 for ; Fri, 16 Jun 2006 09:43:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30254-02 for ; Fri, 16 Jun 2006 09:43:41 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3835D3B000B for ; Fri, 16 Jun 2006 09:43:41 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrEbH-0000KJ-00; Fri, 16 Jun 2006 09:43:03 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Fri, 16 Jun 2006 15:43:02 +0200 Date: Fri, 16 Jun 2006 15:43:02 +0200 To: Nick Shmyrev , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16829] Crash when formatting paragraph From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060616-154301.sv26390.44190@savannah.gnu.org> References: <20060612-123140.sv25628.90055@savannah.gnu.org> <20060612-123314.sv25628.73913@savannah.gnu.org> <20060613-145453.sv26390.71423@savannah.gnu.org> In-Reply-To: <20060613-145453.sv26390.71423@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.548 tagged_above=-999 required=2 tests=[AWL=0.052, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.548 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 13:43:44 -0000 Update of bug #16829 (project mc): Status: Invalid => None Assigned to: None => leonardjo Open/Closed: Closed => Open Operating System: GNU/Hurd => All _______________________________________________________ Follow-up Comment #3: Turns out to be a general mc issue after all: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=194562 Jindrich Novy proposes the following solution: https://bugzilla.redhat.com/bugzilla/attachment.cgi?id=131038 _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From jnovy@redhat.com Fri Jun 16 10:44:35 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 295C73B0012 for ; Fri, 16 Jun 2006 10:44:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32146-01 for ; Fri, 16 Jun 2006 10:44:33 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id B4BEC3B000B for ; Fri, 16 Jun 2006 10:44:33 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5GCUXa8011193 for ; Fri, 16 Jun 2006 08:30:33 -0400 Received: from pobox.stuttgart.redhat.com (pobox.stuttgart.redhat.com [172.16.2.10]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5GCUV2V007457 for ; Fri, 16 Jun 2006 08:30:33 -0400 Received: from vpn-4-42.stuttgart.redhat.com (vpn-4-42.stuttgart.redhat.com [10.32.4.42]) by pobox.stuttgart.redhat.com (8.12.8/8.12.8) with ESMTP id k5GCUUTK005881 for ; Fri, 16 Jun 2006 14:30:30 +0200 Subject: [PATCH] segfault fix while formatting paragraph (alt-p) From: Jindrich Novy To: MC Devel Content-Type: multipart/mixed; boundary="=-2pcaSwIryKoHMMTlNz7W" Date: Fri, 16 Jun 2006 14:30:29 +0200 Message-Id: <1150461029.2294.6.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.5) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.601 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.601 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 14:44:35 -0000 --=-2pcaSwIryKoHMMTlNz7W Content-Type: text/plain Content-Transfer-Encoding: 7bit Hi, there's a segfault while formatting a paragraph with alt-p. The next_word_start() in wordproc.c misses the upper boundary check. The attached patch fixes it. References/Reproducer: http://bugzilla.redhat.com/194562 Jindrich --=-2pcaSwIryKoHMMTlNz7W Content-Disposition: attachment; filename=mc-segfault.patch Content-Type: text/x-patch; name=mc-segfault.patch; charset=UTF-8 Content-Transfer-Encoding: 7bit --- mc/edit/wordproc.c.jn 2005-05-27 05:35:12.000000000 +0200 +++ mc/edit/wordproc.c 2006-06-16 14:19:38.000000000 +0200 @@ -198,10 +198,10 @@ } static int -next_word_start (unsigned char *t, int q) +next_word_start (unsigned char *t, int q, int size) { int i; - for (i = q;; i++) { + for (i = q; i < size; i++) { switch (t[i]) { case '\n': return -1; @@ -220,11 +220,11 @@ /* find the start of a word */ static int -word_start (unsigned char *t, int q) +word_start (unsigned char *t, int q, int size) { int i = q; if (t[q] == ' ' || t[q] == '\t') - return next_word_start (t, q); + return next_word_start (t, q, size); for (;;) { int c; if (!i) @@ -253,9 +253,9 @@ break; if (t[q] == '\n') break; - p = word_start (t, q); + p = word_start (t, q, size); if (p == -1) - q = next_word_start (t, q); /* Return the end of the word if the beginning + q = next_word_start (t, q, size); /* Return the end of the word if the beginning of the word is at the beginning of a line (i.e. a very long word) */ else --=-2pcaSwIryKoHMMTlNz7W-- From ptsekov@gmx.net Fri Jun 16 11:59:15 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 55D4D3B0005 for ; Fri, 16 Jun 2006 11:59:15 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01930-07 for ; Fri, 16 Jun 2006 11:59:12 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 01C653B000B for ; Fri, 16 Jun 2006 11:59:11 -0400 (EDT) Received: (qmail invoked by alias); 16 Jun 2006 15:58:30 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp028) with SMTP; 16 Jun 2006 17:58:30 +0200 X-Authenticated: #14308112 Date: Fri, 16 Jun 2006 18:57:18 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: MC dev Subject: Problems with the mailing list ? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.549 tagged_above=-999 required=2 tests=[AWL=-0.943, BAYES_20=-0.74, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -1.549 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 15:59:15 -0000 Hello, Does anyone miss messages from the mc-devel list ? It seems like some messages do not reach the mailing list at all while others don't reach the mailing list subcsribers. Can anyone confirm or deny this ? Thanks! From jnovy@redhat.com Fri Jun 16 12:57:33 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E085B3B033E for ; Fri, 16 Jun 2006 12:57:32 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06357-08 for ; Fri, 16 Jun 2006 12:57:25 -0400 (EDT) Received: from mx1.redhat.com (mx1.redhat.com [66.187.233.31]) by menubar.gnome.org (Postfix) with ESMTP id 838633B050A for ; Fri, 16 Jun 2006 12:55:21 -0400 (EDT) Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5GGsPDw006893 for ; Fri, 16 Jun 2006 12:54:25 -0400 Received: from pobox.stuttgart.redhat.com (pobox.stuttgart.redhat.com [172.16.2.10]) by int-mx1.corp.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id k5GGsOK7007658 for ; Fri, 16 Jun 2006 12:54:24 -0400 Received: from vpn-4-3.stuttgart.redhat.com (vpn-4-3.stuttgart.redhat.com [10.32.4.3]) by pobox.stuttgart.redhat.com (8.12.8/8.12.8) with ESMTP id k5GGsNTK026570 for ; Fri, 16 Jun 2006 18:54:23 +0200 Subject: better [PATCH] segfault fix while formatting paragraph (alt-p) From: Jindrich Novy To: MC Devel Content-Type: multipart/mixed; boundary="=-3u5KXe3b23+1fD2VbBs1" Date: Fri, 16 Jun 2006 18:54:23 +0200 Message-Id: <1150476863.19192.3.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.6.2 (2.6.2-1.fc5.5) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.601 tagged_above=-999 required=2 tests=[AWL=0.000, BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001] X-Spam-Score: -2.601 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 16:57:33 -0000 --=-3u5KXe3b23+1fD2VbBs1 Content-Type: text/plain Content-Transfer-Encoding: 7bit Hi, after some refinement I'm sending a better patch that rewrites next_word_start() and fixes the segfault. Jindrich --=-3u5KXe3b23+1fD2VbBs1 Content-Disposition: attachment; filename=mc-segfault.patch Content-Type: text/x-patch; name=mc-segfault.patch; charset=UTF-8 Content-Transfer-Encoding: 7bit --- mc/edit/wordproc.c.jn 2005-05-27 05:35:12.000000000 +0200 +++ mc/edit/wordproc.c 2006-06-16 18:48:42.000000000 +0200 @@ -198,33 +198,25 @@ } static int -next_word_start (unsigned char *t, int q) +next_word_start (unsigned char *t, int q, int size) { int i; - for (i = q;; i++) { - switch (t[i]) { - case '\n': + for (i = q; i X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6AA2F3B04C9 for ; Fri, 16 Jun 2006 16:21:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19862-05 for ; Fri, 16 Jun 2006 16:21:41 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 7B4BC3B03B3 for ; Fri, 16 Jun 2006 16:21:41 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrKoG-0007SH-00; Fri, 16 Jun 2006 16:20:52 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Fri, 16 Jun 2006 22:20:52 +0200 Date: Fri, 16 Jun 2006 22:20:52 +0200 To: Nick Shmyrev , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16829] Crash when formatting paragraph From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16829 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060616-222051.sv26390.93326@savannah.gnu.org> References: <20060612-123140.sv25628.90055@savannah.gnu.org> <20060612-123314.sv25628.73913@savannah.gnu.org> <20060613-145453.sv26390.71423@savannah.gnu.org> <20060616-154301.sv26390.44190@savannah.gnu.org> In-Reply-To: <20060616-154301.sv26390.44190@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.55 tagged_above=-999 required=2 tests=[AWL=0.050, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.55 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2006 20:21:44 -0000 Update of bug #16829 (project mc): Status: None => Fixed Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #4: Pavel Tsekov committed patches to fix this issue. Closing. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From proski@gnu.org Fri Jun 16 23:17:46 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AFAEF3B00C5 for ; Fri, 16 Jun 2006 23:17:46 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00723-05 for ; Fri, 16 Jun 2006 23:17:45 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id B49B33B0137 for ; Fri, 16 Jun 2006 23:17:45 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FrRIQ-0002kb-1Z for mc-devel@gnome.org; Fri, 16 Jun 2006 23:16:26 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FrRIJ-00025L-VK; Fri, 16 Jun 2006 23:16:19 -0400 Subject: Re: Problems with the mailing list ? From: Pavel Roskin To: Pavel Tsekov In-Reply-To: References: Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Fri, 16 Jun 2006 23:16:19 -0400 Message-Id: <1150514179.29738.20.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 03:17:46 -0000 Hello! On Fri, 2006-06-16 at 18:57 +0300, Pavel Tsekov wrote: > Hello, > > Does anyone miss messages from the mc-devel list ? It seems like some > messages do not reach the mailing list at all while others don't reach > the mailing list subcsribers. Can anyone confirm or deny this ? I have sent an email to the GNOME mailing list administrator. I don't see any delays or mail loss, but let's see what would happen to this message. -- Regards, Pavel Roskin From proski@gnu.org Sat Jun 17 00:33:48 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 099BB3B015A for ; Sat, 17 Jun 2006 00:33:48 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01828-10 for ; Sat, 17 Jun 2006 00:33:46 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id 8FE6D3B00CB for ; Sat, 17 Jun 2006 00:33:46 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FrRT5-0002yB-Q6 for mc-devel@gnome.org; Fri, 16 Jun 2006 23:27:27 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FrRT0-00025j-D6; Fri, 16 Jun 2006 23:27:22 -0400 Subject: Re: Symlink attack in file.c? From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150415636.2615.24.camel@athlon> References: <1150415636.2615.24.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Fri, 16 Jun 2006 23:27:22 -0400 Message-Id: <1150514842.29738.32.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 04:33:48 -0000 Hello, Leonard! On Fri, 2006-06-16 at 01:53 +0200, Leonard den Ottolander wrote: > Something I came across a couple of times this week, just now in > relation to an RFE regarding file permissions on copying fat files in > RHs bugzilla > (https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=195614): > http://cvs.savannah.gnu.org/viewcvs/mc/src/file.c?root=mc&r1=1.28&r2=1.29 > > A commit by "pavel" (Machek?) who added the remark > "FIXME: You have security hole here, btw. Imagine copying to /tmp and > symlink attack :-(" > > Is there anybody that can explain to me what he's concerned about and if > that is still an issue? If so this is a rather long standing hole... If > not, let's get rid of that warning. I think it's still an issue. Suppose the target doesn't exist. Then mc decides that it's OK to create the file and creates it. In the meantime, somebody could have created a symlink, so mc truncates the file pointed to by the symlink. It is a hole indeed, but it needs a good timing to be exploited. The attacker should know which file is about to be overwritten and the symlink should be created after mc has checked that the target doesn't exist, but before mc opens the file for writing. Since mc needs to be interactive, it's hard to avoid accessing the target file more than once. The simplest fix would be to use O_EXCL is there was no target file initially. If it fails for the reason that the file exists, there should be a huge warning that no user should be able to ignore. -- Regards, Pavel Roskin From niko_2501@yahoo.co.jp Wed Jun 14 02:52:08 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3C1A73B00A4 for ; Wed, 14 Jun 2006 02:52:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19764-06 for ; Wed, 14 Jun 2006 02:52:07 -0400 (EDT) Received: from web3704.mail.tnz.yahoo.co.jp (web3704.mail.tnz.yahoo.co.jp [203.216.226.186]) by menubar.gnome.org (Postfix) with SMTP id 5C6D73B000C for ; Wed, 14 Jun 2006 02:52:06 -0400 (EDT) Received: (qmail 50747 invoked by uid 60001); 14 Jun 2006 06:50:59 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=yj20050223; d=yahoo.co.jp; h=Message-ID:Received:Date:From:Subject:To:MIME-Version:Content-Type; b=fKfMo4MtcFdN3Oi44x+rUCTdRh804D+vSygKDCE2SnLqfIE0VSjG32inB55EtTlWaKDRmUId67rQxnl7zaB+WjYH1rDaTntn7UzdA4w9jA/f4iZEZp/9P9n5p/oH5Exk ; Message-ID: <20060614065059.50745.qmail@web3704.mail.tnz.yahoo.co.jp> Received: from [220.98.134.208] by web3704.mail.tnz.yahoo.co.jp via HTTP; Wed, 14 Jun 2006 15:50:59 JST Date: Wed, 14 Jun 2006 15:50:59 +0900 (JST) From: sipieter nicolas Subject: mc bugs To: mc-devel@gnome.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-2022-jp X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=1.709 tagged_above=-999 required=2 tests=[BAYES_50=0.001, DNS_FROM_RFC_POST=1.708] X-Spam-Score: 1.709 X-Spam-Level: * X-Mailman-Approved-At: Thu, 15 Jun 2006 08:58:02 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2006 06:52:08 -0000 hi there, i would like to say i use a lot mc, it's just great. lately i've been updating my website, and i discovered i could edit my document remotely with mc. (cd /#ftp:bleh:pass@some.ftp.net then push f4 key on the document i wish to edit....) it's really nice but, i've been experiencing problems, at least with the ftp server i use: when i edit documents it take some time, enough to be disconnected from ftp server. in that case mc just re-log me in and properly save the document .. so far so good, but, after a while working like that, mc seems unable from time to time to connect to the ftp server. i even get seg fault, or it just fail to connect randomly.. when this happen, the only choice left is to quit mc and re-launch it .. i would say, i spend between 1 and 10minutes on a document, and i do lots of em per day (maybe 100 or 200minimum) and i have to restart mc at least 20times... i would say something is wrong in the ftp code inside mc. thanks for your time and efforts, mc is really cool to use. -------------------------------------- Let's start Yahoo! Auction - Free Campaign Now! http://pr.mail.yahoo.co.jp/auction/ From ptsekov@gmx.net Sat Jun 17 02:59:14 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 42DB83B0744 for ; Sat, 17 Jun 2006 02:59:14 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11195-01 for ; Sat, 17 Jun 2006 02:59:12 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 7F8FF3B0302 for ; Sat, 17 Jun 2006 02:59:11 -0400 (EDT) Received: (qmail invoked by alias); 17 Jun 2006 06:58:19 -0000 Received: from 87-126-52-205.btc-net.bg (EHLO sole) [87.126.52.205] by mail.gmx.net (mp020) with SMTP; 17 Jun 2006 08:58:19 +0200 X-Authenticated: #14308112 Date: Sat, 17 Jun 2006 09:57:06 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Pavel Roskin Subject: Re: Problems with the mailing list ? In-Reply-To: <1150514179.29738.20.camel@dv> Message-ID: References: <1150514179.29738.20.camel@dv> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 06:59:14 -0000 Hello Pavel, On Fri, 16 Jun 2006, Pavel Roskin wrote: > On Fri, 2006-06-16 at 18:57 +0300, Pavel Tsekov wrote: >> Hello, >> >> Does anyone miss messages from the mc-devel list ? It seems like some >> messages do not reach the mailing list at all while others don't reach >> the mailing list subcsribers. Can anyone confirm or deny this ? > > I have sent an email to the GNOME mailing list administrator. > > I don't see any delays or mail loss, but let's see what would happen to > this message. I got a copy of your reply which you CC-ed directly to me. The message destined to the mailing list is still not here though. I see that the mailing list software at mail.gnome.org has been changed - maybe the administrators are doing some kind of upgrade... From leonard@den.ottolander.nl Sat Jun 17 08:47:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C72863B075D for ; Sat, 17 Jun 2006 08:47:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22117-06 for ; Sat, 17 Jun 2006 08:47:18 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id BDA1E3B03E5 for ; Sat, 17 Jun 2006 08:47:18 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 788374023 for ; Sat, 17 Jun 2006 14:46:35 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id tXpVqRKSrvlX for ; Sat, 17 Jun 2006 14:46:33 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id EA55E4021 for ; Sat, 17 Jun 2006 14:46:32 +0200 (CEST) Subject: Re: mc bugs From: Leonard den Ottolander To: MC development In-Reply-To: <20060614065059.50745.qmail@web3704.mail.tnz.yahoo.co.jp> References: <20060614065059.50745.qmail@web3704.mail.tnz.yahoo.co.jp> Content-Type: text/plain Date: Sat, 17 Jun 2006 14:46:33 +0200 Message-Id: <1150548393.2528.12.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 12:47:22 -0000 Hello Sipieter, On Wed, 2006-06-14 at 15:50 +0900, sipieter nicolas wrote: > but, after a while working like that, mc seems unable from > time to time to connect to the ftp server. i even get seg > fault, or it just fail to connect randomly.. Connection failures are not necessarily a problem with mc (not saying the ftp code is perfect though ;) ). However, if you do see segmentation faults please open a bug report at http://savannah.gnu.org/bugs/?group=mc and attach a backtrace. Don't forget to mention system information and please do *not* report bugs against mc versions before 4.6.1. (Use ulimit -c 99999 to enable core dumps on your system. Use gdb and the bt command to get a backtrace.) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Sat Jun 17 08:54:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9B7C83B03E5 for ; Sat, 17 Jun 2006 08:54:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22162-08 for ; Sat, 17 Jun 2006 08:54:26 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 81F0C3B0165 for ; Sat, 17 Jun 2006 08:54:25 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id AAF4B4023; Sat, 17 Jun 2006 14:52:42 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id MvD+6iJVdikt; Sat, 17 Jun 2006 14:52:39 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 205F44021; Sat, 17 Jun 2006 14:52:39 +0200 (CEST) Subject: Bugzilla submits only against >= 4.6.1 From: Leonard den Ottolander To: Pavel Roskin Content-Type: text/plain Date: Sat, 17 Jun 2006 14:52:38 +0200 Message-Id: <1150548759.2528.20.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 12:54:27 -0000 Hello Pavel, IMO it doesn't make much sense for people to be able to report bugs against mc versions older than 4.6.1. I presume most developers will agree with me (please protest if not). Could you please update the Savannah bugs "Release" drop down menu to only contain the following elements? older than 4.6.1 (upgrade first!) 4.6.1 current (CVS or snapshot) I don't think we need the entries "All versions" and "None" but these might be hard coded default entries. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Sat Jun 17 09:02:22 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B72163B0165 for ; Sat, 17 Jun 2006 09:02:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 22628-01 for ; Sat, 17 Jun 2006 09:02:21 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3F8343B000D for ; Sat, 17 Jun 2006 09:02:21 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FraOq-0003fU-00; Sat, 17 Jun 2006 08:59:40 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sat, 17 Jun 2006 14:59:39 +0200 Date: Sat, 17 Jun 2006 14:59:39 +0200 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060617-145938.sv26390.15283@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > <20060615-222730.sv50251.60290@savannah.gnu.org> In-Reply-To: <20060615-222730.sv50251.60290@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.552 tagged_above=-999 required=2 tests=[AWL=0.048, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.552 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 09:19:08 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 13:02:22 -0000 Follow-up Comment #21, bug #16762 (project mc): If Roland doesn't feel the need to add any remarks to this approach I suppose this patch can be submitted and this report closed. (I did not verify the code other than glancing over it, but I trust it to be ok ;) .) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sat Jun 17 11:52:37 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id DC5333B00A7 for ; Sat, 17 Jun 2006 11:52:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26174-02 for ; Sat, 17 Jun 2006 11:52:35 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 81C363B000D for ; Sat, 17 Jun 2006 11:52:35 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Frd56-0001Zf-00; Sat, 17 Jun 2006 11:51:28 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sat, 17 Jun 2006 18:51:25 +0300 Date: Sat, 17 Jun 2006 18:51:25 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Opera/8.51 (Windows ME; U; en) X-Apparently-From: 87.126.52.205 (Savane authenticated user ptsekov) Message-Id: <20060617-185125.sv36205.47362@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > <20060615-222730.sv50251.60290@savannah.gnu.org> <20060617-145938.sv26390.15283@savannah.gnu.org> In-Reply-To: <20060617-145938.sv26390.15283@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.514 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TV=0.077] X-Spam-Score: -2.514 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 09:19:08 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 15:52:37 -0000 Update of bug #16762 (project mc): Status: None => Fixed Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #22: I've just commited the patch. It should be OK. It was tested and reported to work by Pavel Shirshov, purportex and yaroslav. If coreutils configure tests are modified to include tests for: 1) the presence of field f_fstypename in struct statvfs 2) the type of the first argument ot getmntinfo() we will remove the homebrew tests from AC_GET_FS_INFO and use those provided by coreutils. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sat Jun 17 15:48:22 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 4F4D33B074C for ; Sat, 17 Jun 2006 15:48:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05618-08 for ; Sat, 17 Jun 2006 15:48:21 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id C83323B01A6 for ; Sat, 17 Jun 2006 15:48:20 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrgRN-0008Lb-00; Sat, 17 Jun 2006 15:26:41 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sat, 17 Jun 2006 21:26:40 +0200 Date: Sat, 17 Jun 2006 21:26:40 +0200 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060617-212640.sv26390.65809@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > <20060615-222730.sv50251.60290@savannah.gnu.org> <20060617-145938.sv26390.15283@savannah.gnu.org> <20060617-185125.sv36205.47362@savannah.gnu.org> In-Reply-To: <20060617-185125.sv36205.47362@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.514 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, SPF_PASS=-0.001, TW_TV=0.077] X-Spam-Score: -2.514 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 09:19:08 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 19:48:22 -0000 Follow-up Comment #23, bug #16762 (project mc): > If coreutils configure tests are modified to include tests for: > > 1) the presence of field f_fstypename in struct statvfs > > 2) the type of the first argument ot getmntinfo() > > we will remove the homebrew tests from AC_GET_FS_INFO and use > those provided by coreutils. Have you contacted the coreutils maintainers about this? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sat Jun 17 15:48:23 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9AC3F3B033C for ; Sat, 17 Jun 2006 15:48:23 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05730-03 for ; Sat, 17 Jun 2006 15:48:21 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 688E63B02E2 for ; Sat, 17 Jun 2006 15:48:21 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrgZ2-0001NR-00; Sat, 17 Jun 2006 15:34:36 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sat, 17 Jun 2006 22:34:36 +0300 Date: Sat, 17 Jun 2006 22:34:36 +0300 To: roland.illig@gmx.de, yaroslav , Pavel Tsekov , Leonard den Ottolander , purportex , mc-devel@gnome.org Subject: [bug #16762] Cannot compile mc-2006-06-05-20 From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16762 User-Agent: Opera/8.51 (Windows ME; U; en) X-Apparently-From: 87.126.52.205 (Savane authenticated user ptsekov) Message-Id: <20060617-223436.sv36205.11011@savannah.gnu.org> References: <20060606-141833.sv47365.36914@savannah.gnu.org> <20060606-214555.sv26390.24839@savannah.gnu.org> <20060607-080816.sv47365.26756@savannah.gnu.org> <20060607-123637.sv36205.98656@savannah.gnu.org> <20060607-124124.sv36205.81804@savannah.gnu.org> <20060607-141110.sv36205.29236@savannah.gnu.org> <20060607-174228.sv36205.47259@savannah.gnu.org> <20060607-212128.sv26390.34564@savannah.gnu.org> <20060611-105933.sv36205.22318@savannah.gnu.org> <20060613-073838.sv47365.94722@savannah.gnu.org> <20060613-113453.sv36205.79891@savannah.gnu.org> <20060613-105511.sv47365.57796@savannah.gnu.org> <20060613-141640.sv36205.93232@savannah.gnu.org> <20060613-141708.sv36205.99230@savannah.gnu.org> <20060613-162408.sv36205.31330@savannah.gnu.org> <20060613-165016.sv36205.72008@savannah.gnu.org> <20060613-135953.sv47365.47118@savannah.gnu.org> <20060613-172130.sv36205.64124@savannah.gnu.org> <20060614-190212.sv50251.32349@savannah.gnu.org> <20060615-073715.sv36205.52677@savannah.gnu.org > <20060615-222730.sv50251.60290@savannah.gnu.org> <20060617-145938.sv26390.15283@savannah.gnu.org> <20060617-185125.sv36205.47362@savannah.gnu.org> <20060617-212640.sv26390.65809@savannah.gnu.org> In-Reply-To: <20060617-212640.sv26390.65809@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.552 tagged_above=-999 required=2 tests=[AWL=0.048, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.552 X-Spam-Level: X-Mailman-Approved-At: Sun, 18 Jun 2006 09:19:08 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2006 19:48:23 -0000 Follow-up Comment #24, bug #16762 (project mc): No. Maybe you can drop them a message ? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 10:58:13 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B73953B08E2 for ; Sun, 18 Jun 2006 10:58:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31385-03 for ; Sun, 18 Jun 2006 10:58:12 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id DED683B0078 for ; Sun, 18 Jun 2006 10:58:11 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrygF-0006eY-00; Sun, 18 Jun 2006 10:55:15 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 14:55:15 +0000 Date: Sun, 18 Jun 2006 14:55:15 +0000 To: hajma , mc-devel@gnome.org Subject: [bug #16871] czech translation - description overlaps in the chmod dialogue From: hajma X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16871 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060531 Mandriva/1.5.0.4-1mdv2007.0 (2007.0) Firefox/1.5.0.4 X-Apparently-From: 82.208.37.13 (Savane authenticated user tropikhajma) Message-Id: <20060618-145515.sv50336.41107@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.555 tagged_above=-999 required=2 tests=[AWL=0.045, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.555 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 14:58:13 -0000 URL: Summary: czech translation - description overlaps in the chmod dialogue Project: GNU Midnight Commander Submitted by: tropikhajma Submitted on: Sunday 06/18/2006 at 14:55 Category: None Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Linux _______________________________________________________ Details: see screenshot: ftp://tropikhajma.vserver.cz/bugs/mc.png the first two lines of the "File" rectangle get overwritten by text from the "mode" rectangle. IMHO replacing číslo uĹživatele with UID would make it. Side note: caron is missing above the second e in "změne" and the word "nastavenĂ­" should follow the word "změně" _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 11:22:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 468D33B0CB2 for ; Sun, 18 Jun 2006 11:22:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00310-01 for ; Sun, 18 Jun 2006 11:22:30 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 482A53B0CD0 for ; Sun, 18 Jun 2006 11:22:29 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Frymc-0007y2-00; Sun, 18 Jun 2006 11:01:50 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 15:01:50 +0000 Date: Sun, 18 Jun 2006 15:01:50 +0000 To: Istvan Kispal , mc-devel@gnome.org Subject: [bug #16872] ftpfs lists directories begining with '2006 ' incorrectly From: Istvan Kispal X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16872 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.4) Gecko/20060508 Firefox/1.5.0.4 X-Apparently-From: 81.183.183.18 (Savane authenticated user kispaljr) Message-Id: <20060618-150150.sv50338.79195@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.554 tagged_above=-999 required=2 tests=[AWL=0.046, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.554 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 15:22:36 -0000 URL: Summary: ftpfs lists directories begining with '2006 ' incorrectly Project: GNU Midnight Commander Submitted by: kispaljr Submitted on: Sunday 06/18/2006 at 15:01 Category: VFS Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Linux _______________________________________________________ Details: if a directory on an ftp server has the following subdirectories: 1990 06 19 hetfo 2005 06 23 akarmi 2006 06 23 akarmi then they are listed in mc (console mode version, using ftpfs) incorrectly as: 06 19 hetfo 06 23 akarmi 06 23 akarmi if you type cd 2006 06 19 hetfo manually then you can cd into the subdir, but not with taping enter on the (incorrectly listed) directory name. it's rather uncomofortable. _______________________________________________________ Carbon-Copy List: CC Address | Comment ------------------------------------+----------------------------- kispaljr | _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 11:34:10 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D616B3B0CB1 for ; Sun, 18 Jun 2006 11:34:10 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00460-07 for ; Sun, 18 Jun 2006 11:34:09 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 78DD03B0C2B for ; Sun, 18 Jun 2006 11:34:09 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrzGu-0005Zh-00; Sun, 18 Jun 2006 11:33:08 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 17:33:07 +0200 Date: Sun, 18 Jun 2006 17:33:07 +0200 To: hajma , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16871] czech translation - description overlaps in the chmod dialogue From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16871 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060618-173307.sv26390.76425@savannah.gnu.org> References: <20060618-145515.sv50336.41107@savannah.gnu.org> In-Reply-To: <20060618-145515.sv50336.41107@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.554 tagged_above=-999 required=2 tests=[AWL=0.046, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.554 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 15:34:11 -0000 Update of bug #16871 (project mc): Status: None => Need Info Assigned to: None => leonardjo _______________________________________________________ Follow-up Comment #1: Please provide a patch. Mske sure you use the correct character set in the file. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 12:09:52 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3B8693B0CD1 for ; Sun, 18 Jun 2006 12:09:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01904-07 for ; Sun, 18 Jun 2006 12:09:51 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 113B43B0CD5 for ; Sun, 18 Jun 2006 12:09:51 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Frzol-0007KE-00; Sun, 18 Jun 2006 12:08:07 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 18:08:05 +0200 Date: Sun, 18 Jun 2006 18:08:05 +0200 To: Istvan Kispal , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16872] ftpfs lists directories begining with '2006 ' incorrectly From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16872 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060618-180805.sv26390.79688@savannah.gnu.org> References: <20060618-150150.sv50338.79195@savannah.gnu.org> In-Reply-To: <20060618-150150.sv50338.79195@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 16:09:52 -0000 Update of bug #16872 (project mc): Status: None => Duplicate Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #1: Be so kind to check for exisiting reports before submitting new reports. This is a duplicate of 10645 and 4327. This issue has been fixed in CVS. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 12:13:08 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8693F3B0CC5 for ; Sun, 18 Jun 2006 12:12:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02109-10 for ; Sun, 18 Jun 2006 12:12:49 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id E95503B0AA3 for ; Sun, 18 Jun 2006 12:12:48 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Frzpt-0007L8-00; Sun, 18 Jun 2006 12:09:17 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 16:09:17 +0000 Date: Sun, 18 Jun 2006 16:09:17 +0000 To: hajma , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16871] czech translation - description overlaps in the chmod dialogue From: hajma X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16871 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.4) Gecko/20060531 Mandriva/1.5.0.4-1mdv2007.0 (2007.0) Firefox/1.5.0.4 X-Apparently-From: 82.208.37.13 (Savane authenticated user tropikhajma) Message-Id: <20060618-160916.sv50336.88803@savannah.gnu.org> References: <20060618-145515.sv50336.41107@savannah.gnu.org> <20060618-173307.sv26390.76425@savannah.gnu.org> In-Reply-To: <20060618-173307.sv26390.76425@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 16:13:09 -0000 Follow-up Comment #2, bug #16871 (project mc): I found out that the bug was fixed in revision 1.67 of cs.po, it just didn't make it into mc-4.6.1 in Mandriva Cooker I'm using. as regards the side note I attach corrected cs.po that fixes it. _______________________________________________________ Additional Item Attachment: File name: cs.po Size:73 KB cs.po _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Sun Jun 18 12:13:09 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 82DF63B0C4F for ; Sun, 18 Jun 2006 12:12:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01996-09 for ; Sun, 18 Jun 2006 12:12:49 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 690A33B0C35 for ; Sun, 18 Jun 2006 12:12:48 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FrzsE-0007MO-00; Sun, 18 Jun 2006 12:11:42 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Sun, 18 Jun 2006 18:11:42 +0200 Date: Sun, 18 Jun 2006 18:11:42 +0200 To: hajma , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16871] czech translation - description overlaps in the chmod dialogue From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16871 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.12) Gecko/20050922 Fedora/1.0.7-1.1.fc4 Firefox/1.0.7 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060618-181142.sv26390.23707@savannah.gnu.org> References: <20060618-145515.sv50336.41107@savannah.gnu.org> <20060618-173307.sv26390.76425@savannah.gnu.org> <20060618-160916.sv50336.88803@savannah.gnu.org> In-Reply-To: <20060618-160916.sv50336.88803@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Jun 2006 16:13:09 -0000 Update of bug #16871 (project mc): Status: Need Info => Invalid Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #3: Ok. Closing "invalid" as the issue didn't exist anymore when the issue was reported. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From proski@gnu.org Mon Jun 19 17:50:46 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 51A1F3B05A8 for ; Mon, 19 Jun 2006 17:50:46 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02882-07 for ; Mon, 19 Jun 2006 17:50:45 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id A34B13B03BA for ; Mon, 19 Jun 2006 17:50:44 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FsRcm-00020v-BN for mc-devel@gnome.org; Mon, 19 Jun 2006 17:49:36 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FsRcg-0003zX-7s; Mon, 19 Jun 2006 17:49:30 -0400 Subject: Re: Bugzilla submits only against >= 4.6.1 From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150548759.2528.20.camel@athlon> References: <1150548759.2528.20.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Mon, 19 Jun 2006 17:49:30 -0400 Message-Id: <1150753770.12841.19.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.594 tagged_above=-999 required=2 tests=[AWL=0.006, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.594 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 21:50:46 -0000 Hello! On Sat, 2006-06-17 at 14:52 +0200, Leonard den Ottolander wrote: > Hello Pavel, > > IMO it doesn't make much sense for people to be able to report bugs > against mc versions older than 4.6.1. I presume most developers will > agree with me (please protest if not). > > Could you please update the Savannah bugs "Release" drop down menu to > only contain the following elements? > > older than 4.6.1 (upgrade first!) > 4.6.1 > current (CVS or snapshot) I think that would be solving a social problem using technical means. If you check Red Hat's Bugzilla you'll see that it's possible to enter a bug e.g. for Fedora Core 1. Some bugs can be more long-lived than you may think. I believe the quality of the bug report should be judged not only by the version. Bugs against old versions should be discouraged, but not outright forbidden. Besides, there is only one bug filed for "older than 4.5.55". > I don't think we need the entries "All versions" and "None" but these > might be hard coded default entries. "None" is hardcoded, "All versions" is not. I think "all version" is a valid value in some cases. -- Regards, Pavel Roskin From leonard@den.ottolander.nl Mon Jun 19 19:04:28 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5EEEE3B0A79 for ; Mon, 19 Jun 2006 19:04:28 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06061-07 for ; Mon, 19 Jun 2006 19:04:27 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id DF06B3B0335 for ; Mon, 19 Jun 2006 19:04:26 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id BFCB94023; Tue, 20 Jun 2006 01:02:55 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 752vGUiocrMK; Tue, 20 Jun 2006 01:02:50 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 25F3E4021; Tue, 20 Jun 2006 01:02:50 +0200 (CEST) Subject: Re: Bugzilla submits only against >= 4.6.1 From: Leonard den Ottolander To: Pavel Roskin In-Reply-To: <1150753770.12841.19.camel@dv> References: <1150548759.2528.20.camel@athlon> <1150753770.12841.19.camel@dv> Content-Type: text/plain Date: Tue, 20 Jun 2006 01:02:49 +0200 Message-Id: <1150758169.2571.7.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-2.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Jun 2006 23:04:28 -0000 Hello Pavel, On Mon, 2006-06-19 at 17:49 -0400, Pavel Roskin wrote: > Some bugs can be more long-lived than you may think. I believe the > quality of the bug report should be judged not only by the version. > Bugs against old versions should be discouraged, but not outright > forbidden. > > Besides, there is only one bug filed for "older than 4.5.55". I didn't mean old bugs should be removed from the bug list. I just feel it doesn't make much sense for people to file new bugs against anything older than 4.6.1. There is no added value to let people add bugs against older versions. If the issue no longer exists it's just wasted time, and if it does still exist the reporter should make the effort to verify the issue indeed still exists in 4.6.1 or later. > "None" is hardcoded, "All versions" is not. I think "all version" is a > valid value in some cases. Yes, but only if you keep all the other versions as valid options. If we'd drop anything but latest stable and CVS there's not much use leaving "all versions" around. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From proski@gnu.org Tue Jun 20 14:08:27 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1A9943B02AC for ; Tue, 20 Jun 2006 14:08:27 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02911-01 for ; Tue, 20 Jun 2006 14:08:18 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id 921CB3B000C for ; Tue, 20 Jun 2006 14:08:18 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1Fskdk-00031J-4G for mc-devel@gnome.org; Tue, 20 Jun 2006 14:08:01 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FskdX-0005Ef-Ch; Tue, 20 Jun 2006 14:07:39 -0400 Subject: Re: Bugzilla submits only against >= 4.6.1 From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150758169.2571.7.camel@athlon> References: <1150548759.2528.20.camel@athlon> <1150753770.12841.19.camel@dv> <1150758169.2571.7.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 20 Jun 2006 14:07:39 -0400 Message-Id: <1150826859.1969.7.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.595 tagged_above=-999 required=2 tests=[AWL=0.005, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.595 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 18:08:27 -0000 On Tue, 2006-06-20 at 01:02 +0200, Leonard den Ottolander wrote: > I didn't mean old bugs should be removed from the bug list. I just feel > it doesn't make much sense for people to file new bugs against anything > older than 4.6.1. > > There is no added value to let people add bugs against older versions. Anyone who takes time to file a new bug is adding some value to the project. It may be more or less valuable, but we shouldn't give the impression that we don't want to hear about the problem. > If the issue no longer exists it's just wasted time, and if it does > still exist the reporter should make the effort to verify the issue > indeed still exists in 4.6.1 or later. Ideally, yes. But not everyone can do it. It's better to have 10 reports for already fixed bugs and one for a bug that still exists than to have neither of them. If you have an example where time was wasted as a result of the availability of the older versions in the bug tracker, I may reconsider. > > "None" is hardcoded, "All versions" is not. I think "all version" is a > > valid value in some cases. > > Yes, but only if you keep all the other versions as valid options. If > we'd drop anything but latest stable and CVS there's not much use > leaving "all versions" around. I generally assume the bug reporters to be intelligent persons who can make there own judgment how to file a bug. -- Regards, Pavel Roskin From ptsekov@gmx.net Tue Jun 20 14:28:43 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 409073B08C6 for ; Tue, 20 Jun 2006 14:28:43 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04451-05 for ; Tue, 20 Jun 2006 14:28:38 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 586743B06E3 for ; Tue, 20 Jun 2006 14:28:33 -0400 (EDT) Received: (qmail invoked by alias); 20 Jun 2006 18:28:32 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp034) with SMTP; 20 Jun 2006 20:28:32 +0200 X-Authenticated: #14308112 Date: Tue, 20 Jun 2006 21:27:19 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: "Stan. S. Krupoderov" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <20060620060123.GD99474@inode.hvn> Message-ID: References: <20060620060123.GD99474@inode.hvn> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: mc@gnome.org, MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 20 Jun 2006 18:28:43 -0000 Hello Stan, On Tue, 20 Jun 2006, Stan. S. Krupoderov wrote: > This Midnight Commander build is modified to use Colorer-take5 as a syntax highlighting engine in standard mc editor. > http://colorer.sourceforge.net/mc.html That's just great! > Maybe it can be useful for someone. Any opinions? Sure it will! Some time ago I tried myself to get colorer to work with MC. Unfortunately due to time constraints I abandoned the idea - I just didn't have enough time to study how colorer works properly. I've downloaded MC-Colorer's source tarball today and I took a look at the code. Though I haven't studied the code in depth I can say that it seems pretty high quality. After all it is written by the colorer's author himself - who could understand better how colorer works :) I'll try to contact him and see what he thinks about integrating his work into MC's source tree. It would be also very useful if we could use the work done on MC-Colorer to get syntax highlighting in the viewer too - this was one of the tasks I was trying to achieve when I started investigating colorer. Thanks! From irusskih@gmail.com Wed Jun 21 08:50:40 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6E7343B0F9B for ; Wed, 21 Jun 2006 08:50:40 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05808-06 for ; Wed, 21 Jun 2006 08:50:35 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.198]) by menubar.gnome.org (Postfix) with ESMTP id 0490A3B0FE0 for ; Wed, 21 Jun 2006 08:50:33 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id s1so170251nze for ; Wed, 21 Jun 2006 05:50:33 -0700 (PDT) Received: by 10.37.13.61 with SMTP id q61mr445036nzi; Wed, 21 Jun 2006 05:50:33 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Wed, 21 Jun 2006 05:50:33 -0700 (PDT) Message-ID: <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> Date: Wed, 21 Jun 2006 16:50:33 +0400 From: "Igor Russkih" To: mc@gnome.org, mc-devel@gnome.org Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_Part_1775_638873.1150894233203" References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.225 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, HTML_30_40=0.374, HTML_MESSAGE=0.001, SPF_PASS=-0.001] X-Spam-Score: -2.225 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 12:50:40 -0000 ------=_Part_1775_638873.1150894233203 Content-Type: multipart/alternative; boundary="----=_Part_1776_131830.1150894233203" ------=_Part_1776_131830.1150894233203 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi Pavel, Hi All, I'll be really glad to help to improve MC in this area, I've downloaded MC-Colorer's source tarball today and I took > a look at the code. Though I haven't studied the code in depth > I can say that it seems pretty high quality. After all it is > written by the colorer's author himself - who could understand > better how colorer works :) I'll try to contact him and see what > he thinks about integrating his work into MC's source tree. It If somebody is interested, attached is a full diff on MC tree to support colorer. For now I'm using sf.net SVN repository to store modified MC code. Information on how to access it: http://sourceforge.net/svn/?group_id=34855 There are also some questions which I believe should be discussed. At first there is one C++ file in this mod (to link with c++ colorer code). As far as I understand MC uses C only. Is this a problem? Another is that this mod dynamically links to the libcolorer - this means that to use it, colorer library should be installed in system. This introduces MC additional dependency. would be also very useful if we could use the work done on MC-Colorer > to get syntax highlighting in the viewer too - this was one of the > tasks I was trying to achieve when I started investigating colorer. > That's a good idea, I'll try investigate it in near time. -- Igor ------=_Part_1776_131830.1150894233203 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline
Hi Pavel, Hi All,

I'll be really glad to help to improve MC in this area,

I've downloaded MC-Colorer's source tarball today and I took
a look at the code. Though I haven't studied the code in depth
I can say that it seems pretty high quality. After all it is
written by the colorer's author himself - who could understand
better how colorer works :) I'll try to contact him and see what
he thinks about integrating his work into MC's source tree. It

If somebody is interested, attached is a full diff on MC tree to support colorer.

For now I'm using sf.net SVN repository to store modified MC code.
Information on how to access it: http://sourceforge.net/svn/?group_id=34855

There are also some questions which I believe should be discussed.
At first there is one C++ file in this mod (to link with c++ colorer code). As far as I understand MC uses C only. Is this a problem?
Another is that this mod dynamically links to the libcolorer - this means that to use it, colorer library should be installed in system. This introduces MC additional dependency.

would be also very useful if we could use the work done on MC-Colorer
to get syntax highlighting in the viewer too - this was one of the
tasks I was trying to achieve when I started investigating colorer.

That's a good idea, I'll try investigate it in near time.

--
  Igor


------=_Part_1776_131830.1150894233203-- ------=_Part_1775_638873.1150894233203 Content-Type: application/x-gzip; name=mccolorer.diff.gz Content-Transfer-Encoding: base64 X-Attachment-Id: f_eopn4lol Content-Disposition: attachment; filename="mccolorer.diff.gz" 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 /wGW3psI2yABAA== ------=_Part_1775_638873.1150894233203-- From leonard@den.ottolander.nl Wed Jun 21 10:03:05 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E951D3B103C for ; Wed, 21 Jun 2006 10:03:04 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10784-07 for ; Wed, 21 Jun 2006 10:03:01 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 0180D3B1033 for ; Wed, 21 Jun 2006 10:03:00 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id DDE3C4023; Wed, 21 Jun 2006 16:02:57 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id M5kjYx2Phqne; Wed, 21 Jun 2006 16:02:54 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 05A1E4021; Wed, 21 Jun 2006 16:02:53 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: Igor Russkih In-Reply-To: <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> Content-Type: text/plain Date: Wed, 21 Jun 2006 16:02:52 +0200 Message-Id: <1150898573.2801.45.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 14:03:05 -0000 Hello Igor, On Wed, 2006-06-21 at 16:50 +0400, Igor Russkih wrote: > I'll be really glad to help to improve MC in this area, This looks really nice. I'm very exited. With just minor patching to the xml (introduction of ControlKeyword, eg "if", "else" etc.) and a custom colour scheme I've already got the php syntax looking much like the original in mc (where can I send patches? Is there a mailing list for colorer?). Only have to look at the String type as we normally distinguish between single quoted (FixedString) and double quoted (VariableString) in php (and perl too for that matter). Although the startup of the viewer seems a bit slow with colorer this has much added value over the default syntax highlighting, and although I think we could well include the colorer hooks in the main mc tree I don't believe we should drop the existing highlighting, over even make colorer the default. Firstly the default syntax is more lightweight, which some people might prefer. Secondly the use of colorer requires the installation of a(n extra) third party library. > If somebody is interested, attached is a full diff on MC tree to > support colorer. Is this a fully functional patch? Much lighter than the diff I got diffing your tarball against CVS :) . In that patch I noticed a couple of things: - You got rid of the COPYING.LGPL file in vfs. I think this might be a mistake on your part. You might want to rectify that for your version. - In your version you got rid of the pipethrough files. This has no bearing on us as it's not in your patch. - There are a lot of fixes to the po files and some to the Russian and Serbian(?) man page. Please submit these to this list separately. - I noticed a CR here and there. There seem to be even more in the patch you sent. Please get rid of those (fe with dos2unix). - You made some fixes to the config files as well that seem same. Please submit those separately for review. - I noticed changes in vfs/samba/configure. Most of this are somewhat odd whitespace changes, but there appear to be some hunks at the top and bottom to actually do something. Please submit (not the whitespace) :) . - Why did you get rid of vfs/extfs/README.it? (not much of an issue) - There are a lot of added comments/fixes in config.h.in that I do not see in your patch. Please submit separately. > For now I'm using sf.net SVN repository to store modified MC code. > Information on how to access it: > http://sourceforge.net/svn/?group_id=34855 Good to know. > There are also some questions which I believe should be discussed. > At first there is one C++ file in this mod (to link with c++ colorer > code). As far as I understand MC uses C only. Is this a problem? Yes, it might. The overall approach towards accepted language constructs is a bit conservative to maintain compatibility with older systems. Would it be much work to rewrite these parts? > Another is that this mod dynamically links to the libcolorer - this > means that to use it, colorer library should be installed in system. > This introduces MC additional dependency. This is why I do not want to make colorer the default. I think this is something we should leave to the distributions. > to get syntax highlighting in the viewer too > That's a good idea, I'll try investigate it in near time. That would be great. Thanks a lot! Leonard. P.S. Could you please set your mail client to produce plain text mails and use an indentation character and a "replying to" line for quotes? -- mount -t life -o ro /dev/dna /genetic/research From ptsekov@gmx.net Wed Jun 21 10:28:00 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8E9D53B106A for ; Wed, 21 Jun 2006 10:28:00 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12487-02 for ; Wed, 21 Jun 2006 10:27:59 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 7C4863B106C for ; Wed, 21 Jun 2006 10:27:58 -0400 (EDT) Received: (qmail invoked by alias); 21 Jun 2006 14:27:57 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp032) with SMTP; 21 Jun 2006 16:27:57 +0200 X-Authenticated: #14308112 Date: Wed, 21 Jun 2006 17:26:43 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole Cc: MC development Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150898573.2801.45.camel@athlon> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 14:28:00 -0000 On Wed, 21 Jun 2006, Leonard den Ottolander wrote: >> There are also some questions which I believe should be discussed. >> At first there is one C++ file in this mod (to link with c++ colorer >> code). As far as I understand MC uses C only. Is this a problem? > > Yes, it might. The overall approach towards accepted language constructs > is a bit conservative to maintain compatibility with older systems. > Would it be much work to rewrite these parts? Yes it will take a lot of work - colorer is written entirely in C++ . Thus there is a thin wrapper to translate from C to C++ and vice versa. In my opinion this is not a big deal and a necessary sacrifice. For system which do not have C++ support obviously colorer syntax highlighting would be disabled by configure. Since I have tried to embed colorer in MC in the past I have configure code that deals with those issues. >> Another is that this mod dynamically links to the libcolorer - this >> means that to use it, colorer library should be installed in system. >> This introduces MC additional dependency. > > This is why I do not want to make colorer the default. I think this is > something we should leave to the distributions. This we are not going to make it the default (at least not at this time). This can be achieved with configure too - I have code for that too. I still haven't looked at the patch that Igor sent today but I'll do that as soon as I get some free time. I am willing to make the necessary changes to MC to adopt Igor's patch. I think patch has great value. From leonard@den.ottolander.nl Wed Jun 21 11:04:35 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 10A383B0FA5 for ; Wed, 21 Jun 2006 11:04:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15002-05 for ; Wed, 21 Jun 2006 11:04:34 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id CE3943B0FDD for ; Wed, 21 Jun 2006 11:04:33 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id BE3F44023 for ; Wed, 21 Jun 2006 17:04:32 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id nGjmWqt66RAz for ; Wed, 21 Jun 2006 17:04:31 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 428F34021 for ; Wed, 21 Jun 2006 17:04:31 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> Content-Type: text/plain Date: Wed, 21 Jun 2006 17:04:30 +0200 Message-Id: <1150902270.2801.52.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 15:04:35 -0000 Hello Pavel, On Wed, 2006-06-21 at 17:26 +0300, Pavel Tsekov wrote: > Yes it will take a lot of work - colorer is written entirely in C++ . > Thus there is a thin wrapper to translate from C to C++ and vice > versa. In my opinion this is not a big deal and a necessary sacrifice. I'm not sure what you say here: Is it a necessary sacrifice to port syntax-colorer.cpp to c or is it a necessary sacrifice to include c++ code into the tree? I'd rather go for the first option. > This can be achieved with configure too - I have code for that too. All it needs is the current default in the patch to change. > I still haven't looked at the patch that Igor sent today but I'll > do that as soon as I get some free time. I am willing to make the > necessary changes to MC to adopt Igor's patch. Maybe Igor is just as willing to make some changes to the patch for mc to adopt it ;) . > I think patch has great value. We totally agree then :-) . Leonard. -- mount -t life -o ro /dev/dna /genetic/research From ptsekov@gmx.net Wed Jun 21 11:46:22 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 6005D3B106E for ; Wed, 21 Jun 2006 11:46:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18001-02 for ; Wed, 21 Jun 2006 11:46:20 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 72F443B1076 for ; Wed, 21 Jun 2006 11:46:19 -0400 (EDT) Received: (qmail invoked by alias); 21 Jun 2006 15:46:17 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp036) with SMTP; 21 Jun 2006 17:46:17 +0200 X-Authenticated: #14308112 Date: Wed, 21 Jun 2006 18:45:04 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150902270.2801.52.camel@athlon> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <1150902270.2801.52.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 15:46:22 -0000 On Wed, 21 Jun 2006, Leonard den Ottolander wrote: > Hello Pavel, > > On Wed, 2006-06-21 at 17:26 +0300, Pavel Tsekov wrote: >> Yes it will take a lot of work - colorer is written entirely in C++ . >> Thus there is a thin wrapper to translate from C to C++ and vice >> versa. In my opinion this is not a big deal and a necessary sacrifice. > > I'm not sure what you say here: Is it a necessary sacrifice to port > syntax-colorer.cpp to c or is it a necessary sacrifice to include c++ > code into the tree? I'd rather go for the first option. You cannot avoid the inclusion of C++ code. colorer is written in C++ and as such it cannot be linked directly with MC. You'll need a wrapper which must be compiled with C++ compiler. We can discuss however where to put that code ? It can be moved into a directory of its own or it can be left where it is now. From INVALID.NOREPLY@gnu.org Wed Jun 21 13:36:11 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B39933B0646 for ; Wed, 21 Jun 2006 13:36:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25350-05 for ; Wed, 21 Jun 2006 13:36:07 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 95CA53B0578 for ; Wed, 21 Jun 2006 13:36:05 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6cP-0008Df-00; Wed, 21 Jun 2006 13:35:57 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:35:56 +0200 Date: Wed, 21 Jun 2006 19:35:56 +0200 To: SGh , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16303] More functionally u7z From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16303 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-193556.sv26390.77497@savannah.gnu.org> References: <20060408-134359.sv45177.11632@savannah.gnu.org> <20060408-134508.sv45177.86924@savannah.gnu.org> <20060408-134854.sv45177.29103@savannah.gnu.org> <20060518-165152.sv36205.74443@savannah.gnu.org> <20060530-195233.sv45177.57929@savannah.gnu.org> In-Reply-To: <20060530-195233.sv45177.57929@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.558 tagged_above=-999 required=2 tests=[AWL=0.042, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.558 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:36:11 -0000 Follow-up Comment #4, bug #16303 (project mc): It's easier to see what changed (and if there are unwanted regressions) if you patch the existing version instead of writing a new version from scratch. So if you want to get any improvements considered for inclusion you will have to rewrite your patch. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 13:37:06 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 36E093B014E for ; Wed, 21 Jun 2006 13:37:06 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25325-10 for ; Wed, 21 Jun 2006 13:37:04 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 66A103B059D for ; Wed, 21 Jun 2006 13:37:04 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6cj-0008JI-00; Wed, 21 Jun 2006 13:36:17 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:36:17 +0200 Date: Wed, 21 Jun 2006 19:36:17 +0200 To: Rudolf Polzer , Oswald Buddenhagen , Roland Illig , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16452] mcedit forgets POSIX newline at end of file From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16452 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-193617.sv26390.27833@savannah.gnu.org> References: <20060427-072754.sv49027.45360@savannah.gnu.org> <20060427-180523.sv41304.99027@savannah.gnu.org> <20060427-214753.sv49027.21116@savannah.gnu.org> <20060427-215010.sv49027.73709@savannah.gnu.org> <20060429-101230.sv20990.85981@savannah.gnu.org> <20060429-102521.sv41304.56758@savannah.gnu.org> <20060429-091823.sv49027.23806@savannah.gnu.org> In-Reply-To: <20060429-091823.sv49027.23806@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.559 tagged_above=-999 required=2 tests=[AWL=0.041, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.559 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:37:06 -0000 Follow-up Comment #7, bug #16452 (project mc): Any patches forthcoming? _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 13:37:35 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 426863B04F6 for ; Wed, 21 Jun 2006 13:37:35 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25593-02 for ; Wed, 21 Jun 2006 13:37:34 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id E733D3B0494 for ; Wed, 21 Jun 2006 13:37:33 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6dv-0008Pw-00; Wed, 21 Jun 2006 13:37:31 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:37:31 +0200 Date: Wed, 21 Jun 2006 19:37:31 +0200 To: Rolf Offermanns , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16383] Build system does not allow cross compiling From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16383 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-193731.sv26390.16849@savannah.gnu.org> References: <20060419-132319.sv48822.2441@savannah.gnu.org> In-Reply-To: <20060419-132319.sv48822.2441@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.56 tagged_above=-999 required=2 tests=[AWL=0.040, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.56 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:37:35 -0000 Follow-up Comment #1, bug #16383 (project mc): Please provide a patch. Thanks. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 13:47:41 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 1B4753B063E for ; Wed, 21 Jun 2006 13:47:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26098-05 for ; Wed, 21 Jun 2006 13:47:39 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 2A6D33B00B0 for ; Wed, 21 Jun 2006 13:47:39 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6nT-0001MS-00; Wed, 21 Jun 2006 13:47:23 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:47:23 +0200 Date: Wed, 21 Jun 2006 19:47:23 +0200 To: PB , Leonard den Ottolander , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #15621] file/dir entries with international characters mess up the columns From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 15621 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-194722.sv26390.13446@savannah.gnu.org> References: <20060204-101232.sv47152.80354@savannah.gnu.org> <20060211-093708.sv47312.65124@savannah.gnu.org> In-Reply-To: <20060211-093708.sv47312.65124@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.561 tagged_above=-999 required=2 tests=[AWL=0.039, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.561 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:47:41 -0000 Update of bug #15621 (project mc): Status: None => Duplicate Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #2: This is a duplicate of bug 7936 and bug 15100. Please check for existing bug reports before submitting. If you do submit please specify your platform, the version of mc used and if any patches have been applied. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Wed Jun 21 14:07:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5C2753B0706 for ; Wed, 21 Jun 2006 14:07:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27026-09 for ; Wed, 21 Jun 2006 14:07:15 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 1053F3B0733 for ; Wed, 21 Jun 2006 14:07:15 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 257144023; Wed, 21 Jun 2006 20:07:14 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id tHnFxEPUHYqg; Wed, 21 Jun 2006 20:07:12 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 513C24021; Wed, 21 Jun 2006 20:07:12 +0200 (CEST) Subject: Progress bar From: Leonard den Ottolander To: Pavel Tsekov Content-Type: text/plain Date: Wed, 21 Jun 2006 20:07:11 +0200 Message-Id: <1150913231.2801.73.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.455 tagged_above=-999 required=2 tests=[AWL=0.009, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.455 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 18:07:16 -0000 Hello Pavel, Looking at bugs 10507 and 13100. The patch from Hampa Hug that you've committed should fix the issue for moving files. Does it also fix the issue when copying files? Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Wed Jun 21 14:07:52 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 025663B06D1 for ; Wed, 21 Jun 2006 14:07:52 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27422-01 for ; Wed, 21 Jun 2006 14:07:49 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id DD4563B05EB for ; Wed, 21 Jun 2006 14:07:48 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft778-00051S-00; Wed, 21 Jun 2006 14:07:42 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 20:07:42 +0200 Date: Wed, 21 Jun 2006 20:07:42 +0200 To: Thomas Zajic , Leonard den Ottolander , Oleg Broytmann , Rihards , mc-devel@gnome.org Subject: [bug #13100] Bytes and Count progess bars when moving multiple files From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 13100 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-200741.sv26390.85621@savannah.gnu.org> References: <20050516-170931.sv14402.91225@savannah.gnu.org> In-Reply-To: <20050516-170931.sv14402.91225@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.562 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.562 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 18:07:52 -0000 Update of bug #13100 (project mc): Status: None => Duplicate Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #1: This is a duplicate of bug 10507. Should be fixed by the patch from Hampa Hug to file_move_move() in file.c. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Wed Jun 21 14:56:53 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7BFFF3B0235 for ; Wed, 21 Jun 2006 14:56:53 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30644-03 for ; Wed, 21 Jun 2006 14:56:52 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id A71023B02AF for ; Wed, 21 Jun 2006 14:56:51 -0400 (EDT) Received: (qmail invoked by alias); 21 Jun 2006 18:56:50 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp042) with SMTP; 21 Jun 2006 20:56:50 +0200 X-Authenticated: #14308112 Date: Wed, 21 Jun 2006 21:55:37 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Progress bar In-Reply-To: <1150913231.2801.73.camel@athlon> Message-ID: References: <1150913231.2801.73.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 18:56:53 -0000 On Wed, 21 Jun 2006, Leonard den Ottolander wrote: > Looking at bugs 10507 and 13100. The patch from Hampa Hug that you've > committed should fix the issue for moving files. Does it also fix the > issue when copying files? No. From INVALID.NOREPLY@gnu.org Wed Jun 21 14:58:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A18373B02AF for ; Wed, 21 Jun 2006 14:58:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30612-07 for ; Wed, 21 Jun 2006 14:58:33 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 3D90C3B02A3 for ; Wed, 21 Jun 2006 14:58:33 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft7uI-0006zh-00; Wed, 21 Jun 2006 14:58:30 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 20:58:30 +0200 Date: Wed, 21 Jun 2006 20:58:30 +0200 To: Leonard den Ottolander , Rihards , mc-devel@gnome.org Subject: [bug #10507] copy/move progress bar show none/bad values on big transactions From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 10507 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-205829.sv26390.48736@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.562 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.562 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 18:58:36 -0000 Update of bug #10507 (project mc): Status: None => Fixed Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #1: The poor counting appears to be fixed in CVS. Closing this bug as FIXED. The progress counter only calculates estimates per file. If you want a progress counter for the total time for all files you should file this as an RFE. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 15:15:43 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 433423B03D6 for ; Wed, 21 Jun 2006 15:15:43 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31772-04 for ; Wed, 21 Jun 2006 15:15:42 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 0CB6A3B0397 for ; Wed, 21 Jun 2006 15:15:41 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft8Aq-0007zn-00; Wed, 21 Jun 2006 15:15:36 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:15:35 +0000 Date: Wed, 21 Jun 2006 19:15:35 +0000 To: SGh , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16303] More functionally u7z From: SGh X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16303 User-Agent: Opera/8.51 (X11; Linux i686; U; ru) X-Apparently-From: 80.91.160.214 (Savane authenticated user sgh) Message-Id: <20060621-191535.sv45177.54566@savannah.gnu.org> References: <20060408-134359.sv45177.11632@savannah.gnu.org> <20060408-134508.sv45177.86924@savannah.gnu.org> <20060408-134854.sv45177.29103@savannah.gnu.org> <20060518-165152.sv36205.74443@savannah.gnu.org> <20060530-195233.sv45177.57929@savannah.gnu.org> <20060621-193556.sv26390.77497@savannah.gnu.org> In-Reply-To: <20060621-193556.sv26390.77497@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.563 tagged_above=-999 required=2 tests=[AWL=0.037, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.563 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 19:15:43 -0000 Follow-up Comment #5, bug #16303 (project mc): OK, Understand. I will download latest CVS, and see if I have something to patch un u7z. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From irusskih@gmail.com Wed Jun 21 15:26:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7DF953B01F3 for ; Wed, 21 Jun 2006 15:26:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32350-07 for ; Wed, 21 Jun 2006 15:26:40 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.193]) by menubar.gnome.org (Postfix) with ESMTP id ABDF33B0536 for ; Wed, 21 Jun 2006 15:26:33 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id s1so277067nze for ; Wed, 21 Jun 2006 12:26:33 -0700 (PDT) Received: by 10.36.227.49 with SMTP id z49mr847594nzg; Wed, 21 Jun 2006 12:26:33 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Wed, 21 Jun 2006 12:26:32 -0700 (PDT) Message-ID: <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> Date: Wed, 21 Jun 2006 23:26:32 +0400 From: "Igor Russkih" To: "Leonard den Ottolander" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150898573.2801.45.camel@athlon> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.412 tagged_above=-999 required=2 tests=[AWL=0.188, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.412 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 19:26:44 -0000 On 6/21/06, Leonard den Ottolander wrote: > Hello Igor, > > original in mc (where can I send patches? Is there a mailing list for > colorer?). Only have to look at the String type as we normally Sure, you can use colorer-talks@lists.sourceforge.net (http://lists.sourceforge.net/mailman/listinfo/colorer-talks) > Although the startup of the viewer seems a bit slow with colorer this > has much added value over the default syntax highlighting, and although Yep, the startup time is a bit heavier. Basically this depends on a syntax complexity and dependencies. > I think we could well include the colorer hooks in the main mc tree I > don't believe we should drop the existing highlighting, over even make > colorer the default. Firstly the default syntax is more lightweight, > which some people might prefer. Secondly the use of colorer requires the > installation of a(n extra) third party library. This was one of the ideas I've tried to reach in my patch. Colorer library can be disabled either during compilation time (thus making no dependencies on libcolorer) or in runtime (in this case regular mc syntax highlighter can work). > Is this a fully functional patch? Much lighter than the diff I got > diffing your tarball against CVS :) . Tarball can contain some additional generated files or codes which are not included into SVN repository. From the other side, colorer's SVN repository contains the only files from MC-2006-05-30-15 snapshot which I've altered. This can be a reason. > In that patch I noticed a couple of things: > - There are a lot of fixes to the po files and some to the Russian and > Serbian(?) man page. Please submit these to this list separately. Just a single ru.po file with a few additions. > - I noticed a CR here and there. There seem to be even more in the patch > you sent. Please get rid of those (fe with dos2unix). thanks, that's because of windows-based SVN client. For all the next comments it seems to be a misunderstanding (possibly because my diff is based on MC-2006-05-30-15 snapshot, not the latest one). > - There are a lot of added comments/fixes in config.h.in that I do not > see in your patch. Please submit separately. > - You got rid of the COPYING.LGPL file in vfs. I think this might be a > mistake on your part. You might want to rectify that for your version. > - In your version you got rid of the pipethrough files. This has no > bearing on us as it's not in your patch. > - You made some fixes to the config files as well that seem same. Please > submit those separately for review. > - I noticed changes in vfs/samba/configure. Most of this are somewhat > odd whitespace changes, but there appear to be some hunks at the top and > bottom to actually do something. Please submit (not the whitespace) :) . > - Why did you get rid of vfs/extfs/README.it? (not much of an issue) I'll upmerge with latest CVS MC revision and resend it. > > code). As far as I understand MC uses C only. Is this a problem? > Yes, it might. The overall approach towards accepted language constructs > is a bit conservative to maintain compatibility with older systems. > Would it be much work to rewrite these parts? The main problem with this is that syntax-colorer.cpp file makes direct connection between mc editor data and colorer's code. Technically it is possible to extract a kind of 'generic' C API and include it on library side. In this case MC will have pure C codes. >From the other side this will not release MC from libcolorer dependency - and this means that if user wants to compile and use mc-colorer, he anyway should have C++ environment. I mean I see no reason to eliminate that C++ code from MC: those who have C-only environments can just disable colorer's support in compile time. > This is why I do not want to make colorer the default. I think this is > something we should leave to the distributions. Agreed. > P.S. Could you please set your mail client to produce plain text mails > and use an indentation character and a "replying to" line for quotes? sorry, fixed. -- Igor From leonard@den.ottolander.nl Wed Jun 21 16:05:47 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0DEE23B056F for ; Wed, 21 Jun 2006 16:05:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02395-09 for ; Wed, 21 Jun 2006 16:05:45 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 4133B3B0556 for ; Wed, 21 Jun 2006 16:05:45 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 048E54023 for ; Wed, 21 Jun 2006 22:05:44 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id XchkQtXZk6gl for ; Wed, 21 Jun 2006 22:05:43 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id C653F4021 for ; Wed, 21 Jun 2006 22:05:43 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> Content-Type: text/plain Date: Wed, 21 Jun 2006 22:05:43 +0200 Message-Id: <1150920343.2801.92.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 20:05:47 -0000 Hello Igor, On Wed, 2006-06-21 at 23:26 +0400, Igor Russkih wrote: > On 6/21/06, Leonard den Ottolander wrote: > Colorer library can be disabled either during compilation time Switching at run time would be nice. At least as a startup option. > Just a single ru.po file with a few additions. And sr.po. > For all the next comments it seems to be a misunderstanding (possibly > because my diff is based on MC-2006-05-30-15 snapshot, not the latest > one). These are no misunderstandings, just differences I noticed between mccolorer and mc-CVS. I already filtered out some m4 related makefile issues. > > - There are a lot of added comments/fixes in config.h.in that I do not > > see in your patch. Please submit separately. These are comments and fixes in your mccolorer, not available in CVS. Are you using patches from others? > > - You got rid of the COPYING.LGPL file in vfs. I think this might be a > > mistake on your part. You might want to rectify that for your version. For some reason this file got lost in your mccolorer tarball. > > - You made some fixes to the config files as well that seem same. Please > > submit those separately for review. > > - I noticed changes in vfs/samba/configure. Most of this are somewhat > > odd whitespace changes, but there appear to be some hunks at the top and > > bottom to actually do something. Please submit (not the whitespace) :) . These are patches you seem to be using that are not in CVS. This is why I ask you to submit them for review. > I'll upmerge with latest CVS MC revision and resend it. The CVS tarball I'm using is only 2 weeks newer than yours. I'm not speaking of the recent changes to CVS. > The main problem with this is that syntax-colorer.cpp file makes > direct connection between mc editor data and colorer's code. > Technically it is possible to extract a kind of 'generic' C API and > include it on library side. In this case MC will have pure C codes. Is it technically possible to reimplement that c++ code in c? (This is just theoretical question, I don't ask you to do it.) > >From the other side this will not release MC from libcolorer > dependency - and this means that if user wants to compile and use > mc-colorer, he anyway should have C++ environment. > > I mean I see no reason to eliminate that C++ code from MC: those who > have C-only environments can just disable colorer's support in compile > time. Yes, I guess you are right. We might want to put the colorer code in a different directory though. > > P.S. Could you please set your mail client to produce plain text mails > > and use an indentation character and a "replying to" line for quotes? > sorry, fixed. Thanks :) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Wed Jun 21 16:06:51 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5314E3B0573 for ; Wed, 21 Jun 2006 16:06:51 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02504-10 for ; Wed, 21 Jun 2006 16:06:50 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 537BD3B056B for ; Wed, 21 Jun 2006 16:06:50 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 8C1574023 for ; Wed, 21 Jun 2006 22:06:44 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id HM0rfGtmzMsH for ; Wed, 21 Jun 2006 22:06:43 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id B9AD84021 for ; Wed, 21 Jun 2006 22:06:43 +0200 (CEST) Subject: Re: Progress bar From: Leonard den Ottolander To: MC development In-Reply-To: References: <1150913231.2801.73.camel@athlon> Content-Type: text/plain Date: Wed, 21 Jun 2006 22:06:43 +0200 Message-Id: <1150920403.2801.95.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 20:06:51 -0000 On Wed, 2006-06-21 at 21:55 +0300, Pavel Tsekov wrote: > > Does it also fix the > > issue when copying files? > > No. Seems to work fine though. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Wed Jun 21 17:21:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id F34E73B00E8 for ; Wed, 21 Jun 2006 17:21:15 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06624-06 for ; Wed, 21 Jun 2006 17:21:14 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 925423B00F2 for ; Wed, 21 Jun 2006 17:21:14 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id B529F4023 for ; Wed, 21 Jun 2006 23:21:13 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id tbmp1FvQgFwr for ; Wed, 21 Jun 2006 23:21:07 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 4373F4021 for ; Wed, 21 Jun 2006 23:21:07 +0200 (CEST) Subject: Snapshots availability From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Wed, 21 Jun 2006 23:21:06 +0200 Message-Id: <1150924866.2801.100.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 21:21:16 -0000 Hi, Who is the creator of the two weekly snapshots found at http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/snapshots/ ? Pavel? Miguel? Could you please keep a couple of months worth of snapshots around? I couldn't find the May 30th snapshot when I wanted to compare it with mccolorer. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Wed Jun 21 19:05:41 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2C4D23B0138 for ; Wed, 21 Jun 2006 19:05:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 11604-09 for ; Wed, 21 Jun 2006 19:05:39 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 756083B006C for ; Wed, 21 Jun 2006 19:05:39 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtBlM-0000CL-00; Wed, 21 Jun 2006 19:05:32 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 01:05:32 +0200 Date: Thu, 22 Jun 2006 01:05:32 +0200 To: Leonard den Ottolander , mc-devel@gnome.org Subject: [task #5671] Data Export #2 (bugs) From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: task X-Savane-Item-ID: 5671 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-010531.sv26390.89793@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.564 tagged_above=-999 required=2 tests=[AWL=0.036, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.564 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 23:05:41 -0000 URL: Summary: Data Export #2 (bugs) Project: GNU Midnight Commander Submitted by: leonardjo Submitted on: Thursday 22/06/06 at 01:05 Should Start On: Thursday 22/06/06 at 00:00 Should be Finished on: Friday 23/06/06 at 00:00 Category: None Priority: 5 - Normal Status: None Privacy: Private Assigned to: None Percent Complete: 0% Open/Closed: Open Effort: 0.00 _______________________________________________________ Details: A new export job has been registered. This task has been created to keep the project informed. However, only Leonard den Ottolander, that created the job, can remove the job itself. ######### JOB URL ######### Once the job will be done, it will be available at: ######### JOB REMOVAL ######### Closing this task will not remove the job. To remove the job, Leonard den Ottolander must go at ######### JOB DETAILS ######### The SQL query will be: SELECT bug_id FROM bugs WHERE group_id=3521 (Note: We are aware this information is not tremendously user-friendly. This will be improved in future Savane releases) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Thu Jun 22 00:53:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8FED23B0377 for ; Thu, 22 Jun 2006 00:53:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28223-01 for ; Thu, 22 Jun 2006 00:53:37 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 25D633B027A for ; Thu, 22 Jun 2006 00:53:36 -0400 (EDT) Received: (qmail invoked by alias); 22 Jun 2006 04:53:35 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp016) with SMTP; 22 Jun 2006 06:53:35 +0200 X-Authenticated: #14308112 Date: Thu, 22 Jun 2006 07:52:21 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Progress bar In-Reply-To: <1150920403.2801.95.camel@athlon> Message-ID: References: <1150913231.2801.73.camel@athlon> <1150920403.2801.95.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 04:53:39 -0000 On Wed, 21 Jun 2006, Leonard den Ottolander wrote: > On Wed, 2006-06-21 at 21:55 +0300, Pavel Tsekov wrote: >>> Does it also fix the >>> issue when copying files? >> >> No. > > Seems to work fine though. Hampa's patch behaves exactly as described: [...] If a file is moved by copy/remove the progress bar is advanced twice. On the other hand, if a file is moved by renaming the progress bar is never updated. [...] I don't see how it could possibly fix other issues. From INVALID.NOREPLY@gnu.org Thu Jun 22 02:16:44 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 7DB7B3B014A for ; Thu, 22 Jun 2006 02:16:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32693-10 for ; Thu, 22 Jun 2006 02:16:42 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 885D53B026A for ; Thu, 22 Jun 2006 02:16:42 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtIUZ-000551-00; Thu, 22 Jun 2006 02:16:39 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 06:16:38 +0000 Date: Thu, 22 Jun 2006 06:16:38 +0000 To: Rolf Offermanns , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16383] Build system does not allow cross compiling From: Rolf Offermanns X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16383 User-Agent: Mozilla/5.0 (compatible; Konqueror/3.5; Linux) KHTML/3.5.2 (like Gecko) Kubuntu 6.06 Dapper X-Apparently-From: 84.58.135.66 (Savane authenticated user roffermanns) Message-Id: <20060622-061638.sv48822.49212@savannah.gnu.org> References: <20060419-132319.sv48822.2441@savannah.gnu.org> <20060621-193731.sv26390.16849@savannah.gnu.org> In-Reply-To: <20060621-193731.sv26390.16849@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.564 tagged_above=-999 required=2 tests=[AWL=0.036, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.564 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 06:16:44 -0000 Follow-up Comment #2, bug #16383 (project mc): I would, but I have no clue about the auto* stuff. Sorry. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 02:56:50 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C01823B02D2 for ; Thu, 22 Jun 2006 02:56:50 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02668-05 for ; Thu, 22 Jun 2006 02:56:49 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 61ED03B00C2 for ; Thu, 22 Jun 2006 02:56:49 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtJ7N-0000cX-00; Thu, 22 Jun 2006 02:56:45 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 09:56:45 +0300 Date: Thu, 22 Jun 2006 09:56:45 +0300 To: Rolf Offermanns , Leonard den Ottolander , Pavel Tsekov , mc-devel@gnome.org Subject: [bug #16383] Build system does not allow cross compiling From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16383 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060622-095644.sv36205.99030@savannah.gnu.org> References: <20060419-132319.sv48822.2441@savannah.gnu.org> <20060621-193731.sv26390.16849@savannah.gnu.org> <20060622-061638.sv48822.49212@savannah.gnu.org> In-Reply-To: <20060622-061638.sv48822.49212@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.565 tagged_above=-999 required=2 tests=[AWL=0.035, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.565 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 06:56:51 -0000 Follow-up Comment #3, bug #16383 (project mc): The major problem here is that man2hlp relies on glib. This complicates the task of making it build in cross environment. One way to fix this is to drop the glib dependency - there are tree or four functions which need to be replaced. When I have time I'll do this if noone beats me to it. I have already made some changes to the auto stuff so that MC will build properly in cross environment but whithout changing man2hlp they are of no use. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From irusskih@gmail.com Thu Jun 22 06:17:30 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 84BC73B0191 for ; Thu, 22 Jun 2006 06:17:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15568-03 for ; Thu, 22 Jun 2006 06:17:27 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.195]) by menubar.gnome.org (Postfix) with ESMTP id 9A6723B02D2 for ; Thu, 22 Jun 2006 06:17:26 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id l8so363567nzf for ; Thu, 22 Jun 2006 03:17:25 -0700 (PDT) Received: by 10.36.252.49 with SMTP id z49mr1712665nzh; Thu, 22 Jun 2006 03:17:25 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Thu, 22 Jun 2006 03:17:25 -0700 (PDT) Message-ID: <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> Date: Thu, 22 Jun 2006 14:17:25 +0400 From: "Igor Russkih" To: "Leonard den Ottolander" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150920303.2801.89.camel@athlon> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_Part_3415_13609534.1150971445577" References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.499 tagged_above=-999 required=2 tests=[AWL=0.101, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.499 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 10:17:30 -0000 ------=_Part_3415_13609534.1150971445577 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Leonard, all, Here attached the patch over mc-2006-06-17-02 (snapshot from ibiblio.org). Please don't make direct diffs between mc-colorer and cvs snapshot since they are different versions. Use this patch for reviewing. I've separated the patch for easier understanding: build.diff - make/configs changes edit.diff - changes in existing edit/* files mccolorer.diff - new colorer's code edit/syntax-colorer-* lang.diff - ru.po additions for colorer > > Colorer library can be disabled either during compilation time > Switching at run time would be nice. At least as a startup option. "either during compilation time or in runtime" - I meant this is already implemented. > These are comments and fixes in your mccolorer, not available in CVS. > Are you using patches from others? No, just clean mc snapshot from ibiblio.org. > > > odd whitespace changes, but there appear to be some hunks at the top and > > > bottom to actually do something. Please submit (not the whitespace) :) . > These are patches you seem to be using that are not in CVS. This is why > I ask you to submit them for review. Sorry, it seems to be a difference in our original MC tarballs. I didn't touch it. See the patch attached for all the files changed. > > The main problem with this is that syntax-colorer.cpp file makes > > direct connection between mc editor data and colorer's code. > > Technically it is possible to extract a kind of 'generic' C API and > > include it on library side. In this case MC will have pure C codes. > Is it technically possible to reimplement that c++ code in c? (This is > just theoretical question, I don't ask you to do it.) It is possible to move this code to libcolorer side and implement plain C API from library side - however this'll take more time and I see no reason in doing this. > Yes, I guess you are right. We might want to put the colorer code in a > different directory though. That's easy. -- Igor ------=_Part_3415_13609534.1150971445577 Content-Type: application/x-gzip; name=mccolorer.diff.tgz Content-Transfer-Encoding: base64 X-Attachment-Id: f_eoqy6k46 Content-Disposition: attachment; filename="mccolorer.diff.tgz" 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 PaPn4z3/Fzf5qE4AQAEA ------=_Part_3415_13609534.1150971445577-- From INVALID.NOREPLY@gnu.org Thu Jun 22 07:54:37 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 138DC3B02A8 for ; Thu, 22 Jun 2006 07:54:37 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21553-06 for ; Thu, 22 Jun 2006 07:54:35 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 73FAA3B02F9 for ; Thu, 22 Jun 2006 07:54:35 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtNlY-0005Il-00; Thu, 22 Jun 2006 07:54:32 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 13:54:32 +0200 Date: Thu, 22 Jun 2006 13:54:32 +0200 To: Leonard den Ottolander , mc-devel@gnome.org Subject: [task #5673] Data Export #3 (bugs) From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: task X-Savane-Item-ID: 5673 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-135432.sv26390.82990@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.566 tagged_above=-999 required=2 tests=[AWL=0.034, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.566 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 11:54:37 -0000 URL: Summary: Data Export #3 (bugs) Project: GNU Midnight Commander Submitted by: leonardjo Submitted on: Thursday 22/06/06 at 13:54 Should Start On: Thursday 22/06/06 at 00:00 Should be Finished on: Friday 23/06/06 at 00:00 Category: None Priority: 5 - Normal Status: None Privacy: Private Assigned to: None Percent Complete: 0% Open/Closed: Open Effort: 0.00 _______________________________________________________ Details: A new export job has been registered. This task has been created to keep the project informed. However, only Leonard den Ottolander, that created the job, can remove the job itself. ######### JOB URL ######### Once the job will be done, it will be available at: ######### JOB REMOVAL ######### Closing this task will not remove the job. To remove the job, Leonard den Ottolander must go at ######### JOB DETAILS ######### The SQL query will be: SELECT bug_id FROM bugs WHERE group_id=3521 (Note: We are aware this information is not tremendously user-friendly. This will be improved in future Savane releases) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From leonard@den.ottolander.nl Thu Jun 22 08:09:08 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5CB333B0421 for ; Thu, 22 Jun 2006 08:09:08 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23152-01 for ; Thu, 22 Jun 2006 08:09:06 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 7DAD03B0401 for ; Thu, 22 Jun 2006 08:09:06 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 6AC464023 for ; Thu, 22 Jun 2006 14:09:05 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id xMGRfFcFP945 for ; Thu, 22 Jun 2006 14:09:03 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id CB99E4021 for ; Thu, 22 Jun 2006 14:09:03 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> Content-Type: text/plain Date: Thu, 22 Jun 2006 14:09:03 +0200 Message-Id: <1150978143.2807.11.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:09:08 -0000 Hello Igor, On Thu, 2006-06-22 at 14:17 +0400, Igor Russkih wrote: > "either during compilation time or in runtime" - I meant this is > already implemented. I should look for that switch then :) . > No, just clean mc snapshot from ibiblio.org. Can you make it available to me? I am quite curious where the changes I observe came from. They are quite a few, and if they are not in CVS I'm curious how they ended up in the tarball. > > Is it technically possible to reimplement that c++ code in c? (This is > > just theoretical question, I don't ask you to do it.) > It is possible to move this code to libcolorer side and implement > plain C API from library side - however this'll take more time and I > see no reason in doing this. My question was if it is technically possible to rewrite the cpp code for *mc* in c and (through trickery) still keep interface compatibility. A bit like linking Delphi (Pascal) to C code. This is possible through compiler switches changing the stack cleanup behaviour (and probably some alignment tricks). Again, I'm not asking you to do this, just inquiring about the theoretical possibility. It's a bit OT, I know ;) . Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Thu Jun 22 08:10:22 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CF08F3B0484 for ; Thu, 22 Jun 2006 08:10:22 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 23399-04 for ; Thu, 22 Jun 2006 08:10:19 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id BBE813B0570 for ; Thu, 22 Jun 2006 08:10:19 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtO0n-00064f-00; Thu, 22 Jun 2006 08:10:17 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 14:10:17 +0200 Date: Thu, 22 Jun 2006 14:10:17 +0200 To: Leonard den Ottolander , mc-devel@gnome.org Subject: [task #5674] Data Export #4 (bugs) From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: task X-Savane-Item-ID: 5674 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-141017.sv26390.14093@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.566 tagged_above=-999 required=2 tests=[AWL=0.034, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.566 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:10:23 -0000 URL: Summary: Data Export #4 (bugs) Project: GNU Midnight Commander Submitted by: leonardjo Submitted on: Thursday 22/06/06 at 14:10 Should Start On: Thursday 22/06/06 at 00:00 Should be Finished on: Saturday 24/06/06 at 00:00 Category: None Priority: 5 - Normal Status: None Privacy: Private Assigned to: None Percent Complete: 0% Open/Closed: Open Effort: 0.00 _______________________________________________________ Details: A new export job has been registered. This task has been created to keep the project informed. However, only Leonard den Ottolander, that created the job, can remove the job itself. ######### JOB URL ######### Once the job will be done, it will be available at: ######### JOB REMOVAL ######### Closing this task will not remove the job. To remove the job, Leonard den Ottolander must go at ######### JOB DETAILS ######### The SQL query will be: SELECT bug_id FROM bugs WHERE group_id=3521 AND status_id IN (1) (Note: We are aware this information is not tremendously user-friendly. This will be improved in future Savane releases) _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Wed Jun 21 13:49:13 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 721AA3B0733 for ; Wed, 21 Jun 2006 13:49:13 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26116-05 for ; Wed, 21 Jun 2006 13:49:11 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 8F2E03B06F1 for ; Wed, 21 Jun 2006 13:49:11 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ft6on-0001Zw-00; Wed, 21 Jun 2006 13:48:45 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Wed, 21 Jun 2006 19:48:45 +0200 Date: Wed, 21 Jun 2006 19:48:45 +0200 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060621-194845.sv26390.25842@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> In-Reply-To: <20060306-153157.sv36205.31998@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.562 tagged_above=-999 required=2 tests=[AWL=0.038, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.562 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 08:25:17 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2006 17:49:13 -0000 Follow-up Comment #25, bug #14155 (project mc): Ping. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Thu Jun 22 08:36:12 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 062EA3B0606 for ; Thu, 22 Jun 2006 08:36:12 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25706-05 for ; Thu, 22 Jun 2006 08:36:10 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id F034E3B03FD for ; Thu, 22 Jun 2006 08:36:09 -0400 (EDT) Received: (qmail invoked by alias); 22 Jun 2006 12:36:08 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp042) with SMTP; 22 Jun 2006 14:36:08 +0200 X-Authenticated: #14308112 Date: Thu, 22 Jun 2006 15:34:54 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150978143.2807.11.camel@athlon> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.477 tagged_above=-999 required=2 tests=[AWL=-0.012, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.477 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:36:12 -0000 On Thu, 22 Jun 2006, Leonard den Ottolander wrote: >>> Is it technically possible to reimplement that c++ code in c? (This is >>> just theoretical question, I don't ask you to do it.) >> It is possible to move this code to libcolorer side and implement >> plain C API from library side - however this'll take more time and I >> see no reason in doing this. > > My question was if it is technically possible to rewrite the cpp code > for *mc* in c and (through trickery) still keep interface compatibility. Not unless colorer exports C interfaces and it doesn't. The way it is implemented colorer exports a set of interfaces that one has to implement in terms of C++ classes. Theoretically it could be possible to create an C++ implementation of those interfaces, one that delegates the work to pure C functions. Again that means that colorer has to export a C. I don't see why this is such a big deal to you ? > A bit like linking Delphi (Pascal) to C code. This is possible through > compiler switches changing the stack cleanup behaviour (and probably > some alignment tricks). What about name mangling issues ? As I said above - you cannot avoid the C++ code. From leonard@den.ottolander.nl Thu Jun 22 08:36:29 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id AFADE3B06C8 for ; Thu, 22 Jun 2006 08:36:29 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25640-08 for ; Thu, 22 Jun 2006 08:36:27 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id B69843B0677 for ; Thu, 22 Jun 2006 08:36:27 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 774334023 for ; Thu, 22 Jun 2006 14:36:21 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id XkAbOexUxtt9 for ; Thu, 22 Jun 2006 14:36:17 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id AA3E44021 for ; Thu, 22 Jun 2006 14:36:17 +0200 (CEST) Subject: Re: Progress bar From: Leonard den Ottolander To: MC development In-Reply-To: References: <1150913231.2801.73.camel@athlon> <1150920403.2801.95.camel@athlon> Content-Type: text/plain Date: Thu, 22 Jun 2006 14:36:17 +0200 Message-Id: <1150979777.2807.25.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:36:29 -0000 Hello Pavel, On Thu, 2006-06-22 at 07:52 +0300, Pavel Tsekov wrote: > Hampa's patch behaves exactly as described: > > [...] > If a file is moved by copy/remove the progress bar is advanced twice. On > the other hand, if a file is moved by renaming the progress bar is never > updated. > [...] I got confused by bug 10507 that doesn't distinguish clearly between copy and move. The copy progress bar behaves as expected. (copy_dir_dir() and move_dir_dir() do not show a bytes or count bar, but this is expected as they do not attempt to make an estimate of the number and size of the copied/moved files.) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From INVALID.NOREPLY@gnu.org Thu Jun 22 08:51:18 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C4EB23B06E1 for ; Thu, 22 Jun 2006 08:51:18 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 27256-05 for ; Thu, 22 Jun 2006 08:51:17 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 562D33B066E for ; Thu, 22 Jun 2006 08:51:17 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtOdb-0000vu-00; Thu, 22 Jun 2006 08:50:23 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 14:50:22 +0200 Date: Thu, 22 Jun 2006 14:50:22 +0200 To: Gergely =?UTF-8?B?U3rDoXN6?= , Leonard den Ottolander , Pavel Tsekov , Oswald Buddenhagen , mc-devel@gnome.org Subject: [patch #4970] add label highlighting to c.syntax From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: patch X-Savane-Item-ID: 4970 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-145022.sv26390.88876@savannah.gnu.org> References: <20060312-194248.sv8412.23459@savannah.gnu.org> <20060317-170214.sv36205.75631@savannah.gnu.org> <20060317-161352.sv41304.82068@savannah.gnu.org> <20060317-211325.sv41304.63756@savannah.gnu.org> <20060318-120849.sv36205.36817@savannah.gnu.org> <20060318-144031.sv26390.61472@savannah.gnu.org> <20060319-090924.sv8412.83221@savannah.gnu.org> <20060319-164645.sv26390.22214@savannah.gnu.org> <20060319-204823.sv8412.33015@savannah.gnu.org> In-Reply-To: <20060319-204823.sv8412.33015@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.567 tagged_above=-999 required=2 tests=[AWL=0.033, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.567 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:51:19 -0000 Update of patch #4970 (project mc): Status: None => Done Assigned to: None => leonardjo Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #9: Committed. Closing. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 08:59:11 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C623A3B071C for ; Thu, 22 Jun 2006 08:59:11 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28144-04 for ; Thu, 22 Jun 2006 08:59:10 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 8A51C3B0719 for ; Thu, 22 Jun 2006 08:59:10 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtOm3-0001Ef-00; Thu, 22 Jun 2006 08:59:07 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 14:59:07 +0200 Date: Thu, 22 Jun 2006 14:59:07 +0200 To: Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org Subject: [patch #4991] add .ipk extension to mc.ext From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: patch X-Savane-Item-ID: 4991 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-145906.sv26390.95959@savannah.gnu.org> References: <20060323-173337.sv36205.23406@savannah.gnu.org> <20060323-195337.sv26390.31728@savannah.gnu.org> In-Reply-To: <20060323-195337.sv26390.31728@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.568 tagged_above=-999 required=2 tests=[AWL=0.032, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.568 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:59:12 -0000 Update of patch #4991 (project mc): Category: None => Menu and associations Status: None => Done Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #2: Committed. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 09:01:57 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5704B3B0720 for ; Thu, 22 Jun 2006 09:01:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 28587-02 for ; Thu, 22 Jun 2006 09:01:50 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id F38BE3B078C for ; Thu, 22 Jun 2006 09:00:53 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtOne-0001HY-00; Thu, 22 Jun 2006 09:00:46 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 15:00:44 +0200 Date: Thu, 22 Jun 2006 15:00:44 +0200 To: Sorin Sbarnea , Roland Illig , Leonard den Ottolander , mc-devel@gnome.org Subject: [patch #4741] Syntax Support for config files (conf,ini,cfg,...) From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: patch X-Savane-Item-ID: 4741 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-150044.sv26390.89917@savannah.gnu.org> References: <20051228-210650.sv46405.46961@savannah.gnu.org> <20051228-210735.sv46405.17938@savannah.gnu.org> <20060128-105039.sv20990.3126@savannah.gnu.org> In-Reply-To: <20060128-105039.sv20990.3126@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.568 tagged_above=-999 required=2 tests=[AWL=0.032, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.568 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:01:57 -0000 Follow-up Comment #2, patch #4741 (project mc): Ping. Sorin, if you do not fix these patches this report will be closed. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 08:40:20 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CEB323B06CE for ; Thu, 22 Jun 2006 08:40:20 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26231-01 for ; Thu, 22 Jun 2006 08:40:19 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 197813B0677 for ; Thu, 22 Jun 2006 08:40:19 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtOSt-00007u-00; Thu, 22 Jun 2006 08:39:19 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 15:39:19 +0300 Date: Thu, 22 Jun 2006 15:39:19 +0300 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060622-153919.sv36205.75620@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> <20060621-194845.sv26390.25842@savannah.gnu.org> In-Reply-To: <20060621-194845.sv26390.25842@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.567 tagged_above=-999 required=2 tests=[AWL=0.033, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.567 X-Spam-Level: X-Mailman-Approved-At: Thu, 22 Jun 2006 09:09:11 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 12:40:21 -0000 Follow-up Comment #26, bug #14155 (project mc): I guess we can safely close that one . If anyone has any kind of objections she/he could request that we reopen the bug report. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From irusskih@gmail.com Thu Jun 22 09:30:41 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72E753B06B5 for ; Thu, 22 Jun 2006 09:30:41 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30485-04 for ; Thu, 22 Jun 2006 09:30:40 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.204]) by menubar.gnome.org (Postfix) with ESMTP id BAB223B0559 for ; Thu, 22 Jun 2006 09:30:39 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id 18so390211nzp for ; Thu, 22 Jun 2006 06:30:39 -0700 (PDT) Received: by 10.37.22.14 with SMTP id z14mr1920162nzi; Thu, 22 Jun 2006 06:30:38 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Thu, 22 Jun 2006 06:30:38 -0700 (PDT) Message-ID: <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> Date: Thu, 22 Jun 2006 17:30:38 +0400 From: "Igor Russkih" To: "Leonard den Ottolander" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150978143.2807.11.camel@athlon> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.531 tagged_above=-999 required=2 tests=[AWL=0.069, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.531 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:30:41 -0000 > > already implemented. > I should look for that switch then :) . It's a runtime option in editor's settings dialog. You'll find it easily ;) > > No, just clean mc snapshot from ibiblio.org. > Can you make it available to me? I am quite curious where the changes I The latest one I've got from http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/snapshots/mc-2006-06-17-02.tar.gz The previous I've used (mc-2006-05-30-15.tar.gz) > > plain C API from library side - however this'll take more time and I > > see no reason in doing this. > My question was if it is technically possible to rewrite the cpp code > for *mc* in c and (through trickery) still keep interface compatibility. No. that's particular action is not possible as far as I know. Surely it is possible to make a kind of c++ API 'emulation' from pure C code - so that pure C component (mc) will start using pure C++ component (libcolorer). But this is just in theory and it's not a production solution. Hope I've answered your question ;) -- Igor From leonard@den.ottolander.nl Thu Jun 22 09:41:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 19F2E3B042A for ; Thu, 22 Jun 2006 09:41:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31154-10 for ; Thu, 22 Jun 2006 09:41:18 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id AAE543B00DE for ; Thu, 22 Jun 2006 09:41:18 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id C22344023 for ; Thu, 22 Jun 2006 15:41:17 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id sYin0FGGCowf for ; Thu, 22 Jun 2006 15:41:12 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 41DF34021 for ; Thu, 22 Jun 2006 15:41:12 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> Content-Type: text/plain Date: Thu, 22 Jun 2006 15:41:11 +0200 Message-Id: <1150983671.2807.29.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:41:21 -0000 Hello Igor, On Thu, 2006-06-22 at 17:30 +0400, Igor Russkih wrote: > The previous I've used (mc-2006-05-30-15.tar.gz) I cannot find that version anymore. Can you make it available to me somewhere so I can have a look? > No. that's particular action is not possible as far as I know. > Surely it is possible to make a kind of c++ API 'emulation' from pure > C code - so that pure C component (mc) will start using pure C++ > component (libcolorer). But this is just in theory and it's not a > production solution. > > Hope I've answered your question ;) Yup. Thanks :) . (No big deal, just curious.) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From irusskih@gmail.com Thu Jun 22 09:55:05 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 821D33B038B for ; Thu, 22 Jun 2006 09:55:05 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32339-08 for ; Thu, 22 Jun 2006 09:55:02 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.206]) by menubar.gnome.org (Postfix) with ESMTP id BC25B3B03A4 for ; Thu, 22 Jun 2006 09:55:01 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id s18so421398nze for ; Thu, 22 Jun 2006 06:55:01 -0700 (PDT) Received: by 10.37.13.43 with SMTP id q43mr2012277nzi; Thu, 22 Jun 2006 06:55:01 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Thu, 22 Jun 2006 06:55:01 -0700 (PDT) Message-ID: <861727ef0606220655o5a195eb2ub12e508c313f7779@mail.gmail.com> Date: Thu, 22 Jun 2006 17:55:01 +0400 From: "Igor Russkih" To: "Leonard den Ottolander" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <1150983671.2807.29.camel@athlon> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <1150983671.2807.29.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:55:05 -0000 > > The previous I've used (mc-2006-05-30-15.tar.gz) > I cannot find that version anymore. Can you make it available to me > somewhere so I can have a look? I've placed it at http://colorer.sourceforge.net/files/mc-2006-05-30-15.tar.gz -- Igor From leonard@den.ottolander.nl Thu Jun 22 10:10:01 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 74CA33B081D for ; Thu, 22 Jun 2006 10:10:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01047-02 for ; Thu, 22 Jun 2006 10:10:00 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 57E513B07DF for ; Thu, 22 Jun 2006 10:10:00 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id D18C44023 for ; Thu, 22 Jun 2006 16:09:58 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id lUd8k95cotkD for ; Thu, 22 Jun 2006 16:09:54 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 4FCBC4021 for ; Thu, 22 Jun 2006 16:09:54 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606220655o5a195eb2ub12e508c313f7779@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <1150983671.2807.29.camel@athlon> <861727ef0606220655o5a195eb2ub12e508c313f7779@mail.gmail.com> Content-Type: text/plain Date: Thu, 22 Jun 2006 16:09:48 +0200 Message-Id: <1150985388.2807.32.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 14:10:01 -0000 Hello Igor, On Thu, 2006-06-22 at 17:55 +0400, Igor Russkih wrote: > I've placed it at > http://colorer.sourceforge.net/files/mc-2006-05-30-15.tar.gz Thanks. Well, that clears things up for me :-) . It turns out all the changes I observed are caused by the autogen step used to create the snapshots. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Thu Jun 22 10:32:26 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D276D3B041B for ; Thu, 22 Jun 2006 10:32:26 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02378-03 for ; Thu, 22 Jun 2006 10:32:25 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id AADAE3B0658 for ; Thu, 22 Jun 2006 10:32:25 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id B61094023 for ; Thu, 22 Jun 2006 16:32:24 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id uGEZi1J4kOTe for ; Thu, 22 Jun 2006 16:32:23 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 3F85C4021 for ; Thu, 22 Jun 2006 16:32:23 +0200 (CEST) Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine From: Leonard den Ottolander To: MC development In-Reply-To: <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> Content-Type: text/plain Date: Thu, 22 Jun 2006 16:32:22 +0200 Message-Id: <1150986742.2807.34.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 14:32:27 -0000 Hi Igor, On Thu, 2006-06-22 at 17:30 +0400, Igor Russkih wrote: > It's a runtime option in editor's settings dialog. You'll find it easily ;) Yes, got it. But you've introduced a duplicate hotkey C. Please choose another one. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Thu Jun 22 11:11:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 551443B0501 for ; Thu, 22 Jun 2006 11:11:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04503-07 for ; Thu, 22 Jun 2006 11:11:20 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 158503B0331 for ; Thu, 22 Jun 2006 11:11:20 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 0F4434023; Thu, 22 Jun 2006 17:11:19 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 5-UDyn51ImKM; Thu, 22 Jun 2006 17:11:15 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 9317F4021; Thu, 22 Jun 2006 17:11:15 +0200 (CEST) Subject: Where to report issues with mccolorer? From: Leonard den Ottolander To: Igor Russkih Content-Type: text/plain Date: Thu, 22 Jun 2006 17:11:15 +0200 Message-Id: <1150989075.2807.39.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 15:11:21 -0000 Hello Igor, Where do you want us to report issues with mccolorer? In the colorer bug system? (I'm seeing a crash when opening the syntax highlighting dialog for the old syntax highlighting.) Leonard. -- mount -t life -o ro /dev/dna /genetic/research From ossi@kde.org Thu Jun 22 12:10:21 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id C556D3B01D2 for ; Thu, 22 Jun 2006 12:10:21 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08495-02 for ; Thu, 22 Jun 2006 12:10:20 -0400 (EDT) Received: from ktown.kde.org (ktown.kde.org [131.246.120.250]) by menubar.gnome.org (Postfix) with SMTP id 97E283B07A2 for ; Thu, 22 Jun 2006 12:10:19 -0400 (EDT) Received: (qmail 3801 invoked from network); 22 Jun 2006 16:10:17 -0000 Received: from localhost (127.0.0.1) by localhost with SMTP; 22 Jun 2006 16:10:17 -0000 Received: from ossi by ugly.local with local (masqmail 0.2.21) id 1FtRkx-0uH-00 for ; Thu, 22 Jun 2006 18:10:11 +0200 Date: Thu, 22 Jun 2006 18:10:11 +0200 From: Oswald Buddenhagen To: mc-devel@gnome.org Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine Message-ID: <20060622161011.GC3368@ugly.local> Mail-Followup-To: mc-devel@gnome.org References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> User-Agent: Mutt/1.5.11 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.586 tagged_above=-999 required=2 tests=[AWL=0.013, BAYES_00=-2.599] X-Spam-Score: -2.586 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 16:10:22 -0000 On Thu, Jun 22, 2006 at 05:30:38PM +0400, Igor Russkih wrote: > > > already implemented. > > I should look for that switch then :) . > It's a runtime option in editor's settings dialog. You'll find it easily ;) > fwiw, i think this is silly. typical example of over-configurability. if it has to be runtime-switchable (why?), don't put it in the dialog at least. -- Hi! I'm a .signature virus! Copy me into your ~/.signature, please! -- Chaos, panic, and disorder - my work here is done. From proski@gnu.org Thu Jun 22 14:15:51 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0453A3B0750 for ; Thu, 22 Jun 2006 14:15:51 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 16309-05 for ; Thu, 22 Jun 2006 14:15:48 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id E86833B082D for ; Thu, 22 Jun 2006 14:15:47 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FtTiV-0003Lh-2P for mc-devel@gnome.org; Thu, 22 Jun 2006 14:15:47 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FtTiL-0008PV-3w; Thu, 22 Jun 2006 14:15:37 -0400 Subject: Re: Snapshots availability From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1150924866.2801.100.camel@athlon> References: <1150924866.2801.100.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Thu, 22 Jun 2006 14:15:37 -0400 Message-Id: <1151000137.3539.23.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.595 tagged_above=-999 required=2 tests=[AWL=0.005, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.595 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 18:15:51 -0000 Hello, Leonard! On Wed, 2006-06-21 at 23:21 +0200, Leonard den Ottolander wrote: > Hi, > > Who is the creator of the two weekly snapshots found at > http://www.ibiblio.org/pub/Linux/utils/file/managers/mc/snapshots/ ? > Pavel? Miguel? I generate them using maint/mcsnap > Could you please keep a couple of months worth of snapshots around? I > couldn't find the May 30th snapshot when I wanted to compare it with > mccolorer. Snapshots are not intended for developers. Developers should be using proper version control systems. Snapshots are for users who want to try the latest features and check if some bug has been fixed, but who don't intend to keep the sources up-to-date. -- Regards, Pavel Roskin From ptsekov@gmx.net Fri Jun 23 03:10:45 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EBAB33B0646 for ; Fri, 23 Jun 2006 03:10:44 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21658-09 for ; Fri, 23 Jun 2006 03:10:39 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id D4E653B00ED for ; Fri, 23 Jun 2006 03:10:38 -0400 (EDT) Received: (qmail invoked by alias); 23 Jun 2006 07:10:36 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp019) with SMTP; 23 Jun 2006 09:10:36 +0200 X-Authenticated: #14308112 Date: Fri, 23 Jun 2006 10:09:20 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole Cc: MC development Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.477 tagged_above=-999 required=2 tests=[AWL=-0.012, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.477 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 07:10:45 -0000 Hello Igor, On Thu, 22 Jun 2006, Igor Russkih wrote: > Here attached the patch over mc-2006-06-17-02 (snapshot from > ibiblio.org). Please don't make direct diffs between mc-colorer and > cvs snapshot since they are different versions. Use this patch for > reviewing. > > I've separated the patch for easier understanding: > build.diff - make/configs changes There is no need to include configure, config.h.in, Makefile.in and and any other autogenerated files in your patches. Next time, please, submit only your changes to configure.ac and Makefile.am. From ptsekov@gmx.net Fri Jun 23 03:59:56 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0322F3B0393 for ; Fri, 23 Jun 2006 03:59:56 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 25386-04 for ; Fri, 23 Jun 2006 03:59:54 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id F0DE13B013B for ; Fri, 23 Jun 2006 03:59:53 -0400 (EDT) Received: (qmail invoked by alias); 23 Jun 2006 07:59:49 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp033) with SMTP; 23 Jun 2006 09:59:49 +0200 X-Authenticated: #14308112 Date: Fri, 23 Jun 2006 10:58:32 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 07:59:56 -0000 Hello Igor, On Thu, 22 Jun 2006, Igor Russkih wrote: > Here attached the patch over mc-2006-06-17-02 (snapshot from > ibiblio.org). Please don't make direct diffs between mc-colorer and > cvs snapshot since they are different versions. Use this patch for > reviewing. > > I've separated the patch for easier understanding: > build.diff - make/configs changes Index: edit/Makefile.am =================================================================== --- edit/Makefile.am (.../branches/MC-VENDOR/mccolorer) (revision 776) +++ edit/Makefile.am (.../trunk/mccolorer) (revision 776) @@ -6,10 +6,19 @@ noinst_LIBRARIES = endif +if USE_COLORER libedit_a_SOURCES = \ bookmark.c edit.c editcmd.c editwidget.c editdraw.c editkeys.c \ editmenu.c editoptions.c editcmddef.h edit.h edit-widget.h \ + editlock.c editlock.h syntax.c usermap.h usermap.cwordproc.c \ ^^^^^^^^^^^^^^^^^^^ JFYI, there is a missing space here. From ptsekov@gmx.net Fri Jun 23 05:07:03 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 598393B01BA for ; Fri, 23 Jun 2006 05:07:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30249-08 for ; Fri, 23 Jun 2006 05:07:02 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 83B173B012A for ; Fri, 23 Jun 2006 05:07:01 -0400 (EDT) Received: (qmail invoked by alias); 23 Jun 2006 09:06:59 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp035) with SMTP; 23 Jun 2006 11:06:59 +0200 X-Authenticated: #14308112 Date: Fri, 23 Jun 2006 12:05:39 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Leonard den Ottolander Subject: Re: Where to report issues with mccolorer? In-Reply-To: <1150989075.2807.39.camel@athlon> Message-ID: References: <1150989075.2807.39.camel@athlon> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="-559023410-851401618-1151053539=:24144" X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 09:07:03 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. ---559023410-851401618-1151053539=:24144 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed On Thu, 22 Jun 2006, Leonard den Ottolander wrote: > Where do you want us to report issues with mccolorer? In the colorer bug > system? > > (I'm seeing a crash when opening the syntax highlighting dialog for the > old syntax highlighting.) Find attached a patch. ---559023410-851401618-1151053539=:24144 Content-Type: TEXT/PLAIN; charset=US-ASCII; name=edit_free_syntax_rules_fix.diff Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: attachment; filename=edit_free_syntax_rules_fix.diff SW5kZXg6IGVkaXQvc3ludGF4LmMNCj09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0N ClJDUyBmaWxlOiAvY3Zzcm9vdC9tYy9tYy9lZGl0L3N5bnRheC5jLHYNCnJl dHJpZXZpbmcgcmV2aXNpb24gMS44MA0KZGlmZiAtdSAtcCAtcjEuODAgc3lu dGF4LmMNCi0tLSBlZGl0L3N5bnRheC5jCTMgQXByIDIwMDYgMjE6MjI6MDkg LTAwMDAJMS44MA0KKysrIGVkaXQvc3ludGF4LmMJMjMgSnVuIDIwMDYgMDk6 MDI6NDMgLTAwMDANCkBAIC05NjksNiArOTgzLDEyIEBAIHZvaWQgZWRpdF9m cmVlX3N5bnRheF9ydWxlcyAoV0VkaXQgKiBlZGkNCiANCiAgICAgaWYgKCFl ZGl0KQ0KIAlyZXR1cm47DQorDQorI2lmIFVTRV9DT0xPUkVSDQorICAgIGNv bG9yZXJfZnJlZV9zeW50YXhfcnVsZXMoZWRpdCk7DQorICAgIHJldHVybjsN CisjZW5kaWYgICAgDQorDQogICAgIGlmIChlZGl0LT5kZWZpbmVzKQ0KIAlk ZXN0cm95X2RlZmluZXMgKCZlZGl0LT5kZWZpbmVzKTsNCiAgICAgaWYgKCFl ZGl0LT5ydWxlcykNCg== ---559023410-851401618-1151053539=:24144-- From irusskih@gmail.com Fri Jun 23 07:08:31 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 679073B069B for ; Fri, 23 Jun 2006 07:08:31 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 05406-10 for ; Fri, 23 Jun 2006 07:08:29 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.204]) by menubar.gnome.org (Postfix) with ESMTP id 229933B00EF for ; Fri, 23 Jun 2006 07:08:29 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id 9so741233nzo for ; Fri, 23 Jun 2006 04:08:28 -0700 (PDT) Received: by 10.36.252.42 with SMTP id z42mr3610654nzh; Fri, 23 Jun 2006 04:08:28 -0700 (PDT) Received: by 10.37.21.55 with HTTP; Fri, 23 Jun 2006 04:08:28 -0700 (PDT) Message-ID: <861727ef0606230408p69fe14dbhf846cedd458dfb0e@mail.gmail.com> Date: Fri, 23 Jun 2006 15:08:28 +0400 From: "Igor Russkih" To: "Pavel Tsekov" Subject: Re: Where to report issues with mccolorer? In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <1150989075.2807.39.camel@athlon> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.556 tagged_above=-999 required=2 tests=[AWL=0.044, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.556 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 11:08:31 -0000 > > (I'm seeing a crash when opening the syntax highlighting dialog for the > > old syntax highlighting.) > > Find attached a patch. > Thanks, Pavel! -- Igor From INVALID.NOREPLY@gnu.org Thu Jun 22 09:43:19 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9E7BD3B04F0 for ; Thu, 22 Jun 2006 09:43:19 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31278-09 for ; Thu, 22 Jun 2006 09:43:18 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 109113B00E0 for ; Thu, 22 Jun 2006 09:43:18 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtPSa-0003x3-00; Thu, 22 Jun 2006 09:43:04 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 15:43:04 +0200 Date: Thu, 22 Jun 2006 15:43:04 +0200 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-154303.sv26390.2544@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> <20060621-194845.sv26390.25842@savannah.gnu.org> <20060622-153919.sv36205.75620@savannah.gnu.org> In-Reply-To: <20060622-153919.sv36205.75620@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.569 tagged_above=-999 required=2 tests=[AWL=0.031, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.569 X-Spam-Level: X-Mailman-Approved-At: Fri, 23 Jun 2006 08:55:54 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 13:43:19 -0000 Update of bug #14155 (project mc): Status: Need Info => Fixed Open/Closed: Open => Closed _______________________________________________________ Follow-up Comment #27: Not sure why you didn't close it then. You should be able to. Closing. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 10:21:29 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 0BCC83B0331 for ; Thu, 22 Jun 2006 10:21:29 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01617-09 for ; Thu, 22 Jun 2006 10:21:27 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 97F493B055E for ; Thu, 22 Jun 2006 10:21:27 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtQ3Y-0005T3-00; Thu, 22 Jun 2006 10:21:16 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 17:21:15 +0300 Date: Thu, 22 Jun 2006 17:21:15 +0300 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Pavel Tsekov X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.1) Gecko/20060313 Fedora/1.5.0.1-9 Firefox/1.5.0.1 pango-text X-Apparently-From: 213.91.247.38 (Savane authenticated user ptsekov) Message-Id: <20060622-172115.sv36205.4532@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> <20060621-194845.sv26390.25842@savannah.gnu.org> <20060622-153919.sv36205.75620@savannah.gnu.org> <20060622-154303.sv26390.2544@savannah.gnu.org> In-Reply-To: <20060622-154303.sv26390.2544@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.569 tagged_above=-999 required=2 tests=[AWL=0.031, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.569 X-Spam-Level: X-Mailman-Approved-At: Fri, 23 Jun 2006 08:55:54 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 14:21:29 -0000 Follow-up Comment #28, bug #14155 (project mc): This is getting annoying. I didn't close it because of comment #24. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From INVALID.NOREPLY@gnu.org Thu Jun 22 10:35:57 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 9C2443B0578 for ; Thu, 22 Jun 2006 10:35:57 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02525-02 for ; Thu, 22 Jun 2006 10:35:56 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 0E9E23B06AE for ; Thu, 22 Jun 2006 10:35:56 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FtQHD-0006LN-00; Thu, 22 Jun 2006 10:35:23 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 22 Jun 2006 16:35:22 +0200 Date: Thu, 22 Jun 2006 16:35:22 +0200 To: John Pye , Pavel Tsekov , Leonard den Ottolander , Roland Illig , Paul Ogilvie , mc-devel@gnome.org Subject: [bug #14155] 4.6.1: mouse wheel strangeness From: Leonard den Ottolander X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 14155 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060418 Fedora/1.0.8-1.1.fc4 Firefox/1.0.8 X-Apparently-From: 62.166.41.135 (Savane authenticated user leonardjo) Message-Id: <20060622-163522.sv26390.98931@savannah.gnu.org> References: <20050817-074744.sv43353.70170@savannah.gnu.org> <20050817-074903.sv43353.82514@savannah.gnu.org> <20050824-171346.sv36205.27820@savannah.gnu.org> <20050824-171735.sv36205.42088@savannah.gnu.org> <20050824-171818.sv36205.45764@savannah.gnu.org> <20050824-233159.sv43353.32054@savannah.gnu.org> <20050825-150703.sv36205.9257@savannah.gnu.org> <20050825-151457.sv36205.18729@savannah.gnu.org> <20050825-151636.sv36205.74102@savannah.gnu.org> <20050825-223719.sv26390.98103@savannah.gnu.org> <20050827-134801.sv26390.3244@savannah.gnu.org> <20050901-004852.sv0.99366@savannah.gnu.org> <20050901-005930.sv0.27393@savannah.gnu.org> <20050901-115641.sv36205.75443@savannah.gnu.org> <20050901-125632.sv36205.52926@savannah.gnu.org> <20050901-130624.sv36205.11367@savannah.gnu.org> <20050901-125903.sv0.26846@savannah.gnu.org> <20050901-160529.sv36205.41473@savannah.gnu.org> <20050928-192305.sv26390.73092@savannah.gnu.org> <20060204-124239.sv20990.85675@savannah.gnu.org> <20060205-18 2853.sv36205.4062@savannah.gnu.org> <20060206-162416.sv36205.99349@savannah.gnu.org> <20060206-170248.sv36205.51816@savannah.gnu.org> <20060206-171801.sv36205.40773@savannah.gnu.org> <20060206-233551.sv43353.92961@savannah.gnu.org> <20060207-112156.sv36205.91051@savannah.gnu.org> <20060211-094438.sv47312.91557@savannah.gnu.org> <20060211-193147.sv36205.34816@savannah.gnu.org> <20060306-113212.sv36205.16134@savannah.gnu.org> <20060306-153157.sv36205.31998@savannah.gnu.org> <20060621-194845.sv26390.25842@savannah.gnu.org> <20060622-153919.sv36205.75620@savannah.gnu.org> <20060622-154303.sv26390.2544@savannah.gnu.org> <20060622-172115.sv36205.4532@savannah.gnu.org> In-Reply-To: <20060622-172115.sv36205.4532@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.569 tagged_above=-999 required=2 tests=[AWL=0.031, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.569 X-Spam-Level: X-Mailman-Approved-At: Fri, 23 Jun 2006 08:55:54 -0400 X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Jun 2006 14:35:57 -0000 Follow-up Comment #29, bug #14155 (project mc): Sorry. I took comment #26 as a "we can close this report", and thought you still weren't aware you could close bugs. Well, you can reopen it yourself if you want. _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Fri Jun 23 16:11:47 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id A0C263B04C1 for ; Fri, 23 Jun 2006 16:11:47 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 02632-04 for ; Fri, 23 Jun 2006 16:11:43 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 458263B06F5 for ; Fri, 23 Jun 2006 16:11:43 -0400 (EDT) Received: (qmail invoked by alias); 23 Jun 2006 20:11:41 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp027) with SMTP; 23 Jun 2006 22:11:41 +0200 X-Authenticated: #14308112 Date: Fri, 23 Jun 2006 23:10:28 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <20060622161011.GC3368@ugly.local> Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <20060622161011.GC3368@ugly.local> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 20:11:47 -0000 On Thu, 22 Jun 2006, Oswald Buddenhagen wrote: > On Thu, Jun 22, 2006 at 05:30:38PM +0400, Igor Russkih wrote: >>>> already implemented. >>> I should look for that switch then :) . >> It's a runtime option in editor's settings dialog. You'll find it easily ;) >> > fwiw, i think this is silly. typical example of over-configurability. if > it has to be runtime-switchable (why?), don't put it in the dialog at > least. Today I've modified Igor's patch as follows: 1) The part of his patch which depends on libcolorer is built as shared library (libcolorer_glue). The library exports a single method which is used to get an array of function pointers - these are methods from the library that the editor calls. 2) The part of his patch which doesn't directly depend on libcolorer remains in the editor source tree (only C code). It exports a set of functions which the code in libcolorer_glue needs to query to the editor, again passed as an array of functions pointers. 3) The editor tries to dynamically load libcolorer_glue.so and if it fails it fallbacks to the default syntax highlighting code. Otherwise colorer is used. These changes allow one to build MC with colorer support but doesn't require libcolorer to be present on the target system. I've made also some other changes - mainly related to the autoconf stuff. Since I am to tired to diff now I'll post patches tomorrow. From INVALID.NOREPLY@gnu.org Fri Jun 23 19:07:00 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EB3193B0968 for ; Fri, 23 Jun 2006 19:06:59 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 10295-10 for ; Fri, 23 Jun 2006 19:06:56 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id C31D33B0957 for ; Fri, 23 Jun 2006 19:06:56 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Ftujd-0000Pu-00; Fri, 23 Jun 2006 19:06:45 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Fri, 23 Jun 2006 23:06:44 +0000 Date: Fri, 23 Jun 2006 23:06:44 +0000 To: SGh , Pavel Tsekov , Leonard den Ottolander , mc-devel@gnome.org Subject: [bug #16303] More functionally u7z From: SGh X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16303 User-Agent: Opera/8.51 (X11; Linux i686; U; ru) X-Apparently-From: 80.91.160.214 (Savane authenticated user sgh) Message-Id: <20060623-230644.sv45177.8861@savannah.gnu.org> References: <20060408-134359.sv45177.11632@savannah.gnu.org> <20060408-134508.sv45177.86924@savannah.gnu.org> <20060408-134854.sv45177.29103@savannah.gnu.org> <20060518-165152.sv36205.74443@savannah.gnu.org> <20060530-195233.sv45177.57929@savannah.gnu.org> <20060621-193556.sv26390.77497@savannah.gnu.org> <20060621-191535.sv45177.54566@savannah.gnu.org> In-Reply-To: <20060621-191535.sv45177.54566@savannah.gnu.org> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.571 tagged_above=-999 required=2 tests=[AWL=0.029, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.571 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 23 Jun 2006 23:07:00 -0000 Follow-up Comment #6, bug #16303 (project mc): Here is my patch to original u7z, fixed things: 1) Detection if we have 7z or only 7za installed. (With 7z we can work with all 7z-supported archives, i.e. CABs, etc... Only have to rename this script in ucab.) 2) Workaround for old version p7zip archives with prefix ./ in filenames. 3) Fixed directory creation in mcu7zip_mkdir, now it works properly. _______________________________________________________ Additional Item Attachment: File name: u7z.patch Size:1 KB u7z patch _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From ptsekov@gmx.net Sun Jun 25 11:04:16 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 440133B0079 for ; Sun, 25 Jun 2006 11:04:16 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18607-01 for ; Sun, 25 Jun 2006 11:04:13 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 4E6B43B008C for ; Sun, 25 Jun 2006 11:04:12 -0400 (EDT) Received: (qmail invoked by alias); 25 Jun 2006 15:03:15 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp041) with SMTP; 25 Jun 2006 17:03:15 +0200 X-Authenticated: #14308112 Date: Sun, 25 Jun 2006 18:02:00 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Where to report issues with mccolorer? In-Reply-To: <861727ef0606230408p69fe14dbhf846cedd458dfb0e@mail.gmail.com> Message-ID: References: <1150989075.2807.39.camel@athlon> <861727ef0606230408p69fe14dbhf846cedd458dfb0e@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jun 2006 15:04:16 -0000 On Fri, 23 Jun 2006, Igor Russkih wrote: >>> (I'm seeing a crash when opening the syntax highlighting dialog for the >>> old syntax highlighting.) >> >> Find attached a patch. >> > Thanks, Pavel! There are some issues with edit_syntax_colorer_dialog() too: 1) The number of elements allocated for 'groups' is one less than it should be. The extra element is needed for the NULL terminator. Memory could be overwritten if the number of groups is equal to the number of syntax types i.e. unique groups. This is unlikely to happen but still... 2) This one is worse because it trashes memory every time :) The memory allocated for 'types' in the while loop is used to store the descriptions of the syntax types and the names of the syntax types. Syntax type names are stored starting at the end of the array and syntax names are stored at the beginning. Now this line is wrong : types[types_list[0].items_number * 2 - types_num] = types_list[idx].name The first time it is invoked it trashes the memory after the last element of the 'types' array. I fixed it like this: types = g_malloc(sizeof(char*) * ((types_list[0].items_number * 2) + 1)); i.e. allocat one more element. It makes sense to do so because you use a NULL terminator for which no space is allocated again and this extra bytes makes the wrong indexing above work as expected. From ptsekov@gmx.net Sun Jun 25 16:16:36 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72FA33B02DF for ; Sun, 25 Jun 2006 16:16:36 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31539-10 for ; Sun, 25 Jun 2006 16:16:25 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id E6E853B016D for ; Sun, 25 Jun 2006 16:04:45 -0400 (EDT) Received: (qmail invoked by alias); 25 Jun 2006 20:04:23 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp022) with SMTP; 25 Jun 2006 22:04:23 +0200 X-Authenticated: #14308112 Date: Sun, 25 Jun 2006 23:03:09 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <20060622161011.GC3368@ugly.local> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jun 2006 20:16:36 -0000 Hello, Find attached the patch. In order to build MC you have to run libtoolize in the MC source tree. I've added the ability to tell configure where you colorer is installed. You can pass the colorer directory via the --with-colorer configure option - for example: --with-colorer=/home/ptsekov/colorer This command line option defaults to /usr/local. This patch is just a proof of concept thing. I am posting it so that you can test it and then we can discuss it. Igor, do you mind moving the declarations of the classes found in syntax-colorer.cpp to syntax-colorer.h ? This way we could move all the C functions from syntax-colorer.cpp to syntax-colorer-interface.cpp and make them static and only accessible thru colorer_interface_t. On Fri, 23 Jun 2006, Pavel Tsekov wrote: > On Thu, 22 Jun 2006, Oswald Buddenhagen wrote: > >> On Thu, Jun 22, 2006 at 05:30:38PM +0400, Igor Russkih wrote: >>>>> already implemented. >>>> I should look for that switch then :) . >>> It's a runtime option in editor's settings dialog. You'll find it easily ;) >>> >> fwiw, i think this is silly. typical example of over-configurability. if >> it has to be runtime-switchable (why?), don't put it in the dialog at >> least. > > > Today I've modified Igor's patch as follows: > > 1) The part of his patch which depends on libcolorer > is built as shared library (libcolorer_glue). The library > exports a single method which is used to get an array > of function pointers - these are methods from the library > that the editor calls. > > 2) The part of his patch which doesn't directly depend > on libcolorer remains in the editor source tree (only > C code). It exports a set of functions which the code > in libcolorer_glue needs to query to the editor, again > passed as an array of functions pointers. > > 3) The editor tries to dynamically load libcolorer_glue.so > and if it fails it fallbacks to the default syntax highlighting > code. Otherwise colorer is used. > > These changes allow one to build MC with colorer support but > doesn't require libcolorer to be present on the target system. > > I've made also some other changes - mainly related to the autoconf > stuff. > > Since I am to tired to diff now I'll post patches tomorrow. From ptsekov@gmx.net Sun Jun 25 16:17:03 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 8F76F3B035B for ; Sun, 25 Jun 2006 16:17:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 31756-01 for ; Sun, 25 Jun 2006 16:16:47 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id A94903B0018 for ; Sun, 25 Jun 2006 16:06:13 -0400 (EDT) Received: (qmail invoked by alias); 25 Jun 2006 20:05:56 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp039) with SMTP; 25 Jun 2006 22:05:56 +0200 X-Authenticated: #14308112 Date: Sun, 25 Jun 2006 23:04:36 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: Message-ID: References: <20060620060123.GD99474@inode.hvn> <861727ef0606210531s3aec30f8u2a28af9af1e59cf4@mail.gmail.com> <861727ef0606210550k7e64f4f6qb4de7e8a4c6ed4dc@mail.gmail.com> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <20060622161011.GC3368@ugly.local> MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="-559023410-851401618-1151265835=:10990" Content-ID: X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.478 tagged_above=-999 required=2 tests=[AWL=-0.013, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001] X-Spam-Score: -2.478 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 Jun 2006 20:17:03 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. ---559023410-851401618-1151265835=:10990 Content-Type: TEXT/PLAIN; CHARSET=US-ASCII; FORMAT=flowed Content-ID: I forgot to attach the patch :( ---559023410-851401618-1151265835=:10990 Content-Type: APPLICATION/octet-stream; name=colorer-dynload.patch.gz Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: attachment; filename=colorer-dynload.patch.gz H4sICArGnkQCA2NvbG9yZXItZHlubG9hZC5wYXRjaADsPWt32zayn+1fgbq3 qSRLsuRXGil26yp24nucOFd2tu3J5uhQJCRxQ4lakrLju/X+9juDB4kXJdlN 2rP3JNu1SQAzGAxmBjMDEA7C0Yg03iSLOWl8Ir2/XeGv72vNOAnH34vnhP5D PP6b/25+W2MP3iKLp/sZbfqeP6HEj6g325n6O34cxQlNBuNoQXdeex/pKIxo 05uSJXWbjUZjNYaN9rOnrUarDf+R1m6n1YL/mi35j2y3dlutze3t7WU9bUCb wwb8t7tP2nud3YPO/tPmD3sHh/uHHMce4PjpJ9Jo1eGtXW+3yU8/bW73Li8u +6f9wfmb3sW7F6dX5Ij8ZJYpzS7Of9aa4DtUR+FQpWsQeYPe2cXJS2z7XxUT XxXKXgKkaFN1w//660MwMByDi2so7J/0z9lADKzNyBPtzL6uLt/1ewzk75vb G+ndLPM+NUSjpj+fE72oEc4ymow8H0SkBOPFC5t45FWVNCLRdjP44kJaTjZZ v+kSES4HerREL0GZC/gBaf/Q2Xvaae02dw/29/Z3nQK+v8cEfKe2uU0I6cXz O+DrJCOVXpUgKnI+jhPSX6Tpx3BCnoeJePIyMp56YUSCOCN+PD3GKQYM15Mw JfMkHieg8vA4SiglaTzKbr2EdsldvCC+NyMJDcI0S8LhIqMkzIg3C3agn2kM 033HEEHhYhbQhGQwcTC8aUriEXt5+eYdeUlnNPEi8nYxjEKfXIQ+naWUeNA3 lqQTGpAhR4QgZ0jFlaCCnMWA2cvCeNYlNIT6hNzQJIV3sis7ERjrJE4YlgoM GIhPSDxHwCpQfEciLytgmyUcKAYakHDGkE/iOYxpAihhlLdhFJEhJYuUjhZR neGA1uSX8+tXl++uycmb38gvJ/3+yZvr37rQOpvEUEtvKMcVTudRCKhhZIk3 y+5gAAzF69N+7xXAnPx8fnF+/RuMg5ydX785vboiZ5d9ckLenvSvz3vvLk76 5O27/tvLq9MmIVcUCaMMwxI+j9hcASsDmoEQpHLsv8H0pkBfFJCJd0Nhmn0a 3gB1HsjI/G71DDIsXhTPxmyk0LpgZpeEIzKLszq5TUIQmyy255bBF/NbJ+cz v1knB21o5s0+RjABVxkAAJKzcAQdnEVxnNTJz3GaYfPXJwxDa7fdbjXae612 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 5OS+D/GYiwKgaFxtV2Mio2x5++12zh2jBymEBiJZnEtwDsZKJTNyKJeDqeqm 9bnUuh9LlWyrvf9AJDVWRSlBJZ/PWR/tLVnDDVDXxSn6roCWccKjlqBylUa7 znOA7p0E864WdfnS6t7rO4iNYyxlGbJKdbv9wYm87DjWElRlK5xOC1ss8BGw msiAxedQIxaLLP5IZ0tWIAdesYO0HG80i1djwmzRSkz6OfX7kqlZxv6cFflu uPRQXTKTr2fabQbGN8MOsWQbjGVnMh7uFRoNHnraw+V6W1dNVaxvnJ2j0p3C f6191I21d2en7PzzkvGmynjl8sOoreY5th8ZRtLR0vlOz4R/BbvkjMBIoYsf w9SOEJtH2/VvYtRtDrneF6dVSI1v6bj3t0d4jEru+QzZwZwf83f22smPjXR1 0KEGyg7iFKDstZOfMzFAE+3WrOJwJ6DcJpXR+Pnzfc0TR4FgMK6jvhzZiqM1 yqGa0fiDdshmOP5QtU6P2ZRtS7rYqLNVB6cQ6Lu08x2mpr8LPvCTM8upqBN1 /PVV/Fme1ixI1ORHXQzNb4T4P/VkfnF+FSus4yj5ITYG5zzNon0hULMOraAw WEfD7ONJypkjAZin31nX5hkboXuWF6985GXUWc69arn5/4pLbPgHdpvb9vf0 6g1n5BHHuIVoO3Ly8kYs7KDD9nG1+yHE90y5xSyWG+00lk2xGR3rn+iDedWa 6Wee5GiKEQhofSeW3XZm3ndo3yznup5gHY4gpq1iVyc/VIxEm9zIW8nPN4xh dl21TvqtKw0ffKtGPjYXxXZmSndoa8Y9ivkIlAvsKvqJFXsM2mWKqy/z+EME 23Sqp7XUC0Puza8+nTvsy4RlPfqsnR9dahVK3Vv8LlLVLPmfSaGWne9yI28R Z+xnfQb6WmuSZ+6kdVdSl29F/GVUFpshZROtZ5T/7Ok28tmSSFeyueSqzEpB oOjJWAWt9uWWvOhu1YUsxQW2Ml63snu5/XCb3cfm+Fzff3c6FkaBo7irxT3i xyUz3DTYCJ1EWH6D45pf8jkE0f6Acako6kGqW7lXU+m4/eqLKZBJT76TcK97 dka6p/S63b+A6UbGqlxQVxFaXyu55dBbM5Fh91/EvW65l/UF4//8a3FXXob7 gCtwP9vFt9Z1t/utTnu/edA+OCj7CxW77YddQ0Qm1Avwg4qvtxF9vY3o621E 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 y2mbJ45ElOiZzwb3vf589KDQY43hoZv8CxKzrI02JBt9NGGAi6klaWXiOXxA bsACpV6Bw8wNbTdwHAG9eEKRKDNMMN974GcX0Mb5sVvOgW4rGoOVMafcFFc7 aKA/s6xBNBiobDlhFBMmr5svp3HhR1nL4X2a2Ppyusyqdos+jRqaC52b4vl0 cZTc8vI1ZnLUZo9qo7FMCbbKCGRZJdPFNP4wPa0Rjf5F+Hu9Kv4KhRT8nTnw VzCE+l/A36IFOzxNVe55wMbqeojnrB5LmUawLFSCCkL6Kf/rYGxdtZLQ9SxU oj22bbtbyixU6S3tPFTp2agWpw9bMpnHXY6pT3SXawyn/LeeuNpsJ7JWy9nJ DnyW4dTRcVEX/n8MqHI2uhnMr8LzWVEeajftY+7CXoNYr8ESveRBy+qqnb+S +2uqDsZDOc5nC7rzw5Y2tHyU2k+dlcwT1sJPtcaSj5bqJ2K1XKeoxeTEk/ym +4Sf2lmeV+zO8vnCkUWNvs0kAZQKQEkVrb96ltqTfKcirhML1aFTjmdBMh4L GHeRH0gtLh1u+8mKXadZ4q8WmeqvlncPXP1d7oGEBDCVUqPhO90D5foP78AP 78AP78C/rBz2b4cYIplaFltr8p1m7/Z32rDb0oy7nBW3vZRxNqFtkrW1vZwJ tb26Ka79nebQ9tJmend6QicAtcHHASQO6Dg6qA5LnApY4rGg/Y/ULFUFMe0H idupcopXMGMn7J0+7KDpSbGsjurua7lVrhe9WrPkVayybzznXs2RszMq1Jh8 V+3vTOWZcusuVvfNciCuxRyILMmBuGb6D1my/3DNdh/S7fYGJZirNH2RfVfP 7IzFrWe401GYCSb+inJnImr/nhSfqybMl/nyn5tBKkZU/59/sucRAvGqiLzB 9VLmHNPw60z4Fezsb3c/sxa/f2XEQNMFr4SYZx0L7vo7Bh5USrHUfDKyZlLh Fx7vs76uAWGvbccfvH/GEv9JQRvA1bBG9ZgSeSAybUe1LLIxf2L0hZTNsNbk 6QwrIsn/shlljeovIoG/flNr1exzSXFhxoW5xIRzrhdR9GACJblR1KanqD6K n3MOuvk0fAhkQdLsutmkHStNRdPkSX09r0Go9XxP1pZNTOmrMvrihYWXE1E+ 6/lL02FL9a4o8gsa6OwfBQSvnlsJgZL1JJZryYFPB5H0S4tmL37QdN5ATVld gh4XNNq435sH58NpABMQtbtQrOKjvJ66VFJCnm8DrE8mWSeq+ZVnE3Hb6YKv E5AzFopBuOQBu6J0HmNcQZvCMhbnZq5TEMPzoMrcE6XCiDYo2tC1n+Z2rr1Q afr8Mka4lf2W10g6C8e78a2cjtCVcrFcq1btwLhyned6qtdF4hWVFsRIn8Yf E6WzLLM3nPXRsQ1Hr8moh8mezwcT2PEyIvkIoJpfnOaPg+F5ltltGeAaDh5I pYDIhASP4h2pnCUcsA4xkaI4HMSXgTYtls2IA3tGq6AYMWjGxbVqCvGKQLLg Y9RAIgKT3HMMqXo31QqvGVr1ReojvoRiaLyYTy5mAYC8fwBlgu4QnYdCfMiv kMiFtlpLiiOADSIToSkxIagJbxFWMiIBKK8v6URS8p1tLYMmiV4WH199D4Yg DC/HAB0X+yzD09aIFDTiVjONh4tVlWiMvzdKKcVfs5PSae6p1++Vud6uktYv maAqBc8vlMqYZhZrvNcXr98Ey1W9XvWs9evzMjKS7/Ts13HUnJxGCa75Jc/B 9Ca9BX8pLoCM9FZp+Y6T+IXVKlGq7IR8FadGVlYtHTcdwOCLRoMLqihpZeuW r8m+5nj/bTA9C2fw0CAVj0K8nQ6KvUholupYswCEpldKOjg5+4Gw9UtI45JX rPplkAp2PtQyT4hazpd5snLKVMvjxG9ml5uZcQgnpwvUxDbOxyP6I7JD8pxB RfGqsxV0Dt8FaMaSqkA+8tCdMFYooIlHHpw2o0Ti3XHvbDRQcMUFVpnQipbQ ycNgdnqKTuNnG0pZBSDjMKrZrCa8AXwwR5vn/U84omyM6sf9OGyjFWnMjxPU KmM2y4AQvIfhVDulN2Jt4c3Mq9vZ9NUo7PdGGdRiyBNrtzEBwntA4QZbAxR9 PDx4F2x9/qz/3N15c3xwsAvN4MnRpzdHx1nJsTv7W7uftrtHIJsKOz/pg7wS Rz55OM3kXP0BNPXdNfuOhmey/Xb37c5+N6utG6r2dbLNl848ZAODPEiDNZ0E gCq9OjMSAR5lOPS9o3dwvjre2epmT25nw8ie5byWzU3aOALiC3c+4rerQf8a hSta/w6O0MYqWI+MvjzmJBzPQkxYBRvwtMiLm1OytelmJsN5vUZGgmqzJGrW CeoXxizzE37P7ObsYpYRVOc8zzp7gJR9OCbuHOx3dglJeGgE9Jh9KeM9ztvR QWHV6iPpBt1c4/z69kh2AQbFDt9geoI3k/sE+101vXs+0FioPtR5Pr0dJPT+ BEff3SAaVs0U7fIjGPyUnzqq3HpQgzMHYRKY6dVe73qAaskzhpuG9mvUG1+q 34yX8tN+bximFa0fcYf24Kai/cARb/pFEKY0oVqllK/ChGp1XttkS8hCMgm3 cG/+DLsRWtDnWqYz+c9Pf6CVjXLy3XteIN4/Yrff0CQ9uz2bXQ1GI6vnT3/I F9R0B48rsCMJ31dLP3v/9IcUqBR+sJWwAlrUVFtIBPiIj8pdO7BFwS7aigCL J6J1xtxLJMKKvRuRmB53BdS/K03Q3JO2EqubvpPUcCdp+o0mpaXXt31KSS/z agN7fTo+2Ot86IqiNEcY01bE2jUb9h4N8gp2AmwAm+KITUIgNQNW56zDdP7g 5ylgMGQAUFT7AoWwhdO+tQBUcm+pZ3c/Hx92gu2do2O6+/0f0Pq3PoC2wHb2 j447u7vFtx14tdfZgVMhCE0Y6rDb2d7rFv+z/5kdH2wfsMk1SLCLsDgcoyY/ D/H0hj+AW79OLvF/s8mg/+z/AByqCwGL+gAA ---559023410-851401618-1151265835=:10990-- From irusskih@gmail.com Mon Jun 26 09:42:38 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 111A63B03DD for ; Mon, 26 Jun 2006 09:42:38 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 21373-08 for ; Mon, 26 Jun 2006 09:42:37 -0400 (EDT) Received: from nz-out-0102.google.com (nz-out-0102.google.com [64.233.162.207]) by menubar.gnome.org (Postfix) with ESMTP id 041D23B030E for ; Mon, 26 Jun 2006 09:42:36 -0400 (EDT) Received: by nz-out-0102.google.com with SMTP id 40so1223015nzk for ; Mon, 26 Jun 2006 06:42:36 -0700 (PDT) Received: by 10.64.114.10 with SMTP id m10mr4858289qbc; Mon, 26 Jun 2006 06:42:36 -0700 (PDT) Received: by 10.65.150.4 with HTTP; Mon, 26 Jun 2006 06:42:36 -0700 (PDT) Message-ID: <861727ef0606260642j2e005a12u9b73c9183fcca227@mail.gmail.com> Date: Mon, 26 Jun 2006 17:42:36 +0400 From: "Igor Russkih" To: "Pavel Tsekov" Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20060620060123.GD99474@inode.hvn> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <20060622161011.GC3368@ugly.local> X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.463 tagged_above=-999 required=2 tests=[AWL=-0.063, BAYES_00=-2.599, DNS_FROM_RFC_ABUSE=0.2, SPF_PASS=-0.001] X-Spam-Score: -2.463 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jun 2006 13:42:38 -0000 Hello, > This command line option defaults to /usr/local. This patch is > just a proof of concept thing. I am posting it so that you can > test it and then we can discuss it. For me this patch looks fine, its good idea for MC to detect colorer's library presence in runtime. However the implementation is not rather straightforward because of that separate glue library. If such a dynamic loading is best case for MC, maybe it is worth implementing it in more 'valid' way? I mean I can develop a set of 'neutral' C API, which will be included directly into libcolorer. Then MC can dynamically load libcolorer and import all the required API functionality as it imports 'colorer_get_interface' via gmodule in Pavel's version. Surely it will require additional efforts as on my side, as on MC side, but with this we'll get better colorer's integration with MC. Moreover colorer will get a general C-based API, which it doesn't have now. Pavel, whats your opinion on this? > Igor, do you mind moving the declarations of the classes found in > syntax-colorer.cpp to syntax-colorer.h ? This way we could move > all the C functions from syntax-colorer.cpp to > syntax-colorer-interface.cpp and make them static and only accessible > thru colorer_interface_t. Within this model surely it can be changed in this way. -- Igor From ptsekov@gmx.net Mon Jun 26 12:23:54 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 2F7093B036C for ; Mon, 26 Jun 2006 12:23:54 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 32045-09 for ; Mon, 26 Jun 2006 12:23:52 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 049713B0196 for ; Mon, 26 Jun 2006 12:23:51 -0400 (EDT) Received: (qmail invoked by alias); 26 Jun 2006 16:23:50 -0000 Received: from 87-126-42-109.btc-net.bg (EHLO sole) [87.126.42.109] by mail.gmx.net (mp023) with SMTP; 26 Jun 2006 18:23:50 +0200 X-Authenticated: #14308112 Date: Mon, 26 Jun 2006 19:22:35 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Igor Russkih Subject: Re: Midnight Commander mod with Colorer-take5 syntax engine In-Reply-To: <861727ef0606260642j2e005a12u9b73c9183fcca227@mail.gmail.com> Message-ID: References: <20060620060123.GD99474@inode.hvn> <1150898573.2801.45.camel@athlon> <861727ef0606211226n57a4cbacn7855f0f56463afcb@mail.gmail.com> <1150920303.2801.89.camel@athlon> <861727ef0606220317m786c42ddne3b400f27348c3c6@mail.gmail.com> <1150978143.2807.11.camel@athlon> <861727ef0606220630t373940bjbd86d10adb5971c9@mail.gmail.com> <20060622161011.GC3368@ugly.local> <861727ef0606260642j2e005a12u9b73c9183fcca227@mail.gmail.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.545 tagged_above=-999 required=2 tests=[AWL=0.055, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.545 X-Spam-Level: Cc: MC dev X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Jun 2006 16:23:54 -0000 Hello, On Mon, 26 Jun 2006, Igor Russkih wrote: > For me this patch looks fine, its good idea for MC to detect colorer's > library presence in runtime. > > However the implementation is not rather straightforward because of > that separate glue library. Yes, it adds another level, but at the moment it is the only working solution. By using this library we avoid linking to libcolorer at build time. > If such a dynamic loading is best case for MC, maybe it is worth > implementing it in more 'valid' way? I mean I can develop a set of > 'neutral' C API, which will be included directly into libcolorer The dynamic loading is desired since it drops the dependency on libcolorer. For the package maintainer this means that she/he can build MC with colorer support but the package will not pull libcolorer unless specifically requested to do so (by the user). This is very important IMHO. > Then MC can dynamically load libcolorer and import all the required > API functionality as it imports 'colorer_get_interface' via gmodule in > Pavel's version. Yes. > Surely it will require additional efforts as on my side, as on MC > side, but with this we'll get better colorer's integration with MC. > Moreover colorer will get a general C-based API, which it doesn't have > now. > > Pavel, whats your opinion on this? If you are willing to change colorer so that it will become C-friendly you are more than welcome. Providing a generic interface seems a better solution than writing a new plugin for every editor in the wild. Of course custom plugins could be tuned better to fit the specific requirements of XYZ editor. I think it is up to you after all - either way I'll try to help getting colorer support into MC. From leonard@den.ottolander.nl Tue Jun 27 09:09:09 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 72ACC3B008D for ; Tue, 27 Jun 2006 09:09:09 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30079-04 for ; Tue, 27 Jun 2006 09:09:08 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id D41E73B0084 for ; Tue, 27 Jun 2006 09:09:07 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 2E6DC4026 for ; Tue, 27 Jun 2006 15:08:30 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id xShjqIOGYA0c for ; Tue, 27 Jun 2006 15:08:26 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 948134021 for ; Tue, 27 Jun 2006 15:08:26 +0200 (CEST) Subject: Crash in mccolorer when choosing old syntax highlighting From: Leonard den Ottolander To: MC development Content-Type: text/plain Date: Tue, 27 Jun 2006 15:08:21 +0200 Message-Id: <1151413701.2841.22.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 13:09:09 -0000 Hi, (The patch by Pavel Tsekov did not fix the issue I was seeing, but then I didn't yet report what it was exactly.) How to reproduce: Edit a file Choose options->general menu Disable colorer Choose options->syntax highlighting boom (Backtrace is for mccolorer with Pavel's patch applied.) I suppose the switching to the menu's necessary for the old syntax highlighting doesn't yet work correctly. #0 0x080aaf1e in colorer_get_handle (edit=0x0) at syntax-colorer-wrapper.c:50 #1 0x080a97ab in colorer_free_syntax_rules (edit=0x0) at syntax-colorer.cpp:493 #2 0x080a7839 in edit_load_syntax (edit=0x0, pnames=0xbfaee638, type=0x0) at syntax.c:1203 #3 0x080a8ca5 in edit_syntax_dialog () at choosesyntax.c:66 #4 0x0807952c in menubar_execute (menubar=Variable "menubar" is not available. ) at menu.c:242 #5 0x08079d98 in menubar_callback (w=0x9697268, msg=WIDGET_HOTKEY, parm=10) at menu.c:326 #6 0x08063ebe in dlg_process_event (h=0x96722b8, key=10, event=0xbfaee6e4) at dialog.c:603 #7 0x080640d4 in run_dlg (h=0x96722b8) at dialog.c:785 #8 0x080a25f5 in edit_file (_file=0x9667908 "Makefile", line=0) at editwidget.c:217 #9 0x0805e39a in do_edit_at_line (what=0x9667908 "Makefile", start_line=0) at cmd.c:270 #10 0x0805e3e6 in do_edit (what=Variable "what" is not available. ) at cmd.c:289 #11 0x08095643 in buttonbar_call (bb=Variable "bb" is not available. ) at widget.c:2279 #12 0x08095831 in buttonbar_callback (w=0x966e0a8, msg=WIDGET_HOTKEY, parm=1004) at widget.c:2301 #13 0x08063d17 in dlg_process_event (h=0x9658298, key=1004, event=0xbfaee804) at dialog.c:614 #14 0x080640d4 in run_dlg (h=0x9658298) at dialog.c:785 #15 0x08078c16 in main (argc=1, argv=0xbfaefa24) at main.c:1675 Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Tue Jun 27 09:11:43 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id E1A1C3B0084 for ; Tue, 27 Jun 2006 09:11:42 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 30031-10 for ; Tue, 27 Jun 2006 09:11:40 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id 728063B012D for ; Tue, 27 Jun 2006 09:11:36 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id BEB36403C; Tue, 27 Jun 2006 15:11:21 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id UkhQHR1PwEmH; Tue, 27 Jun 2006 15:11:21 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id 46DBC4026; Tue, 27 Jun 2006 15:11:21 +0200 (CEST) Subject: Re: Snapshots availability From: Leonard den Ottolander To: Pavel Roskin In-Reply-To: <1151000137.3539.23.camel@dv> References: <1150924866.2801.100.camel@athlon> <1151000137.3539.23.camel@dv> Content-Type: text/plain Date: Tue, 27 Jun 2006 15:11:16 +0200 Message-Id: <1151413876.2841.25.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 13:11:43 -0000 Hello Pavel, On Thu, 2006-06-22 at 14:15 -0400, Pavel Roskin wrote: > Snapshots are not intended for developers. Developers should be using > proper version control systems. Snapshots are for users who want to try > the latest features and check if some bug has been fixed, but who don't > intend to keep the sources up-to-date. Which doesn't contradict the fact that in circumstances it might be useful for me to take a look at a snapshot somebody used to create a mod, like in the case of mccolorer where I did not have the correct snapshot available to diff against. Hence my request. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From leonard@den.ottolander.nl Tue Jun 27 10:39:56 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id EAF473B0500 for ; Tue, 27 Jun 2006 10:39:55 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 03870-10 for ; Tue, 27 Jun 2006 10:39:55 -0400 (EDT) Received: from ananas.ottolander.nl (ottolander.nl [85.10.209.116]) by menubar.gnome.org (Postfix) with ESMTP id C50273B04FC for ; Tue, 27 Jun 2006 10:39:54 -0400 (EDT) Received: from localhost (localhost.localdomain [127.0.0.1]) by ananas.ottolander.nl (Postfix) with ESMTP id 444054026; Tue, 27 Jun 2006 16:39:33 +0200 (CEST) Received: from ananas.ottolander.nl ([127.0.0.1]) by localhost (ananas.ottolander.nl [127.0.0.1]) (amavisd-new, port 10024) with LMTP id DujbSwckqNA4; Tue, 27 Jun 2006 16:39:32 +0200 (CEST) Received: from athlon (ip135-41-166-62.adsl.versatel.nl [62.166.41.135]) by ananas.ottolander.nl (Postfix) with ESMTP id C395E4021; Tue, 27 Jun 2006 16:39:32 +0200 (CEST) Subject: Re: Crash in mccolorer when choosing old syntax highlighting From: Leonard den Ottolander To: Igor Russkih In-Reply-To: <861727ef0606270708j12fe8828p9d5464aa9f426071@mail.gmail.com> References: <1151413701.2841.22.camel@athlon> <861727ef0606270708j12fe8828p9d5464aa9f426071@mail.gmail.com> Content-Type: text/plain Date: Tue, 27 Jun 2006 16:39:26 +0200 Message-Id: <1151419167.2841.42.camel@athlon> Mime-Version: 1.0 X-Mailer: Evolution 2.2.3 (2.2.3-4.fc4) Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.456 tagged_above=-999 required=2 tests=[AWL=0.008, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135] X-Spam-Score: -2.456 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 14:39:56 -0000 Hello Igor, On Tue, 2006-06-27 at 18:08 +0400, Igor Russkih wrote: > For me Pavel's patch fixes the problem. > > However Pavel diff-ed it with original mc source I believe because > this it can fail to apply. > + if (!edit) > + return; > + > #if USE_COLORER > colorer_free_syntax_rules(edit); > return; > #endif After applying Pavel's patch the if (!edit) ended up *after the (first) #if USE_COLORER. Bringing it to the front indeed fixes this crash. Thanks you both. Leonard. -- mount -t life -o ro /dev/dna /genetic/research From proski@gnu.org Tue Jun 27 11:46:24 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 3404A3B02AF for ; Tue, 27 Jun 2006 11:46:24 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 06517-02 for ; Tue, 27 Jun 2006 11:46:23 -0400 (EDT) Received: from fencepost.gnu.org (fencepost.gnu.org [199.232.76.164]) by menubar.gnome.org (Postfix) with ESMTP id D7CB33B015C for ; Tue, 27 Jun 2006 11:46:22 -0400 (EDT) Received: from proski by fencepost.gnu.org with local (Exim 4.34) id 1FvFkw-0003lu-7L for mc-devel@gnome.org; Tue, 27 Jun 2006 11:45:39 -0400 Received: from proski by dv.roinet.com with local (Exim 4.62) (envelope-from ) id 1FvFkW-0004lr-Dl; Tue, 27 Jun 2006 11:45:12 -0400 Subject: Re: Snapshots availability From: Pavel Roskin To: Leonard den Ottolander In-Reply-To: <1151413876.2841.25.camel@athlon> References: <1150924866.2801.100.camel@athlon> <1151000137.3539.23.camel@dv> <1151413876.2841.25.camel@athlon> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 27 Jun 2006 11:45:12 -0400 Message-Id: <1151423112.18089.7.camel@dv> Mime-Version: 1.0 X-Mailer: Evolution 2.7.2.1 (2.7.2.1-4) X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.595 tagged_above=-999 required=2 tests=[AWL=0.005, BAYES_00=-2.599, SPF_PASS=-0.001] X-Spam-Score: -2.595 X-Spam-Level: Cc: MC development X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Jun 2006 15:46:24 -0000 On Tue, 2006-06-27 at 15:11 +0200, Leonard den Ottolander wrote: > Hello Pavel, > > On Thu, 2006-06-22 at 14:15 -0400, Pavel Roskin wrote: > > Snapshots are not intended for developers. Developers should be using > > proper version control systems. Snapshots are for users who want to try > > the latest features and check if some bug has been fixed, but who don't > > intend to keep the sources up-to-date. > > Which doesn't contradict the fact that in circumstances it might be > useful for me to take a look at a snapshot somebody used to create a > mod, like in the case of mccolorer where I did not have the correct > snapshot available to diff against. Hence my request. Contributors should send patches and make sure that the patches only contains their modifications and that the modifications are intended. They should also be able to explain the reasons for every change. If they cannot do it, I would not consider such changes for committing to CVS, for the reason that either the contributor is too sloppy, has problems with memory or is not the original author of all the changes. -- Regards, Pavel Roskin From INVALID.NOREPLY@gnu.org Thu Jun 29 06:41:30 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id CE1033B0286 for ; Thu, 29 Jun 2006 06:41:30 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 04510-06 for ; Thu, 29 Jun 2006 06:41:29 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 142013B020C for ; Thu, 29 Jun 2006 06:41:29 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1Fvtxf-00018T-00; Thu, 29 Jun 2006 06:41:27 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Thu, 29 Jun 2006 10:41:27 +0000 Date: Thu, 29 Jun 2006 10:41:27 +0000 To: Denis Vlasenko , mc-devel@gnome.org Subject: [bug #16967] unrar passworded_file.rar hangs From: Denis Vlasenko X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: bugs X-Savane-Item-ID: 16967 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.9) Gecko/20050711 Firefox/1.0.5 (CK-IBM) X-Apparently-From: 195.212.29.187 (Savane authenticated user vda) Message-Id: <20060629-104126.sv50573.85488@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-1.805 tagged_above=-999 required=2 tests=[AWL=-0.738, BAYES_00=-2.599, RCVD_IN_SORBS_WEB=1.456, SPF_PASS=-0.001, TW_TX=0.077] X-Spam-Score: -1.805 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 10:41:31 -0000 URL: Summary: unrar passworded_file.rar hangs Project: GNU Midnight Commander Submitted by: vda Submitted on: Thursday 06/29/2006 at 10:41 Category: None Severity: 3 - Normal Status: None Privacy: Public Assigned to: None Open/Closed: Open Release: 4.6.1 Operating System: GNU/Linux _______________________________________________________ Details: unrar of password-protected archives hangs (unrar opens /dev/tty and sits there, waiting for the password) The patch adds -p- switch. A few unsafe "$var" expansions are fixed in several etxfs scripts. _______________________________________________________ File Attachments: ------------------------------------------------------- Date: Thursday 06/29/2006 at 10:41 Name: 1.diff Size: 6.49KB By: vda _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/ From master@iaas.msu.ru Thu Jun 29 16:24:39 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id D8EE23B00D0 for ; Thu, 29 Jun 2006 16:24:39 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 07075-05 for ; Thu, 29 Jun 2006 16:24:36 -0400 (EDT) Received: from serv.iaas.msu.ru (serv.iaas.msu.ru [212.192.224.252]) by menubar.gnome.org (Postfix) with ESMTP id 808AA3B007B for ; Thu, 29 Jun 2006 16:24:35 -0400 (EDT) Received: from isaa.radio-msu.net (isaa.radio-msu.net [194.67.81.166]) by serv.iaas.msu.ru (8.13.4/8.13.1) with ESMTP id k5TKOWZR043918; Fri, 30 Jun 2006 00:24:33 +0400 (MSD) (envelope-from master@iaas.msu.ru) Date: Fri, 30 Jun 2006 00:24:06 +0400 (MSD) From: Michail Vidiassov X-X-Sender: master@isaa.radio-msu.net To: Egmont Koblinger Subject: Re: utf8 patch for mc, slang 2 version In-Reply-To: <20060614131621.GE29389@cs.bme.hu> Message-ID: References: <200509191419.01556.arekm@pld-linux.org> <200606071218.32428.nadvornik@suse.cz> <1149685131.2269.10.camel@localhost.localdomain> <200606081202.51002.nadvornik@suse.cz> <20060608181302.GA6254@cs.bme.hu> <1150024126.2478.14.camel@athlon> <20060612083045.GA22700@cs.bme.hu> <20060614131621.GE29389@cs.bme.hu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: ClamAV version 0.88.2, clamav-milter version 0.88.2 on serv.iaas.msu.ru X-Virus-Status: Clean X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.524 tagged_above=-999 required=2 tests=[BAYES_00=-2.599, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, TW_DN=0.077] X-Spam-Score: -2.524 X-Spam-Level: Cc: mc-devel@gnome.org, Tomasz =?iso-8859-2?Q?K=B3oczko?= X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Jun 2006 20:24:40 -0000 Dear All, On Wed, 14 Jun 2006, Egmont Koblinger wrote: > On Tue, Jun 13, 2006 at 07:14:41PM +0200, Tomasz K?oczko wrote: > >> BTW: anyone is working on UFT-8 support for ncurses(w) backend ? > > I don't think so, and I don't think it is worth it. Maintaining two backends > IMHO just causes headaches while it doesn't make mc better. I still can't > see why developers do not decide which one to use and drop the other one. > > With Unicode support maintaining the two will be much harder since AFAIK > slang works with UTF-8 while ncurses uses UCS-4. Hence a completely > different patch would be required for the two cases. > Why not to follow the way used in non-UTF mc, and use curses-like calls (translated to ncurses calls or emulated by slang calls in myslang.h)? I have made mc 4.6.1 with UTF patches compile and run when linked against ncrurses 5.4 by replacing SLsmg_write_nwchars by addnwstr. Thus, it may be a good idea to use addnwstr as the wide character output routine, addnwstr being a ncurses call or a wrapper around SLsmg_write_nwchars (along the lines addch is implemented now). Sincerely, Michail From apmah@gmx.net Fri Jun 30 00:52:03 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 00F3A3B007D for ; Fri, 30 Jun 2006 00:52:03 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 26203-02 for ; Fri, 30 Jun 2006 00:51:59 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 2E3603B0013 for ; Fri, 30 Jun 2006 00:51:59 -0400 (EDT) Received: (qmail invoked by alias); 30 Jun 2006 04:51:58 -0000 Received: from 84-72-42-55.dclient.hispeed.ch (EHLO nostromo5) [84.72.42.55] by mail.gmx.net (mp028) with SMTP; 30 Jun 2006 06:51:58 +0200 X-Authenticated: #23139764 Date: Fri, 30 Jun 2006 06:51:57 +0200 From: Hampa Hug To: mc-devel@gnome.org Subject: [patch] Fix test for getmntinfo on NetBSD 3.0 Message-Id: <20060630065157.355f1d8c.apmah@gmx.net> X-Mailer: sylpheed Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Multipart=_Fri__30_Jun_2006_06_51_57_+0200_iufg09lLLRp0ZxFM" X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-0.196 tagged_above=-999 required=2 tests=[AWL=-0.816, BAYES_05=-1.11, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001, TW_TM=0.077, TW_TV=0.077, TW_UF=0.077, X_MAILER_SPAM=1.365] X-Spam-Score: -0.196 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list Reply-To: Hampa Hug List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 04:52:03 -0000 This is a multi-part message in MIME format. --Multipart=_Fri__30_Jun_2006_06_51_57_+0200_iufg09lLLRp0ZxFM Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Hello It would seem that the test in acinclude.m4 for a NetBSD 3.0 style getmntinfo() is wrong. The attached patch fixes this. >From the NetBSD 3.0 man page for getmntinfo(3): RETURN VALUES On successful completion, getmntinfo() returns a count of the number of elements in the array. The pointer to the array is stored into mntbufp. If an error occurs, zero is returned and the external variable errno is set to indicate the error. Although the pointer mntbufp will be unmodi- fied, any information previously returned by getmntinfo() will be lost. Hampa --Multipart=_Fri__30_Jun_2006_06_51_57_+0200_iufg09lLLRp0ZxFM Content-Type: text/plain; name="mc-getmntinfo.diff" Content-Disposition: attachment; filename="mc-getmntinfo.diff" Content-Transfer-Encoding: 7bit diff -ur mc-cvs/acinclude.m4 mc-dev/acinclude.m4 --- mc-cvs/acinclude.m4 2006-06-20 17:04:13.000000000 +0200 +++ mc-dev/acinclude.m4 2006-06-29 04:21:45.000000000 +0200 @@ -306,7 +306,7 @@ main () { struct statvfs *mntbufp; -exit (getmntinfo (&mntbufp, MNT_NOWAIT)); +exit (getmntinfo (&mntbufp, MNT_NOWAIT) == 0); }], mc_cv_sys_mounted_getmntinfo_statvfs=yes, mc_cv_sys_mounted_getmntinfo_statvfs=no, --Multipart=_Fri__30_Jun_2006_06_51_57_+0200_iufg09lLLRp0ZxFM-- From ptsekov@gmx.net Fri Jun 30 03:47:01 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id B0D203B0127 for ; Fri, 30 Jun 2006 03:47:01 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01677-04 for ; Fri, 30 Jun 2006 03:47:00 -0400 (EDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.21]) by menubar.gnome.org (Postfix) with SMTP id 430E33B00C7 for ; Fri, 30 Jun 2006 03:47:00 -0400 (EDT) Received: (qmail invoked by alias); 30 Jun 2006 07:46:58 -0000 Received: from 87-126-67-123.btc-net.bg (EHLO sole) [87.126.67.123] by mail.gmx.net (mp010) with SMTP; 30 Jun 2006 09:46:58 +0200 X-Authenticated: #14308112 Date: Fri, 30 Jun 2006 10:45:42 +0300 (EEST) From: Pavel Tsekov X-X-Sender: ptsekov@sole To: Hampa Hug Subject: Re: [patch] Fix test for getmntinfo on NetBSD 3.0 In-Reply-To: <20060630065157.355f1d8c.apmah@gmx.net> Message-ID: References: <20060630065157.355f1d8c.apmah@gmx.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Y-GMX-Trusted: 0 X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.401 tagged_above=-999 required=2 tests=[AWL=-0.090, BAYES_00=-2.599, FORGED_RCVD_HELO=0.135, SPF_PASS=-0.001, TW_TM=0.077, TW_UF=0.077] X-Spam-Score: -2.401 X-Spam-Level: Cc: mc-devel@gnome.org X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 07:47:01 -0000 Hello Hampa, On Fri, 30 Jun 2006, Hampa Hug wrote: > It would seem that the test in acinclude.m4 for a NetBSD 3.0 style > getmntinfo() is wrong. The attached patch fixes this. > >> From the NetBSD 3.0 man page for getmntinfo(3): > > RETURN VALUES > On successful completion, getmntinfo() returns a count of the number of > elements in the array. The pointer to the array is stored into mntbufp. > > If an error occurs, zero is returned and the external variable errno is > set to indicate the error. Although the pointer mntbufp will be unmodi- > fied, any information previously returned by getmntinfo() will be lost. I've applied your patch. Thanks! From INVALID.NOREPLY@gnu.org Fri Jun 30 05:34:56 2006 Return-Path: X-Original-To: mc-devel@gnome.org Delivered-To: mc-devel@gnome.org Received: from localhost (unknown [127.0.0.1]) by menubar.gnome.org (Postfix) with ESMTP id 5E2473B01F6 for ; Fri, 30 Jun 2006 05:34:56 -0400 (EDT) Received: from menubar.gnome.org ([127.0.0.1]) by localhost (menubar.gnome.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 08474-03 for ; Fri, 30 Jun 2006 05:34:54 -0400 (EDT) Received: from savannah.gnu.org (savannah.gnu.org [199.232.41.3]) by menubar.gnome.org (Postfix) with ESMTP id 5437B3B0127 for ; Fri, 30 Jun 2006 05:34:54 -0400 (EDT) Received: from savannah.gnu.org ([127.0.0.1]) by savannah.gnu.org with smtp (Exim 3.36 #1 (Debian)) id 1FwFOl-0001Iy-00; Fri, 30 Jun 2006 05:34:51 -0400 Received: by savannah.gnu.org (sSMTP sendmail emulation); Fri, 30 Jun 2006 09:34:51 +0000 Date: Fri, 30 Jun 2006 09:34:51 +0000 To: Egmont Koblinger , mc-devel@gnome.org Subject: [patch #5217] vfs/extfs/deb.in fixes From: Egmont Koblinger X-Savane-Server: savannah.gnu.org:443 [199.232.41.3] MIME-Version: 1.0 Content-Type: text/plain;charset=UTF-8 X-Savane-Project: mc X-Savane-Tracker: patch X-Savane-Item-ID: 5217 User-Agent: Opera/9.00 (X11; Linux i686; U; en) X-Apparently-From: 195.56.230.93 (Savane authenticated user egmont) Message-Id: <20060630-093451.sv20032.13837@savannah.gnu.org> References: In-Reply-To: X-Virus-Scanned: by amavisd-new at gnome.org X-Spam-Status: No, score=-2.522 tagged_above=-999 required=2 tests=[AWL=0.001, BAYES_00=-2.599, SPF_PASS=-0.001, TW_DP=0.077] X-Spam-Score: -2.522 X-Spam-Level: X-BeenThere: mc-devel@gnome.org X-Mailman-Version: 2.1.8 Precedence: list List-Id: List for GNU Midnight Commander developers List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Jun 2006 09:34:56 -0000 URL: Summary: vfs/extfs/deb.in fixes Project: GNU Midnight Commander Submitted by: egmont Submitted on: Friday 06/30/2006 at 09:34 Category: VFS Priority: 5 - Normal Status: None Privacy: Public Assigned to: None Originator Email: Open/Closed: Open _______________________________________________________ Details: The attached patch fixes two issues with the deb vfs plugin: - Empty directories within a deb package are not shown if browsing its contents. "dpkg -c" prints a "/" suffix for these entries and the plugin filters them out (I wonder why). It seems to me that simply removing this "next if ..." is fine for mc. You may want to strip off the trailing slash, however. - The DEBIAN directory is empty if using dpkg-1.13.22 with hu_HU locale. The reason is that the second line in the output of "dpkg-deb -I" ("size ..." in English) is translated to "méret: ..." which has a colon in the first word, hence the plugin thinks it's already the end of the file list. The solution is to force the C locale for output that will be parsed later. _______________________________________________________ File Attachments: ------------------------------------------------------- Date: Friday 06/30/2006 at 09:34 Name: deb.in.patch Size: 788B By: egmont vfs/extfs/deb.in fixes _______________________________________________________ Reply to this item at: _______________________________________________ Message sent via/by Savannah http://savannah.gnu.org/