(request, uid)
| 38 | |
| 39 | @expose("/display/<uid>") |
| 40 | def display(request, uid): |
| 41 | url = URL.load(uid) |
| 42 | if not url: |
| 43 | raise NotFound() |
| 44 | return render_template("display.html", url=url) |
| 45 | |
| 46 | |
| 47 | @expose("/u/<uid>") |
nothing calls this directly
no test coverage detected