X-Git-Url: https://git.deb.at/?p=deb%2Fpackages.git;a=blobdiff_plain;f=lib%2FPackages%2FDoDownload.pm;h=60a50cb72464e6719ad885ee11fc358b6d7a2ad5;hp=87bc10ccbfe12fb5520f8a284b273ef104980ce8;hb=9a24f343a769654b1f0e128a3e61855a3d552ca8;hpb=d9c10aaf0bb03bfb75404f9041967b9f91012bdb diff --git a/lib/Packages/DoDownload.pm b/lib/Packages/DoDownload.pm index 87bc10c..60a50cb 100644 --- a/lib/Packages/DoDownload.pm +++ b/lib/Packages/DoDownload.pm @@ -9,9 +9,10 @@ use Benchmark ':hireswallclock'; use Exporter; use Deb::Versions; +use Packages::I18N::Locale; use Packages::HTML (); use Packages::Search qw( :all ); -use Packages::Config qw( $HOME $DBDIR @SUITES @ARCHIVES @SECTIONS @ARCHITECTURES ); +use Packages::Config qw( $HOME $DBDIR @SUITES @ARCHIVES @SECTIONS @ARCHITECTURES $SEARCH_URL ); use Packages::CGI; use Packages::DB; @@ -199,19 +200,19 @@ sub do_download { my ($params, $opts, $html_header, $menu, $page_content) = @_; if ($params->{errors}{package}) { - fatal_error( "package not valid or not specified" ); + fatal_error( _g( "package not valid or not specified" ) ); } if ($params->{errors}{suite}) { - fatal_error( "suite not valid or not specified" ); + fatal_error( _g( "suite not valid or not specified" ) ); } if ($params->{errors}{arch}) { - fatal_error( "arch not valid or not specified" ); + fatal_error( _g( "architecture not valid or not specified" ) ); } if (@{$opts->{suite}} > 1) { - fatal_error( "more than one suite specified for download (@{$opts->{suite}})" ); + fatal_error( sprintf( _g( "more than one suite specified for download (%s)" ), "@{$opts->{suite}}" ) ); } if (@{$opts->{arch}} > 1) { - fatal_error( "more than one architecture specified for download (@{$opts->{arch}})" ); + fatal_error( sprintf( _g( "more than one architecture specified for download (%s)" ), "@{$opts->{arch}}" ) ); } $opts->{h_sections} = { map { $_ => 1 } @SECTIONS }; @@ -223,8 +224,6 @@ sub do_download { my (@results); my ($final_result, $file, $filen, $md5sum, @file_components, $archive) = ("")x5; - sub gettext { return $_[0]; }; - my $st0 = new Benchmark; unless (@Packages::CGI::fatal_errors) { tie %packages_all, 'DB_File', "$DBDIR/packages_all_$suite.db", @@ -233,9 +232,10 @@ sub do_download { read_entry( \%packages, $pkg, \@results, $opts ); + @results = grep { $_->[7] ne 'v' } @results; unless (@results) { - fatal_error( "No such package". - "{insert link to search page with substring search}" ); + fatal_error( _g( "No such package." )."
". + sprintf( _g( 'Search for the package' ), "$SEARCH_URL/$pkg" ) ); } else { my $final_result = shift @results; foreach (@results) { @@ -244,6 +244,7 @@ sub do_download { } } + debug( "final_result=@$final_result", 1 ); $archive = $final_result->[1]; my %data = split /\000/, $packages_all{"$pkg $arch $final_result->[7]"}; $file = $data{filename}; @@ -254,139 +255,93 @@ sub do_download { } } - my $arch_string = $arch ne 'all' ? "on $arches{$arch} machines" : ""; - - %$html_header = ( title => "Package Download Selection", - lang => "en", + %$html_header = ( title => _g( "Package Download Selection" ), + lang => $opts->{lang}, print_title => 1 ); if ($file) { - $$page_content .= "

Download Page for $filen $arch_string

\n". - "

You can download the requested file from the "; - $$page_content .= join( '/', @file_components).'/'; - $$page_content .= " subdirectory at"; - $$page_content .= $archive ne 'security' ? " any of these sites:" : ":"; - $$page_content .= "

\n"; + if ($arch ne 'all') { + $$page_content .= '

'.sprintf( _g('Download Page for %s on %s machines'), $filen, $arches{$arch} ).'

'; + } else { + $$page_content .= '

