##// END OF EJS Templates
Moving extensions to either quarantine or deathrow....
Moving extensions to either quarantine or deathrow. When a module is moved to quarantine, it means that while we intend to keep it, it is currently broken or sufficiently untested that it can't be in the main IPython codebase. To be moved back into the main IPython codebase a module must: 1. Work fully. 2. Have a test suite. 3. Be a proper IPython extension and tie into the official APIs. 3. Have members of the IPython dev team who are willing to maintain it. When a module is moved to deathrow, it means that the code is either broken and not worth repairing, deprecated, replaced by newer functionality, or code that should be developed and maintained by a third party.

File last commit:

r2267:928c921b
r2267:928c921b
Show More
ipy_kitcfg.py
80 lines | 2.0 KiB | text/x-python | PythonLexer
vivainio
crlf normalization
r851 import os,sys
import ipy_rehashdir,glob
from ipy_rehashdir import selflaunch, PyLauncher
def pylaunchers():
"""Create launchers for python scripts in cwd and store them in alias table
This is useful if you want to invoke .py scripts from ipykit session,
just adding .py files in PATH does not work without file association.
.ipy files will be run like macros.
"""
vivainio
ipykit: PyLauncher first arg strip
r861 fs = glob.glob('*.py') + glob.glob('*.ipy')
vivainio
crlf normalization
r851 for f in fs:
l = PyLauncher(f)
n = os.path.splitext(f)[0]
Brian Granger
Continuing a massive refactor of everything.
r2205 ip.define_alias(n, l)
vivainio
crlf normalization
r851 ip.magic('store '+n)
def exta_imports():
# add some modules that you'd want to be bundled in the ipykit
# library zip file here. Do this if you get ImportErrors from scripts you
# try to launch with 'py' or pylaunchers. In theory you could include
# the whole stdlib here for full script coverage
# note that this is never run, it's just here for py2exe
import distutils.dir_util
vivainio
ipykit improvements (built in Sc1 setup etc.)
r854 def kitroot():
return os.environ.get('IPYKITROOT', None)
vivainio
crlf normalization
r851 def main():
vivainio
ipykit improvements (built in Sc1 setup etc.)
r854
if not kitroot():
vivainio
crlf normalization
r851 print "Can't configure ipykit, IPYKITROOT should be set."
return
vivainio
ipykit improvements (built in Sc1 setup etc.)
r854
os.environ["PATH"] = os.environ["PATH"] + ";" + kitroot() + "\\bin;"
Brian Granger
Continuing a massive refactor of everything.
r2205 ip.push("pylaunchers")
vivainio
ipykit improvements (built in Sc1 setup etc.)
r854 cmds = ip.db.get('syscmdlist', None)
if cmds is None:
ip.magic('rehashx')
cmds = ip.db.get('syscmdlist', [])
#print cmds
if 'sc1' in cmds:
print "Default editor: Sc1"
import ipy_editors
ipy_editors.scite('sc1')
vivainio
crlf normalization
r851
vivainio
ipykit improvements (built in Sc1 setup etc.)
r854 # for icp, imv, imkdir, etc.
import ipy_fsops
greeting = """\n\n === Welcome to ipykit ===
%quickref - learn quickly about IPython.
"""
vivainio
crlf normalization
r851
def ipython_firstrun(ip):
vivainio
ipykit improvements (built in Sc1 setup etc.)
r854
vivainio
crlf normalization
r851 print "First run of ipykit - configuring"
vivainio
ipykit improvements (built in Sc1 setup etc.)
r854
Brian Granger
Continuing a massive refactor of everything.
r2205 ip.define_alias('py',selflaunch)
ip.define_alias('d','dir /w /og /on')
vivainio
crlf normalization
r851 ip.magic('store py')
ip.magic('store d')
vivainio
ipykit improvements (built in Sc1 setup etc.)
r854
bins = kitroot() +'/bin'
vivainio
crlf normalization
r851
vivainio
ipykit improvements (built in Sc1 setup etc.)
r854 print greeting
vivainio
crlf normalization
r851 def init_ipython(ipy):
global ip
ip = ipy
main()