]> git.deb.at Git - deb/packages.git/blobdiff - lib/Packages/DoNewPkg.pm
Packages::Dispatcher: Handle suite aliases correctly in suite parameter
[deb/packages.git] / lib / Packages / DoNewPkg.pm
index 7ee921a3975ee6c14f689d0ccd10dfbca029177a..c9e0ca23f009f79615048c7d1a4519230667e2e7 100644 (file)
@@ -19,7 +19,7 @@ use Packages::DB;
 use Packages::Config qw( $TOPDIR @SECTIONS $ROOT );
 
 sub do_newpkg {
-    my ($params, $opts, $html_header, $page_content) = @_;
+    my ($params, $opts, $page_content) = @_;
 
     if ($params->{errors}{suite}) {
        fatal_error( _g( "suite not valid or not specified" ) );
@@ -56,10 +56,8 @@ sub do_newpkg {
     close NEWPKG;
     
     (my @date)= gmtime();
-    my $now_time = strftime ("%B %d, %Y", @date);
-    my $rss_time = strftime ("%Y-%m-%dT%H:%M+00:00", @date);
-
-    $page_content->{make_url} = sub { return &Packages::CGI::make_url(@_) };
+    #FIXME: compute in the template
+    $page_content->{rss_timestamp} = strftime ("%Y-%m-%dT%H:%M+00:00", @date);
 
     if (@new_pkgs) {
        $page_content->{new_packages} = [ sort { &$sort_func($a,$b) } @new_pkgs ];
@@ -70,49 +68,6 @@ sub do_newpkg {
     $page_content->{archive} = $one_archive if $one_archive;
     $page_content->{sections} = \@SECTIONS;
 
-#    my @full_path = ($HOSTNAME, $ROOT, $suite);
-#    push @full_path, $one_archive if $one_archive;
-#    my $full_path = join( '/', @full_path );
-
-#     } else { # unless ($opts->{format} eq 'rss')
-#      my ( $rss_link, $rss_description, $rss_date );
-
-#      $rss_description = sprintf(_g( "The following packages were added to suite %s%s in the Debian archive during the last 7 days."), $suite,
-#                                 $one_section ? sprintf(_g(" (section %s)"),$one_section):'');
-
-#      my $rss = new XML::RSS (version => '1.0');
-#      $rss_link = "$full_path".($one_section?"$one_section/":'')."/newpkg?format=rss";
-#      $rss->channel(
-#                    title        => _g("New Debian Packages"),
-#                    link         => $rss_link,
-#                    description  => $rss_description,
-#                    dc => {
-#                        date       => $rss_time,
-#                        publisher  => 'debian-www@lists.debian.org',
-#                        rights     => 'Copyright '.($date[5]+1900).', SPI Inc.',
-#                        language   => $opts->{lang},
-#                    },
-#                    syn => {
-#                        updatePeriod     => "daily",
-#                        updateFrequency  => "2",
-# #                  updateBase       => "1901-01-01T00:00+00:00",
-#                    } );
-
-#      foreach my $pkg (sort { &$sort_func($a,$b) } @new_pkgs) {
-#          $rss->add_item(
-#                         title       => $pkg->[0],
-#                         link        => "$full_path/$pkg->[0]",
-#                         description => $pkg->[-1],
-#                         dc => {
-#                             subject  => $pkg->[6],
-#                         } );
-#      }
-#      my $charset = get_charset( $opts->{lang} );
-#      print &CGI::header( -type => 'application/rss+xml',
-#                          -charset => $charset );
-#      print $rss->as_string;
-#      exit;
-#     }
 }
 
 1;