Show More
@@ -44,6 +44,21 class webcommand(object): | |||
|
44 | 44 | |
|
45 | 45 | @webcommand('log') |
|
46 | 46 | def log(web, req, tmpl): |
|
47 | """ | |
|
48 | /log[/{revision}[/{path}]] | |
|
49 | -------------------------- | |
|
50 | ||
|
51 | Show repository or file history. | |
|
52 | ||
|
53 | For URLs of the form ``/log/{revision}``, a list of changesets starting at | |
|
54 | the specified changeset identifier is shown. If ``{revision}`` is not | |
|
55 | defined, the default is ``tip``. This form is equivalent to the | |
|
56 | ``changelog`` handler. | |
|
57 | ||
|
58 | For URLs of the form ``/log/{revision}/{file}``, the history for a specific | |
|
59 | file will be shown. This form is equivalent to the ``filelog`` handler. | |
|
60 | """ | |
|
61 | ||
|
47 | 62 | if 'file' in req.form and req.form['file'][0]: |
|
48 | 63 | return filelog(web, req, tmpl) |
|
49 | 64 | else: |
General Comments 0
You need to be logged in to leave comments.
Login now