.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.42) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" Set up some character translations and predefined strings. \*(-- will .\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left .\" double quote, and \*(R" will give a right double quote. \*(C+ will .\" give a nicer C++. Capital omega is used to do unbreakable dashes and .\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff, .\" nothing in troff, for use with C<>. .tr \(*W- .ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p' .ie n \{\ . ds -- \(*W- . ds PI pi . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch . ds L" "" . ds R" "" . ds C` "" . ds C' "" 'br\} .el\{\ . ds -- \|\(em\| . ds PI \(*p . ds L" `` . ds R" '' . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "SVN::Class::Info 3pm" .TH SVN::Class::Info 3pm "2022-06-17" "perl v5.34.0" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH "NAME" SVN::Class::Info \- Subversion workspace info .SH "SYNOPSIS" .IX Header "SYNOPSIS" .Vb 1 \& use SVN::Class; \& \& my $file = svn_file( \*(Aqpath/to/file\*(Aq ); \& my $info = $file\->info; \& printf "repository URL = %s\en", $info\->url; .Ve .SH "DESCRIPTION" .IX Header "DESCRIPTION" SVN::Class::Info represents the output of the \f(CW\*(C`svn info\*(C'\fR command. .SH "METHODS" .IX Header "METHODS" SVN::Class::Info \fBdoes not\fR inherit from SVN::Class, but only Class::Accessor::Fast. .ie n .SS "new( $dir\->stdout )" .el .SS "new( \f(CW$dir\fP\->stdout )" .IX Subsection "new( $dir->stdout )" Creates new SVN::Class::Info instance. The lone argument should be an array ref of output from a call to the SVN::Class object's \&\fBinfo()\fR method. .PP You normally do not need to use this method directly. See the SVN::Class \&\fBinfo()\fR method. .SS "dump" .IX Subsection "dump" Returns \fBdump()\fR of the object, just like SVN::Class\->\fBdump()\fR. .SS "url" .IX Subsection "url" Get the \s-1URL\s0 value. Returns a SVN::Class::Repos object. .SS "path" .IX Subsection "path" .SS "wc_root" .IX Subsection "wc_root" Working Copy Root Path .SS "name" .IX Subsection "name" .SS "root" .IX Subsection "root" .SS "rev" .IX Subsection "rev" .SS "node" .IX Subsection "node" .SS "schedule" .IX Subsection "schedule" .SS "author" .IX Subsection "author" .SS "last_rev" .IX Subsection "last_rev" .SS "date" .IX Subsection "date" .SS "updated" .IX Subsection "updated" .SS "checksum" .IX Subsection "checksum" .SS "uuid" .IX Subsection "uuid" Get/set the info params. These are really only useful as accessors (getters). .SS "rel_url" .IX Subsection "rel_url" .SH "AUTHOR" .IX Header "AUTHOR" Peter Karman, \f(CW\*(C`\*(C'\fR .SH "BUGS" .IX Header "BUGS" Please report any bugs or feature requests to \&\f(CW\*(C`bug\-svn\-class at rt.cpan.org\*(C'\fR, or through the web interface at . I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. .SH "SUPPORT" .IX Header "SUPPORT" You can find documentation for this module with the perldoc command. .PP .Vb 1 \& perldoc SVN::Class .Ve .PP You can also look for information at: .IP "\(bu" 4 AnnoCPAN: Annotated \s-1CPAN\s0 documentation .Sp .IP "\(bu" 4 \&\s-1CPAN\s0 Ratings .Sp .IP "\(bu" 4 \&\s-1RT: CPAN\s0's request tracker .Sp .IP "\(bu" 4 Search \s-1CPAN\s0 .Sp .SH "ACKNOWLEDGEMENTS" .IX Header "ACKNOWLEDGEMENTS" I looked at SVN::Agent before starting this project. It has a different \s-1API,\s0 more like SVN::Client in the SVN::Core, but I cribbed some of the ideas. .PP The Minnesota Supercomputing Institute \f(CW\*(C`http://www.msi.umn.edu/\*(C'\fR sponsored the development of this software. .SH "COPYRIGHT" .IX Header "COPYRIGHT" Copyright 2008 by the Regents of the University of Minnesota. .PP This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. .SH "SEE ALSO" .IX Header "SEE ALSO" Path::Class, Class::Accessor::Fast, SVN::Agent, IPC::Cmd