[Python-checkins] r74255 - python/branches/release30-maint/Doc/tools/sphinxext/layout.html

georg.brandl python-checkins at python.org
Wed Jul 29 18:15:51 CEST 2009


Author: georg.brandl
Date: Wed Jul 29 18:15:50 2009
New Revision: 74255

Log:
Add "out of service" notice to 3.0 docs.

Modified:
   python/branches/release30-maint/Doc/tools/sphinxext/layout.html

Modified: python/branches/release30-maint/Doc/tools/sphinxext/layout.html
==============================================================================
--- python/branches/release30-maint/Doc/tools/sphinxext/layout.html	(original)
+++ python/branches/release30-maint/Doc/tools/sphinxext/layout.html	Wed Jul 29 18:15:50 2009
@@ -1,4 +1,13 @@
 {% extends "!layout.html" %}
+{% block header %}
+    <div class="related" style="background-color: #600">
+    <div style="padding: 0 10px">
+    <em>This is documentation for Python 3.0, which is not maintained any more.
+    <a style="text-decoration: underline" href="http://docs.python.org/3.1/{{ pagename }}.html">
+    Go to this page in the Python 3.1 documentation</a></em>
+    </div>
+    </div>
+{% endblock %}
 {% block rootrellink %}
         <li><img src="{{ pathto('_static/py.png', 1) }}" alt=""
                  style="vertical-align: middle; margin-top: -1px"/></li>


More information about the Python-checkins mailing list