From 2fcb7097bdd75f0ba749d3f69e5f7115a2712251 Mon Sep 17 00:00:00 2001 From: Pablo Hoffman Date: Wed, 14 Sep 2011 02:41:01 -0300 Subject: [PATCH] removed documentation header notifying about other documentation versions, as that's provided by readthedocs already --- docs/_static/scrapydoc.css | 13 ------------- docs/_templates/page.html | 26 -------------------------- 2 files changed, 39 deletions(-) delete mode 100644 docs/_templates/page.html diff --git a/docs/_static/scrapydoc.css b/docs/_static/scrapydoc.css index 9ec34edca..3e58a5e70 100644 --- a/docs/_static/scrapydoc.css +++ b/docs/_static/scrapydoc.css @@ -638,19 +638,6 @@ img.logo { border: 0; } -.docversion { - padding-top: 5px; - padding-bottom: 5px; -} - -.devdoc { - color: red; -} - -.stabledoc { - color: #777; -} - /* :::: PRINT :::: */ @media print { div.document, diff --git a/docs/_templates/page.html b/docs/_templates/page.html deleted file mode 100644 index f598fe4a3..000000000 --- a/docs/_templates/page.html +++ /dev/null @@ -1,26 +0,0 @@ -{% extends "layout.html" %} -{% block body %} -
- -
- {% if version == "0.13" %} -

- This document is for Scrapy's development version, which can be - significantly different from previous releases. Get old docs here: - 0.12, - 0.10, - 0.9. - 0.8. - 0.7. -

- {% else %} -

- This document describes Scrapy {{ version }}. For development docs, - go here. -

- {% endif %} -
- -
- {{ body }} -{% endblock %}