##// END OF EJS Templates
Merging the new-extensions branch....
Merging the new-extensions branch. * Previously, the latex Sphinx docs were in a single chapter. This has been fixed by adding a sixth argument of True to the ``latex_documents`` attribute of :file:`conf.py`. * The ``psum`` example in the MPI documentation has been updated to mpi4py version 1.1.0. Thanks to J. Thomas for this fix. * The top-level, zero-install :file:`ipython.py` script has been updated to the new application launching API. * The extension loading functions have been renamed to :func:`load_ipython_extension` and :func:`unload_ipython_extension`. * The :mod:`IPython.extensions.pretty` extension has been moved out of quarantine and fully updated to the new extension API. * New magics for loading/unloading/reloading extensions have been added: ``%load_ext``, ``%unload_ext`` and ``%reload_ext``.

File last commit:

r2204:737ad9d6
r2286:4088ad0e merge
Show More
platutils_posix.py
48 lines | 1.2 KiB | text/x-python | PythonLexer
ville
initialization (no svn history)
r988 # -*- coding: utf-8 -*-
""" Platform specific utility functions, posix version
Importing this module directly is not portable - rather, import platutils
to use these functions in platform agnostic fashion.
"""
#*****************************************************************************
# Copyright (C) 2001-2006 Fernando Perez <fperez@colorado.edu>
#
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING, distributed as part of this software.
#*****************************************************************************
import sys
import os
Fernando Perez
Make set_term_title() default to no-op, as it can cause problems....
r1852 ignore_termtitle = True
ville
initialization (no svn history)
r988
Brian Granger
More work on InteractiveShell and ipmaker. It works!
r2204
ville
initialization (no svn history)
r988 def _dummy_op(*a, **b):
""" A no-op function """
Fernando Perez
Merging (slightly modified) Tom Fetherston's demo branch....
r2102
ville
initialization (no svn history)
r988 def _set_term_title_xterm(title):
""" Change virtual terminal title in xterm-workalikes """
Fernando Perez
Make set_term_title() default to no-op, as it can cause problems....
r1852 sys.stdout.write('\033]0;%s\007' % title)
ville
initialization (no svn history)
r988
Brian Granger
More work on InteractiveShell and ipmaker. It works!
r2204 TERM = os.environ.get('TERM','')
ville
initialization (no svn history)
r988
Brian Granger
More work on InteractiveShell and ipmaker. It works!
r2204 if (TERM == 'xterm') or (TERM == 'xterm-color'):
ville
initialization (no svn history)
r988 set_term_title = _set_term_title_xterm
else:
set_term_title = _dummy_op
Brian Granger
Moving find_exe -> platutils.find_cmd and making is cross platform....
r1975
Fernando Perez
Merging (slightly modified) Tom Fetherston's demo branch....
r2102
Brian Granger
Moving find_exe -> platutils.find_cmd and making is cross platform....
r1975 def find_cmd(cmd):
"""Find the full path to a command using which."""
return os.popen('which %s' % cmd).read().strip()
Administrator
Added platutils.get_long_path_name to expand paths with "~" on win32....
r1986
Fernando Perez
Merging (slightly modified) Tom Fetherston's demo branch....
r2102
Administrator
Added platutils.get_long_path_name to expand paths with "~" on win32....
r1986 def get_long_path_name(path):
"""Dummy no-op."""
return path
Fernando Perez
Merging (slightly modified) Tom Fetherston's demo branch....
r2102
Tom Fetherston
rollback to working
r1939 def term_clear():
os.system('clear')