##// END OF EJS Templates
Backport PR #2102: Fix logging on interactive shell....
Backport PR #2102: Fix logging on interactive shell. Add a missing string format code in init_logs() and move init_logstart() after init_magics(), to fix dependency issues. This is a proposed fix for the case a log file is given in `ipython_config.py`, eg: ```python # Start logging to the given file in append mode. import os from time import strftime f = os.path.join(c.TerminalIPythonApp.ipython_dir, strftime('%Y-%m-%d')+".py") c.TerminalInteractiveShell.logappend = f ``` which completely breaks in current `master` code

File last commit:

r4872:34c10438
r7990:a4d72683
Show More
ipy_workdir.py
41 lines | 1.0 KiB | text/x-python | PythonLexer
Brian Granger
ipapi.py => core/ipapi.py and imports updated.
r2027 from IPython.core import ipapi
ip = ipapi.get()
vivainio
crlf normalization
r851
import os, subprocess
workdir = None
def workdir_f(ip,line):
Bernardo B. Marques
remove all trailling spaces
r4872 """ Exceute commands residing in cwd elsewhere
vivainio
crlf normalization
r851 Example::
Bernardo B. Marques
remove all trailling spaces
r4872
vivainio
crlf normalization
r851 workdir /myfiles
cd bin
Bernardo B. Marques
remove all trailling spaces
r4872 workdir myscript.py
vivainio
crlf normalization
r851 executes myscript.py (stored in bin, but not in path) in /myfiles
"""
global workdir
dummy,cmd = line.split(None,1)
if os.path.isdir(cmd):
workdir = os.path.abspath(cmd)
print "Set workdir",workdir
elif workdir is None:
print "Please set workdir first by doing e.g. 'workdir q:/'"
else:
sp = cmd.split(None,1)
if len(sp) == 1:
head, tail = cmd, ''
else:
head, tail = sp
if os.path.isfile(head):
cmd = os.path.abspath(head) + ' ' + tail
print "Execute command '" + cmd+ "' in",workdir
Jörgen Stenarson
Search of getcwd and replace with getcwdu. Ignoring core/prompts.py
r4208 olddir = os.getcwdu()
vivainio
crlf normalization
r851 os.chdir(workdir)
try:
os.system(cmd)
finally:
os.chdir(olddir)
Brian Granger
Continuing a massive refactor of everything.
r2205 ip.define_alias("workdir",workdir_f)