##// END OF EJS Templates
Update BSD fix for aliases, the previous patch was incomplete. Submitted by...
fperez -
Show More
@@ -6,7 +6,7 b' Requires Python 2.3 or newer.'
6
6
7 This file contains all the classes and helper functions specific to IPython.
7 This file contains all the classes and helper functions specific to IPython.
8
8
9 $Id: iplib.py 1355 2006-06-07 16:56:50Z vivainio $
9 $Id: iplib.py 1356 2006-06-07 23:51:05Z fperez $
10 """
10 """
11
11
12 #*****************************************************************************
12 #*****************************************************************************
@@ -566,13 +566,13 b' class InteractiveShell(object,Magic):'
566 # --color switch out of the box
566 # --color switch out of the box
567 if 'bsd' in sys.platform:
567 if 'bsd' in sys.platform:
568 ls_extra = ( # ls normal files only
568 ls_extra = ( # ls normal files only
569 'lf ls -F -o %l | grep ^-',
569 'lf ls -lF | grep ^-',
570 # ls symbolic links
570 # ls symbolic links
571 'lk ls -F -o %l | grep ^l',
571 'lk ls -lF | grep ^l',
572 # directories or links to directories,
572 # directories or links to directories,
573 'ldir ls -F -o %l | grep /$',
573 'ldir ls -lF | grep /$',
574 # things which are executable
574 # things which are executable
575 'lx ls -F -o %l | grep ^-..x',
575 'lx ls -lF | grep ^-..x',
576 )
576 )
577 auto_alias = auto_alias + ls_extra
577 auto_alias = auto_alias + ls_extra
578 elif os.name in ['nt','dos']:
578 elif os.name in ['nt','dos']:
@@ -1,9 +1,16 b''
1 2006-06-07 Fernando Perez <Fernando.Perez@colorado.edu>
2
3 * IPython/iplib.py (InteractiveShell.__init__): update BSD fix, as
4 the original fix was incomplete. Patch submitted by W. Maier.
5
1 2006-06-07 Ville Vainio <vivainio@gmail.com>
6 2006-06-07 Ville Vainio <vivainio@gmail.com>
2
7
3 * iplib.py,Magic.py, ipmaker.py (magic_rehashx):
8 * iplib.py,Magic.py, ipmaker.py (magic_rehashx):
4 Confirmation prompts can be supressed by 'quiet' option.
9 Confirmation prompts can be supressed by 'quiet' option.
5 _ip.options.quiet = 1 means "assume yes for all yes/no queries".
10 _ip.options.quiet = 1 means "assume yes for all yes/no queries".
6
11
12 2006-06-06 *** Released version 0.7.2
13
7 2006-06-06 Fernando Perez <Fernando.Perez@colorado.edu>
14 2006-06-06 Fernando Perez <Fernando.Perez@colorado.edu>
8
15
9 * IPython/Release.py (version): Made 0.7.2 final for release.
16 * IPython/Release.py (version): Made 0.7.2 final for release.
General Comments 0
You need to be logged in to leave comments. Login now