##// END OF EJS Templates
Lots of doc work.
Brian E. Granger -
Show More
@@ -1,7 +1,7 b''
1 1 {
2 2 "metadata": {
3 3 "name": "",
4 "signature": "sha256:fe4dbf207e38eb8151a0b18d1d01d727f9ee6ea3a08c16da17283f543d3b7925"
4 "signature": "sha256:a89ddd606f68e27067a5e2301a4d19a3c149131f4f07be4483a65979e26bebe0"
5 5 },
6 6 "nbformat": 3,
7 7 "nbformat_minor": 0,
@@ -31,6 +31,17 b''
31 31 ]
32 32 },
33 33 {
34 "cell_type": "markdown",
35 "metadata": {},
36 "source": [
37 "IPython extensions allow custom magic commands to be shipped as standalone libraries. IPython includes a few extensions that define magic commands for working with code in other languages.\n",
38 "\n",
39 "<div class=\"alert\" style=\"margin: 10px\">\n",
40 "We are in the process of moving these builtin extensions to their parent projects (Cython, oct2py and rpy2). Once this happens this documentation will move as well.\n",
41 "</div>"
42 ]
43 },
44 {
34 45 "cell_type": "heading",
35 46 "level": 2,
36 47 "metadata": {},
@@ -1,7 +1,7 b''
1 1 {
2 2 "metadata": {
3 3 "name": "",
4 "signature": "sha256:50f0a98d05f9e0c43ab5f1bc6dd6a5e61d64a7f585eb98526b45f8a82dcec827"
4 "signature": "sha256:9081cd113ba2044ff4184aca7ea71d8b9b8aa374d44ebc893e9d00b5bbd91217"
5 5 },
6 6 "nbformat": 3,
7 7 "nbformat_minor": 0,
@@ -27,7 +27,14 b''
27 27 "level": 1,
28 28 "metadata": {},
29 29 "source": [
30 "Customization of IPython"
30 "Customization"
31 ]
32 },
33 {
34 "cell_type": "markdown",
35 "metadata": {},
36 "source": [
37 "IPython has rich APIs for customization. Many behaviors of the different IPython applications can be configured using command line arguments or configuration files. IPython's core syntax and command line features can also be customized through input filters, custom magic commands, etc."
31 38 ]
32 39 },
33 40 {
1 NO CONTENT: file renamed from examples/Core/Cell Magics.ipynb to examples/IPython Kernel/Cell Magics.ipynb
@@ -1,7 +1,7 b''
1 1 {
2 2 "metadata": {
3 3 "name": "",
4 "signature": "sha256:de5d592ea428f67f49f326d419774eff3e0b4402145bb5f3ce7cac49cc528080"
4 "signature": "sha256:0c0453ac3ddbb0ea6397e7f7216e6e005c4d1fe6e089921af39e874a411d7ed1"
5 5 },
6 6 "nbformat": 3,
7 7 "nbformat_minor": 0,
@@ -27,7 +27,14 b''
27 27 "level": 1,
28 28 "metadata": {},
29 29 "source": [
30 "Miscellaneous Topics"
30 "IPython Kernel"
31 ]
32 },
33 {
34 "cell_type": "markdown",
35 "metadata": {},
36 "source": [
37 "IPython provides extensions to the Python programming language that make working interactively convenient and efficient. These extensions are implemented in the IPython Kernel and are available in all of the IPython Frontends (Notebook, Terminal, Console and Qt Console) when running this kernel."
31 38 ]
32 39 },
33 40 {
@@ -39,6 +46,14 b''
39 46 ]
40 47 },
41 48 {
49 "cell_type": "markdown",
50 "metadata": {},
51 "source": [
52 "* [Cell Magics](Cell Magics.ipynb)\n",
53 "* [Script Magics](Script Magics.ipynb)"
54 ]
55 },
56 {
42 57 "cell_type": "heading",
43 58 "level": 2,
44 59 "metadata": {},
1 NO CONTENT: file renamed from examples/Core/Script Magics.ipynb to examples/IPython Kernel/Script Magics.ipynb
1 NO CONTENT: file renamed from examples/Core/ipython-get-history.py to examples/IPython Kernel/ipython-get-history.py
@@ -1,7 +1,7 b''
1 1 {
2 2 "metadata": {
3 3 "name": "",
4 "signature": "sha256:7aef917e7be3cb0881b911b9dbab7a5198c83ddfaaca6ec3499716f4a347c87b"
4 "signature": "sha256:f047f5edb4201c0c7aa38bdf31058bf6ab2785d53e7a03cdbd4e4ff4217c0007"
5 5 },
6 6 "nbformat": 3,
7 7 "nbformat_minor": 0,
@@ -42,14 +42,14 b''
42 42 "cell_type": "markdown",
43 43 "metadata": {},
44 44 "source": [
45 "* [Core](Core/Index.ipynb): IPython's core syntax and command line features available in all of our frontends\n",
45 "* [IPython Kernel](IPython Kernel/Index.ipynb): IPython's core syntax and command line features available in all frontends\n",
46 46 "* [Notebook](Notebook/Index.ipynb): The IPython Notebook frontend\n",
47 "* [Widgets](Widgets/Index.ipynb): Interactive JavaScript/HTML widgets and `interact`\n",
48 "* [Parallel](Parallel/Index.ipynb): IPython's library for interactive parallel computing\n",
47 "* [Interactive Widgets](Interactive Widgets/Index.ipynb): Interactive JavaScript/HTML widgets and `interact`\n",
48 "* [Parallel Computing](Parallel Computing/Index.ipynb): IPython's library for interactive parallel computing\n",
49 49 "* [Customization](Customization/Index.ipynb): How to configure IPython and customize it with magics, extensions, etc.\n",
50 50 "* [Embedding](Embedding/Index.ipynb): Embedding and reusing IPython's components into other applications\n",
51 51 "* [Builtin Extensions](Builtin Extensions/Index.ipynb): Extensions we ship with IPython\n",
52 "* [Misc](Misc/Index.ipynb): Content that doesn't fit anywhere else"
52 "* [Miscellaneous](Miscellaneous/Index.ipynb): Documentation that doesn't fit anywhere else"
53 53 ]
54 54 }
55 55 ],
1 NO CONTENT: file renamed from examples/Widgets/Beat Frequencies.ipynb to examples/Interactive Widgets/Beat Frequencies.ipynb
1 NO CONTENT: file renamed from examples/Widgets/Custom Widgets.ipynb to examples/Interactive Widgets/Custom Widgets.ipynb
1 NO CONTENT: file renamed from examples/Widgets/Exploring Graphs.ipynb to examples/Interactive Widgets/Exploring Graphs.ipynb
1 NO CONTENT: file renamed from examples/Widgets/Export As (nbconvert).ipynb to examples/Interactive Widgets/Export As (nbconvert).ipynb
1 NO CONTENT: file renamed from examples/Widgets/Factoring.ipynb to examples/Interactive Widgets/Factoring.ipynb
1 NO CONTENT: file renamed from examples/Widgets/File Upload Widget.ipynb to examples/Interactive Widgets/File Upload Widget.ipynb
1 NO CONTENT: file renamed from examples/Widgets/Image Browser.ipynb to examples/Interactive Widgets/Image Browser.ipynb
1 NO CONTENT: file renamed from examples/Widgets/Image Processing.ipynb to examples/Interactive Widgets/Image Processing.ipynb
@@ -1,7 +1,7 b''
1 1 {
2 2 "metadata": {
3 3 "name": "",
4 "signature": "sha256:63baf57fdd892f6dd1f3c23b817e1458ebe337b6c5bc7114ff697054a5162f99"
4 "signature": "sha256:1aeb403a0ea9cc1412348f98ec713b798e197bed05d8bb28de6824095758487b"
5 5 },
6 6 "nbformat": 3,
7 7 "nbformat_minor": 0,
@@ -27,7 +27,14 b''
27 27 "level": 1,
28 28 "metadata": {},
29 29 "source": [
30 "Interactive JavaScript Widgets"
30 "Interactive Widgets"
31 ]
32 },
33 {
34 "cell_type": "markdown",
35 "metadata": {},
36 "source": [
37 "IPython includes an architecture for interactive widgets that tie together Python code running in the kernel and JavaScript/HTML/CSS running in the browser. These widgets enable users to explore their code and data interactively."
31 38 ]
32 39 },
33 40 {
@@ -43,7 +50,7 b''
43 50 "metadata": {},
44 51 "source": [
45 52 "- [Using Interact](Using Interact.ipynb)\n",
46 "- [Widgets Overview](Widgets Overview.ipynb) \n",
53 "- [Widget Basics](Widget Basic.ipynb) \n",
47 54 "- [Widget Events](Widget Events.ipynb) \n",
48 55 "- [Widget Placement](Widget Placement.ipynb) \n",
49 56 "- [Widget Styles](Widget Styles.ipynb) \n",
1 NO CONTENT: file renamed from examples/Widgets/Lorenz Differential Equations.ipynb to examples/Interactive Widgets/Lorenz Differential Equations.ipynb
1 NO CONTENT: file renamed from examples/Widgets/Nonblocking Console.ipynb to examples/Interactive Widgets/Nonblocking Console.ipynb
1 NO CONTENT: file renamed from examples/Widgets/Using Interact.ipynb to examples/Interactive Widgets/Using Interact.ipynb
1 NO CONTENT: file renamed from examples/Widgets/Variable Inspector.ipynb to examples/Interactive Widgets/Variable Inspector.ipynb
1 NO CONTENT: file renamed from examples/Widgets/Widget Alignment.ipynb to examples/Interactive Widgets/Widget Alignment.ipynb
1 NO CONTENT: file renamed from examples/Widgets/Widgets Overview.ipynb to examples/Interactive Widgets/Widget Basics.ipynb
1 NO CONTENT: file renamed from examples/Widgets/Widget Events.ipynb to examples/Interactive Widgets/Widget Events.ipynb
1 NO CONTENT: file renamed from examples/Widgets/Widget Placement.ipynb to examples/Interactive Widgets/Widget Placement.ipynb
1 NO CONTENT: file renamed from examples/Widgets/Widget Styles.ipynb to examples/Interactive Widgets/Widget Styles.ipynb
1 NO CONTENT: file renamed from examples/Misc/Background Jobs.ipynb to examples/Miscellaneous/Background Jobs.ipynb
@@ -1,7 +1,7 b''
1 1 {
2 2 "metadata": {
3 3 "name": "",
4 "signature": "sha256:d372ee882991ad9443b66587f16b75a398a5f3e451a6b29528d382b2724644d9"
4 "signature": "sha256:5a6c0780821e9af91f7138522ac5dc8d37ad7b23919120fba8d4de23fd6af80f"
5 5 },
6 6 "nbformat": 3,
7 7 "nbformat_minor": 0,
@@ -27,23 +27,22 b''
27 27 "level": 1,
28 28 "metadata": {},
29 29 "source": [
30 "Core Syntax and Command Line Features"
30 "Miscellaneous Topics"
31 31 ]
32 32 },
33 33 {
34 "cell_type": "heading",
35 "level": 2,
34 "cell_type": "markdown",
36 35 "metadata": {},
37 36 "source": [
38 "Tutorials"
37 "Some IPython documentation topics just don't fit well anywhere else."
39 38 ]
40 39 },
41 40 {
42 "cell_type": "markdown",
41 "cell_type": "heading",
42 "level": 2,
43 43 "metadata": {},
44 44 "source": [
45 "* [Cell Magics](Cell Magics.ipynb)\n",
46 "* [Script Magics](Script Magics.ipynb)"
45 "Tutorials"
47 46 ]
48 47 },
49 48 {
1 NO CONTENT: file renamed from examples/Misc/example-demo.py to examples/Miscellaneous/example-demo.py
1 NO CONTENT: file renamed from examples/Misc/gui-glut.py to examples/Miscellaneous/gui-glut.py
1 NO CONTENT: file renamed from examples/Misc/gui-gtk.py to examples/Miscellaneous/gui-gtk.py
1 NO CONTENT: file renamed from examples/Misc/gui-gtk3.py to examples/Miscellaneous/gui-gtk3.py
1 NO CONTENT: file renamed from examples/Misc/gui-pyglet.py to examples/Miscellaneous/gui-pyglet.py
1 NO CONTENT: file renamed from examples/Misc/gui-qt.py to examples/Miscellaneous/gui-qt.py
1 NO CONTENT: file renamed from examples/Misc/gui-tk.py to examples/Miscellaneous/gui-tk.py
1 NO CONTENT: file renamed from examples/Misc/gui-wx.py to examples/Miscellaneous/gui-wx.py
1 NO CONTENT: file renamed from examples/Misc/ipython-completion.bash to examples/Miscellaneous/ipython-completion.bash
1 NO CONTENT: file renamed from examples/Misc/ipython-qtconsole.desktop to examples/Miscellaneous/ipython-qtconsole.desktop
1 NO CONTENT: file renamed from examples/Misc/ipython.desktop to examples/Miscellaneous/ipython.desktop
@@ -1,7 +1,7 b''
1 1 {
2 2 "metadata": {
3 3 "name": "",
4 "signature": "sha256:19507dca85a5e09f662fc93e49fb001b373a583174be40845a9c6dba1f66ac68"
4 "signature": "sha256:52eeeb2e17ae8137146eb3d6af7253a87c74ffd1a6636c4cc47700c91a9fe0a5"
5 5 },
6 6 "nbformat": 3,
7 7 "nbformat_minor": 0,
@@ -27,7 +27,14 b''
27 27 "level": 1,
28 28 "metadata": {},
29 29 "source": [
30 "IPython Notebook"
30 "Notebook"
31 ]
32 },
33 {
34 "cell_type": "markdown",
35 "metadata": {},
36 "source": [
37 "The IPython Notebook is a web-based interactive computing system that enables users to author documents that include live code, narrative text, LaTeX equations, HTML, images and video. These documents are contain a full record of a computation and its results and can be shared on email, [Dropbox](http://dropbox.com), version control systems (like git/[GitHub](http://github.com)) or [nbviewer.ipython.org](http://nbviewer.ipython.org)."
31 38 ]
32 39 },
33 40 {
1 NO CONTENT: file renamed from examples/Parallel/Data Publication API.ipynb to examples/Parallel Computing/Data Publication API.ipynb
@@ -1,7 +1,7 b''
1 1 {
2 2 "metadata": {
3 3 "name": "",
4 "signature": "sha256:35aa32e4977a9f12e4e99e23e6e2f211a1d95c113d22d90077205dba085e8324"
4 "signature": "sha256:4b037603ce02b01191708017c52583e8e80f885f716a9e625a711742d96b49c9"
5 5 },
6 6 "nbformat": 3,
7 7 "nbformat_minor": 0,
@@ -27,7 +27,14 b''
27 27 "level": 1,
28 28 "metadata": {},
29 29 "source": [
30 "Parallel Computing with IPython"
30 "Parallel Computing"
31 ]
32 },
33 {
34 "cell_type": "markdown",
35 "metadata": {},
36 "source": [
37 "IPython includes an architecture and library for interactive parallel computing. The enables Python functions, along with their arguments, to be run in parallel a multicore CPU, cluster or cloud using a simple Python API."
31 38 ]
32 39 },
33 40 {
1 NO CONTENT: file renamed from examples/Parallel/Monitoring an MPI Simulation - 1.ipynb to examples/Parallel Computing/Monitoring an MPI Simulation - 1.ipynb
1 NO CONTENT: file renamed from examples/Parallel/Monitoring an MPI Simulation - 2.ipynb to examples/Parallel Computing/Monitoring an MPI Simulation - 2.ipynb
1 NO CONTENT: file renamed from examples/Parallel/Parallel Decorator and map.ipynb to examples/Parallel Computing/Parallel Decorator and map.ipynb
1 NO CONTENT: file renamed from examples/Parallel/Parallel Magics.ipynb to examples/Parallel Computing/Parallel Magics.ipynb
1 NO CONTENT: file renamed from examples/Parallel/Using Dill.ipynb to examples/Parallel Computing/Using Dill.ipynb
1 NO CONTENT: file renamed from examples/Parallel/Using MPI with IPython Parallel.ipynb to examples/Parallel Computing/Using MPI with IPython Parallel.ipynb
1 NO CONTENT: file renamed from examples/Parallel/customresults.py to examples/Parallel Computing/customresults.py
1 NO CONTENT: file renamed from examples/Parallel/daVinci Word Count/pwordfreq.py to examples/Parallel Computing/daVinci Word Count/pwordfreq.py
1 NO CONTENT: file renamed from examples/Parallel/daVinci Word Count/wordfreq.py to examples/Parallel Computing/daVinci Word Count/wordfreq.py
1 NO CONTENT: file renamed from examples/Parallel/dagdeps.py to examples/Parallel Computing/dagdeps.py
1 NO CONTENT: file renamed from examples/Parallel/dependencies.py to examples/Parallel Computing/dependencies.py
1 NO CONTENT: file renamed from examples/Parallel/fetchparse.py to examples/Parallel Computing/fetchparse.py
1 NO CONTENT: file renamed from examples/Parallel/interengine/bintree.py to examples/Parallel Computing/interengine/bintree.py
1 NO CONTENT: file renamed from examples/Parallel/interengine/bintree_script.py to examples/Parallel Computing/interengine/bintree_script.py
1 NO CONTENT: file renamed from examples/Parallel/interengine/communicator.py to examples/Parallel Computing/interengine/communicator.py
1 NO CONTENT: file renamed from examples/Parallel/interengine/interengine.py to examples/Parallel Computing/interengine/interengine.py
1 NO CONTENT: file renamed from examples/Parallel/iopubwatcher.py to examples/Parallel Computing/iopubwatcher.py
1 NO CONTENT: file renamed from examples/Parallel/itermapresult.py to examples/Parallel Computing/itermapresult.py
1 NO CONTENT: file renamed from examples/Parallel/nwmerge.py to examples/Parallel Computing/nwmerge.py
1 NO CONTENT: file renamed from examples/Parallel/options/Parallel MC Options.ipynb to examples/Parallel Computing/options/Parallel MC Options.ipynb
1 NO CONTENT: file renamed from examples/Parallel/phistogram.py to examples/Parallel Computing/phistogram.py
1 NO CONTENT: file renamed from examples/Parallel/pi/parallelpi.py to examples/Parallel Computing/pi/parallelpi.py
1 NO CONTENT: file renamed from examples/Parallel/pi/pidigits.py to examples/Parallel Computing/pi/pidigits.py
1 NO CONTENT: file renamed from examples/Parallel/rmt/rmt.ipy to examples/Parallel Computing/rmt/rmt.ipy
1 NO CONTENT: file renamed from examples/Parallel/rmt/rmt.ipynb to examples/Parallel Computing/rmt/rmt.ipynb
1 NO CONTENT: file renamed from examples/Parallel/rmt/rmtkernel.py to examples/Parallel Computing/rmt/rmtkernel.py
1 NO CONTENT: file renamed from examples/Parallel/task_profiler.py to examples/Parallel Computing/task_profiler.py
1 NO CONTENT: file renamed from examples/Parallel/throughput.py to examples/Parallel Computing/throughput.py
1 NO CONTENT: file renamed from examples/Parallel/wave2D/RectPartitioner.py to examples/Parallel Computing/wave2D/RectPartitioner.py
1 NO CONTENT: file renamed from examples/Parallel/wave2D/communicator.py to examples/Parallel Computing/wave2D/communicator.py
1 NO CONTENT: file renamed from examples/Parallel/wave2D/parallelwave-mpi.py to examples/Parallel Computing/wave2D/parallelwave-mpi.py
1 NO CONTENT: file renamed from examples/Parallel/wave2D/parallelwave.py to examples/Parallel Computing/wave2D/parallelwave.py
1 NO CONTENT: file renamed from examples/Parallel/wave2D/wavesolver.py to examples/Parallel Computing/wave2D/wavesolver.py
1 NO CONTENT: file renamed from examples/Parallel/workflow/client.py to examples/Parallel Computing/workflow/client.py
1 NO CONTENT: file renamed from examples/Parallel/workflow/job_wrapper.py to examples/Parallel Computing/workflow/job_wrapper.py
1 NO CONTENT: file renamed from examples/Parallel/workflow/wmanager.py to examples/Parallel Computing/workflow/wmanager.py
General Comments 0
You need to be logged in to leave comments. Login now