Commit Graph

1264 Commits

Author SHA1 Message Date
MinRK
4a3e1f3185 make markdown error handling js-specific 2012-07-27 19:57:47 -07:00
MinRK
7e7c2fe9e5 catch js errors when rendering markdown cells 2012-07-27 13:36:44 -07:00
Fernando Perez
3e180cb217 Merge pull request #2202 from bfroehle/iptest_IPYTHONDIR
Create a unique & temporary IPYTHONDIR for each testing group.

Following #2148 (unification of Windows / Unix code in iptest), and
in progress towards #1880 (Add parallelism to iptest & test_pr), this
pull request launches each iptest test group with a unique & temporary
`IPYTHONDIR`.

This has two benefits:
* Insulates the test suite from any craziness in your own configuration.
  (Try adding `import sys; sys.exit()` to your config file...).
* Allows multiple test suites to be launched in parallel without the worry of
  conflicts.
2012-07-25 18:44:41 -07:00
Bradley M. Froehle
35493dabd2 Create a unique & temporary IPYTHONDIR for each testing group. 2012-07-25 18:35:55 -07:00
Fernando Perez
ac1d401872 Merge pull request #2204 from bfroehle/fix_os_kill_win32
Work around lack of os.kill in win32.

Fixes iptest brokenness on win32 caused by my having merged #2148 too hastily.  Extra credit to @bfroehle and @minrk for working/testing the fix quickly.
2012-07-25 18:08:46 -07:00
Bradley M. Froehle
f2b9bc6016 Print warning message if process could not be killed. 2012-07-25 17:43:50 -07:00
Bradley M. Froehle
4bf8f834ca Work around lack of os.kill in win32.
Fixes iptest brokenness caused by #2148.
2012-07-25 15:04:54 -07:00
Fernando Perez
b3fcc75530 Merge pull request #2148 from bfroehle/no_more_os_system
win32 iptest: Use subprocess.Popen() instead of os.system().

The call to `os.system` in `iptest` prevents us from easily setting `$IPYTHONDIR` to a temporary directory.  In theory we should be able to use `subprocess.Popen` instead of `os.system` in Windows. This would unify the code structure and make it easy to pass in a different environment.

Note that Python < 2.7 does not have `os.kill`.  I've attempted to work around this by using `ctypes` to kill any living processes.
2012-07-24 21:40:32 -07:00
Min RK
8373a99eb8 Merge pull request #2183 from jasongrout/trigger-kernel
Include the kernel object in the event object passed to kernel events
2012-07-21 09:50:15 -07:00
Jason Grout
e9324378e8 Include the kernel object in the event object passed to kernel events 2012-07-21 07:08:49 -05:00
Min RK
d6c3b3f814 Merge pull request #2182 from minrk/fix2159
handle undefined param in notebooklist

PR #2159 introduced a bug preventing the notebook list from drawing
2012-07-20 23:40:23 -07:00
MinRK
d77e9a4eba handle undefined param in notebooklist
PR #2159 introduced a bug preventing the notebook list from drawing
2012-07-21 01:38:47 -05:00
Min RK
8b34dfc405 Merge pull request #2051 from jasongrout/stream-metadata
Add a metadata attribute to messages

subheader is removed in favor of the new metadata dict,
reducing degeneracy.
2012-07-20 22:16:50 -07:00
MinRK
25aa3003ac add metadata to javascript msg spec implementation 2012-07-20 22:16:12 -05:00
Jason Grout
7095b9eb87 Make top-level metadata dictionary not optional. 2012-07-20 22:16:08 -05:00
Jason Grout
4ad79b41f6 Set default metadata for javascript callback 2012-07-20 22:14:33 -05:00
Jason Grout
9436f33035 Add an optional metadata attribute to all messages and add a session-level default metadata attribute. 2012-07-20 22:14:32 -05:00
Jason Grout
009e5583cf Pass the header of output and clear_output messages to javascript callbacks 2012-07-20 22:14:32 -05:00
Bussonnier Matthias
260a107d80 Merge pull request #2159 from Carreau/dashbord_refresh_on_error
show message on notebook list if server is unreachable
2012-07-20 16:46:02 -07:00
Matthias BUSSONNIER
cf2cfa45e1 pep8 2012-07-20 18:39:07 -05:00
Bussonnier Matthias
70ffbd609b Merge pull request #2090 from v923z/master
Notebook, Alt-enter : execute cell, append codecell below.
2012-07-20 10:32:10 -07:00
v923z
eaf53eeb9a Replaced .toJSON().input by .get_text() 2012-07-20 16:07:23 +03:00
v923z
0e4dbb2880 Added checking for emptiness of cell below. 2012-07-20 15:03:33 +03:00
v923z
eb47f0eb8d Added some comments to the Alt-Enter code part, and also added checking whether a new code cell is really needed. 2012-07-19 22:35:38 +03:00
Bussonnier Matthias
3730b710e6 Merge pull request #2158 from Carreau/tuple_params
Remove tuple auto unpack in function definition 

