Use current version for download links

Fixes #19
This commit is contained in:
Aldo Cortesi 2014-11-15 12:41:44 +13:00
parent 27c7e9e934
commit 1b41b9bb9b
2 changed files with 10 additions and 3 deletions

View File

@ -1,4 +1,6 @@
import logging, pprint, cStringIO import logging
import pprint
import cStringIO
from flask import Flask, jsonify, render_template, request, abort, make_response from flask import Flask, jsonify, render_template, request, abort, make_response
import version, language, utils import version, language, utils
from netlib import http_uastrings from netlib import http_uastrings
@ -39,7 +41,12 @@ def make_app(noapi):
@app.route('/') @app.route('/')
@app.route('/index.html') @app.route('/index.html')
def index(): def index():
return render("index.html", True, section="main") return render(
"index.html",
True,
section="main",
version=version.VERSION
)
@app.route('/download') @app.route('/download')
@app.route('/download.html') @app.route('/download.html')

View File

@ -56,7 +56,7 @@
<h2>source</h2> <h2>source</h2>
<ul> <ul>
<li>Current release: <a href="http://mitmproxy.org/download/pathod-0.9.2.tar.gz">pathod 0.9.2</a></li> <li>Current release: <a href="http://mitmproxy.org/download/pathod-{{version}}.tar.gz">pathod {{version}}</a></li>
<li>GitHub: <a href="http://github.com/mitmproxy/pathod">github.com/cortesi/pathod</a></li> <li>GitHub: <a href="http://github.com/mitmproxy/pathod">github.com/cortesi/pathod</a></li>
</li> </li>