version 1.164, 2007/06/28 21:42:49
|
version 1.166, 2007/06/29 19:21:15
|
Line 410 ENDHEADER
|
Line 410 ENDHEADER
|
# sorting through the actions and changing the global database hash |
# sorting through the actions and changing the global database hash |
foreach my $key (sort {$achash{$a}<=>$achash{$b}} (keys %ahash)) { |
foreach my $key (sort {$achash{$a}<=>$achash{$b}} (keys %ahash)) { |
if ($ahash{$key} eq '1') { |
if ($ahash{$key} eq '1') { |
$hash{'store_'.$hash{'pre_'.$key.'_link'}}=1; |
$hash{'store_'.$hash{'pre_'.$key.'_link'}}= |
# $hash{'pre_'.$key.'_title'}; |
$hash{'pre_'.$key.'_title'}; |
$hash{'storectr_'.$hash{'pre_'.$key.'_link'}}= |
$hash{'storectr_'.$hash{'pre_'.$key.'_link'}}= |
$hash{'storectr'}+0; |
$hash{'storectr'}+0; |
$hash{'storectr'}++; |
$hash{'storectr'}++; |
Line 918 sub display_line {
|
Line 918 sub display_line {
|
|
|
# display file |
# display file |
if (($fnptr == 0 and $filecom[3] ne '') or $absolute) { |
if (($fnptr == 0 and $filecom[3] ne '') or $absolute) { |
|
my $title; |
my $filelink = $pathprefix.$filecom[0]; |
my $filelink = $pathprefix.$filecom[0]; |
|
if ($hash{'display_attrs_0'} == 1) { |
|
my $title = &Apache::lonnet::gettitle($filelink,'title'); |
|
} |
my @file_ext = split (/\./,$listname); |
my @file_ext = split (/\./,$listname); |
my $curfext = $file_ext[-1]; |
my $curfext = $file_ext[-1]; |
if (@Omit) { |
if (@Omit) { |
Line 951 sub display_line {
|
Line 955 sub display_line {
|
$r->print(" />\n"); |
$r->print(" />\n"); |
$r->print("</form></td><td nowrap='nowrap' valign='top'>"); |
$r->print("</form></td><td nowrap='nowrap' valign='top'>"); |
$hash{"pre_${fnum}_link"}=$filelink; |
$hash{"pre_${fnum}_link"}=$filelink; |
|
$hash{"pre_${fnum}_title"}=$title; |
|
if (!$hash{"pre_${fnum}_title"}) { |
|
$hash{"pre_${fnum}_title"} = 'Untitled'; |
|
} |
$fnum++; |
$fnum++; |
} |
} |
# Form to open or close sequences |
# Form to open or close sequences |
Line 1004 sub display_line {
|
Line 1012 sub display_line {
|
} |
} |
$r->print("</td>\n"); |
$r->print("</td>\n"); |
if ($hash{'display_attrs_0'} == 1) { |
if ($hash{'display_attrs_0'} == 1) { |
my $title = &Apache::lonnet::gettitle($filelink,'title'); |
|
$r->print('<td> '.($title eq '' ? ' ' : $title). |
$r->print('<td> '.($title eq '' ? ' ' : $title). |
' </td>'."\n"); |
' </td>'."\n"); |
} |
} |