'.sprintf( _g('Download Page for %s'), $filen ).'

'; + } + my $directory = join( '/', @file_components).'/'; + if ($archive ne 'security' ) { + $$page_content .= "

".sprintf( _g( 'You can download the requested file from the %s subdirectory at any of these sites:' ), $directory )."

\n"; + } else { + $$page_content .= "

".sprintf( _g( 'You can download the requested file from the %s subdirectory at:' ), $directory )."

\n"; + } + + hint(sprintf(_g("If you are running Debian, it's strongly suggested to use a + package manager like aptitude or synaptic to download and install + packages, instead of doing so manually via this website."), + make_url('aptitude','',{arch=>undef}), + make_url('synaptic','',{arch=>undef}) ) ); if ($archive eq 'security') { - $$page_content .= < -
  • security.debian.org/debian-security
  • - - -

    Debian security updates are currently officially distributed only via - security.debian.org.

    -END -; + $$page_content .= ""; + $$page_content .= '

    '._g( 'Debian security updates are currently officially distributed only via security.debian.org.' ).'

    '; } elsif ($arch eq 'amd64') { - $$page_content .= print_links( "North America", $file, @amd64_north_american_sites ); - $$page_content .= print_links( "Europe", $file, @amd64_european_sites ); -# $$page_content .= print_links( "Australia and New Zealand", $file, -# @nonus_australian_sites ); - $$page_content .= print_links( "Asia", $file, @amd64_asian_sites ); -# $$page_content .= print_links( "South America", $file, @nonus_south_american_sites ); + $$page_content .= print_links( _g( "North America" ), $file, @amd64_north_american_sites ); + $$page_content .= print_links( _g( "Europe" ), $file, @amd64_european_sites ); + $$page_content .= print_links( _g( "Asia" ), $file, @amd64_asian_sites ); - $$page_content .= <Note that AMD64 is not officialy included in the Debian archive - yet, but the AMD64 porter group keeps their archive in sync with - the official archive as close as possible. See the - AMD64 ports page for - current information.

    -END -; + $$page_content .= '

    '._g( 'Note that AMD64 is not officialy included in the Debian archive yet, but the AMD64 porter group keeps their archive in sync with the official archive as close as possible. See the AMD64 ports page for current information.' ).'

    '; } elsif ($arch eq 'kfreebsd-i386') { - $$page_content .= print_links( "North America", $file, @kfreebsd_north_american_sites ); - $$page_content .= print_links( "Europe", $file, @kfreebsd_european_sites ); -# $$page_content .= print_links( "Australia and New Zealand", $file, -# @nonus_australian_sites ); -# $$page_content .= print_links( "Asia", $file, @amd64_asian_sites ); -# $$page_content .= print_links( "South America", $file, @nonus_south_american_sites ); + $$page_content .= print_links( _g( "North America" ), $file, @kfreebsd_north_american_sites ); + $$page_content .= print_links( _g( "Europe" ), $file, @kfreebsd_european_sites ); - $$page_content .= <Note that GNU/kFreeBSD is not officialy included in the Debian archive - yet, but the GNU/kFreeBSD porter group keeps their archive in sync with - the official archive as close as possible. See the - GNU/kFreeBSD ports page for - current information.

    -END -; + $$page_content .= '

    '._g( 'Note that GNU/kFreeBSD is not officialy included in the Debian archive yet, but the GNU/kFreeBSD porter group keeps their archive in sync with the official archive as close as possible. See the GNU/kFreeBSD ports page for current information.' ).'

    '; } elsif ($archive eq 'non-US') { - $$page_content .= print_links( "North America", $file, @nonus_north_american_sites ); - $$page_content .= print_links( "Europe", $file, @nonus_european_sites ); - $$page_content .= print_links( "Australia and New Zealand", $file, - @nonus_australian_sites ); - $$page_content .= print_links( "Asia", $file, @nonus_asian_sites ); - $$page_content .= print_links( "South America", $file, @nonus_south_american_sites ); + $$page_content .= print_links( _g( "North America" ), $file, @nonus_north_american_sites ); + $$page_content .= print_links( _g( "Europe" ), $file, @nonus_european_sites ); + $$page_content .= print_links( _g( "Australia and New Zealand" ), $file, + @nonus_australian_sites ); + $$page_content .= print_links( _g( "Asia" ), $file, @nonus_asian_sites ); + $$page_content .= print_links( _g( "South America" ), $file, @nonus_south_american_sites ); - $$page_content .= <If none of the above sites are fast enough for you, please see our - complete mirror list.

    -END -; + $$page_content .= '

    '.sprintf( _g('If none of the above sites are fast enough for you, please see our complete mirror list.' ), 'http://www.debian.org/mirror/list-non-US' ).'

    '; } elsif ($archive eq 'backports') { -# $$page_content .= print_links( "North America", $file, @nonus_north_american_sites ); $$page_content .= '
    '; - $$page_content .= print_links( "Europe", $file, @backports_european_sites ); + $$page_content .= print_links( _g( "Europe" ), $file, @backports_european_sites ); $$page_content .= '
    '; - $$page_content .= print_links( "Australia and New Zealand", $file, - @backports_australian_sites ); - $$page_content .= print_links( "Asia", $file, @backports_asian_sites ); -# $$page_content .= print_links( "South America", $file, @nonus_south_american_sites ); + $$page_content .= print_links( _g( "Australia and New Zealand" ), $file, + @backports_australian_sites ); + $$page_content .= print_links( _g( "Asia" ), $file, @backports_asian_sites ); $$page_content .= '
    '; - - $$page_content .= <If none of the above sites are fast enough for you, please see our - complete mirror list.

    -END -; + + $$page_content .= '

    '.sprintf( _g( 'If none of the above sites are fast enough for you, please see our complete mirror list.'), 'http://www.backports.org/debian/README.mirrors.html' ).'

    '; } elsif ($archive eq 'volatile') { -# $$page_content .= print_links( "North America", $file, @nonus_north_american_sites ); - $$page_content .=_links( "Europe", $file, @volatile_european_sites ); -# $$page_content .= print_links( "Australia and New Zealand", $file, -# @nonus_australian_sites ); -# $$page_content .= print_links( "Asia", $file, @nonus_asian_sites ); -# $$page_content .= print_links( "South America", $file, @nonus_south_american_sites ); + $$page_content .= print_links( _g( "Europe" ), $file, @volatile_european_sites ); - $$page_content .= <If none of the above sites are fast enough for you, please see our - complete mirror list.

    -END -; + $$page_content .= '

    '.sprintf( _g( 'If none of the above sites are fast enough for you, please see our complete mirror list.' ), 'http://volatile.debian.net/mirrors.html' ).'

    '; } elsif ($archive eq 'us') { $$page_content .= '
    '; - $$page_content .= print_links( "North America", $file, @north_american_sites ); + $$page_content .= print_links( _g( "North America" ), $file, @north_american_sites ); $$page_content .= '
    '; - $$page_content .= print_links( "Europe", $file, @european_sites ); + $$page_content .= print_links( _g( "Europe" ), $file, @european_sites ); $$page_content .= '
    '; - $$page_content .= print_links( "Australia and New Zealand", $file, @australian_sites ); + $$page_content .= print_links( _g( "Australia and New Zealand" ), $file, @australian_sites ); $$page_content .= '
    '; - $$page_content .= print_links( "Asia", $file, @asian_sites ); + $$page_content .= print_links( _g( "Asia" ), $file, @asian_sites ); $$page_content .= '
    '; - $$page_content .= print_links( "South America", $file, @south_american_sites ); + $$page_content .= print_links( _g( "South America" ), $file, @south_american_sites ); $$page_content .= '
    '; - $$page_content .= <If none of the above sites are fast enough for you, please see our - complete mirror list.

    -END -; + $$page_content .= '

    '.sprintf( _g( 'If none of the above sites are fast enough for you, please see our complete mirror list.' ), 'http://www.debian.org/mirror/list' ).'

    '; } - $$page_content .= <Note that in some browsers you will need to tell your browser you want - the file saved to a file. For example, in Netscape or Mozilla, you should - hold the Shift key when you click on the URL.

    -END -; - $$page_content .= "

    The MD5sum for $filen is $md5sum

    \n" - if $md5sum; + $$page_content .= '

    '._g( 'Note that in some browsers you will need to tell your browser you want the file saved to a file. For example, in Firefox or Mozilla, you should hold the Shift key when you click on the URL.' ).'

    '; + $$page_content .= "

    ".sprintf( _g( 'The MD5sum for %s is %s' ), $filen, $md5sum ).'

    ' + if $md5sum; } }