##// END OF EJS Templates
- Make the execution of 'from pylab import *' when -pylab is given be...
- Make the execution of 'from pylab import *' when -pylab is given be optional. A new flag, pylab_import_all controls this behavior, the default is True for backwards compatibility. - Small fixes to previously committed coloring support in tracebacks.

File last commit:

r314:fe5fa758
r554:b5bda5b0
Show More
bkp.sh
22 lines | 451 B | application/x-sh | BashLexer
#!/bin/sh
# Simple backup script for ipython, to keep around a static copy of the whole
# project at the current version point. We do this by exporting from SVN.
# Config here
IPYTHONSVN=$HOME/ipython/svn/ipython/trunk
BACKUPDIR=$HOME/ipython/backup
####
# Code begins
IPVERSION=`ipython -Version`
IPX=ipython-$IPVERSION
ARCHIVE=$BACKUPDIR/$IPX.tgz
svn export $IPYTHONSVN $IPX
tar czf $ARCHIVE $IPX
rm -rf $IPX
echo "Backup left in: $ARCHIVE"