##// END OF EJS Templates
Make set_term_title() default to no-op, as it can cause problems....
Make set_term_title() default to no-op, as it can cause problems. In embedded contexts this can corrupt stdout (e.g. gedit ipython plugin), by default ipython should be 'safe' to use in all contexts. The user-facing terminal app can activate more aggressive configurations as needed. Added an API call to actually toggle the state, and deprecated the old one (which could only disable but not enable).

File last commit:

r723:21a6130e
r1852:37edbe78
Show More
ipy_system_conf.py
24 lines | 528 B | text/x-python | PythonLexer
vivainio
config changes
r130 """ System wide configuration file for IPython.
This will be imported by ipython for all users.
After this ipy_user_conf.py is imported, user specific configuration
should reside there.
"""
vivainio
Fix %upgrade, and suggest using it.
r226 import IPython.ipapi
ip = IPython.ipapi.get()
vivainio
config changes
r130
# add system wide configuration information, import extensions etc. here.
# nothing here is essential
import sys
vivainio
a = !ls, a = %alias now work (captures output or gets ret val for aliases)...
r151 import ext_rescapture # var = !ls and var = %magic
vivainio
Fix %upgrade, and suggest using it.
r226 import pspersistence # %store magic
vivainio
%clear magic added. fix CachedOutput.flush to flush data properly
r242 import clearcmd # %clear
vivainio
Fix %upgrade, and suggest using it.
r226
vivainio
create app_completes, move non-core completers there, install stock completers as default, ipy_signals in sh profile
r681 import ipy_stock_completers
vivainio
added %rep, factored %hist to maghistory, added examples/extension.py template for new magics
r689
vivainio
switch to _ip.load -> init_ipython(ip) approach for loading IPython modules
r723 ip.load('IPython.history')