version 1.231, 2004/07/19 16:38:07
|
version 1.237.2.1, 2005/04/01 20:01:32
|
Line 449 my %alreadyseen;
|
Line 449 my %alreadyseen;
|
my %hash; |
my %hash; |
my $totalfound; |
my $totalfound; |
|
|
|
sub make_symb { |
|
my ($id)=@_; |
|
my ($mapid,$resid)=split(/\./,$id); |
|
my $map=$hash{'map_id_'.$mapid}; |
|
my $res=$hash{'src_'.$id}; |
|
my $symb=&Apache::lonnet::encode_symb($map,$resid,$res); |
|
return $symb; |
|
} |
|
|
sub course_search { |
sub course_search { |
my $r=shift; |
my $r=shift; |
my $bodytag=&Apache::loncommon::bodytag('Course Search'); |
my $bodytag=&Apache::loncommon::bodytag('Course Search'); |
my $pretty_search_string = '<b>'.$ENV{'form.courseexp'}.'</b>'; |
my $pretty_search_string = '<b>'.$ENV{'form.courseexp'}.'</b>'; |
my $search_string = $ENV{'form.courseexp'}; |
my $search_string = $ENV{'form.courseexp'}; |
my @New_Words; |
my @New_Words; |
|
undef(%alreadyseen); |
if ($ENV{'form.crsrelated'}) { |
if ($ENV{'form.crsrelated'}) { |
($search_string,@New_Words) = &related_version($ENV{'form.courseexp'}); |
($search_string,@New_Words) = &related_version($ENV{'form.courseexp'}); |
if (@New_Words) { |
if (@New_Words) { |
Line 471 sub course_search {
|
Line 481 sub course_search {
|
$bodytag.'<hr /><center><font size="+2" face="arial">'.$pretty_search_string.'</font></center><hr /><b>'.&mt('Course content').':</b><br />'); |
$bodytag.'<hr /><center><font size="+2" face="arial">'.$pretty_search_string.'</font></center><hr /><b>'.&mt('Course content').':</b><br />'); |
$r->rflush(); |
$r->rflush(); |
# ======================================================= Go through the course |
# ======================================================= Go through the course |
undef %alreadyseen; |
|
%alreadyseen=(); |
|
my $c=$r->connection; |
my $c=$r->connection; |
if (tie(%hash,'GDBM_File',$ENV{'request.course.fn'}.".db", |
if (tie(%hash,'GDBM_File',$ENV{'request.course.fn'}.".db", |
&GDBM_READER(),0640)) { |
&GDBM_READER(),0640)) { |
foreach (keys %hash) { |
foreach (sort(keys(%hash))) { |
if ($c->aborted()) { last; } |
if ($c->aborted()) { last; } |
if (($_=~/^src\_(.+)$/) && (!$alreadyseen{$hash{$_}})) { |
if (($_=~/^src\_(.+)$/)) { |
&checkonthis($r,$hash{$_},0,$hash{'title_'.$1},$fulltext, |
if ($hash{'randomout_'.$1} & !$ENV{'request.role.adv'}) { |
@allwords); |
next; |
|
} |
|
my $symb=&make_symb($1); |
|
&checkonthis($r,$1,$hash{$_},0,&Apache::lonnet::gettitle($symb), |
|
$fulltext,$symb,@allwords); |
} |
} |
} |
} |
untie(%hash); |
untie(%hash); |
Line 570 sub course_search {
|
Line 582 sub course_search {
|
# =============================== This pulls up a resource and its dependencies |
# =============================== This pulls up a resource and its dependencies |
|
|
sub checkonthis { |
sub checkonthis { |
my ($r,$url,$level,$title,$fulltext,@allwords)=@_; |
my ($r,$id,$url,$level,$title,$fulltext,$symb,@allwords)=@_; |
$alreadyseen{$url}=1; |
$alreadyseen{$id}=1; |
|
if (&Apache::loncommon::connection_aborted($r)) { return; } |
$r->rflush(); |
$r->rflush(); |
my $result=&Apache::lonnet::metadata($url,'title').' '. |
|
&Apache::lonnet::metadata($url,'subject').' '. |
my $result=$title.' '; |
&Apache::lonnet::metadata($url,'abstract').' '. |
if ($ENV{'request.role.adv'} || !$hash{'encrypted_'.$id}) { |
&Apache::lonnet::metadata($url,'keywords'); |
$result.=&Apache::lonnet::metadata($url,'title').' '. |
if (($url) && ($fulltext)) { |
&Apache::lonnet::metadata($url,'subject').' '. |
$result.=&Apache::lonnet::ssi_body($url); |
&Apache::lonnet::metadata($url,'abstract').' '. |
|
&Apache::lonnet::metadata($url,'keywords'); |
|
} |
|
my ($extension)=($url=~/\.(\w+)$/); |
|
if (&Apache::loncommon::fileembstyle($extension) eq 'ssi' && |
|
($url) && ($fulltext)) { |
|
$result.=&Apache::lonnet::ssi_body($url.'?symb='.&Apache::lonnet::escape($symb)); |
} |
} |
$result=~s/\s+/ /gs; |
$result=~s/\s+/ /gs; |
my $applies = 0; |
my $applies = 0; |
Line 589 sub checkonthis {
|
Line 608 sub checkonthis {
|
for (my $i=0;$i<=$level*5;$i++) { |
for (my $i=0;$i<=$level*5;$i++) { |
$r->print(' '); |
$r->print(' '); |
} |
} |
$r->print('<a href="'.$url.'" target="cat">'. |
my $href=$url; |
($title?$title:$url).'</a><br />'); |
if ($hash{'encrypted_'.$id} && !$ENV{'request.role.adv'}) { |
|
$href=&Apache::lonenc::encrypted($href) |
|
.'?symb='.&Apache::lonenc::encrypted($symb); |
|
} else { |
|
$href.='?symb='.&Apache::lonnet::escape($symb); |
|
} |
|
$r->print('<a href="'.$href.'" target="cat">'.($title?$title:$url). |
|
'</a><br />'); |
$totalfound++; |
$totalfound++; |
} elsif ($fulltext) { |
} elsif ($fulltext) { |
$r->print(' .'); |
$r->print(' .'); |
Line 600 sub checkonthis {
|
Line 626 sub checkonthis {
|
my $dependencies= |
my $dependencies= |
&Apache::lonnet::metadata($url,'dependencies'); |
&Apache::lonnet::metadata($url,'dependencies'); |
foreach (split(/\,/,$dependencies)) { |
foreach (split(/\,/,$dependencies)) { |
if (($_=~/^\/res\//) && (!$alreadyseen{$_})) { |
if (($_=~/^\/res\//) && (!$alreadyseen{$id})) { |
&checkonthis($r,$_,$level+1,'',$fulltext,@allwords); |
&checkonthis($r,$id,$_,$level+1,'',$fulltext,undef,@allwords); |
} |
} |
} |
} |
} |
} |
Line 659 sub print_basic_search_form {
|
Line 685 sub print_basic_search_form {
|
my $scrout = &search_html_header().$bodytag; |
my $scrout = &search_html_header().$bodytag; |
if (&Apache::lonnet::allowed('bre',$ENV{'request.role.domain'})) { |
if (&Apache::lonnet::allowed('bre',$ENV{'request.role.domain'})) { |
# Define interface components |
# Define interface components |
my $userelatedwords= |
my $userelatedwords= '<label>'. |
&mt('[_1] use related words', |
&mt('[_1] use related words', |
&Apache::lonhtmlcommon::checkbox |
&Apache::lonhtmlcommon::checkbox |
('related',$ENV{'form.related'},'related')); |
('related',$ENV{'form.related'},'related')).'</label>'; |
my $onlysearchdomain= |
my $onlysearchdomain='<label>'. |
&mt('[_1] only search domain [_2]', |
&mt('[_1] only search domain [_2]', |
&Apache::lonhtmlcommon::checkbox('domains', |
&Apache::lonhtmlcommon::checkbox('domains', |
$ENV{'form.domains'}, |
$ENV{'form.domains'}, |
$r->dir_config('lonDefDomain') |
$r->dir_config('lonDefDomain') |
), |
), |
$r->dir_config('lonDefDomain') |
$r->dir_config('lonDefDomain') |
); |
).'</label>'; |
my $adv_search_link = |
my $adv_search_link = |
'<a href="/adm/searchcat?'. |
'<a href="/adm/searchcat?'. |
'phase=disp_adv&'. |
'phase=disp_adv&'. |
Line 752 ENDCOURSESEARCH
|
Line 778 ENDCOURSESEARCH
|
$ENV{'form.crsrelated'}); |
$ENV{'form.crsrelated'}); |
$scrout.=(<<ENDENDCOURSE); |
$scrout.=(<<ENDENDCOURSE); |
</td></tr> |
</td></tr> |
<tr><td>$relcheckbox $lt{'use'}</td><td></td></tr> |
<tr><td><label>$relcheckbox $lt{'use'}</label></td><td></td></tr> |
<tr><td>$crscheckbox $lt{'full'}</td><td></td></tr> |
<tr><td><label>$crscheckbox $lt{'full'}</label></td><td></td></tr> |
<tr><td>$discheckbox $lt{'disc'}</td><td></td></tr> |
<tr><td><label>$discheckbox $lt{'disc'}</label></td><td></td></tr> |
</table><p> |
</table><p> |
<input type="submit" name="coursesubmit" value='$lt{'srch'}' /> |
<input type="submit" name="coursesubmit" value='$lt{'srch'}' /> |
</p> |
</p> |
Line 2443 END
|
Line 2469 END
|
delete ($Server_status{$server}); |
delete ($Server_status{$server}); |
next; |
next; |
} |
} |
$status=~/^([\.\w]+)$/; |
$status=~s|/||g; |
my $datafile=$r->dir_config('lonDaemons').'/tmp/'.$1; |
my $datafile=$r->dir_config('lonDaemons').'/tmp/'.$status; |
if (-e $datafile && ! -e "$datafile.end") { |
if (-e $datafile && ! -e "$datafile.end") { |
&update_status($r,&mt('Receiving results from [_1]',$server)); |
&update_status($r,&mt('Receiving results from [_1]',$server)); |
next; |
next; |
Line 2633 sub display_results {
|
Line 2659 sub display_results {
|
&hidden_field('persistent_db_id'). |
&hidden_field('persistent_db_id'). |
&hidden_field('start') |
&hidden_field('start') |
); |
); |
|
# |
|
# Build sorting selector |
|
my @field_order = ('default', |
|
'title', |
|
'author', |
|
'subject', |
|
'url', |
|
'keywords', |
|
'version', |
|
'language', |
|
'creationdate'=>, |
|
'lastrevisiondate', |
|
'owner', |
|
'copyright', |
|
'authorspace', |
|
'lowestgradeleve', |
|
'highestgradelevel', |
|
'standards', |
|
'count', |
|
'stdno', |
|
'avetries', |
|
'difficulty', |
|
'disc', |
|
'clear', |
|
'technical', |
|
'correct', |
|
'helpful', |
|
'depth', |
|
); |
|
my %sort_fields = ('default' => 'Default', |
|
'title' => 'Title', |
|
'author' => 'Author', |
|
'subject' => 'Subject', |
|
'url' => 'URL', |
|
'keywords' => 'Keywords', |
|
'version' => 'Version', |
|
'language' => 'Language', |
|
'creationdate'=> 'Creation Date', |
|
'lastrevisiondate' => 'Last Revision Date', |
|
'owner' => 'Owner', |
|
'copyright' => 'Copyright', |
|
'authorspace' => 'Authorspace', |
|
'lowestgradeleve' => 'Lowest Grade Level', |
|
'highestgradelevel' => 'Highest Grade Level', |
|
'standards' => 'Standards', |
|
'count' => 'Number of Accesses', |
|
'stdno' => 'Students Attempting', |
|
'avetries' => 'Average Number of Tries', |
|
'difficulty' => 'Mean Degree of Difficulty', |
|
'disc' => 'Mean Degree of Discrimination', |
|
'clear' => 'Evaluation: Clear', |
|
'technical' => 'Evaluation: Technically Correct', |
|
'correct' => 'Evaluation: Material is Correct', |
|
'helpful' => 'Evaluation: Material is Helpful', |
|
'depth' => 'Evaluation: Material has Depth', |
|
'select_form_order' => \@field_order, |
|
); |
|
|
|
my $sortform = &mt('Sort by [_1]', |
|
&Apache::loncommon::select_form($ENV{'form.sortfield'}, |
|
'sortfield', |
|
%sort_fields)); |
## |
## |
## Output links (if necessary) for 'prev' and 'next' pages. |
## Output links (if necessary) for 'prev' and 'next' pages. |
$r->print |
$r->print |
('<table width="100%"><tr><td width="50%" align="right">'. |
('<table width="100%"><tr><td width="25%" align="right">'. |
|
$sortform. |
|
'</td><td width="25%" align="right">'. |
&prev_next_buttons($min,$ENV{'form.show'},$total_results). |
&prev_next_buttons($min,$ENV{'form.show'},$total_results). |
'</td><td align="right">'. |
'</td><td align="right">'. |
&viewoptions().'</td></tr></table>' |
&viewoptions().'</td></tr></table>' |
Line 2647 sub display_results {
|
Line 2737 sub display_results {
|
"</form></body></html>"); |
"</form></body></html>"); |
return; |
return; |
} else { |
} else { |
$r->print |
$r->print('<center>'. |
("<center>Results $min to $max out of $total_results</center>\n"); |
mt('Results [_1] to [_2] out of [_3]', |
|
$min,$max,$total_results). |
|
"</center>\n"); |
} |
} |
## |
## |
## Get results from MySQL table |
## Get results from MySQL table |
my @Results = &Apache::lonmysql::get_rows($table, |
my $sort_command = 'id>='.$min.' AND id<='.$max; |
'id>='.$min.' AND id<='.$max); |
if ($ENV{'form.sortfield'} ne 'default' && |
|
exists($sort_fields{$ENV{'form.sortfield'}})) { |
|
$sort_command = $ENV{'form.sortfield'}.' IS NOT NULL '. |
|
'ORDER BY '.$ENV{'form.sortfield'}. |
|
' LIMIT '.($min-1).','.($max-$min); |
|
} |
|
my @Results = &Apache::lonmysql::get_rows($table,$sort_command); |
## |
## |
## Loop through the results and output them. |
## Loop through the results and output them. |
foreach my $row (@Results) { |
foreach my $row (@Results) { |