##// END OF EJS Templates
This feature was discussed in #6123, but it doesn't look like anything was ever incorporated into the IPython Notebook....
This feature was discussed in #6123, but it doesn't look like anything was ever incorporated into the IPython Notebook. Here's a brief overview of the changes: - Display of messages from other clients can be toggled on and off from within a notebook, either using the ``<M-m>e`` keyboard shortcut in the web UI, or through the option in the "Kernel" menu. - notebook.js controls whether messages are displayed through a callback that is invoked from kernel.js when no callbacks are available for a message. - The UI displays ``execute_input`` messages originating from an other clients in new cells at the end of the notebook. Output messages (``execute_result`` et al.) will only be displayed if a cell exists with a matching message ID. Pending design questions: - Should each ``execute_input`` message cause a new cell to be created? - Should new cells be placed at the end of the notebook, or elsewhere? If the latter, what criteria should be followed?

File last commit:

r16764:a0c73bd8
r19164:17ac8ca3
Show More
clipboard.py
72 lines | 2.2 KiB | text/x-python | PythonLexer
Robert Kern
Add %paste magic for direct pasting from the clipboard.
r1841 """ Utilities for accessing the platform's clipboard.
"""
import subprocess
Brian Granger
Continuing a massive refactor of everything.
r2205 from IPython.core.error import TryNext
Jörgen Stenarson
Fix of incorrect import statement
r8308 import IPython.utils.py3compat as py3compat
Robert Kern
Add %paste magic for direct pasting from the clipboard.
r1841
Thomas Kluyver
Better clipboard handling, esp. with pywin32...
r13426 class ClipboardEmpty(ValueError):
pass
Robert Kern
Add %paste magic for direct pasting from the clipboard.
r1841 def win32_clipboard_get():
""" Get the current clipboard's text on Windows.
Requires Mark Hammond's pywin32 extensions.
"""
try:
import win32clipboard
except ImportError:
Bradley M. Froehle
Remove args/kwargs handling in TryNext....
r7334 raise TryNext("Getting text from the clipboard requires the pywin32 "
"extensions: http://sourceforge.net/projects/pywin32/")
Bernardo B. Marques
remove all trailling spaces
r4872 win32clipboard.OpenClipboard()
Thomas Kluyver
Better clipboard handling, esp. with pywin32...
r13426 try:
text = win32clipboard.GetClipboardData(win32clipboard.CF_UNICODETEXT)
Thomas Kluyver
Catch more errors from clipboard access on Windows
r16764 except (TypeError, win32clipboard.error):
Thomas Kluyver
Better clipboard handling, esp. with pywin32...
r13426 try:
text = win32clipboard.GetClipboardData(win32clipboard.CF_TEXT)
text = py3compat.cast_unicode(text, py3compat.DEFAULT_ENCODING)
Thomas Kluyver
Catch more errors from clipboard access on Windows
r16764 except (TypeError, win32clipboard.error):
Thomas Kluyver
Better clipboard handling, esp. with pywin32...
r13426 raise ClipboardEmpty
finally:
win32clipboard.CloseClipboard()
Robert Kern
Add %paste magic for direct pasting from the clipboard.
r1841 return text
def osx_clipboard_get():
""" Get the clipboard's text on OS X.
"""
p = subprocess.Popen(['pbpaste', '-Prefer', 'ascii'],
stdout=subprocess.PIPE)
text, stderr = p.communicate()
# Text comes in with old Mac \r line endings. Change them to \n.
Aaron Meurer
Fix %paste in Python 3 on Mac...
r8817 text = text.replace(b'\r', b'\n')
Jörgen Stenarson
cast clipboard_get strings on OSX and Linux to unicode
r8305 text = py3compat.cast_unicode(text, py3compat.DEFAULT_ENCODING)
Robert Kern
Add %paste magic for direct pasting from the clipboard.
r1841 return text
def tkinter_clipboard_get():
""" Get the clipboard's text using Tkinter.
This is the default on systems that are not Windows or OS X. It may
interfere with other UI toolkits and should be replaced with an
implementation that uses that toolkit.
"""
try:
Thomas Kluyver
Better clipboard handling, esp. with pywin32...
r13426 from tkinter import Tk, TclError # Py 3
Robert Kern
Add %paste magic for direct pasting from the clipboard.
r1841 except ImportError:
Thomas Kluyver
Update imports for Python 3...
r13354 try:
Thomas Kluyver
Better clipboard handling, esp. with pywin32...
r13426 from Tkinter import Tk, TclError # Py 2
Thomas Kluyver
Update imports for Python 3...
r13354 except ImportError:
raise TryNext("Getting text from the clipboard on this platform "
"requires Tkinter.")
root = Tk()
Robert Kern
Add %paste magic for direct pasting from the clipboard.
r1841 root.withdraw()
Thomas Kluyver
Better clipboard handling, esp. with pywin32...
r13426 try:
text = root.clipboard_get()
except TclError:
raise ClipboardEmpty
finally:
root.destroy()
Jörgen Stenarson
cast clipboard_get strings on OSX and Linux to unicode
r8305 text = py3compat.cast_unicode(text, py3compat.DEFAULT_ENCODING)
Robert Kern
Add %paste magic for direct pasting from the clipboard.
r1841 return text