Thomas Guyot-Sionnest <dermoth@xxxxxx> writes: > commit b629275 implemented "smart" snapshot names and prefixes. I have > scripts that used to rely on the old behaviour which allowed in some > cases to have fixed prefix, and would require modifications to work with > newer Gitweb. If scripts use 'wget' or 'curl' you can always change the name of saved file: wget -O <file> ... curl -o <file> ... If downloaded snapshot is compressed tarfile, you can use --strip-components=1 to strip prefix. > This patch adds two parameters for overriding the snapshot name and > prefix, sn and sp respectively. For example, to get a snapshot > named "myproject.[suffix]" with no prefix one can add this query string: > ?sn=myproject;sp= Would you need support for expandable parameters in both (a la 'action' feature)? [...] > @@ -6684,11 +6686,19 @@ sub git_snapshot { > } > > my ($name, $prefix) = snapshot_name($project, $hash); > + if (defined($input_params{'snapshot_name'})) { > + $name = $input_params{'snapshot_name'}; > + } > + if (defined($input_params{'snapshot_prefix'})) { > + $prefix = $input_params{'snapshot_prefix'}; > + } else { > + $prefix .= '/'; > + } > my $filename = "$name$known_snapshot_formats{$format}{'suffix'}"; > my $cmd = quote_command( > git_cmd(), 'archive', > "--format=$known_snapshot_formats{$format}{'format'}", > - "--prefix=$prefix/", $hash); > + "--prefix=$prefix", $hash); > if (exists $known_snapshot_formats{$format}{'compressor'}) { > $cmd .= ' | ' . quote_command(@{$known_snapshot_formats{$format}{'compressor'}}); > } I wonder if you really want to allow prefix which do not end in '/' (which would be suprising, isn't it), or just allow empty prefix too. For example @@ -6684,11 +6686,19 @@ sub git_snapshot { } my ($name, $prefix) = snapshot_name($project, $hash); + if (defined($input_params{'snapshot_name'})) { + $name = $input_params{'snapshot_name'}; + } + if (defined($input_params{'snapshot_prefix'})) { + $prefix = $input_params{'snapshot_prefix'}; + } my $filename = "$name$known_snapshot_formats{$format}{'suffix'}"; my $cmd = quote_command( git_cmd(), 'archive', "--format=$known_snapshot_formats{$format}{'format'}", - "--prefix=$prefix/", $hash); + ($prefix eq "" ? () : "--prefix=$prefix"), $hash); if (exists $known_snapshot_formats{$format}{'compressor'}) { $cmd .= ' | ' . quote_command(@{$known_snapshot_formats{$format}{'compressor'}}); } -- Jakub Narębski -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html