Re: [Midnight Commander] #167: Update German .po

2009-01-18 Thread Ticket System
#167: Update German .po
-+--
  Reporter:  metux   |   Owner:  metux   
  Type:  defect  |  Status:  accepted
  Priority:  minor   |   Milestone:  4.7 
 Component:  locale  | Version:  4.6.1   
Resolution:  |Keywords:  
  Blocking:  |   Blockedby:  
-+--

Comment(by slavazanko):

 I think, for translates need to different workflow...


 By coders don't need to contribute  *.po files - this work for translators
 (the holders of the native language).

 This means that it is necessary to establish a limited access to git for
 translators  (or create http|ftp-upload area on server); also create
 Wiki-page with list of languages and translators... Ideally in additional
 create http-page with some statictic about translate to many languages.

-- 
Ticket URL: www.midnight-commander.org/ticket/167#comment:2
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


Re: [Midnight Commander] #157: [PATCH] Micro helper library

2009-01-18 Thread Ticket System
#157: [PATCH] Micro helper library
---+
  Reporter:  enrico.weig...@zaphod.local, metux IT service weig...@metux.de  
|   Owner:  metux 
  Type:  enhancement   
|  Status:  accepted  
  Priority:  critical  
|   Milestone:  4.6.2 
 Component:  mc-core   
| Version:  4.6.1 
Resolution:
|Keywords:  review vote-winnie
  Blocking:  10, 14, 41, 55, 81, 125, 147, 149, 152
|   Blockedby:
---+

Comment(by ossi):

 Replying to [comment:14 slavazanko]:
   b) moving the funcs to separate .c file just kills inline'ing.
 
  Modern compilers may automatically make some function inline or not.
 
 uhm, so what? moving to a separate .c file still kills inlining. period.

-- 
Ticket URL: www.midnight-commander.org/ticket/157#comment:18
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


[Midnight Commander] #174: (mandriva) set pty fd (on subshell) to closeonexec

2009-01-18 Thread Ticket System
#174: (mandriva) set pty fd (on subshell) to closeonexec
-+--
 Reporter:  metux|   Owner:   
 Type:  defect   |  Status:  new  
 Priority:  major|   Milestone:  4.7  
Component:  mc-core  | Version:  4.6.1
 Keywords:   |Blocking:   
Blockedby:   |  
-+--
 Patch from mandriva:

 Set the subshell pty to close-on-exec


 --- mc-2006-11-14-16/src/subshell.c.desleak 2006-05-08
 22:59:48.0 +0200
 +++ mc-2006-11-14-16/src/subshell.c 2006-11-23 09:50:30.0
 +0100
 @@ -1150,6 +1152,7 @@
  #endif /* I_FIND  I_PUSH */
  #endif /* __osf__ || __linux__ */

 +fcntl(pty_slave, F_SETFD, FD_CLOEXEC);
  return pty_slave;
  }

 @@ -1203,6 +1207,7 @@
  }
  if ((pty_slave = open (pty_name, O_RDWR)) == -1)
 fprintf (stderr, open (pty_name, O_RDWR): %s\r\n, pty_name);
 +fcntl(pty_slave, F_SETFD, FD_CLOEXEC);
  return pty_slave;
  }

-- 
Ticket URL: www.midnight-commander.org/ticket/174
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


Re: [Midnight Commander] #174: (mandriva) set pty fd (on subshell) to closeonexec

2009-01-18 Thread Ticket System
#174: (mandriva) set pty fd (on subshell) to closeonexec
--+-
  Reporter:  metux|   Owner:
  Type:  defect   |  Status:  new   
  Priority:  major|   Milestone:  4.7   
 Component:  mc-core  | Version:  4.6.1 
Resolution:   |Keywords:  review
  Blocking:   |   Blockedby:
--+-
Changes (by metux):

  * keywords:  = review


Old description:

 Patch from mandriva:

 Set the subshell pty to close-on-exec


 --- mc-2006-11-14-16/src/subshell.c.desleak 2006-05-08
 22:59:48.0 +0200
 +++ mc-2006-11-14-16/src/subshell.c 2006-11-23 09:50:30.0
 +0100
 @@ -1150,6 +1152,7 @@
  #endif /* I_FIND  I_PUSH */
  #endif /* __osf__ || __linux__ */

 +fcntl(pty_slave, F_SETFD, FD_CLOEXEC);
  return pty_slave;
  }

 @@ -1203,6 +1207,7 @@
  }
  if ((pty_slave = open (pty_name, O_RDWR)) == -1)
 fprintf (stderr, open (pty_name, O_RDWR): %s\r\n, pty_name);
 +fcntl(pty_slave, F_SETFD, FD_CLOEXEC);
  return pty_slave;
  }

New description:

 Patch from mandriva:

 Set the subshell pty to close-on-exec

 changeset:9f369abe25277eff2be9164f032c530fd425e889

 --- mc-2006-11-14-16/src/subshell.c.desleak 2006-05-08
 22:59:48.0 +0200
 +++ mc-2006-11-14-16/src/subshell.c 2006-11-23 09:50:30.0
 +0100
 @@ -1150,6 +1152,7 @@
  #endif /* I_FIND  I_PUSH */
  #endif /* __osf__ || __linux__ */

 +fcntl(pty_slave, F_SETFD, FD_CLOEXEC);
  return pty_slave;
  }

 @@ -1203,6 +1207,7 @@
  }
  if ((pty_slave = open (pty_name, O_RDWR)) == -1)
 fprintf (stderr, open (pty_name, O_RDWR): %s\r\n, pty_name);
 +fcntl(pty_slave, F_SETFD, FD_CLOEXEC);
  return pty_slave;
  }

