]> git.p6c8.net - selfforum.git/blobdiff - selfforum-cgi/user/fo_arcview.pl
added version check
[selfforum.git] / selfforum-cgi / user / fo_arcview.pl
index 667fd2b5827772cba59533f541d161a078240921..46bd8e91e82afd1f9c9176b83d4d4b2b9a5215a2 100644 (file)
@@ -38,22 +38,16 @@ use CGI::Carp qw(fatalsToBrowser);
 use Conf;
 use Conf::Admin;
 use Template::Archive qw(
 use Conf;
 use Conf::Admin;
 use Template::Archive qw(
+    print_overview_as_HTML
+    print_year_as_HTML
     print_month_as_HTML
     print_thread_as_HTML
 );
     print_month_as_HTML
     print_thread_as_HTML
 );
-#use Template::Forum;
-#use Template::Posting;
 
 use CGI qw(param header path_info);
 
 print header(-type => 'text/html');
 
 
 use CGI qw(param header path_info);
 
 print header(-type => 'text/html');
 
-#my $show = $conf->{show};
-#my $tree = $show->{assign}->{thread};
-
-#my $forum_file = $conf->{files}->{forum};
-#my $message_path = $conf->{files}->{messagePath};
-
 my $conf = read_script_conf($Config, $Shared, $Script);
 my $show = $conf->{'show'};
 my $cgi = $show->{'assign'}->{'cgi'};
 my $conf = read_script_conf($Config, $Shared, $Script);
 my $show = $conf->{'show'};
 my $cgi = $show->{'assign'}->{'cgi'};
@@ -78,7 +72,6 @@ if ($year) {
             } else {
                 print_thread_as_HTML(
                     $conf->{'files'}->{'archivePath'} . $year .'/'. $month .'/t'. $tid . '.xml',
             } else {
                 print_thread_as_HTML(
                     $conf->{'files'}->{'archivePath'} . $year .'/'. $month .'/t'. $tid . '.xml',
-#                   '/home/users/f/fo/fox_two/sf/data/forum/archive/2001/5/t23518',
                     $show_archive->{'templateFile'},
                     {
                         'assign'        => $show_archive->{'assign'},
                     $show_archive->{'templateFile'},
                     {
                         'assign'        => $show_archive->{'assign'},
@@ -105,43 +98,25 @@ if ($year) {
             );
         }
     } else {
             );
         }
     } else {
-#       print_year_as_HTML();
+        print_year_as_HTML(
+            $conf->{'files'}->{'archivePath'} . $year . '/',
+            $show_archive->{'templateFile'},
+            {
+                'assign'        => $show_archive->{'assign'},
+                'year'          => $year
+            }
+        );
     }
 } else {
     }
 } else {
-#   print_overview_as_HTML();
+    print_overview_as_HTML(
+        $conf->{'files'}->{'archivePath'},
+        $show_archive->{'templateFile'},
+        {
+            'assign'        => $show_archive->{'assign'}
+        }
+    );
 }
 
 }
 
-
-#if (defined ($tid) and defined ($mid)) {
-#  print_posting_as_HTML (
-#    $message_path,
-#    $show_posting -> {templateFile},
-#    { assign       => $show_posting -> {assign},
-#      thread       => $tid,
-#      posting      => $mid,
-#      adminDefault => $adminDefault,
-#      messages     => $conf -> {template} -> {messages},
-#      form         => $show_posting -> {form},
-#      cgi          => $cgi,
-#      tree         => $tree,
-#      firsttime    => 1,
-#      cachepath    => $conf -> {files} -> {cachePath}
-#    }
-#  );
-#}
-#
-#else {
-#  print_forum_as_HTML (
-#    $forum_file,
-#    $show_forum -> {templateFile},
-#    { assign       => $show_forum -> {assign},
-#      adminDefault => $adminDefault,
-#      cgi          => $cgi,
-#      tree         => $tree
-#    }
-#  );
-#}
-
 #
 #
 ### end of fo_view.pl ##########################################################
 #
 #
 ### end of fo_view.pl ##########################################################

patrick-canterino.de