summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPauli Virtanen <pav@iki.fi>2010-10-04 20:54:43 +0200
committerPauli Virtanen <pav@iki.fi>2010-10-04 20:54:43 +0200
commit816adf97406ce3a6d2aa3059e6b84de6791b0ee3 (patch)
tree1320a9ea88187c8f5989154ceeaa0774e2de92d0
parenta1c795349e01fc3f6aa302f8d4c788e9a7bcec5f (diff)
downloadnumpy-816adf97406ce3a6d2aa3059e6b84de6791b0ee3.tar.gz
DOC: remove numpy.scipy.org -- it's now in a separate repository
-rw-r--r--doc/numpy.scipy.org/Makefile112
-rw-r--r--doc/numpy.scipy.org/_theme/scipy/index.html79
-rw-r--r--doc/numpy.scipy.org/_theme/scipy/layout.html16
-rw-r--r--doc/numpy.scipy.org/_theme/scipy/static/favicon.icobin10134 -> 0 bytes
-rw-r--r--doc/numpy.scipy.org/_theme/scipy/static/images/bugs.pngbin14348 -> 0 bytes
-rw-r--r--doc/numpy.scipy.org/_theme/scipy/static/images/documentation.pngbin12903 -> 0 bytes
-rw-r--r--doc/numpy.scipy.org/_theme/scipy/static/images/download.pngbin10813 -> 0 bytes
-rw-r--r--doc/numpy.scipy.org/_theme/scipy/static/images/feed-icon.pngbin32122 -> 0 bytes
-rw-r--r--doc/numpy.scipy.org/_theme/scipy/static/images/tutorial.pngbin5544 -> 0 bytes
-rw-r--r--doc/numpy.scipy.org/_theme/scipy/static/logo.gifbin2933 -> 0 bytes
-rw-r--r--doc/numpy.scipy.org/_theme/scipy/static/numpy_logo.pngbin8565 -> 0 bytes
-rw-r--r--doc/numpy.scipy.org/_theme/scipy/static/scipy.css207
-rw-r--r--doc/numpy.scipy.org/_theme/scipy/theme.conf4
-rw-r--r--doc/numpy.scipy.org/conf.py208
-rw-r--r--doc/numpy.scipy.org/content.rst9
-rw-r--r--doc/numpy.scipy.org/license.rst33
-rw-r--r--doc/numpy.scipy.org/old_array_packages.rst40
17 files changed, 0 insertions, 708 deletions
diff --git a/doc/numpy.scipy.org/Makefile b/doc/numpy.scipy.org/Makefile
deleted file mode 100644
index 1d42a61c4..000000000
--- a/doc/numpy.scipy.org/Makefile
+++ /dev/null
@@ -1,112 +0,0 @@
-# Makefile for Sphinx documentation
-#
-
-# You can set these variables from the command line.
-SPHINXOPTS =
-SPHINXBUILD = sphinx-build
-PAPER =
-
-# Internal variables.
-PAPEROPT_a4 = -D latex_paper_size=a4
-PAPEROPT_letter = -D latex_paper_size=letter
-ALLSPHINXOPTS = -d _build/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
-
-.PHONY: help clean html dirhtml pickle json htmlhelp qthelp latex changes linkcheck doctest
-
-help:
- @echo "Please use \`make <target>' where <target> is one of"
- @echo " upload USER=... to upload to numpy.scipy.org"
- @echo " html to make standalone HTML files"
- @echo " dirhtml to make HTML files named index.html in directories"
- @echo " pickle to make pickle files"
- @echo " json to make JSON files"
- @echo " htmlhelp to make HTML files and a HTML help project"
- @echo " qthelp to make HTML files and a qthelp project"
- @echo " devhelp to make HTML files and a Devhelp project"
- @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
- @echo " latexpdf to make LaTeX files and run them through pdflatex"
- @echo " changes to make an overview of all changed/added/deprecated items"
- @echo " linkcheck to check all external links for integrity"
- @echo " doctest to run all doctests embedded in the documentation (if enabled)"
-
-clean:
- -rm -rf _build/*
-
-upload: html
- chmod ug=rwX,o=rX -R _build/html
- rsync -r -z --delete-after -p \
- _build/html/ \
- $(USER)@new.scipy.org:/srv/www/numpy/
-
-html:
- $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) _build/html
- @echo
- @echo "Build finished. The HTML pages are in _build/html."
-
-dirhtml:
- $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) _build/dirhtml
- @echo
- @echo "Build finished. The HTML pages are in _build/dirhtml."
-
-pickle:
- $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) _build/pickle
- @echo
- @echo "Build finished; now you can process the pickle files."
-
-json:
- $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) _build/json
- @echo
- @echo "Build finished; now you can process the JSON files."
-
-htmlhelp:
- $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) _build/htmlhelp
- @echo
- @echo "Build finished; now you can run HTML Help Workshop with the" \
- ".hhp project file in _build/htmlhelp."
-
-qthelp:
- $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) _build/qthelp
- @echo
- @echo "Build finished; now you can run "qcollectiongenerator" with the" \
- ".qhcp project file in _build/qthelp, like this:"
- @echo "# qcollectiongenerator _build/qthelp/Numpy.qhcp"
- @echo "To view the help file:"
- @echo "# assistant -collectionFile _build/qthelp/Numpy.qhc"
-
-devhelp:
- $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) _build/devhelp
- @echo
- @echo "Build finished."
- @echo "To view the help file:"
- @echo "# mkdir -p $$HOME/.local/share/devhelp/Numpy"
- @echo "# ln -s _build/devhelp $$HOME/.local/share/devhelp/Numpy"
- @echo "# devhelp"
-
-latex:
- $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) _build/latex
- @echo
- @echo "Build finished; the LaTeX files are in _build/latex."
- @echo "Run \`make all-pdf' or \`make all-ps' in that directory to" \
- "run these through (pdf)latex."
-
-latexpdf: latex
- $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) _build/latex
- @echo "Running LaTeX files through pdflatex..."
- make -C _build/latex all-pdf
- @echo "pdflatex finished; the PDF files are in _build/latex."
-
-changes:
- $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) _build/changes
- @echo
- @echo "The overview file is in _build/changes."
-
-linkcheck:
- $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) _build/linkcheck
- @echo
- @echo "Link check complete; look for any errors in the above output " \
- "or in _build/linkcheck/output.txt."
-
-doctest:
- $(SPHINXBUILD) -b doctest $(ALLSPHINXOPTS) _build/doctest
- @echo "Testing of doctests in the sources finished, look at the " \
- "results in _build/doctest/output.txt."
diff --git a/doc/numpy.scipy.org/_theme/scipy/index.html b/doc/numpy.scipy.org/_theme/scipy/index.html
deleted file mode 100644
index 1a71ea1ab..000000000
--- a/doc/numpy.scipy.org/_theme/scipy/index.html
+++ /dev/null
@@ -1,79 +0,0 @@
-{% extends "!layout.html" %}
-{% set title = 'Scientific Computing Tools For Python' %}
-
-{% block body %}
-
-<table>
-
- <tr>
- <td style="border-style: none;">
- <a href="http://new.scipy.org/download.html">
- <img alt="Download" src="_static/images/download.png" title="Download" height="80" style="display: block; margin-left: auto; margin-right: auto;"/></a> </td>
- <td style="border: medium none ;">
- <a href="http://new.scipy.org/getting-started.html">
- <img alt="Getting Started" src="_static/images/tutorial.png" title="Getting Started" height="80" style="display: block; margin-left: auto; margin-right: auto;"/></a> </td>
- <td style="border: medium none ;">
- <a href="http://docs.scipy.org">
- <img alt="Documentation" src="_static/images/documentation.png" title="Documentation" height="80" style="display: block; margin-left: auto; margin-right: auto;"/></a> </td>
- <td style="border: medium none ;">
- <a href="http://new.scipy.org/bug-report.html">
- <img alt="Bug Report" src="_static/images/bugs.png" title="Bug Report" height="80" style="display: block; margin-left: auto; margin-right: auto;"/></a> </td>
- <td style="border: medium none ;">
- <a href="http://planet.scipy.org">
- <img alt="Blog" src="_static/images/feed-icon.png" title="Blog" height="80" style="display: block; margin-left: auto; margin-right: auto;"/></a> </td>
- </tr>
-
- <tr>
- <td style="border: medium none; text-align: center;"><strong><small><a href="http://new.scipy.org/download.html">Download</a></small></strong></td>
- <td style="border: medium none; text-align: center;"><strong><small><a href="http://new.scipy.org/getting-started.html">Getting Started</a></small></strong></td>
- <td style="border: medium none; text-align: center;"><strong><small><a href="http://docs.scipy.org">Documentation</a></small></strong></td>
- <td style="border: medium none; text-align: center;"><strong><small><a href="http://new.scipy.org/bug-report.html">Report Bugs</a></small></strong></td>
- <td style="border: medium none; text-align: center;"><strong><small><a href="http://planet.scipy.org">Read the Blog</a></small></strong></td>
- </tr>
-
-</table>
-
-
- <p>NumPy is the fundamental package needed for scientific computing with Python.
- It contains among other things:</p>
- <ul class="simple">
- <li>a powerful N-dimensional array object</li>
- <li>sophisticated (broadcasting) functions</li>
- <li>tools for integrating C/C++ and Fortran code</li>
- <li>useful linear algebra, Fourier transform, and random number capabilities.</li>
- </ul>
- <p>Besides its obvious scientific uses, NumPy can also be used as an efficient
- multi-dimensional container of generic data. Arbitrary data-types can be
- defined. This allows NumPy to seamlessly and speedily integrate with a wide
- variety of databases.</p>
- <p>Numpy is licensed under the <a class="reference external" href="license.html">BSD license</a>,
- enabling reuse with few restrictions.</p>
-
- <div class="section" id="getting-started">
- <h1>Getting Started<a class="headerlink" href="#getting-started" title="Permalink to this headline">¶</a></h1>
- <ul class="simple">
- <li><a class="reference external" href="http://www.scipy.org/Download">Getting Numpy</a></li>
- <li><a class="reference external" href="http://www.scipy.org/Installing_SciPy">Installing NumPy and SciPy</a></li>
- <li><a class="reference external" href="http://docs.scipy.org/doc/">NumPy and SciPy documentation page</a></li>
- <li><a class="reference external" href="http://www.scipy.org/Tentative_NumPy_Tutorial">NumPy Tutorial</a></li>
- <li><a class="reference external" href="http://www.scipy.org/NumPy_for_Matlab_Users">NumPy for MATLAB© Users</a></li>
- <li><a class="reference external" href="http://www.scipy.org/Numpy_Functions_by_Category">NumPy functions by category</a></li>
- <li><a class="reference external" href="http://www.scipy.org/Mailing_Lists">NumPy Mailing List</a></li>
- </ul>
- </div>
-
- <div class="section" id="more-information">
- <h1>More Information<a class="headerlink" href="#more-information" title="Permalink to this headline">¶</a></h1>
- <ul class="simple">
- <li><a class="reference external" href="http://sourceforge.net/projects/numpy/">NumPy Sourceforge Home Page</a></li>
- <li><a class="reference external" href="http://www.scipy.org/">SciPy Home Page</a></li>
- <li><a class="reference external" href="http://www.scipy.org/Topical_Software#head-7153b42ac4ea517c7d99ec4f4453555b2302a1f8">Interfacing with compiled code</a></li>
- <li><a class="reference external" href="old_array_packages.html"><em>Older python array packages</em></a></li>
- </ul>
- </div>
-
-<div style="padding-top: 40px;" align=center>
- <script type="text/javascript" src="http://www.ohloh.net/p/4894/widgets/project_partner_badge.js"></script>
-</div>
-
-{% endblock %}
diff --git a/doc/numpy.scipy.org/_theme/scipy/layout.html b/doc/numpy.scipy.org/_theme/scipy/layout.html
deleted file mode 100644
index 75da3963d..000000000
--- a/doc/numpy.scipy.org/_theme/scipy/layout.html
+++ /dev/null
@@ -1,16 +0,0 @@
-{% extends "sphinxdoc/layout.html" %}
-
-{% block rootrellink %}
-{% endblock %}
-
-{% block relbar1 %}
-<div class="top-logo-header">
-<a href="{{ pathto('index') }}"><img src="{{ pathto("_static/numpy_logo.png", 1) }}" border="0" alt="NumPy Homepage"/></a>
-</div>
-{% endblock %}
-
-{% block relbar2 %} {% endblock %}
-
-{# put the sidebar before the body #}
-{% block sidebar1 %}{% endblock %}
-{% block sidebar2 %}{% endblock %}
diff --git a/doc/numpy.scipy.org/_theme/scipy/static/favicon.ico b/doc/numpy.scipy.org/_theme/scipy/static/favicon.ico
deleted file mode 100644
index d7ae6012a..000000000
--- a/doc/numpy.scipy.org/_theme/scipy/static/favicon.ico
+++ /dev/null
Binary files differ
diff --git a/doc/numpy.scipy.org/_theme/scipy/static/images/bugs.png b/doc/numpy.scipy.org/_theme/scipy/static/images/bugs.png
deleted file mode 100644
index 68810148a..000000000
--- a/doc/numpy.scipy.org/_theme/scipy/static/images/bugs.png
+++ /dev/null
Binary files differ
diff --git a/doc/numpy.scipy.org/_theme/scipy/static/images/documentation.png b/doc/numpy.scipy.org/_theme/scipy/static/images/documentation.png
deleted file mode 100644
index 7f9a03856..000000000
--- a/doc/numpy.scipy.org/_theme/scipy/static/images/documentation.png
+++ /dev/null
Binary files differ
diff --git a/doc/numpy.scipy.org/_theme/scipy/static/images/download.png b/doc/numpy.scipy.org/_theme/scipy/static/images/download.png
deleted file mode 100644
index a50baf8a2..000000000
--- a/doc/numpy.scipy.org/_theme/scipy/static/images/download.png
+++ /dev/null
Binary files differ
diff --git a/doc/numpy.scipy.org/_theme/scipy/static/images/feed-icon.png b/doc/numpy.scipy.org/_theme/scipy/static/images/feed-icon.png
deleted file mode 100644
index a1a5d7ef5..000000000
--- a/doc/numpy.scipy.org/_theme/scipy/static/images/feed-icon.png
+++ /dev/null
Binary files differ
diff --git a/doc/numpy.scipy.org/_theme/scipy/static/images/tutorial.png b/doc/numpy.scipy.org/_theme/scipy/static/images/tutorial.png
deleted file mode 100644
index 23995e73a..000000000
--- a/doc/numpy.scipy.org/_theme/scipy/static/images/tutorial.png
+++ /dev/null
Binary files differ
diff --git a/doc/numpy.scipy.org/_theme/scipy/static/logo.gif b/doc/numpy.scipy.org/_theme/scipy/static/logo.gif
deleted file mode 100644
index ab2e3ac33..000000000
--- a/doc/numpy.scipy.org/_theme/scipy/static/logo.gif
+++ /dev/null
Binary files differ
diff --git a/doc/numpy.scipy.org/_theme/scipy/static/numpy_logo.png b/doc/numpy.scipy.org/_theme/scipy/static/numpy_logo.png
deleted file mode 100644
index 5ed48c094..000000000
--- a/doc/numpy.scipy.org/_theme/scipy/static/numpy_logo.png
+++ /dev/null
Binary files differ
diff --git a/doc/numpy.scipy.org/_theme/scipy/static/scipy.css b/doc/numpy.scipy.org/_theme/scipy/static/scipy.css
deleted file mode 100644
index f818c6f14..000000000
--- a/doc/numpy.scipy.org/_theme/scipy/static/scipy.css
+++ /dev/null
@@ -1,207 +0,0 @@
-@import "sphinxdoc.css";
-
-/**
- * Spacing fixes
- */
-
-
-div.body {
- width: 90%;
-}
-
-div.bodywrapper {
- width: 100%;
-}
-
-div.documentwrapper {
- border-left: 1px solid #ccc;
- border-right: 1px solid #ccc;
- border-bottom: 1px solid #ccc;
-}
-
-div.body p, div.body dd, div.body li {
- line-height: 125%;
-}
-
-ul.simple {
- margin-top: 0;
- margin-bottom: 0;
- padding-top: 0;
- padding-bottom: 0;
-}
-
-/* spacing around blockquoted fields in parameters/attributes/returns */
-td.field-body > blockquote {
- margin-top: 0.1em;
- margin-bottom: 0.5em;
-}
-
-/* spacing around example code */
-div.highlight > pre {
- padding: 2px 5px 2px 5px;
-}
-
-/* spacing in see also definition lists */
-dl.last > dd {
- margin-top: 1px;
- margin-bottom: 5px;
- margin-left: 30px;
-}
-
-/**
- * Hide dummy toctrees
- */
-
-ul {
- padding-top: 0;
- padding-bottom: 0;
- margin-top: 0;
- margin-bottom: 0;
-}
-ul li {
- padding-top: 0;
- padding-bottom: 0;
- margin-top: 0;
- margin-bottom: 0;
-}
-ul li a.reference {
- padding-top: 0;
- padding-bottom: 0;
- margin-top: 0;
- margin-bottom: 0;
-}
-
-/**
- * Make high-level subsections easier to distinguish from top-level ones
- */
-div.body h3 {
- background-color: transparent;
-}
-
-div.body h4 {
- border: none;
- background-color: transparent;
-}
-
-/**
- * Scipy colors
- */
-
-body {
- background-color: rgb(100,135,220);
- border: none;
-}
-
-div.sphinxsidebar {
- display: none;
-}
-
-div.sphinxsidebar h3 {
- color: rgb(0,102,204);
-}
-
-div.sphinxsidebar h4 {
- color: rgb(0,82,194);
-}
-
-div.sphinxsidebar p {
- color: black;
-}
-
-div.sphinxsidebar ul.want-points {
- list-style: disc;
-}
-
-.field-list th {
- color: rgb(0,102,204);
-}
-
-/**
- * Extra admonitions
- */
-
-div.tip {
- background-color: #ffffe4;
- border: 1px solid #ee6;
-}
-
-div.plot-output {
- clear-after: both;
-}
-
-div.plot-output .figure {
- float: left;
- text-align: center;
- margin-bottom: 0;
- padding-bottom: 0;
-}
-
-div.plot-output .caption {
- margin-top: 2;
- padding-top: 0;
-}
-
-div.plot-output p.admonition-title {
- display: none;
-}
-
-div.plot-output:after {
- content: "";
- display: block;
- height: 0;
- clear: both;
-}
-
-
-/*
-div.admonition-example {
- background-color: #e4ffe4;
- border: 1px solid #ccc;
-}*/
-
-
-/**
- * Styling for field lists
- */
-
-table.field-list th {
- border-left: 1px solid #aaa !important;
- padding-left: 5px;
-}
-
-table.field-list {
- border-collapse: separate;
- border-spacing: 10px;
-}
-
-/**
- * Styling for footnotes
- */
-
-table.footnote td, table.footnote th {
- border: none;
-}
-
-/**
- * Top header logo and colors
- */
-body div.top-logo-header {
- text-align: left;
- background-color: #a2bae8;
- border-bottom: 8px solid #003399;
- margin-top: 10px;
- border-top: 1px solid #bbb;
-}
-
-/**
- * Footer colors
- */
-body div.footer {
- background-color: #6487dc;
- border: none;
- color: white;
- text-align: center;
-}
-body div.footer a {
- color: white;
-}
diff --git a/doc/numpy.scipy.org/_theme/scipy/theme.conf b/doc/numpy.scipy.org/_theme/scipy/theme.conf
deleted file mode 100644
index e2f5ed848..000000000
--- a/doc/numpy.scipy.org/_theme/scipy/theme.conf
+++ /dev/null
@@ -1,4 +0,0 @@
-[theme]
-inherit = sphinxdoc
-stylesheet = scipy.css
-pygments_css = friendly
diff --git a/doc/numpy.scipy.org/conf.py b/doc/numpy.scipy.org/conf.py
deleted file mode 100644
index 2efb286b5..000000000
--- a/doc/numpy.scipy.org/conf.py
+++ /dev/null
@@ -1,208 +0,0 @@
-# -*- coding: utf-8 -*-
-#
-# Scipy.org documentation build configuration file
-#
-# This file is execfile()d with the current directory set to its containing dir.
-#
-# Note that not all possible configuration values are present in this
-# autogenerated file.
-#
-# All configuration values have a default; values that are commented out
-# serve to show the default.
-
-import sys, os
-
-# If extensions (or modules to document with autodoc) are in another directory,
-# add these directories to sys.path here. If the directory is relative to the
-# documentation root, use os.path.abspath to make it absolute, like shown here.
-#sys.path.append(os.path.abspath('.'))
-
-# -- General configuration -----------------------------------------------------
-
-# Add any Sphinx extension module names here, as strings. They can be extensions
-# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
-extensions = ['sphinx.ext.intersphinx', 'sphinx.ext.pngmath',
- 'sphinx.ext.ifconfig']
-
-# Add any paths that contain templates here, relative to this directory.
-templates_path = ['_templates']
-
-# The suffix of source filenames.
-source_suffix = '.rst'
-
-# The encoding of source files.
-#source_encoding = 'utf-8-sig'
-
-# The master toctree document.
-master_doc = 'content'
-
-# General information about the project.
-project = u'Numpy'
-copyright = u'2009 Numpy developers'
-
-# The version info for the project you're documenting, acts as replacement for
-# |version| and |release|, also used in various other places throughout the
-# built documents.
-#
-# The short X.Y version.
-version = ''
-# The full version, including alpha/beta/rc tags.
-release = ''
-
-# The language for content autogenerated by Sphinx. Refer to documentation
-# for a list of supported languages.
-#language = None
-
-# There are two options for replacing |today|: either, you set today to some
-# non-false value, then it is used:
-#today = ''
-# Else, today_fmt is used as the format for a strftime call.
-#today_fmt = '%B %d, %Y'
-
-# List of documents that shouldn't be included in the build.
-#unused_docs = []
-
-# List of directories, relative to source directory, that shouldn't be searched
-# for source files.
-exclude_trees = []
-
-# The reST default role (used for this markup: `text`) to use for all documents.
-#default_role = None
-
-# If true, '()' will be appended to :func: etc. cross-reference text.
-#add_function_parentheses = True
-
-# If true, the current module name will be prepended to all description
-# unit titles (such as .. function::).
-#add_module_names = True
-
-# If true, sectionauthor and moduleauthor directives will be shown in the
-# output. They are ignored by default.
-#show_authors = False
-
-# The name of the Pygments (syntax highlighting) style to use.
-pygments_style = 'sphinx'
-
-# A list of ignored prefixes for module index sorting.
-#modindex_common_prefix = []
-
-
-# -- Options for HTML output ---------------------------------------------------
-
-# The theme to use for HTML and HTML Help pages. Major themes that come with
-# Sphinx are currently 'default' and 'sphinxdoc'.
-html_theme = 'scipy'
-
-# Theme options are theme-specific and customize the look and feel of a theme
-# further. For a list of options available for each theme, see the
-# documentation.
-#html_theme_options = {}
-
-# Add any paths that contain custom themes here, relative to this directory.
-html_theme_path = ["_theme"]
-
-# The name for this set of Sphinx documents. If None, it defaults to
-# "<project> v<release> documentation".
-html_title = "Numpy"
-
-# A shorter title for the navigation bar. Default is the same as html_title.
-#html_short_title = None
-
-# The name of an image file (relative to this directory) to place at the top
-# of the sidebar.
-#html_logo = ""
-
-# The name of an image file (within the static path) to use as favicon of the
-# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
-# pixels large.
-#html_favicon = None
-html_favicon = 'favicon.ico'
-
-# Add any paths that contain custom static files (such as style sheets) here,
-# relative to this directory. They are copied after the builtin static files,
-# so a file named "default.css" will overwrite the builtin "default.css".
-#html_static_path = ['static']
-
-# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
-# using the given strftime format.
-#html_last_updated_fmt = '%b %d, %Y'
-
-# If true, SmartyPants will be used to convert quotes and dashes to
-# typographically correct entities.
-#html_use_smartypants = True
-
-# Custom sidebar templates, maps document names to template names.
-#html_sidebars = {}
-
-# Additional templates that should be rendered to pages, maps page names to
-# template names.
-#html_additional_pages = {}
-html_additional_pages = {'index': 'index.html'}
-
-# If false, no module index is generated.
-#html_use_modindex = True
-
-# If false, no index is generated.
-#html_use_index = True
-
-# If true, the index is split into individual pages for each letter.
-#html_split_index = False
-
-# If true, links to the reST sources are added to the pages.
-html_show_sourcelink = False
-
-# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
-#html_show_sphinx = True
-
-# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
-#html_show_copyright = True
-
-# If true, an OpenSearch description file will be output, and all pages will
-# contain a <link> tag referring to it. The value of this option must be the
-# base URL from which the finished HTML is served.
-#html_use_opensearch = ''
-
-# If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml").
-#html_file_suffix = ''
-
-# Output file base name for HTML help builder.
-htmlhelp_basename = 'Scipy.org'
-
-
-# -- Options for LaTeX output --------------------------------------------------
-
-# The paper size ('letter' or 'a4').
-#latex_paper_size = 'letter'
-
-# The font size ('10pt', '11pt' or '12pt').
-#latex_font_size = '10pt'
-
-# Grouping the document tree into LaTeX files. List of tuples
-# (source start file, target name, title, author, documentclass [howto/manual]).
-latex_documents = [
- ('index', 'numpy-scipy-org.tex', u'numpy.scipy.org',
- u'NumPy collaborators', 'manual'),
-]
-
-# The name of an image file (relative to this directory) to place at the top of
-# the title page.
-#latex_logo = None
-
-# For "manual" documents, if this is true, then toplevel headings are parts,
-# not chapters.
-#latex_use_parts = False
-
-# Additional stuff for the LaTeX preamble.
-#latex_preamble = ''
-
-# Documents to append as an appendix to all manuals.
-#latex_appendices = []
-
-# If false, no module index is generated.
-#latex_use_modindex = True
-
-# Example configuration for intersphinx: refer to the Python standard library.
-intersphinx_mapping = {
- 'http://docs.python.org/': None,
- 'http://docs.scipy.org/doc/numpy/': None,
-}
diff --git a/doc/numpy.scipy.org/content.rst b/doc/numpy.scipy.org/content.rst
deleted file mode 100644
index 5c1ed49d4..000000000
--- a/doc/numpy.scipy.org/content.rst
+++ /dev/null
@@ -1,9 +0,0 @@
-Numerical Python
-=================
-
-.. toctree::
- :maxdepth: 2
-
- old_array_packages.rst
- license.rst
-
diff --git a/doc/numpy.scipy.org/license.rst b/doc/numpy.scipy.org/license.rst
deleted file mode 100644
index 862859658..000000000
--- a/doc/numpy.scipy.org/license.rst
+++ /dev/null
@@ -1,33 +0,0 @@
-Numpy license
-=============
-
-| Copyright © 2005-2010, NumPy Developers.
-| All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are
-met:
-
- * Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
-
- * Redistributions in binary form must reproduce the above
- copyright notice, this list of conditions and the following
- disclaimer in the documentation and/or other materials provided
- with the distribution.
-
- * Neither the name of the NumPy Developers nor the names of any
- contributors may be used to endorse or promote products derived
- from this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/doc/numpy.scipy.org/old_array_packages.rst b/doc/numpy.scipy.org/old_array_packages.rst
deleted file mode 100644
index 814083ed6..000000000
--- a/doc/numpy.scipy.org/old_array_packages.rst
+++ /dev/null
@@ -1,40 +0,0 @@
-====================
-Older Array Packages
-====================
-
-It may take months for the large code base that uses Numeric and/or Numarray
-to transition to the new NumPy system. Links to the older packages are
-provided here. New users should start out with NumPy.
-
-Much of the documentation for Numeric and Numarray is applicable to the NumPy package. However, there are `significant feature improvements <http://numpy.scipy.org/new_features.html>`_. A complete guide to the new system has been written by the primary developer, Travis Oliphant. It is now in the public domain. Other Documentation is available at `the scipy website <http://www.scipy.org/>`_ and in the docstrings (which can be extracted using pydoc). Free Documentation for Numeric (most of which is still valid) is `here <http://numpy.scipy.org/numpydoc/numdoc.htm>`_ or as a `pdf <http://numpy.scipy.org/numpy.pdf>`_ file. Obviously you should replace references to Numeric in that document with numpy (i.e. instead of "import Numeric", use "import numpy").
-
-Upgrading from historical implementations
-=========================================
-
-NumPy derives from the old Numeric code base and can be used as a replacement for Numeric. It also adds the features introduced by Numarray and can also be used to replace Numarray.
-
-Numeric users should find the transition relatively easy (although not without some effort). There is a module (numpy.oldnumeric.alter_code1) that can makemost of the necessary changes to your Python code that used Numeric to work with NumPy's Numeric compatibility module.
-
-Users of numarray can also transition their code using a similar module (numpy.numarray.alter_code1) and the numpy.numarray compatibility layer.
-
-C-code written to either package can be easily ported to NumPy using "numpy/oldnumeric.h" and "numpy/libnumarray.h" for the Numeric C-API and the Numarray C-API respectively. `Sourceforge download site <http://sourceforge.net/project/showfiles.php?group_id=1369&package_id=175103>`_
-
-For about 6 months at the end of 2005, the new package was called SciPy Core (not to be confused with the full SciPy package which remains a `separate <http://www.scipy.org/>`_ package), and so you will occasionally see references to SciPy Core floating around. It was decided in January 2006 to go with the historical name of NumPy for the new package. Realize that NumPy (module name numpy) is the new name. Because of the name-change, there were a lot of dicussions that took place on scipy-dev@scipy.org and scipy-user@scipy.org. If you have a question about the new system, you may wish to run a search on those mailing lists as well as the main NumPy list (numpy-discussion@lists.sourceforge.net)
-
-Numeric (version 24.2)
-======================
-
-Numeric was the first array object built for Python. It has been quite successful and is used in a wide variety of settings and applications. Maintenance has ceased for Numeric, and users should transisition to NumPy as quickly as possible. There is a module called numpy.oldnumeric.alter_code1 in NumPy that can make the transition to NumPy easier (it will automatically perform the search-and-replace style changes that need to be made to python code that uses Numeric to make it work with NumPy).
-
-Documentation for Numeric is at http://numpy.scipy.org/numpydoc/numdoc.htm> or as a `pdf <http://numpy.scipy.org/numpy.pdf>`_ file `Sourceforge Numeric Download Page <http://sourceforge.net/project/showfiles.php?group_id=1369&package_id=1351>`_
-
-Numarray
-========
-
-Numarray is another implementation of an array object for Python written after
-Numeric and before NumPy. Sponsors of numarray have indicated they will be
-moving to NumPy as soon as is feasible for them so that eventually numarray
-will be phased out (probably sometime in 2007). This project shares some of
-the resources with the Numeric sourceforge site but maintains its own web page
-at http://www.stsci.edu/resources/software_hardware/numarray
-`Sourceforge Numarray Download Page <http://sourceforge.net/project/showfiles.php?group_id=1369&package_id=32367>`_ \ No newline at end of file