##// END OF EJS Templates
Change _BrowserLevel.moveto() so that the call to fetch() always tries to...
Change _BrowserLevel.moveto() so that the call to fetch() always tries to fetch enough data for at least one full screen. This makes it possible to simply call moveto(0,0,True) in the constructor. Fix typos and removed the obsolete goto attribute.

File last commit:

r314:fe5fa758
r329:17f62d57
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"