Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

svn::web::view(3pm) [debian man page]

SVN::Web::View(3pm)					User Contributed Perl Documentation				       SVN::Web::View(3pm)

NAME
SVN::Web::View - SVN::Web action to view a file in the repository SYNOPSIS
In config.yaml actions: ... view: class: SVN::Web::View action_menu: show: - file link_text: (view file) ... DESCRIPTION
Shows a specific revision of a file in the Subversion repository. Includes the commit information for that file. OPTIONS
rev The revision of the file to show. Defaults to the repository's youngest revision. If this is not an interesting revision for this file, the repository history is searched to find the youngest interesting revision for this file that is less than "rev". TEMPLATE VARIABLES
at_head A boolean value, indicating whether the user is currently viewing the HEAD of the file in the repository. context Always "file". rev The revision that has been returned. This is not necessarily the same as the "rev" option passed to the action. If the "rev" passed to the action is not interesting (i.e., there were no changes to the file at that revision) then the file's history is searched backwards to find the next oldest interesting revision. youngest_rev The youngest interesting revision of the file. mimetype The file's MIME type, extracted from the file's "svn:mime-type" property. If this is not set then "text/plain" is used. file The contents of the file. author The revision's author. date The date the revision was committed, formatted according to "Time and date formatting" in SVN::Web. msg The revision's commit message. EXCEPTIONS
None. COPYRIGHT
Copyright 2003-2004 by Chia-liang Kao "<clkao@clkao.org>". Copyright 2005-2007 by Nik Clayton "<nik@FreeBSD.org>". This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See <http://www.perl.com/perl/misc/Artistic.html> perl v5.14.2 2012-06-11 SVN::Web::View(3pm)

Check Out this Related Man Page

SVN::Web::RSS(3pm)					User Contributed Perl Documentation					SVN::Web::RSS(3pm)

NAME
SVN::Web::RSS - SVN::Web action to generate an RSS feed SYNOPSIS
In config.yaml actions: ... rss: class: SVN::Web::RSS action_menu: show: - file - directory link_text: (rss) head_only: 1 icon: /css/trac/feed-icon-16x16.png opts: publisher: address@domain ... DESCRIPTION
Generates an RSS feed of commits to a file or path in the Subversion repository. CONFIGURATION
The following options may be specified in config.yaml. publisher The e-mail address of the feed's publisher. This is placed in to the "<dc:publisher>" element in the RSS output. There is no default. If not specified then no "<dc:publisher>" element is included. Note: RSS dates have a specific format. Accordingly, the "timezone" and "timedate_format" configuration options are ignored by this action. OPTIONS
See SVN::Web::Log. TEMPLATE VARIABLES
See SVN::Web::Log. EXCEPTIONS
See SVN::Web::Log. COPYRIGHT
Copyright 2003-2004 by Chia-liang Kao "<clkao@clkao.org>". Copyright 2005-2007 by Nik Clayton "<nik@FreeBSD.org>". This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See <http://www.perl.com/perl/misc/Artistic.html> perl v5.14.2 2012-06-11 SVN::Web::RSS(3pm)
Man Page