This is for 2to3 compatibility., and also deactivate the application of 
the corresponding 2to3 fix when using python3 and setup.py.
2012-07-18 05:43:06 -07:00
Thomas Kluyver
70f8062ce8 Merge pull request #2089 from bfroehle/unittest_deprecation_warnings
Fix unittest DeprecationWarnings
2012-07-18 02:31:52 -07:00
Matthias BUSSONNIER
268fdd80c3 remove tuple_params fix from 2to3 in setup.py 2012-07-17 23:48:20 -05:00
Matthias BUSSONNIER
23cf94023d show message on notebook list if server is unreachable
usefull when :
server goes down, you don't notice it on dashboard

restart on https, cookies is unvalid, autoreload don't work
2012-07-17 23:21:07 -05:00
Bradley M. Froehle
cfc86faefb s/nt.assert_equals/nt.assert_equal/ 2012-07-17 08:30:53 -07:00
Bradley M. Froehle
05a30fa6d4 s/assertEquals/assertEqual/ 2012-07-17 08:30:53 -07:00
Thomas Kluyver
aaf911c5e5 Merge pull request #2140 from bfroehle/2to3_has_key
2to3: Apply `has_key` fixer.
2012-07-17 04:58:13 -07:00
Bradley M. Froehle
71b4bf797c win32 iptest: Use subprocess.Popen() instead of os.system(). 2012-07-16 17:29:02 -07:00
Bradley M. Froehle
9ff624471d Skip has_key when running 2to3. 2012-07-15 09:55:56 -07:00
Thomas Kluyver
0c157dd01c Merge pull request #2134 from bfroehle/2to3_next
Apply 2to3 `next` fix.
2012-07-15 02:57:32 -07:00
Bradley M. Froehle
9dd190f134 Apply 2to3 next fix.
Manually set `next = __next__` for Python 2 support.
2012-07-13 15:59:26 -07:00
Bussonnier Matthias
0b44186d76 Merge pull request #2100 from Carreau/2to3fixes
python 2 and 3 compatibility without 2to3

apply some fixes :
- apply (deactivated in setup.py now)
- repr  (deactivated in setup.py now)
- print (only in modules with print >>)
- raise (partially) 

don't touch deathrow and quarantine.
2012-07-13 01:07:56 -07:00
Bussonnier Matthias
f38cf983c5 Merge pull request #2128 from Carreau/fixes-2120
open notebook copy in different tabs
2012-07-12 11:31:37 -07:00
Bussonnier Matthias
22e757f91d Merge pull request #2073 from Carreau/fixes-1997
Allows both password and prefix for notebook at the same time.
2012-07-12 11:28:33 -07:00
Matthias BUSSONNIER
ca65de9fa2 open notebook copy in different tabs
returning false to allow modifier+click,
otherwise open 2 tabs at once.
2012-07-12 18:19:13 +02:00
Bussonnier Matthias
4ec828c3db Merge pull request #1993 from Carreau/printview
Update print-view css, and link the print css when trying to print a notebook without going through the print view.
2012-07-12 06:18:25 -07:00
Matthias BUSSONNIER
011403a14f use print function in module with print >> 2012-07-05 14:32:56 +02:00
Matthias BUSSONNIER
bd2ccf816a deactivate 2to3 repr fix when using setup.py 2012-07-05 12:56:29 +02:00
Matthias BUSSONNIER
86788872a8 deactivate 2to3 apply fix when using setup.py 2012-07-05 12:54:17 +02:00
Thomas Kluyver
b43f24da5f Merge pull request #2064 from Carreau/pep-3110
Use new style "except Exception as e" syntax.
2012-07-04 13:50:45 -07:00
Matthias BUSSONNIER
908c4ea8f9 fix english in comment 2012-07-04 13:25:23 +02:00
Matthias BUSSONNIER
86787a3b62 disable some specific 2to3 fixes whith setup.py
this should allow a more compatible codebase between python 2.x and 3.x
2012-07-04 08:35:35 +02:00
Zoltán Vörös
a2665ef341 Added new short key for cell execution 2012-07-03 20:55:02 +02:00
Min RK
a7571d1cc7 Merge pull request #2076 from fperez/exclude-static-tests
Skip notebook 'static' dir in test suite.

There's nothing there we should be running python tests on, and
occasionally python files may appear there that cause problems to nose
(e.g. mathjax ships a non-py3 valid conf.py that breaks py3 testing).

Closes #2075
2012-07-01 16:21:51 -07:00
Fernando Perez
22071dfede Skip notebook 'static' dir in test suite.
There's nothing there we should be running python tests on, and
occasionally python files may appear there that cause problems to nose
(e.g. mathjax ships a non-py3 valid conf.py that breaks py3 testing).
2012-07-01 13:14:47 -07:00
Matthias BUSSONNIER
3c743846a7 use full base_url in html and js 2012-07-01 21:59:09 +02:00