Changeset 9199
- Timestamp:
- 10/07/08 10:36:02 (2 months ago)
- Files:
-
- djangoproject.com/djangodocs/templates/docs/doc.html (modified) (3 diffs)
- djangoproject.com/djangodocs/views.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
djangoproject.com/djangodocs/templates/docs/doc.html
r9096 r9199 28 28 width: 18em; 29 29 } 30 div#old-docs-warning { 31 background-color:#FFFFAA; 32 font-size:1.2em; 33 line-height:1.3em; 34 border: 2px solid #d00; 35 padding: .5em; 36 margin-top: 1em; 37 } 38 div#old-docs-warning h3, div#old-docs.warning p { 39 margin-top: 0; 40 padding: 0.2em 0; 41 color: black; 42 } 30 43 </style> 31 44 <link rel="stylesheet" href="http://media.djangoproject.com/css/pygments.css" type="text/css" /> … … 39 52 40 53 {% block body %} 54 {% if redirect_from %} 55 <div id="old-docs-warning"> 56 <h3>Welcome to the new documentation.</h3> 57 <p> 58 We've recently reorganized the documentation, and you requested an 59 out-of-date page. We've tried to redirect you to the right place, but we 60 might have gotten it wrong. If you can't find what you're looking for 61 here, you might try <a href="{{ home }}/search/">searching for it</a>. 62 </p> 63 </div> 64 {% endif %} 41 65 {{ doc.body|safe }} 42 66 {% endblock %} … … 111 135 <a href="{{ home }}">{{ env.docstitle }}</a> 112 136 {% for p in doc.parents %} 113 <ul><li><a href="{{ p.link }}">{{ p.title }}</a>137 <ul><li><a href="{{ p.link }}">{{ p.title|safe }}</a> 114 138 {% endfor %} 115 <ul><li>{% block current-page-title %}{{ doc.title }}{% endblock %}</li></ul>139 <ul><li>{% block current-page-title %}{{ doc.title|safe }}{% endblock %}</li></ul> 116 140 {% for p in doc.parents %}</li></ul>{% endfor %} 117 141 </li> djangoproject.com/djangodocs/views.py
r9111 r9199 50 50 'home': urlresolvers.reverse('document-index', kwargs={'lang':lang, 'version':version}), 51 51 'search': urlresolvers.reverse('document-search', kwargs={'lang':lang, 'version':version}), 52 'redirect_from': request.GET.get('from', None), 52 53 })) 53 54
