From c1e9a69f3b2380ea955cb6104c1bde81f9e80d3c 2007-03-10 16:21:18 From: walter.doerwald Date: 2007-03-10 16:21:18 Subject: [PATCH] Prefer ibrowse over igrid as the default browser. --- diff --git a/IPython/Extensions/ipipe.py b/IPython/Extensions/ipipe.py index c242bc4..4ced5b2 100644 --- a/IPython/Extensions/ipipe.py +++ b/IPython/Extensions/ipipe.py @@ -2100,20 +2100,20 @@ class AttributeDetail(Table): try: - from igrid import igrid + from ibrowse import ibrowse except ImportError: - # no wx + # No curses (probably Windows) try: - from ibrowse import ibrowse + from igrid import igrid except ImportError: - # No curses (probably Windows) => use ``idump`` as the default display. + # no wx eithevn do => use ``idump`` as the default display. defaultdisplay = idump else: - defaultdisplay = ibrowse - __all__.append("ibrowse") + defaultdisplay = igrid + __all__.append("igrid") else: - defaultdisplay = igrid - __all__.append("igrid") + defaultdisplay = ibrowse + __all__.append("ibrowse") # If we're running under IPython, install an IPython displayhook that diff --git a/doc/ChangeLog b/doc/ChangeLog index 8bff1f8..aca17de 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,8 @@ +2007-03-10 Walter Doerwald + + * IPython/Extensions/ipipe.py: Prefer ibrowse over igrid + as the default browser. + 2007-03-10 Fernando Perez * IPython/iplib.py (InteractiveShell.__init__): fix for Alex