version 1.116, 2004/06/18 01:27:04
|
version 1.119, 2004/07/07 00:02:00
|
Line 60 my %hash; # global user-specific gdbm fi
|
Line 60 my %hash; # global user-specific gdbm fi
|
my %dirs; # keys are directories, values are the open/close status |
my %dirs; # keys are directories, values are the open/close status |
my %language; # has the reference information present in language.tab |
my %language; # has the reference information present in language.tab |
my %dynhash; # hash of hashes for dynamic metadata |
my %dynhash; # hash of hashes for dynamic metadata |
|
my %dynread; # hash of directories already read for dynamic metadata |
my %fieldnames; # Metadata fieldnames |
my %fieldnames; # Metadata fieldnames |
# ----- Values which are set by the handler subroutine and are accessible to |
# ----- Values which are set by the handler subroutine and are accessible to |
# ----- other methods. |
# ----- other methods. |
Line 135 sub handler {
|
Line 136 sub handler {
|
if ($ENV{'form.launch'} eq '2') { |
if ($ENV{'form.launch'} eq '2') { |
$r->content_type('text/html'); |
$r->content_type('text/html'); |
my $extra=''; |
my $extra=''; |
if (defined($ENV{'form.titleelement'})) { |
if (defined($ENV{'form.titleelement'}) && |
|
$ENV{'form.titleelement'} ne '') { |
my $verify_title = &Apache::lonnet::gettitle($ENV{'form.acts'}); |
my $verify_title = &Apache::lonnet::gettitle($ENV{'form.acts'}); |
# &Apache::lonnet::logthis("Hrrm $ENV{'form.acts'} -- $verify_title"); |
# &Apache::lonnet::logthis("Hrrm $ENV{'form.acts'} -- $verify_title"); |
$verify_title=~s/'/\\'/g; |
$verify_title=~s/'/\\'/g; |
Line 679 sub get_list {
|
Line 681 sub get_list {
|
# is really a directory |
# is really a directory |
@list = &Apache::lonnet::dirlist($uri); |
@list = &Apache::lonnet::dirlist($uri); |
$hash{'dirlist_files_'.$luri} = join("\n",@list); |
$hash{'dirlist_files_'.$luri} = join("\n",@list); |
&dynmetaread($uri); |
|
} |
} |
return @list=&match_ext($r,@list); |
return @list=&match_ext($r,@list); |
} |
} |
Line 687 sub get_list {
|
Line 688 sub get_list {
|
sub dynmetaread { |
sub dynmetaread { |
my $uri=shift; |
my $uri=shift; |
if (($hash{'display_attrs_8'}==1) || ($hash{'display_attrs_11'}==1)) { |
if (($hash{'display_attrs_8'}==1) || ($hash{'display_attrs_11'}==1)) { |
|
# We don't want the filename |
|
$uri=~s/\/[^\/]+$//; |
|
# Did we already see this? |
|
my $builddir=$uri; |
|
while ($builddir) { |
|
if ($dynread{$builddir}) { |
|
return 0; |
|
} |
|
$builddir=~s/\/[^\/]+$//; |
|
} |
|
# Actually get the data |
%dynhash= |
%dynhash= |
(%dynhash,&Apache::lonmeta::get_dynamic_metadata_from_sql($uri)); |
(%dynhash,&Apache::lonmeta::get_dynamic_metadata_from_sql($uri)); |
|
# Remember that we got it |
|
$dynread{$uri}=1; |
} |
} |
} |
} |
|
|
Line 985 sub display_line {
|
Line 999 sub display_line {
|
} |
} |
if ($hash{'display_attrs_8'} == 1) { |
if ($hash{'display_attrs_8'} == 1) { |
# statistics |
# statistics |
|
&dynmetaread($filelink); |
$r->print("<td>"); |
$r->print("<td>"); |
&dynmetaprint($r,$filelink,'count'); |
&dynmetaprint($r,$filelink,'count'); |
&dynmetaprint($r,$filelink,'course'); |
&dynmetaprint($r,$filelink,'course'); |
Line 1003 sub display_line {
|
Line 1018 sub display_line {
|
if ($hash{'display_attrs_10'} == 1) { |
if ($hash{'display_attrs_10'} == 1) { |
my $source = &Apache::lonnet::metadata($filelink,'sourceavail'); |
my $source = &Apache::lonnet::metadata($filelink,'sourceavail'); |
if($source eq 'open') { |
if($source eq 'open') { |
my $sourcelink = &Apache::lonsource::make_link($filelink); |
my $sourcelink = &Apache::lonsource::make_link($filelink,$listname); |
$r->print('<td>'."<a href=\"javascript:openWindow('".$sourcelink. |
$r->print('<td>'."<a href=\"javascript:openWindow('".$sourcelink. |
"', 'previewsource', '700', '700', 'no', 'yes','yes')\";". |
"', 'previewsource', '700', '700', 'no', 'yes','yes')\";". |
" TARGET=_self>Yes</a> "."</td>\n"); |
" TARGET=_self>Yes</a> "."</td>\n"); |
Line 1013 sub display_line {
|
Line 1028 sub display_line {
|
} |
} |
if ($hash{'display_attrs_11'} == 1) { |
if ($hash{'display_attrs_11'} == 1) { |
# links |
# links |
|
&dynmetaread($filelink); |
$r->print('<td>'); |
$r->print('<td>'); |
&dynmetaprint($r,$filelink,'goto_list'); |
&dynmetaprint($r,$filelink,'goto_list'); |
&dynmetaprint($r,$filelink,'comefrom_list'); |
&dynmetaprint($r,$filelink,'comefrom_list'); |