39 lines
1.2 KiB
HTML
Executable File
39 lines
1.2 KiB
HTML
Executable File
{% extends "!layout.html" %}
|
|
|
|
{% block body %}
|
|
<div class="deck">
|
|
|
|
{% if version == "0.7" or version == "0.8" %}
|
|
<p class="developmentversion">
|
|
This document is for Celery's development version, which can be
|
|
significantly different from previous releases. Get old docs here:
|
|
|
|
<a href="http://docs.celeryproject.org/en/latest/{{ pagename }}{{ file_suffix }}">2.5</a>.
|
|
</p>
|
|
{% else %}
|
|
<p>
|
|
This document describes stdnet {{ version }}. For development docs,
|
|
<a href="http://lsbardel.github.com/python-stdnet/{{ pagename }}{{ file_suffix }}">go here</a>.
|
|
</p>
|
|
{% endif %}
|
|
|
|
</div>
|
|
{{ body }}
|
|
{% endblock %}
|
|
|
|
{% block footer %}
|
|
{{ super() }}
|
|
<script type="text/javascript">
|
|
|
|
var _gaq = _gaq || [];
|
|
_gaq.push(['_setAccount', 'UA-3900561-6']);
|
|
_gaq.push(['_trackPageview']);
|
|
|
|
(function() {
|
|
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
|
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
|
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
|
})();
|
|
|
|
</script>
|
|
{% endblock %} |