--

-- 
Ticket URL: www.midnight-commander.org/ticket/174#comment:1
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


[Midnight Commander] #175: Execution failed

2009-01-18 Thread Ticket System
#175: Execution failed
--+-
 Reporter:  u...@nibiru.metux.de  |   Owner:   
 Type:  defect|  Status:  new  
 Priority:  major |   Milestone:  4.7  
Component:  mc-core   | Version:  4.6.1
 Keywords:|Blocking:   
Blockedby:|  
--+-
 Message from UUCP on nibiru Fri Jan 16 01:07:08 2009

 Execution request failed:
 rmail weig...@nibiru.metux.de
 Standard error output was:

-- 
Ticket URL: www.midnight-commander.org/ticket/175
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


[Midnight Commander] #176: (mandriva) add lzma support

2009-01-18 Thread Ticket System
#176: (mandriva) add lzma support
-+--
 Reporter:  metux|   Owner:   
 Type:  defect   |  Status:  new  
 Priority:  major|   Milestone:  4.7  
Component:  mc-core  | Version:  4.6.1
 Keywords:  review   |Blocking:   
Blockedby:   |  
-+--
 Mandriva Patches: Add support for lzma compressed files

 http://svn.mandriva.com/cgi-
 
bin/viewvc.cgi/packages/cooker/mc/current/SOURCES/mc-4.6.1.lzma.patch?view=markup

-- 
Ticket URL: www.midnight-commander.org/ticket/176
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


[Midnight Commander] #177: (mandriva) extfs: remove obsolete rpm tags

2009-01-18 Thread Ticket System
#177: (mandriva) extfs: remove obsolete rpm tags
+---
 Reporter:  metux   |   Owner:   
 Type:  defect  |  Status:  new  
 Priority:  major   |   Milestone:  4.7  
Component:  vfs | Version:  4.6.1
 Keywords:  review  |Blocking:   
Blockedby:  |  
+---
 Mandriva patches: extfs: remove obsolete rpm tags

 http://svn.mandriva.com/cgi-
 
bin/viewvc.cgi/packages/cooker/mc/current/SOURCES/mc-4.6.2-rpm_obsolete_tags.patch?view=markup

-- 
Ticket URL: www.midnight-commander.org/ticket/177
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


[Midnight Commander] #178: (mandriva) extfs.ini patch

2009-01-18 Thread Ticket System
#178: (mandriva) extfs.ini patch
-+--
 Reporter:  metux|   Owner:   
 Type:  defect   |  Status:  new  
 Priority:  major|   Milestone:  4.7  
Component:  mc-core  | Version:  4.6.1
 Keywords:  review   |Blocking:   
Blockedby:   |  
-+--
 A patch from mandriva: some changes in extfs.ini

 http://svn.mandriva.com/cgi-
 
bin/viewvc.cgi/packages/cooker/mc/current/SOURCES/mc-4.6.1-xdg.patch?view=markup

-- 
Ticket URL: www.midnight-commander.org/ticket/178
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


Re: [Midnight Commander] #178: (mandriva) extfs.ini patch

2009-01-18 Thread Ticket System
#178: (mandriva) extfs.ini patch
--+-
  Reporter:  metux|   Owner: 
  Type:  defect   |  Status:  new
  Priority:  major|   Milestone:  4.7
 Component:  mc-core  | Version:  4.6.1  
Resolution:   |Keywords:  review mandriva
  Blocking:   |   Blockedby: 
--+-
Changes (by metux):

  * keywords:  review = review mandriva


-- 
Ticket URL: www.midnight-commander.org/ticket/178#comment:1
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


[Midnight Commander] #179: (mandriva) use fsblkcnt_t when available (64bit issue ?)

2009-01-18 Thread Ticket System
#179: (mandriva) use fsblkcnt_t when available (64bit issue ?)
-+--
 Reporter:  metux|   Owner:   
 Type:  defect   |  Status:  new  
 Priority:  major|   Milestone:  4.7  
Component:  mc-core  | Version:  4.6.1
 Keywords:  review mandriva  |Blocking:   
Blockedby:   |  
-+--
 http://svn.mandriva.com/cgi-
 bin/viewvc.cgi/packages/cooker/mc/current/SOURCES/mc-
 64bit.patch?view=markup

 Note: instead of the several #ifdef's in mountlist.c we should just define
 that type if missing.

-- 
Ticket URL: www.midnight-commander.org/ticket/179
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


[Midnight Commander] #180: (mandriva) concat_dir_and_file() + NULL parameter fix

2009-01-18 Thread Ticket System
#180: (mandriva) concat_dir_and_file() + NULL parameter fix
-+--
 Reporter:  metux|   Owner:   
 Type:  defect   |  Status:  new  
 Priority:  major|   Milestone:  4.7  
Component:  mc-core  | Version:  4.6.1
 Keywords:  review mandriva  |Blocking:   
Blockedby:   |  
-+--
 http://svn.mandriva.com/cgi-
 bin/viewvc.cgi/packages/cooker/mc/current/SOURCES/mc-
 concat.patch?view=markup

-- 
Ticket URL: www.midnight-commander.org/ticket/180
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


[Midnight Commander] #182: (mandriva) ftpfs+ipv6

2009-01-18 Thread Ticket System
#182: (mandriva) ftpfs+ipv6
-+--
 Reporter:  metux|   Owner:   
 Type:  defect   |  Status:  new  
 Priority:  major|   Milestone:  4.7  
Component:  mc-core  | Version:  4.6.1
 Keywords:  review mandriva  |Blocking:   
Blockedby:   |  
-+--
 http://svn.mandriva.com/cgi-
 bin/viewvc.cgi/packages/cooker/mc/current/SOURCES/mc-
 ipv6.patch?view=markup

