diff --git a/examples/Builtin Extensions/Index.ipynb b/examples/Builtin Extensions/Index.ipynb index 1987684..606b801 100644 --- a/examples/Builtin Extensions/Index.ipynb +++ b/examples/Builtin Extensions/Index.ipynb @@ -1,7 +1,7 @@ { "metadata": { "name": "", - "signature": "sha256:fe4dbf207e38eb8151a0b18d1d01d727f9ee6ea3a08c16da17283f543d3b7925" + "signature": "sha256:a89ddd606f68e27067a5e2301a4d19a3c149131f4f07be4483a65979e26bebe0" }, "nbformat": 3, "nbformat_minor": 0, @@ -31,6 +31,17 @@ ] }, { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "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", + "\n", + "
\n", + "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", + "
" + ] + }, + { "cell_type": "heading", "level": 2, "metadata": {}, diff --git a/examples/Customization/Index.ipynb b/examples/Customization/Index.ipynb index 06ab3a5..a28a207 100644 --- a/examples/Customization/Index.ipynb +++ b/examples/Customization/Index.ipynb @@ -1,7 +1,7 @@ { "metadata": { "name": "", - "signature": "sha256:50f0a98d05f9e0c43ab5f1bc6dd6a5e61d64a7f585eb98526b45f8a82dcec827" + "signature": "sha256:9081cd113ba2044ff4184aca7ea71d8b9b8aa374d44ebc893e9d00b5bbd91217" }, "nbformat": 3, "nbformat_minor": 0, @@ -27,7 +27,14 @@ "level": 1, "metadata": {}, "source": [ - "Customization of IPython" + "Customization" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "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." ] }, { diff --git a/examples/Core/Cell Magics.ipynb b/examples/IPython Kernel/Cell Magics.ipynb similarity index 100% rename from examples/Core/Cell Magics.ipynb rename to examples/IPython Kernel/Cell Magics.ipynb diff --git a/examples/Misc/Index.ipynb b/examples/IPython Kernel/Index.ipynb similarity index 80% rename from examples/Misc/Index.ipynb rename to examples/IPython Kernel/Index.ipynb index 42b77cd..4092754 100644 --- a/examples/Misc/Index.ipynb +++ b/examples/IPython Kernel/Index.ipynb @@ -1,7 +1,7 @@ { "metadata": { "name": "", - "signature": "sha256:de5d592ea428f67f49f326d419774eff3e0b4402145bb5f3ce7cac49cc528080" + "signature": "sha256:0c0453ac3ddbb0ea6397e7f7216e6e005c4d1fe6e089921af39e874a411d7ed1" }, "nbformat": 3, "nbformat_minor": 0, @@ -27,7 +27,14 @@ "level": 1, "metadata": {}, "source": [ - "Miscellaneous Topics" + "IPython Kernel" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "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." ] }, { @@ -39,6 +46,14 @@ ] }, { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "* [Cell Magics](Cell Magics.ipynb)\n", + "* [Script Magics](Script Magics.ipynb)" + ] + }, + { "cell_type": "heading", "level": 2, "metadata": {}, diff --git a/examples/Core/Script Magics.ipynb b/examples/IPython Kernel/Script Magics.ipynb similarity index 100% rename from examples/Core/Script Magics.ipynb rename to examples/IPython Kernel/Script Magics.ipynb diff --git a/examples/Core/ipython-get-history.py b/examples/IPython Kernel/ipython-get-history.py similarity index 100% rename from examples/Core/ipython-get-history.py rename to examples/IPython Kernel/ipython-get-history.py diff --git a/examples/Index.ipynb b/examples/Index.ipynb index c46a6e8..87dc831 100644 --- a/examples/Index.ipynb +++ b/examples/Index.ipynb @@ -1,7 +1,7 @@ { "metadata": { "name": "", - "signature": "sha256:7aef917e7be3cb0881b911b9dbab7a5198c83ddfaaca6ec3499716f4a347c87b" + "signature": "sha256:f047f5edb4201c0c7aa38bdf31058bf6ab2785d53e7a03cdbd4e4ff4217c0007" }, "nbformat": 3, "nbformat_minor": 0, @@ -42,14 +42,14 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "* [Core](Core/Index.ipynb): IPython's core syntax and command line features available in all of our frontends\n", + "* [IPython Kernel](IPython Kernel/Index.ipynb): IPython's core syntax and command line features available in all frontends\n", "* [Notebook](Notebook/Index.ipynb): The IPython Notebook frontend\n", - "* [Widgets](Widgets/Index.ipynb): Interactive JavaScript/HTML widgets and `interact`\n", - "* [Parallel](Parallel/Index.ipynb): IPython's library for interactive parallel computing\n", + "* [Interactive Widgets](Interactive Widgets/Index.ipynb): Interactive JavaScript/HTML widgets and `interact`\n", + "* [Parallel Computing](Parallel Computing/Index.ipynb): IPython's library for interactive parallel computing\n", "* [Customization](Customization/Index.ipynb): How to configure IPython and customize it with magics, extensions, etc.\n", "* [Embedding](Embedding/Index.ipynb): Embedding and reusing IPython's components into other applications\n", "* [Builtin Extensions](Builtin Extensions/Index.ipynb): Extensions we ship with IPython\n", - "* [Misc](Misc/Index.ipynb): Content that doesn't fit anywhere else" + "* [Miscellaneous](Miscellaneous/Index.ipynb): Documentation that doesn't fit anywhere else" ] } ], diff --git a/examples/Widgets/Beat Frequencies.ipynb b/examples/Interactive Widgets/Beat Frequencies.ipynb similarity index 100% rename from examples/Widgets/Beat Frequencies.ipynb rename to examples/Interactive Widgets/Beat Frequencies.ipynb diff --git a/examples/Widgets/Custom Widgets.ipynb b/examples/Interactive Widgets/Custom Widgets.ipynb similarity index 100% rename from examples/Widgets/Custom Widgets.ipynb rename to examples/Interactive Widgets/Custom Widgets.ipynb diff --git a/examples/Widgets/Exploring Graphs.ipynb b/examples/Interactive Widgets/Exploring Graphs.ipynb similarity index 100% rename from examples/Widgets/Exploring Graphs.ipynb rename to examples/Interactive Widgets/Exploring Graphs.ipynb diff --git a/examples/Widgets/Export As (nbconvert).ipynb b/examples/Interactive Widgets/Export As (nbconvert).ipynb similarity index 100% rename from examples/Widgets/Export As (nbconvert).ipynb rename to examples/Interactive Widgets/Export As (nbconvert).ipynb diff --git a/examples/Widgets/Factoring.ipynb b/examples/Interactive Widgets/Factoring.ipynb similarity index 100% rename from examples/Widgets/Factoring.ipynb rename to examples/Interactive Widgets/Factoring.ipynb diff --git a/examples/Widgets/File Upload Widget.ipynb b/examples/Interactive Widgets/File Upload Widget.ipynb similarity index 100% rename from examples/Widgets/File Upload Widget.ipynb rename to examples/Interactive Widgets/File Upload Widget.ipynb diff --git a/examples/Widgets/Image Browser.ipynb b/examples/Interactive Widgets/Image Browser.ipynb similarity index 100% rename from examples/Widgets/Image Browser.ipynb rename to examples/Interactive Widgets/Image Browser.ipynb diff --git a/examples/Widgets/Image Processing.ipynb b/examples/Interactive Widgets/Image Processing.ipynb similarity index 100% rename from examples/Widgets/Image Processing.ipynb rename to examples/Interactive Widgets/Image Processing.ipynb diff --git a/examples/Widgets/Index.ipynb b/examples/Interactive Widgets/Index.ipynb similarity index 91% rename from examples/Widgets/Index.ipynb rename to examples/Interactive Widgets/Index.ipynb index d676647..ff8cbe6 100644 --- a/examples/Widgets/Index.ipynb +++ b/examples/Interactive Widgets/Index.ipynb @@ -1,7 +1,7 @@ { "metadata": { "name": "", - "signature": "sha256:63baf57fdd892f6dd1f3c23b817e1458ebe337b6c5bc7114ff697054a5162f99" + "signature": "sha256:1aeb403a0ea9cc1412348f98ec713b798e197bed05d8bb28de6824095758487b" }, "nbformat": 3, "nbformat_minor": 0, @@ -27,7 +27,14 @@ "level": 1, "metadata": {}, "source": [ - "Interactive JavaScript Widgets" + "Interactive Widgets" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "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." ] }, { @@ -43,7 +50,7 @@ "metadata": {}, "source": [ "- [Using Interact](Using Interact.ipynb)\n", - "- [Widgets Overview](Widgets Overview.ipynb) \n", + "- [Widget Basics](Widget Basic.ipynb) \n", "- [Widget Events](Widget Events.ipynb) \n", "- [Widget Placement](Widget Placement.ipynb) \n", "- [Widget Styles](Widget Styles.ipynb) \n", diff --git a/examples/Widgets/Lorenz Differential Equations.ipynb b/examples/Interactive Widgets/Lorenz Differential Equations.ipynb similarity index 100% rename from examples/Widgets/Lorenz Differential Equations.ipynb rename to examples/Interactive Widgets/Lorenz Differential Equations.ipynb diff --git a/examples/Widgets/Nonblocking Console.ipynb b/examples/Interactive Widgets/Nonblocking Console.ipynb similarity index 100% rename from examples/Widgets/Nonblocking Console.ipynb rename to examples/Interactive Widgets/Nonblocking Console.ipynb diff --git a/examples/Widgets/Using Interact.ipynb b/examples/Interactive Widgets/Using Interact.ipynb similarity index 100% rename from examples/Widgets/Using Interact.ipynb rename to examples/Interactive Widgets/Using Interact.ipynb diff --git a/examples/Widgets/Variable Inspector.ipynb b/examples/Interactive Widgets/Variable Inspector.ipynb similarity index 100% rename from examples/Widgets/Variable Inspector.ipynb rename to examples/Interactive Widgets/Variable Inspector.ipynb diff --git a/examples/Widgets/Widget Alignment.ipynb b/examples/Interactive Widgets/Widget Alignment.ipynb similarity index 100% rename from examples/Widgets/Widget Alignment.ipynb rename to examples/Interactive Widgets/Widget Alignment.ipynb diff --git a/examples/Widgets/Widgets Overview.ipynb b/examples/Interactive Widgets/Widget Basics.ipynb similarity index 100% rename from examples/Widgets/Widgets Overview.ipynb rename to examples/Interactive Widgets/Widget Basics.ipynb diff --git a/examples/Widgets/Widget Events.ipynb b/examples/Interactive Widgets/Widget Events.ipynb similarity index 100% rename from examples/Widgets/Widget Events.ipynb rename to examples/Interactive Widgets/Widget Events.ipynb diff --git a/examples/Widgets/Widget Placement.ipynb b/examples/Interactive Widgets/Widget Placement.ipynb similarity index 100% rename from examples/Widgets/Widget Placement.ipynb rename to examples/Interactive Widgets/Widget Placement.ipynb diff --git a/examples/Widgets/Widget Styles.ipynb b/examples/Interactive Widgets/Widget Styles.ipynb similarity index 100% rename from examples/Widgets/Widget Styles.ipynb rename to examples/Interactive Widgets/Widget Styles.ipynb diff --git a/examples/Misc/Background Jobs.ipynb b/examples/Miscellaneous/Background Jobs.ipynb similarity index 100% rename from examples/Misc/Background Jobs.ipynb rename to examples/Miscellaneous/Background Jobs.ipynb diff --git a/examples/Core/Index.ipynb b/examples/Miscellaneous/Index.ipynb similarity index 92% rename from examples/Core/Index.ipynb rename to examples/Miscellaneous/Index.ipynb index fbb84a6..050adb4 100644 --- a/examples/Core/Index.ipynb +++ b/examples/Miscellaneous/Index.ipynb @@ -1,7 +1,7 @@ { "metadata": { "name": "", - "signature": "sha256:d372ee882991ad9443b66587f16b75a398a5f3e451a6b29528d382b2724644d9" + "signature": "sha256:5a6c0780821e9af91f7138522ac5dc8d37ad7b23919120fba8d4de23fd6af80f" }, "nbformat": 3, "nbformat_minor": 0, @@ -27,23 +27,22 @@ "level": 1, "metadata": {}, "source": [ - "Core Syntax and Command Line Features" + "Miscellaneous Topics" ] }, { - "cell_type": "heading", - "level": 2, + "cell_type": "markdown", "metadata": {}, "source": [ - "Tutorials" + "Some IPython documentation topics just don't fit well anywhere else." ] }, { - "cell_type": "markdown", + "cell_type": "heading", + "level": 2, "metadata": {}, "source": [ - "* [Cell Magics](Cell Magics.ipynb)\n", - "* [Script Magics](Script Magics.ipynb)" + "Tutorials" ] }, { diff --git a/examples/Misc/example-demo.py b/examples/Miscellaneous/example-demo.py similarity index 100% rename from examples/Misc/example-demo.py rename to examples/Miscellaneous/example-demo.py diff --git a/examples/Misc/gui-glut.py b/examples/Miscellaneous/gui-glut.py similarity index 100% rename from examples/Misc/gui-glut.py rename to examples/Miscellaneous/gui-glut.py diff --git a/examples/Misc/gui-gtk.py b/examples/Miscellaneous/gui-gtk.py similarity index 100% rename from examples/Misc/gui-gtk.py rename to examples/Miscellaneous/gui-gtk.py diff --git a/examples/Misc/gui-gtk3.py b/examples/Miscellaneous/gui-gtk3.py similarity index 100% rename from examples/Misc/gui-gtk3.py rename to examples/Miscellaneous/gui-gtk3.py diff --git a/examples/Misc/gui-pyglet.py b/examples/Miscellaneous/gui-pyglet.py similarity index 100% rename from examples/Misc/gui-pyglet.py rename to examples/Miscellaneous/gui-pyglet.py diff --git a/examples/Misc/gui-qt.py b/examples/Miscellaneous/gui-qt.py similarity index 100% rename from examples/Misc/gui-qt.py rename to examples/Miscellaneous/gui-qt.py diff --git a/examples/Misc/gui-tk.py b/examples/Miscellaneous/gui-tk.py similarity index 100% rename from examples/Misc/gui-tk.py rename to examples/Miscellaneous/gui-tk.py diff --git a/examples/Misc/gui-wx.py b/examples/Miscellaneous/gui-wx.py similarity index 100% rename from examples/Misc/gui-wx.py rename to examples/Miscellaneous/gui-wx.py diff --git a/examples/Misc/ipython-completion.bash b/examples/Miscellaneous/ipython-completion.bash similarity index 100% rename from examples/Misc/ipython-completion.bash rename to examples/Miscellaneous/ipython-completion.bash diff --git a/examples/Misc/ipython-qtconsole.desktop b/examples/Miscellaneous/ipython-qtconsole.desktop similarity index 100% rename from examples/Misc/ipython-qtconsole.desktop rename to examples/Miscellaneous/ipython-qtconsole.desktop diff --git a/examples/Misc/ipython.desktop b/examples/Miscellaneous/ipython.desktop similarity index 100% rename from examples/Misc/ipython.desktop rename to examples/Miscellaneous/ipython.desktop diff --git a/examples/Notebook/Index.ipynb b/examples/Notebook/Index.ipynb index c7e55ad..03244ff 100644 --- a/examples/Notebook/Index.ipynb +++ b/examples/Notebook/Index.ipynb @@ -1,7 +1,7 @@ { "metadata": { "name": "", - "signature": "sha256:19507dca85a5e09f662fc93e49fb001b373a583174be40845a9c6dba1f66ac68" + "signature": "sha256:52eeeb2e17ae8137146eb3d6af7253a87c74ffd1a6636c4cc47700c91a9fe0a5" }, "nbformat": 3, "nbformat_minor": 0, @@ -27,7 +27,14 @@ "level": 1, "metadata": {}, "source": [ - "IPython Notebook" + "Notebook" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "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)." ] }, { diff --git a/examples/Parallel/Data Publication API.ipynb b/examples/Parallel Computing/Data Publication API.ipynb similarity index 100% rename from examples/Parallel/Data Publication API.ipynb rename to examples/Parallel Computing/Data Publication API.ipynb diff --git a/examples/Parallel/Index.ipynb b/examples/Parallel Computing/Index.ipynb similarity index 90% rename from examples/Parallel/Index.ipynb rename to examples/Parallel Computing/Index.ipynb index 952d8ff..bed5fe9 100644 --- a/examples/Parallel/Index.ipynb +++ b/examples/Parallel Computing/Index.ipynb @@ -1,7 +1,7 @@ { "metadata": { "name": "", - "signature": "sha256:35aa32e4977a9f12e4e99e23e6e2f211a1d95c113d22d90077205dba085e8324" + "signature": "sha256:4b037603ce02b01191708017c52583e8e80f885f716a9e625a711742d96b49c9" }, "nbformat": 3, "nbformat_minor": 0, @@ -27,7 +27,14 @@ "level": 1, "metadata": {}, "source": [ - "Parallel Computing with IPython" + "Parallel Computing" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "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." ] }, { diff --git a/examples/Parallel/Monitoring an MPI Simulation - 1.ipynb b/examples/Parallel Computing/Monitoring an MPI Simulation - 1.ipynb similarity index 100% rename from examples/Parallel/Monitoring an MPI Simulation - 1.ipynb rename to examples/Parallel Computing/Monitoring an MPI Simulation - 1.ipynb diff --git a/examples/Parallel/Monitoring an MPI Simulation - 2.ipynb b/examples/Parallel Computing/Monitoring an MPI Simulation - 2.ipynb similarity index 100% rename from examples/Parallel/Monitoring an MPI Simulation - 2.ipynb rename to examples/Parallel Computing/Monitoring an MPI Simulation - 2.ipynb diff --git a/examples/Parallel/Parallel Decorator and map.ipynb b/examples/Parallel Computing/Parallel Decorator and map.ipynb similarity index 100% rename from examples/Parallel/Parallel Decorator and map.ipynb rename to examples/Parallel Computing/Parallel Decorator and map.ipynb diff --git a/examples/Parallel/Parallel Magics.ipynb b/examples/Parallel Computing/Parallel Magics.ipynb similarity index 100% rename from examples/Parallel/Parallel Magics.ipynb rename to examples/Parallel Computing/Parallel Magics.ipynb diff --git a/examples/Parallel/Using Dill.ipynb b/examples/Parallel Computing/Using Dill.ipynb similarity index 100% rename from examples/Parallel/Using Dill.ipynb rename to examples/Parallel Computing/Using Dill.ipynb diff --git a/examples/Parallel/Using MPI with IPython Parallel.ipynb b/examples/Parallel Computing/Using MPI with IPython Parallel.ipynb similarity index 100% rename from examples/Parallel/Using MPI with IPython Parallel.ipynb rename to examples/Parallel Computing/Using MPI with IPython Parallel.ipynb diff --git a/examples/Parallel/customresults.py b/examples/Parallel Computing/customresults.py similarity index 100% rename from examples/Parallel/customresults.py rename to examples/Parallel Computing/customresults.py diff --git a/examples/Parallel/daVinci Word Count/pwordfreq.py b/examples/Parallel Computing/daVinci Word Count/pwordfreq.py similarity index 100% rename from examples/Parallel/daVinci Word Count/pwordfreq.py rename to examples/Parallel Computing/daVinci Word Count/pwordfreq.py diff --git a/examples/Parallel/daVinci Word Count/wordfreq.py b/examples/Parallel Computing/daVinci Word Count/wordfreq.py similarity index 100% rename from examples/Parallel/daVinci Word Count/wordfreq.py rename to examples/Parallel Computing/daVinci Word Count/wordfreq.py diff --git a/examples/Parallel/dagdeps.py b/examples/Parallel Computing/dagdeps.py similarity index 100% rename from examples/Parallel/dagdeps.py rename to examples/Parallel Computing/dagdeps.py diff --git a/examples/Parallel/dependencies.py b/examples/Parallel Computing/dependencies.py similarity index 100% rename from examples/Parallel/dependencies.py rename to examples/Parallel Computing/dependencies.py diff --git a/examples/Parallel/fetchparse.py b/examples/Parallel Computing/fetchparse.py similarity index 100% rename from examples/Parallel/fetchparse.py rename to examples/Parallel Computing/fetchparse.py diff --git a/examples/Parallel/interengine/bintree.py b/examples/Parallel Computing/interengine/bintree.py similarity index 100% rename from examples/Parallel/interengine/bintree.py rename to examples/Parallel Computing/interengine/bintree.py diff --git a/examples/Parallel/interengine/bintree_script.py b/examples/Parallel Computing/interengine/bintree_script.py similarity index 100% rename from examples/Parallel/interengine/bintree_script.py rename to examples/Parallel Computing/interengine/bintree_script.py diff --git a/examples/Parallel/interengine/communicator.py b/examples/Parallel Computing/interengine/communicator.py similarity index 100% rename from examples/Parallel/interengine/communicator.py rename to examples/Parallel Computing/interengine/communicator.py diff --git a/examples/Parallel/interengine/interengine.py b/examples/Parallel Computing/interengine/interengine.py similarity index 100% rename from examples/Parallel/interengine/interengine.py rename to examples/Parallel Computing/interengine/interengine.py diff --git a/examples/Parallel/iopubwatcher.py b/examples/Parallel Computing/iopubwatcher.py similarity index 100% rename from examples/Parallel/iopubwatcher.py rename to examples/Parallel Computing/iopubwatcher.py diff --git a/examples/Parallel/itermapresult.py b/examples/Parallel Computing/itermapresult.py similarity index 100% rename from examples/Parallel/itermapresult.py rename to examples/Parallel Computing/itermapresult.py diff --git a/examples/Parallel/nwmerge.py b/examples/Parallel Computing/nwmerge.py similarity index 100% rename from examples/Parallel/nwmerge.py rename to examples/Parallel Computing/nwmerge.py diff --git a/examples/Parallel/options/Parallel MC Options.ipynb b/examples/Parallel Computing/options/Parallel MC Options.ipynb similarity index 100% rename from examples/Parallel/options/Parallel MC Options.ipynb rename to examples/Parallel Computing/options/Parallel MC Options.ipynb diff --git a/examples/Parallel/phistogram.py b/examples/Parallel Computing/phistogram.py similarity index 100% rename from examples/Parallel/phistogram.py rename to examples/Parallel Computing/phistogram.py diff --git a/examples/Parallel/pi/parallelpi.py b/examples/Parallel Computing/pi/parallelpi.py similarity index 100% rename from examples/Parallel/pi/parallelpi.py rename to examples/Parallel Computing/pi/parallelpi.py diff --git a/examples/Parallel/pi/pidigits.py b/examples/Parallel Computing/pi/pidigits.py similarity index 100% rename from examples/Parallel/pi/pidigits.py rename to examples/Parallel Computing/pi/pidigits.py diff --git a/examples/Parallel/rmt/rmt.ipy b/examples/Parallel Computing/rmt/rmt.ipy similarity index 100% rename from examples/Parallel/rmt/rmt.ipy rename to examples/Parallel Computing/rmt/rmt.ipy diff --git a/examples/Parallel/rmt/rmt.ipynb b/examples/Parallel Computing/rmt/rmt.ipynb similarity index 100% rename from examples/Parallel/rmt/rmt.ipynb rename to examples/Parallel Computing/rmt/rmt.ipynb diff --git a/examples/Parallel/rmt/rmtkernel.py b/examples/Parallel Computing/rmt/rmtkernel.py similarity index 100% rename from examples/Parallel/rmt/rmtkernel.py rename to examples/Parallel Computing/rmt/rmtkernel.py diff --git a/examples/Parallel/task_profiler.py b/examples/Parallel Computing/task_profiler.py similarity index 100% rename from examples/Parallel/task_profiler.py rename to examples/Parallel Computing/task_profiler.py diff --git a/examples/Parallel/throughput.py b/examples/Parallel Computing/throughput.py similarity index 100% rename from examples/Parallel/throughput.py rename to examples/Parallel Computing/throughput.py diff --git a/examples/Parallel/wave2D/RectPartitioner.py b/examples/Parallel Computing/wave2D/RectPartitioner.py similarity index 100% rename from examples/Parallel/wave2D/RectPartitioner.py rename to examples/Parallel Computing/wave2D/RectPartitioner.py diff --git a/examples/Parallel/wave2D/communicator.py b/examples/Parallel Computing/wave2D/communicator.py similarity index 100% rename from examples/Parallel/wave2D/communicator.py rename to examples/Parallel Computing/wave2D/communicator.py diff --git a/examples/Parallel/wave2D/parallelwave-mpi.py b/examples/Parallel Computing/wave2D/parallelwave-mpi.py similarity index 100% rename from examples/Parallel/wave2D/parallelwave-mpi.py rename to examples/Parallel Computing/wave2D/parallelwave-mpi.py diff --git a/examples/Parallel/wave2D/parallelwave.py b/examples/Parallel Computing/wave2D/parallelwave.py similarity index 100% rename from examples/Parallel/wave2D/parallelwave.py rename to examples/Parallel Computing/wave2D/parallelwave.py diff --git a/examples/Parallel/wave2D/wavesolver.py b/examples/Parallel Computing/wave2D/wavesolver.py similarity index 100% rename from examples/Parallel/wave2D/wavesolver.py rename to examples/Parallel Computing/wave2D/wavesolver.py diff --git a/examples/Parallel/workflow/client.py b/examples/Parallel Computing/workflow/client.py similarity index 100% rename from examples/Parallel/workflow/client.py rename to examples/Parallel Computing/workflow/client.py diff --git a/examples/Parallel/workflow/job_wrapper.py b/examples/Parallel Computing/workflow/job_wrapper.py similarity index 100% rename from examples/Parallel/workflow/job_wrapper.py rename to examples/Parallel Computing/workflow/job_wrapper.py diff --git a/examples/Parallel/workflow/wmanager.py b/examples/Parallel Computing/workflow/wmanager.py similarity index 100% rename from examples/Parallel/workflow/wmanager.py rename to examples/Parallel Computing/workflow/wmanager.py