* lib/mc.ext.in: Add support for "freeze" - old compression

program used mostly on QNX.
* lib/mc.ext.in.qnx.diff: Remove, it's obsolete.
This commit is contained in:
Pavel Roskin 2001-03-02 16:32:23 +00:00
parent 5df6f10bd5
commit aa76abdadc
3 changed files with 12 additions and 39 deletions

View File

@ -1,3 +1,9 @@
2001-03-02 Pavel Roskin <proski@gnu.org>
* lib/mc.ext.in: Add support for "freeze" - old compression
program used mostly on QNX.
* lib/mc.ext.in.qnx.diff: Remove, it's obsolete.
2001-02-26 Pavel Roskin <proski@gnu.org>
* lib/mc-gnome.ext.in: Remove, it's not used.

View File

@ -427,6 +427,12 @@ regex/\.tar\.bz2$
View=%view{ascii} bzip2 -dc %f 2>/dev/null | tar tvvf -
Extract=bzip2 -dc %f 2>/dev/null | tar xf -
# .tar.F - used in QNX
regex/\.tar\.F$
# Open=%cd %p#utar
View=%view{ascii} freeze -dc %f 2>/dev/null | tar tvvf -
Extract=freeze -dc %f 2>/dev/null | tar xf -
# tar
regex/\.(tar|TAR)$
Open=%cd %p#utar

View File

@ -1,39 +0,0 @@
--- mc.ext.in Fri May 15 08:26:45 1998
+++ mc.ext.in.qnx Mon May 18 13:22:28 1998
@@ -105,26 +105,32 @@
regex/\.t([gp]?z|ar\.g?[zZ])$
Open=%cd tar:%d/%p/
- View=%view{ascii} gzip -dc %f 2>/dev/null | tar tvvf -
+ View=%view{ascii} gzip -dc %f 2>/dev/null | tar tvvf - 2>&1
Extract=gzip -dc %f 2>/dev/null | tar xf -
Icon=compressed.xpm
regex/\.tar\.bz$
# Open=%cd tar:%d/%p/
- View=%view{ascii} bzip -dc %f 2>/dev/null | tar tvvf -
+ View=%view{ascii} bzip -dc %f 2>/dev/null | tar tvvf - 2>&1
Extract=bzip -dc %f 2>/dev/null | tar xf -
Icon=compressed.xpm
regex/\.tar\.bz2$
Open=%cd tar:%d/%p/
- View=%view{ascii} bzip2 -dc %f 2>/dev/null | tar tvvf -
+ View=%view{ascii} bzip2 -dc %f 2>/dev/null | tar tvvf - 2>&1
Extract=bzip2 -dc %f 2>/dev/null | tar xf -
Icon=compressed.xpm
+regex/\.tar\.F$
+# Open=%cd tar:%d/%p/
+ View=%view{ascii} freeze -dc %f 2>/dev/null | tar tvvf - 2>&1
+ Extract=freeze -dc %f 2>/dev/null | tar xf -
+ Icon=compressed.xpm
+
# .tar
shell/.tar
Open=%cd tar:%d/%p/
- View=%view{ascii} tar tvvf %f
+ View=%view{ascii} tar tvvf %f 2>&1
Extract=tar xf %f
Icon=tar.xpm