2010-12-23 13:03:40 -02:00
|
|
|
{% extends "layout.html" %}
|
|
|
|
{% block body %}
|
|
|
|
<div class="deck">
|
|
|
|
|
|
|
|
<div class="docversion">
|
2011-01-02 16:16:40 -02:00
|
|
|
{% if version == "0.13" %}
|
2010-12-23 13:03:40 -02:00
|
|
|
<p class="devdoc">
|
|
|
|
This document is for Scrapy's development version, which can be
|
|
|
|
significantly different from previous releases. Get old docs here:
|
2011-01-02 16:16:40 -02:00
|
|
|
<a href="http://doc.scrapy.org/0.12/{{ pagename }}{{ file_suffix }}">0.12</a>,
|
2010-12-23 13:03:40 -02:00
|
|
|
<a href="http://doc.scrapy.org/0.10/{{ pagename }}{{ file_suffix }}">0.10</a>,
|
|
|
|
<a href="http://doc.scrapy.org/0.9/{{ pagename }}{{ file_suffix }}">0.9</a>.
|
|
|
|
<a href="http://doc.scrapy.org/0.8/{{ pagename }}{{ file_suffix }}">0.8</a>.
|
|
|
|
<a href="http://doc.scrapy.org/0.7/{{ pagename }}{{ file_suffix }}">0.7</a>.
|
|
|
|
</p>
|
2010-12-23 13:04:49 -02:00
|
|
|
{% else %}
|
2010-12-23 13:03:40 -02:00
|
|
|
<p class="stabledoc">
|
|
|
|
This document describes Scrapy {{ version }}. For development docs,
|
|
|
|
<a href="http://doc.scrapy.org/dev/{{ pagename }}{{ file_suffix }}">go here</a>.
|
|
|
|
</p>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
{{ body }}
|
|
|
|
{% endblock %}
|