-- 
Ticket URL: www.midnight-commander.org/ticket/182
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


[Midnight Commander] #183: (mandriva) mc.ext changes

2009-01-18 Thread Ticket System
#183: (mandriva) mc.ext changes
-+--
 Reporter:  metux|   Owner:   
 Type:  defect   |  Status:  new  
 Priority:  major|   Milestone:  4.7  
Component:  mc-core  | Version:  4.6.1
 Keywords:  review mandriva  |Blocking:   
Blockedby:   |  
-+--
 http://svn.mandriva.com/cgi-
 bin/viewvc.cgi/packages/cooker/mc/current/SOURCES/mc-
 mc.ext.patch?view=markup

-- 
Ticket URL: www.midnight-commander.org/ticket/183
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


[Midnight Commander] #184: (mandriva) check if contain a \n

2009-01-18 Thread Ticket System
#184: (mandriva) check if contain a \n
-+--
 Reporter:  metux|   Owner:   
 Type:  defect   |  Status:  new  
 Priority:  major|   Milestone:  4.7  
Component:  mc-core  | Version:  4.6.1
 Keywords:  review mandriva  |Blocking:   
Blockedby:   |  
-+--
 http://svn.mandriva.com/cgi-
 bin/viewvc.cgi/packages/cooker/mc/current/SOURCES/mc-
 newlinedir.patch?view=markup

-- 
Ticket URL: www.midnight-commander.org/ticket/184
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


[Midnight Commander] #185: (mandriva) changes in search for lib containing socket stuff

2009-01-18 Thread Ticket System
#185: (mandriva) changes in search for lib containing socket stuff
-+--
 Reporter:  metux|   Owner:   
 Type:  defect   |  Status:  new  
 Priority:  major|   Milestone:  4.7  
Component:  mc-core  | Version:  4.6.1
 Keywords:  review mandriva  |Blocking:   
Blockedby:   |  
-+--
 http://svn.mandriva.com/cgi-
 bin/viewvc.cgi/packages/cooker/mc/current/SOURCES/mc-
 nolibs.patch?view=markup

-- 
Ticket URL: www.midnight-commander.org/ticket/185
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


[Midnight Commander] #186: (mandriva) prompt fixups

2009-01-18 Thread Ticket System
#186: (mandriva) prompt fixups
-+--
 Reporter:  metux|   Owner:   
 Type:  defect   |  Status:  new  
 Priority:  major|   Milestone:  4.7  
Component:  mc-core  | Version:  4.6.1
 Keywords:  review mandriva  |Blocking:   
Blockedby:   |  
-+--
 http://svn.mandriva.com/cgi-
 bin/viewvc.cgi/packages/cooker/mc/current/SOURCES/mc-
 prompt.patch?view=markup

-- 
Ticket URL: www.midnight-commander.org/ticket/186
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


[Midnight Commander] #187: (mandriva) screen refresh

2009-01-18 Thread Ticket System
#187: (mandriva) screen refresh
-+--
 Reporter:  metux|   Owner:   
 Type:  defect   |  Status:  new  
 Priority:  major|   Milestone:  4.7  
Component:  mc-core  | Version:  4.6.1
 Keywords:  review mandriva  |Blocking:   
Blockedby:   |  
-+--
 http://svn.mandriva.com/cgi-
 bin/viewvc.cgi/packages/cooker/mc/current/SOURCES/mc-
 refresh.patch?view=markup

-- 
Ticket URL: www.midnight-commander.org/ticket/187
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


[Midnight Commander] #188: (mandriva) show free space

2009-01-18 Thread Ticket System
#188: (mandriva) show free space
-+--
 Reporter:  metux|   Owner:   
 Type:  defect   |  Status:  new  
 Priority:  major|   Milestone:  4.7  
Component:  mc-core  | Version:  4.6.1
 Keywords:  review mandriva  |Blocking:   
Blockedby:   |  
-+--
 http://svn.mandriva.com/cgi-
 bin/viewvc.cgi/packages/cooker/mc/current/SOURCES/mc-
 showfree.patch?view=markup

-- 
Ticket URL: www.midnight-commander.org/ticket/188
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


[Midnight Commander] #189: (mandriva) .spec syntax file updates

2009-01-18 Thread Ticket System
#189: (mandriva) .spec syntax file updates
-+--
 Reporter:  metux|   Owner:   
 Type:  defect   |  Status:  new  
 Priority:  major|   Milestone:  4.7  
Component:  mcedit   | Version:  4.6.1
 Keywords:  review mandriva  |Blocking:   
Blockedby:   |  
-+--
 http://svn.mandriva.com/cgi-
 bin/viewvc.cgi/packages/cooker/mc/current/SOURCES/mc-spec-
 syntax.patch?view=markup

-- 
Ticket URL: www.midnight-commander.org/ticket/189
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


[Midnight Commander] #190: (mandriva) extfs: srpm support

2009-01-18 Thread Ticket System
#190: (mandriva) extfs: srpm support
-+--
 Reporter:  metux|   Owner:   
 Type:  defect   |  Status:  new  
 Priority:  major|   Milestone:  4.7  
Component:  vfs  | Version:  4.6.1
 Keywords:  review mandriva  |Blocking:   
Blockedby:   |  
-+--
 http://svn.mandriva.com/cgi-
 bin/viewvc.cgi/packages/cooker/mc/current/SOURCES/mc-
 srpm.patch?view=markup

-- 
Ticket URL: www.midnight-commander.org/ticket/190
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


[Midnight Commander] #191: (mandriva) extfs: use rar command if available

