##// END OF EJS Templates
Prefer ibrowse over igrid as the default browser.
walter.doerwald -
Show More
@@ -2100,20 +2100,20 b' class AttributeDetail(Table):'
2100
2100
2101
2101
2102 try:
2102 try:
2103 from igrid import igrid
2103 from ibrowse import ibrowse
2104 except ImportError:
2104 except ImportError:
2105 # no wx
2105 # No curses (probably Windows)
2106 try:
2106 try:
2107 from ibrowse import ibrowse
2107 from igrid import igrid
2108 except ImportError:
2108 except ImportError:
2109 # No curses (probably Windows) => use ``idump`` as the default display.
2109 # no wx eithevn do => use ``idump`` as the default display.
2110 defaultdisplay = idump
2110 defaultdisplay = idump
2111 else:
2111 else:
2112 defaultdisplay = ibrowse
2112 defaultdisplay = igrid
2113 __all__.append("ibrowse")
2113 __all__.append("igrid")
2114 else:
2114 else:
2115 defaultdisplay = igrid
2115 defaultdisplay = ibrowse
2116 __all__.append("igrid")
2116 __all__.append("ibrowse")
2117
2117
2118
2118
2119 # If we're running under IPython, install an IPython displayhook that
2119 # If we're running under IPython, install an IPython displayhook that
@@ -1,3 +1,8 b''
1 2007-03-10 Walter Doerwald <walter@livinglogic.de>
2
3 * IPython/Extensions/ipipe.py: Prefer ibrowse over igrid
4 as the default browser.
5
1 2007-03-10 Fernando Perez <Fernando.Perez@colorado.edu>
6 2007-03-10 Fernando Perez <Fernando.Perez@colorado.edu>
2
7
3 * IPython/iplib.py (InteractiveShell.__init__): fix for Alex
8 * IPython/iplib.py (InteractiveShell.__init__): fix for Alex
General Comments 0
You need to be logged in to leave comments. Login now