diff --git a/IPython/iplib.py b/IPython/iplib.py index 4368d0c..bab98b1 100644 --- a/IPython/iplib.py +++ b/IPython/iplib.py @@ -6,7 +6,7 @@ Requires Python 2.3 or newer. This file contains all the classes and helper functions specific to IPython. -$Id: iplib.py 1355 2006-06-07 16:56:50Z vivainio $ +$Id: iplib.py 1356 2006-06-07 23:51:05Z fperez $ """ #***************************************************************************** @@ -566,13 +566,13 @@ class InteractiveShell(object,Magic): # --color switch out of the box if 'bsd' in sys.platform: ls_extra = ( # ls normal files only - 'lf ls -F -o %l | grep ^-', + 'lf ls -lF | grep ^-', # ls symbolic links - 'lk ls -F -o %l | grep ^l', + 'lk ls -lF | grep ^l', # directories or links to directories, - 'ldir ls -F -o %l | grep /$', + 'ldir ls -lF | grep /$', # things which are executable - 'lx ls -F -o %l | grep ^-..x', + 'lx ls -lF | grep ^-..x', ) auto_alias = auto_alias + ls_extra elif os.name in ['nt','dos']: diff --git a/doc/ChangeLog b/doc/ChangeLog index 82af9eb..d36d70e 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,9 +1,16 @@ +2006-06-07 Fernando Perez + + * IPython/iplib.py (InteractiveShell.__init__): update BSD fix, as + the original fix was incomplete. Patch submitted by W. Maier. + 2006-06-07 Ville Vainio * iplib.py,Magic.py, ipmaker.py (magic_rehashx): Confirmation prompts can be supressed by 'quiet' option. _ip.options.quiet = 1 means "assume yes for all yes/no queries". +2006-06-06 *** Released version 0.7.2 + 2006-06-06 Fernando Perez * IPython/Release.py (version): Made 0.7.2 final for release.