2009-01-18 Thread Ticket System
#191: (mandriva) extfs: use rar command if available
-+--
 Reporter:  metux|   Owner:   
 Type:  enhancement  |  Status:  new  
 Priority:  major|   Milestone:  4.7  
Component:  vfs  | Version:  4.6.1
 Keywords:   |Blocking:   
Blockedby:   |  
-+--
 http://svn.mandriva.com/cgi-
 bin/viewvc.cgi/packages/cooker/mc/current/SOURCES/mc-
 urar.patch?view=markup

-- 
Ticket URL: www.midnight-commander.org/ticket/191
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


[Midnight Commander] #192: (mandriva) show username+hostname in xterm title (?)

2009-01-18 Thread Ticket System
#192: (mandriva) show username+hostname in xterm title (?)
-+--
 Reporter:  metux|   Owner:   
 Type:  enhancement  |  Status:  new  
 Priority:  major|   Milestone:  4.7  
Component:  mc-core  | Version:  4.6.1
 Keywords:  review mandriva  |Blocking:   
Blockedby:   |  
-+--
 http://svn.mandriva.com/cgi-
 bin/viewvc.cgi/packages/cooker/mc/current/SOURCES/mc-
 userhost.patch?view=markup

-- 
Ticket URL: www.midnight-commander.org/ticket/192
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


[Midnight Commander] #193: (mandriva) syntax file for vhdl

2009-01-18 Thread Ticket System
#193: (mandriva) syntax file for vhdl
-+--
 Reporter:  metux|   Owner:   
 Type:  enhancement  |  Status:  new  
 Priority:  major|   Milestone:  4.7  
Component:  mcedit   | Version:  4.6.1
 Keywords:   |Blocking:   
Blockedby:   |  
-+--
 http://svn.mandriva.com/cgi-
 bin/viewvc.cgi/packages/cooker/mc/current/SOURCES/mc-vhdl-
 syntax.patch?view=markup

-- 
Ticket URL: www.midnight-commander.org/ticket/193
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


[Midnight Commander] #194: (mandriva) extfs: u7z bugfixes

2009-01-18 Thread Ticket System
#194: (mandriva) extfs: u7z bugfixes
-+--
 Reporter:  metux|   Owner:   
 Type:  defect   |  Status:  new  
 Priority:  major|   Milestone:  4.7  
Component:  vfs  | Version:  4.6.1
 Keywords:  review mandriva  |Blocking:   
Blockedby:   |  
-+--
 http://svn.mandriva.com/cgi-
 bin/viewvc.cgi/packages/cooker/mc/current/SOURCES/u7z.patch?view=markup

-- 
Ticket URL: www.midnight-commander.org/ticket/194
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


[Midnight Commander] #195: (mandriva) add ctrl-l as hotkey for quick-chdir

2009-01-18 Thread Ticket System
#195: (mandriva) add ctrl-l as hotkey for quick-chdir
-+--
 Reporter:  metux|   Owner:   
 Type:  defect   |  Status:  new  
 Priority:  major|   Milestone:  4.7  
Component:  mc-core  | Version:  4.6.1
 Keywords:  review mandriva  |Blocking:   
Blockedby:   |  
-+--
 http://svn.mandriva.com/cgi-
 
bin/viewvc.cgi/packages/cooker/mc/current/SOURCES/mc-4.6.2-shortcut.patch?view=markup

-- 
Ticket URL: www.midnight-commander.org/ticket/195
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


[Midnight Commander] #196: (mandriva) mc.sh.in: fixes for non-bash shells

2009-01-18 Thread Ticket System
#196: (mandriva) mc.sh.in: fixes for non-bash shells
-+--
 Reporter:  metux|   Owner:   
 Type:  defect   |  Status:  new  
 Priority:  major|   Milestone:  4.7  
Component:  mc-core  | Version:  4.6.1
 Keywords:  review mandriva  |Blocking:   
Blockedby:   |  
-+--
 http://svn.mandriva.com/cgi-
 bin/viewvc.cgi/packages/cooker/mc/current/SOURCES/mc-4.6.1-bourne-
 compliancy.patch?view=markup

-- 
Ticket URL: www.midnight-commander.org/ticket/196
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


Re: [Midnight Commander] #195: (mandriva) add ctrl-l as hotkey for quick-chdir

2009-01-18 Thread Ticket System
#195: (mandriva) add ctrl-l as hotkey for quick-chdir
--+-
  Reporter:  metux|   Owner: 
  Type:  enhancement  |  Status:  new
  Priority:  major|   Milestone:  4.7
 Component:  mc-core  | Version:  4.6.1  
Resolution:   |Keywords:  review mandriva
  Blocking:   |   Blockedby: 
--+-
Changes (by metux):

  * type:  defect = enhancement


-- 
Ticket URL: www.midnight-commander.org/ticket/195#comment:1
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


Re: [Midnight Commander] #193: (mandriva) syntax file for vhdl

2009-01-18 Thread Ticket System
#193: (mandriva) syntax file for vhdl
--+-
  Reporter:  metux|   Owner: 
  Type:  enhancement  |  Status:  new
  Priority:  major|   Milestone:  4.7
 Component:  mcedit   | Version:  4.6.1  
Resolution:   |Keywords:  review mandriva
  Blocking:   |   Blockedby: 
--+-
Changes (by metux):

  * keywords:  = review mandriva


-- 
Ticket URL: www.midnight-commander.org/ticket/193#comment:1
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


Re: [Midnight Commander] #191: (mandriva) extfs: use rar command if available

2009-01-18 Thread Ticket System
#191: (mandriva) extfs: use rar command if available
--+-
  Reporter:  metux|   Owner: 
  Type:  enhancement  |  Status:  new
  Priority:  major|   Milestone:  4.7
 Component:  vfs  | Version:  4.6.1  
