Subversion Repositories DevTools

Rev

Rev 227 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 227 Rev 229
Line 75... Line 75...
75
#
75
#
76
my $result = GetOptions (
76
my $result = GetOptions (
77
                "help+"         => \$opt_help,              # flag, multiple use allowed
77
                "help+"         => \$opt_help,              # flag, multiple use allowed
78
                "manual"        => sub{ $opt_help = 3},     # flag, multiple use allowed
78
                "manual"        => sub{ $opt_help = 3},     # flag, multiple use allowed
79
                "verbose+"      => \$opt_verbose,           # flag, multiple use allowed
79
                "verbose+"      => \$opt_verbose,           # flag, multiple use allowed
80
                "out=s"         => \$opt_outfile,           # String
80
                "output=s"      => \$opt_outfile,           # String
81
                "new=s"         => \$opt_new_label,         # String
81
                "new=s"         => \$opt_new_label,         # String
82
                "oldput=s"      => \$opt_old_label,         # String
82
                "old=s"         => \$opt_old_label,         # String
83
                "drive=s"       => \$opt_drive,             # String
83
                "drive=s"       => \$opt_drive,             # String
84
                "vob=s"         => \@opt_vobs,              # String
84
                "vob=s"         => \@opt_vobs,              # String
85
                );
85
                );
86
 
86
 
87
                #
87
                #
Line 335... Line 335...
335
# Function        : files_from_from_view
335
# Function        : files_from_from_view
336
#
336
#
337
# Description     : Determine the list of files/versions in a given view
337
# Description     : Determine the list of files/versions in a given view
338
#
338
#
339
# Inputs          : $vpath          - Path to the view
339
# Inputs          : $vpath          - Path to the view
340
#                   $$label         - Label
340
#                   $label          - Label
341
#                   $tag            - File tag
341
#                   $tag            - File tag
342
#
342
#
343
# Returns         : Nothing
343
# Returns         : Nothing
344
#                   Populates the %files array
344
#                   Populates the %files array
345
#
345
#