
SVN::Web::Revision - SVN::Web action to view a repository revision

In config.yaml
actions:
...
revision:
class: SVN::Web::Revision
opts:
show_diff: 1 # or 0
...

Shows information about a specific revision in a Subversion repository.

The following configuration options may be specified in config.yaml.
Boolean indicating whether or not a diff of every file that was changed in the revision should be shown.
Defaults to 1.

The revision to show. If not provided then use the repository's youngest revision.
The number of lines of context to show around each change. Uses the global default if not set.

The revision that is being shown.
The repository's youngest revision. This is useful when constructing next revision and previous revision links.
The date on which the revision was committed, formatted according to "Time and date formatting" in SVN::Web.
The revision's author.
The log message associated with this revision.
A hash of hash refs. Each key is a path name. The value is a further hash ref with the following keys.
A boolean value, true if the given path is a directory.
The HTML diff for this path (if it was modified in this revision). The diff is generated using Text::Diff::HTML.
A diff is only generated if:
A single letter indicating the action that carried out on the path. A file was either added A, modified M, or deleted D.
If the file was copied from another file then this is the path of the source of the copy.
If the file was copied from another file then this is the revision of the file that it was copied form.

The rev parameter was not given.