Resolution:   |Keywords:  review mandriva
  Blocking:   |   Blockedby: 
--+-
Changes (by metux):

  * keywords:  = review mandriva


-- 
Ticket URL: www.midnight-commander.org/ticket/191#comment:1
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


Re: [Midnight Commander] #189: (mandriva) .spec syntax file updates

2009-01-18 Thread Ticket System
#189: (mandriva) .spec syntax file updates
--+-
  Reporter:  metux|   Owner: 
  Type:  enhancement  |  Status:  new
  Priority:  major|   Milestone:  4.7
 Component:  mcedit   | Version:  4.6.1  
Resolution:   |Keywords:  review mandriva
  Blocking:   |   Blockedby: 
--+-
Changes (by metux):

  * type:  defect = enhancement


-- 
Ticket URL: www.midnight-commander.org/ticket/189#comment:1
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


Re: [Midnight Commander] #188: (mandriva) show free space

2009-01-18 Thread Ticket System
#188: (mandriva) show free space
--+-
  Reporter:  metux|   Owner: 
  Type:  enhancement  |  Status:  new
  Priority:  major|   Milestone:  4.7
 Component:  mc-core  | Version:  4.6.1  
Resolution:   |Keywords:  review mandriva
  Blocking:   |   Blockedby: 
--+-
Changes (by metux):

  * type:  defect = enhancement


-- 
Ticket URL: www.midnight-commander.org/ticket/188#comment:1
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


[Midnight Commander] #197: Generic handling for built-in commands

2009-01-18 Thread Ticket System
#197: Generic handling for built-in commands
-+--
 Reporter:  metux|   Owner:   
 Type:  enhancement  |  Status:  new  
 Priority:  major|   Milestone:  4.7  
Component:  mc-core  | Version:  4.6.1
 Keywords:  brainstorm   |Blocking:   
Blockedby:   |  
-+--
 We should think about a more generic handling for built-in shell commands
 (cd and ls are currently hacked up explicitly).

-- 
Ticket URL: www.midnight-commander.org/ticket/197
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


Re: [Midnight Commander] #160: [PATCH] Edit: ebuild syntax definition

2009-01-18 Thread Ticket System
#160: [PATCH] Edit: ebuild syntax definition
---+
  Reporter:  enrico.weig...@zaphod.local, metux IT service weig...@metux.de  
|   Owner:  metux 
  Type:  enhancement   
|  Status:  accepted  
  Priority:  major 
|   Milestone:  4.7   
 Component:  mcedit
| Version:  4.6.1 
Resolution:
|Keywords:  review, ebuild
  Blocking:
|   Blockedby:
---+
Changes (by slyfox):

  * keywords:  review = review, ebuild


Comment:

 .ebuilds are usual shell scripts

 Ebuild syntax file looks _OUTDATED_ in respect to shell.syntax with:

 shell out-of-sync issues:
 * some control words are hot highlighted: 'if', 'then', 'else', etc. (have
 a look at 'diff syntax/ebuild.syntax syntax/shell.syntax')
 * some literals are not highlighted:
 * single quoted ones: sed -e -s's/hello/world/g'
 * global variables: AUDIO=$(get_audio)

 * some global vars are not highlighted properly: SCR_URI, SLOT
 * some ebuild keywords are not highlighted at all: 'enewgroup'

 All the rest looks OK, so patch could be merged. I could add some patches
 to fix above issues this weekend :]

-- 
Ticket URL: www.midnight-commander.org/ticket/160#comment:11
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


Re: [Midnight Commander] #157: [PATCH] Micro helper library

2009-01-18 Thread Ticket System
#157: [PATCH] Micro helper library
---+
  Reporter:  enrico.weig...@zaphod.local, metux IT service weig...@metux.de  
|   Owner:  metux 
  Type:  enhancement   
|  Status:  accepted  
  Priority:  critical  
|   Milestone:  4.6.2 
 Component:  mc-core   
| Version:  4.6.1 
Resolution:
|Keywords:  review vote-winnie
  Blocking:  10, 14, 41, 55, 81, 125, 147, 149, 152
|   Blockedby:
---+

Comment(by Enrico Weigelt):

 * MC Ticket System tick...@midnight-commander.org schrieb:

  Comment(by slavazanko):
a) the glib stuff is quite useless, just adds extra code
 
   On a modern computers it's don't important :)

 Useless code is always a mess, at least for maintenance.
 I'm really curios which problem you intend to solve - or is it
 just glib-fetishism ? ;-o

  For other systems we make own realization of glib-functions... if needed
 :)

 We dont need any extra solution, just leave it as it was.

