Browse Source

Improved doc exaples. This fixes #370 and #371.

pull/369/merge
Armin Ronacher 13 years ago
parent
commit
065afe53a6
  1. 8
      docs/quickstart.rst

8
docs/quickstart.rst

@ -153,12 +153,12 @@ rule with ``<converter:variable_name>``. Here are some nice examples::
@app.route('/user/<username>')
def show_user_profile(username):
# show the user profile for that user
pass
return 'User %s' % username
@app.route('/post/<int:post_id>')
def show_post(post_id):
# show the post with the given id, the id is an integer
pass
return 'Post %d' % post_id
The following converters exist:
@ -178,11 +178,11 @@ The following converters exist:
@app.route('/projects/')
def projects():
pass
return 'The project page'
@app.route('/about')
def about():
pass
return 'The about page'
They look rather similar, the difference is the trailing slash in the
URL *definition*. In the first case, the canonical URL for the

Loading…
Cancel
Save