Everyone, say hi to EIN.

This commit is contained in:
John Miller 2017-07-12 15:47:26 -05:00
parent 3614bbcd66
commit 36f4a45e79
12 changed files with 263 additions and 166 deletions

View file

@ -1,5 +1,6 @@
The Emacs IPython Notebook
==========================
=====================================
.. image:: ein_logo.jpg
.. el:package:: ein
@ -10,8 +11,7 @@ evaluation, object inspection and code completion. These features can be
accessed anywhere in Emacs and improve Python code editing and reading in
general in Emacs.
.. _`Emacs IPython Notebook (EIN)`:
https://github.com/millejoh/emacs-ipython-notebook
.. _`Emacs IPython Notebook (EIN)`: https://github.com/millejoh/emacs-ipython-notebook
.. _SLIME: http://common-lisp.net/project/slime/
@ -61,7 +61,6 @@ Links:
.. [#] Use the command :el:symbol:`ein:connect-to-notebook-command`.
Quick try
---------
@ -650,16 +649,13 @@ everything the log buffer. You can reset the patch and log level with
Change Log
==========
v0.13.0
-------
* Added commands ``ein:jupyter-server-start``, ``ein:jupyter-server-stop``, and
``ein:jupyter-server-login-and-open``.
* Added a very basic and quite silly object inspector that has almost no
features at the moment. Nonetheless, the curious can try executing ``C-c i``
over a defined object in a notebook buffer.
* Add a keep-alive feature to prevent cookie expiration on very long-running
notebook sessions.
.. include:: Changelog/v0_13_0.txt
.. include:: Changelog/v0_12_3.txt
.. include:: Changelog/v0_12_2.txt
v0.12.1
-------

View file

@ -4,7 +4,7 @@
*
* Sphinx stylesheet -- basic theme.
*
* :copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
* :copyright: Copyright 2007-2017 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
*
*/
@ -398,6 +398,13 @@ table.field-list td, table.field-list th {
margin: 0;
}
.field-name {
-moz-hyphens: manual;
-ms-hyphens: manual;
-webkit-hyphens: manual;
hyphens: manual;
}
/* -- other body styles ----------------------------------------------------- */
ol.arabic {

File diff suppressed because one or more lines are too long

View file

@ -4,7 +4,7 @@
*
* Sphinx JavaScript utilities for all documentation.
*
* :copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
* :copyright: Copyright 2007-2017 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
*
*/

View file

@ -47,8 +47,10 @@
.highlight .mh { color: #208050 } /* Literal.Number.Hex */
.highlight .mi { color: #208050 } /* Literal.Number.Integer */
.highlight .mo { color: #208050 } /* Literal.Number.Oct */
.highlight .sa { color: #4070a0 } /* Literal.String.Affix */
.highlight .sb { color: #4070a0 } /* Literal.String.Backtick */
.highlight .sc { color: #4070a0 } /* Literal.String.Char */
.highlight .dl { color: #4070a0 } /* Literal.String.Delimiter */
.highlight .sd { color: #4070a0; font-style: italic } /* Literal.String.Doc */
.highlight .s2 { color: #4070a0 } /* Literal.String.Double */
.highlight .se { color: #4070a0; font-weight: bold } /* Literal.String.Escape */
@ -59,7 +61,9 @@
.highlight .s1 { color: #4070a0 } /* Literal.String.Single */
.highlight .ss { color: #517918 } /* Literal.String.Symbol */
.highlight .bp { color: #007020 } /* Name.Builtin.Pseudo */
.highlight .fm { color: #06287e } /* Name.Function.Magic */
.highlight .vc { color: #bb60d5 } /* Name.Variable.Class */
.highlight .vg { color: #bb60d5 } /* Name.Variable.Global */
.highlight .vi { color: #bb60d5 } /* Name.Variable.Instance */
.highlight .vm { color: #bb60d5 } /* Name.Variable.Magic */
.highlight .il { color: #208050 } /* Literal.Number.Integer.Long */

View file

@ -4,7 +4,7 @@
*
* Sphinx JavaScript utilities for the full-text search.
*
* :copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
* :copyright: Copyright 2007-2017 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
*
*/

View file

@ -4,7 +4,7 @@
*
* sphinx.websupport utilities for all documentation.
*
* :copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
* :copyright: Copyright 2007-2017 by the Sphinx team, see AUTHORS.
* :license: BSD, see LICENSE for details.
*
*/

View file

@ -3,7 +3,6 @@
<!doctype html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
@ -34,7 +33,7 @@
<script type="text/javascript" src="_static/css3-mediaqueries.js"></script>
<![endif]-->
</head>
<body role="document">
<body>
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
@ -288,7 +287,7 @@
</div>
<div class="footer" role="contentinfo">
&#169; Copyright 2017, John Miller.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.5.1.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.6.2.
</div>
</body>
</html>

File diff suppressed because it is too large Load diff

Binary file not shown.

View file

@ -2,7 +2,6 @@
<!doctype html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
@ -41,7 +40,7 @@
<![endif]-->
</head>
<body role="document">
<body>
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
@ -101,7 +100,7 @@
</div>
<div class="footer" role="contentinfo">
&#169; Copyright 2017, John Miller.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.5.1.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.6.2.
</div>
</body>
</html>

File diff suppressed because one or more lines are too long