b) moving the funcs to separate .c file just kills inline'ing.
 
   Modern compilers may automatically make some function inline or not.

 Only if they can. As soon as you put the code in an extra .c file, which
 gets compiled separately, the compiler has no chance to do inline'ing.

   Some example of usage:
   {{{
   _GNU_INLINE_ void _ATTRIBUTE_ALWAYS_INLINE_
   some_function_1(params){
  ...
   }

 This would only make sense if you want to *enforce* inline'ing on
 an per-function basis. Is this really necessary ? Do you really feel
 more clever than the compiler on whether to inline certain specific
 function ?


 cu

-- 
Ticket URL: www.midnight-commander.org/ticket/157#comment:
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


Re: [Midnight Commander] #140: [PATCH] moving doc files

2009-01-18 Thread Ticket System
#140: [PATCH] moving doc files
---+
  Reporter:  enrico.weig...@zaphod.local, metux IT service weig...@metux.de  
|   Owner:  metux   
  Type:  defect
|  Status:  accepted
  Priority:  major 
|   Milestone:  4.7 
 Component:  mc-core   
| Version:  4.6.1   
Resolution:
|Keywords:  review  
  Blocking:
|   Blockedby:  
---+

Comment(by Enrico Weigelt):

 * MC Ticket System tick...@midnight-commander.org schrieb:

  Comment(by slavazanko):
   Is need to move lib/mc.hint* files into doc/hints?

 If we put manuals to doc/, then the .hint* files also belong there.


 cu

-- 
Ticket URL: www.midnight-commander.org/ticket/140#comment:
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


Re: [Midnight Commander] #160: [PATCH] Edit: ebuild syntax definition

2009-01-18 Thread Ticket System
#160: [PATCH] Edit: ebuild syntax definition
---+
  Reporter:  enrico.weig...@zaphod.local, metux IT service weig...@metux.de  
|   Owner:  metux   
  Type:  enhancement   
|  Status:  accepted
  Priority:  major 
|   Milestone:  4.7 
 Component:  mcedit
| Version:  4.6.1   
Resolution:
|Keywords:  rework  
  Blocking:
|   Blockedby:  
---+
Changes (by winnie):

  * keywords:  review, ebuild = rework


Comment:

 Hey Slyfox,

 It would be cool if you could send us a patch which is based on the
 160_syntax_ebuild branch. Then we could directly add your patch there.

 As you say that this patch is not fully okay I set keyword to rework
 until this is fixed.

 Thanks for your help.

-- 
Ticket URL: www.midnight-commander.org/ticket/160#comment:12
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


Re: [Midnight Commander] #174: (mandriva) set pty fd (on subshell) to closeonexec

2009-01-18 Thread Ticket System
#174: (mandriva) set pty fd (on subshell) to closeonexec
--+-
  Reporter:  metux|   Owner:
  Type:  defect   |  Status:  new   
  Priority:  major|   Milestone:  4.6.2 
 Component:  mc-core  | Version:  4.6.1 
Resolution:   |Keywords:  review vote-winnie
  Blocking:   |   Blockedby:
--+-
Changes (by winnie):

  * keywords:  review = review vote-winnie
  * milestone:  4.7 = 4.6.2


Comment:

 Well.. would milestone 4.6.2 not also be okay (nevertheless the branch is
 already based on mc-4.6, maybe you where on the wrong branch when you
 created the new subbranch?).

 As this is a fix and not a enhancment I would go for 4.6.2.. and
 nevertheless which milestone we set now.. /me votes for the patch

-- 
Ticket URL: www.midnight-commander.org/ticket/174#comment:2
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


Re: [Midnight Commander] #197: Generic handling for built-in commands

2009-01-18 Thread Ticket System
#197: Generic handling for built-in commands
--+-
  Reporter:  metux|   Owner:
  Type:  enhancement  |  Status:  new   
  Priority:  major|   Milestone:  4.7   
 Component:  mc-core  | Version:  4.6.1 
Resolution:   |Keywords:  brainstorm
  Blocking:   |   Blockedby:
--+-

Comment(by winnie):

 Jepp.. this is one restructurement I would like to do for 4.7..

 Even worse there are two different cd types inside mc with different
 behaviour:

  cd and \cd

 At first: We have to remove the second one and make the internal cd behave
 like every cd... expecting whitespaces and other non standard stuff to be
 escaped for example.

 The same holds for ls...

-- 
Ticket URL: www.midnight-commander.org/ticket/197#comment:1
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


[Midnight Commander] #198: Warning: could not send message for past 4 hours

2009-01-18 Thread Ticket System
#198: Warning: could not send message for past 4 hours
--+-
 Reporter:  Mail Delivery Subsystem mailer-dae...@jupiter.metux.de  |   
Owner:   
 Type:  defect|  
Status:  new  
 Priority:  major |   
Milestone:  4.7  
Component:  mc-core   | 
Version:  4.6.1
 Keywords:|
Blocking:   
Blockedby:|  
--+-
 **
 **  THIS IS A WARNING MESSAGE ONLY  **
 **  YOU DO NOT NEED TO RESEND YOUR MESSAGE  **
 **

 The original message was received at Fri, 16 Jan 2009 23:15:07 +0100
 from localhost [127.0.0.1]

- Transcript of session follows -
 weig...@metux.de... Deferred: Connection timed out with nibiru.local.
 Warning: message still undelivered after 4 hours
 Will keep trying until message is 5 days old

-- 
Ticket URL: www.midnight-commander.org/ticket/198
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


Re: [Midnight Commander] #175: Execution failed

2009-01-18 Thread Ticket System
#175: Execution failed
---+
  Reporter:  u...@nibiru.metux.de  |   Owner:  slavazanko
  Type:  defect|  Status:  testing   
  Priority:  major |   Milestone:  4.7   
 Component:  mc-core   | Version:  4.6.1 
Resolution:  invalid   |Keywords:
  Blocking:|   Blockedby:
---+
Changes (by slavazanko):

  * status:  accepted = testing
  * resolution:  = invalid


-- 
Ticket URL: www.midnight-commander.org/ticket/175#comment:3
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


Re: [Midnight Commander] #179: (mandriva) use fsblkcnt_t when available (64bit issue ?)

2009-01-18 Thread Ticket System
#179: (mandriva) use fsblkcnt_t when available (64bit issue ?)
--+-
  Reporter:  metux|   Owner: 
  Type:  defect   |  Status:  new
  Priority:  major|   Milestone:  4.7
 Component:  mc-core  | Version:  4.6.1  
Resolution:   |Keywords:  review mandriva
  Blocking:   |   Blockedby: 
--+-

Comment(by slavazanko):

 I think, need to declare one type (mhl_fsblkcnt_t, for example) and move
 any #ifdef...#endif into mhl.

-- 
Ticket URL: www.midnight-commander.org/ticket/179#comment:1
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


Re: [Midnight Commander] #157: [PATCH] Micro helper library

2009-01-18 Thread Ticket System
#157: [PATCH] Micro helper library
---+
  Reporter:  enrico.weig...@zaphod.local, metux IT service weig...@metux.de  
|   Owner:  metux 
  Type:  enhancement   
|  Status:  accepted  
  Priority:  critical  
|   Milestone:  4.6.2 
 Component:  mc-core   
| Version:  4.6.1 
Resolution:
|Keywords:  review vote-winnie vote-slavazanko
  Blocking:  10, 14, 41, 55, 81, 125, 147, 149, 152
|   Blockedby:
---+
Changes (by slavazanko):

  * keywords:  review vote-winnie = review vote-winnie vote-slavazanko


-- 
Ticket URL: www.midnight-commander.org/ticket/157#comment:20
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


Re: [Midnight Commander] #195: (mandriva) add ctrl-l as hotkey for quick-chdir

2009-01-18 Thread Ticket System
#195: (mandriva) add ctrl-l as hotkey for quick-chdir
--+-
  Reporter:  metux|   Owner: 
  Type:  enhancement  |  Status:  new
  Priority:  major|   Milestone:  4.7
 Component:  mc-core  | Version:  4.6.1  
Resolution:   |Keywords:  review mandriva
  Blocking:   |   Blockedby: 
--+-

Comment(by andrew_b):

 It's a bad idea. Currentrly Ctrl-l hotkey is used to refresh the screen
 (see src/screen.c(dialog_handle_key)).

-- 
Ticket URL: www.midnight-commander.org/ticket/195#comment:2
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


Re: [Midnight Commander] #157: [PATCH] Micro helper library

2009-01-18 Thread Ticket System
#157: [PATCH] Micro helper library
---+
  Reporter:  enrico.weig...@zaphod.local, metux IT service weig...@metux.de  
|   Owner:  metux  
  Type:  enhancement   
|  Status:  accepted   
  Priority:  critical  
|   Milestone:  4.6.2  
 Component:  mc-core   
| Version:  4.6.1  
Resolution:
|Keywords:  review vote-winnie vote-slavazanko approved
  Blocking:  10, 14, 41, 55, 81, 125, 147, 149, 152
|   Blockedby: 
---+
Changes (by winnie):

  * keywords:  review vote-winnie vote-slavazanko = review vote-winnie
   vote-slavazanko approved


Comment:

 Cool.. this is approved now.

 @metux: Could you please merge this into mc-4.6 and master? After that
 I'll work on the whitespace issues and completion. :)

-- 
Ticket URL: www.midnight-commander.org/ticket/157#comment:21
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


Re: [Midnight Commander] #130: FHS-Break: global config belongs into ${sysconfdir}/mc

2009-01-18 Thread Ticket System
#130: FHS-Break: global config belongs into ${sysconfdir}/mc
--+-
  Reporter:  metux|   Owner:
  Type:  defect   |  Status:  new   
  Priority:  minor|   Milestone:
 Component:  mc-core  | Version:  4.6.1 
Resolution:   |Keywords:  review
  Blocking:   |   Blockedby:
--+-

Comment(by slavazanko):

 Is 'HACK_install_dirs' branch relative to this ticket?

-- 
Ticket URL: www.midnight-commander.org/ticket/130#comment:3
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


Re: [Midnight Commander] #157: [PATCH] Micro helper library

2009-01-18 Thread Ticket System
#157: [PATCH] Micro helper library
---+
  Reporter:  enrico.weig...@zaphod.local, metux IT service weig...@metux.de  
|   Owner:  metux   
  Type:  enhancement   
|  Status:  accepted
  Priority:  critical  
|   Milestone:  4.6.2   
 Component:  mc-core   
| Version:  4.6.1   
Resolution:
|Keywords:  vote-winnie vote-slavazanko approved
  Blocking:  10, 14, 41, 55, 81, 125, 147, 149, 152
|   Blockedby:  
---+
Changes (by slavazanko):

  * keywords:  review vote-winnie vote-slavazanko approved = vote-winnie
   vote-slavazanko approved


-- 
Ticket URL: www.midnight-commander.org/ticket/157#comment:22
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


Re: [Midnight Commander] #195: (mandriva) add ctrl-l as hotkey for quick-chdir

2009-01-18 Thread Ticket System
#195: (mandriva) add ctrl-l as hotkey for quick-chdir
--+-
  Reporter:  metux|   Owner:  slavazanko 
  Type:  enhancement  |  Status:  accepted   
  Priority:  major|   Milestone:  4.7
 Component:  mc-core  | Version:  4.6.1  
Resolution:   |Keywords:  review mandriva
  Blocking:   |   Blockedby: 
--+-
Changes (by slavazanko):

  * owner:  = slavazanko
  * status:  new = accepted


Comment:

  It's a bad idea.

 +1. In editor CTRL+L used too.

  refresh the screen
 'Repaint' more exactly. :)

-- 
Ticket URL: www.midnight-commander.org/ticket/195#comment:3
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


Re: [Midnight Commander] #195: (mandriva) add ctrl-l as hotkey for quick-chdir

2009-01-18 Thread Ticket System
#195: (mandriva) add ctrl-l as hotkey for quick-chdir
--+-
  Reporter:  metux|   Owner:  slavazanko 
  Type:  enhancement  |  Status:  testing
  Priority:  major|   Milestone:  4.7
 Component:  mc-core  | Version:  4.6.1  
Resolution:  invalid  |Keywords:  review mandriva
  Blocking:   |   Blockedby: 
--+-
Changes (by slavazanko):

  * status:  accepted = testing
  * resolution:  = invalid


-- 
Ticket URL: www.midnight-commander.org/ticket/195#comment:4
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


Re: [Midnight Commander] #195: (mandriva) add ctrl-l as hotkey for quick-chdir

2009-01-18 Thread Ticket System
#195: (mandriva) add ctrl-l as hotkey for quick-chdir
--+-
  Reporter:  metux|   Owner:  slavazanko
  Type:  enhancement  |  Status:  testing   
  Priority:  major|   Milestone:  4.7   
 Component:  mc-core  | Version:  4.6.1 
Resolution:  invalid  |Keywords:  mandriva  
  Blocking:   |   Blockedby:
--+-
Changes (by slavazanko):

  * keywords:  review mandriva = mandriva


-- 
Ticket URL: www.midnight-commander.org/ticket/195#comment:5
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


Re: [Midnight Commander] #179: (mandriva) use fsblkcnt_t when available (64bit issue ?)

2009-01-18 Thread Ticket System
#179: (mandriva) use fsblkcnt_t when available (64bit issue ?)
--+-
  Reporter:  metux|   Owner: 
  Type:  defect   |  Status:  new
  Priority:  major|   Milestone:  4.7
 Component:  mc-core  | Version:  4.6.1  
Resolution:   |Keywords:  review mandriva
  Blocking:   |   Blockedby:  157
--+-
Changes (by slavazanko):

  * blockedby:  = 157


-- 
Ticket URL: www.midnight-commander.org/ticket/179#comment:2
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


Re: [Midnight Commander] #198: Warning: could not send message for past 4 hours

2009-01-18 Thread Ticket System
#198: Warning: could not send message for past 4 hours
---+
  Reporter:  Mail Delivery Subsystem mailer-dae...@jupiter.metux.de  |   
Owner:  slavazanko
  Type:  defect|  
Status:  accepted  
  Priority:  major |   
Milestone:  4.7   
 Component:  mc-core   | 
Version:  4.6.1 
Resolution:|
Keywords:
  Blocking:|   
Blockedby:
---+
Changes (by slavazanko):

  * owner:  = slavazanko
  * status:  new = accepted


Old description:

 **
 **  THIS IS A WARNING MESSAGE ONLY  **
 **  YOU DO NOT NEED TO RESEND YOUR MESSAGE  **
 **

 The original message was received at Fri, 16 Jan 2009 23:15:07 +0100
 from localhost [127.0.0.1]

- Transcript of session follows -
 weig...@metux.de... Deferred: Connection timed out with nibiru.local.
 Warning: message still undelivered after 4 hours
 Will keep trying until message is 5 days old

New description:

 **
 **  THIS IS A WARNING MESSAGE ONLY  **
 **  YOU DO NOT NEED TO RESEND YOUR MESSAGE  **
 **

 The original message was received at Fri, 16 Jan 2009 23:15:07 +0100
 from localhost [127.0.0.1]

- Transcript of session follows -
 weig...@metux.de... Deferred: Connection timed out with nibiru.local.
 Warning: message still undelivered after 4 hours
 Will keep trying until message is 5 days old

--

-- 
Ticket URL: www.midnight-commander.org/ticket/198#comment:2
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


Re: [Midnight Commander] #198: Warning: could not send message for past 4 hours

2009-01-18 Thread Ticket System
#198: Warning: could not send message for past 4 hours
---+
  Reporter:  Mail Delivery Subsystem mailer-dae...@jupiter.metux.de  |   
Owner:  slavazanko
  Type:  defect|  
Status:  testing   
  Priority:  major |   
Milestone:  4.7   
 Component:  mc-core   | 
Version:  4.6.1 
Resolution:  invalid   |
Keywords:
  Blocking:|   
Blockedby:
---+
Changes (by slavazanko):

  * status:  accepted = testing
  * resolution:  = invalid


-- 
Ticket URL: www.midnight-commander.org/ticket/198#comment:3
Midnight Commander www.midnight-commander.org
Midnight Development Center
___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


[bug #23849] Tabs are replaced with dashes, making edit difficult to use

2009-01-18 Thread Henrik Pauli

Follow-up Comment #1, bug #23849 (project mc):

+1 for the configuration option, preferably a shortcut key as well.  Is M-w
free?

Steven, I find this feature a quite good one, about time MC gets highlights
for whitespace.  It is especially a help when you edit Python files (as there
the indentation matters a lot), or practically anything, it’s good to know
when you edit someone else’s files, what type of indentation they use.

But you are absolutely correct about it getting in the way when one edits a
file where tabs and spaces don’t matter, or when one copies things between
files with Shift-click.

___

Reply to this item at:

  http://savannah.gnu.org/bugs/?23849

___
  Message sent via/by Savannah
  http://savannah.gnu.org/

___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel


[bug #23849] Tabs are replaced with dashes, making edit difficult to use

2009-01-18 Thread Patrick Winnertz

Follow-up Comment #2, bug #23849 (project mc):

Hey Henrik. Thanks for addition to this report. However in the meantime the
development of Midnight Commander has moved from here to it's own domain
(mainly because there was many spam here).

Please have a look here: http://www.midnight-commander.org/ticket/148  ..
this is the ticket about adding a shortcut do switch this feature off. 

___

Reply to this item at:

  http://savannah.gnu.org/bugs/?23849

___
  Nachricht geschickt von/durch Savannah
  http://savannah.gnu.org/

___
Mc-devel mailing list
http://mail.gnome.org/mailman/listinfo/mc-devel