version 1.228, 2004/06/03 19:23:08
|
version 1.236, 2005/02/02 21:08:23
|
Line 76 use Apache::lonlocal;
|
Line 76 use Apache::lonlocal;
|
use LONCAPA::lonmetadata(); |
use LONCAPA::lonmetadata(); |
use HTML::Entities(); |
use HTML::Entities(); |
use Parse::RecDescent; |
use Parse::RecDescent; |
|
use Apache::lonnavmaps; |
|
|
###################################################################### |
###################################################################### |
###################################################################### |
###################################################################### |
Line 448 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 463 sub course_search {
|
Line 474 sub course_search {
|
} |
} |
} |
} |
my $fulltext=$ENV{'form.crsfulltext'}; |
my $fulltext=$ENV{'form.crsfulltext'}; |
|
my $discuss=$ENV{'form.crsdiscuss'}; |
my @allwords=($search_string,@New_Words); |
my @allwords=($search_string,@New_Words); |
$totalfound=0; |
$totalfound=0; |
$r->print('<html><head><title>LON-CAPA Course Search</title></head>'. |
$r->print('<html><head><title>LON-CAPA Course Search</title></head>'. |
$bodytag.'<hr /><center><font size="+2" face="arial">'.$pretty_search_string.'</font></center><hr />'); |
$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); |
} |
} |
unless ($totalfound) { |
unless ($totalfound) { |
$r->print('<p>'.&mt('No resources found').'.</p>'); |
$r->print('<p>'.&mt('No matches found in resources').'.</p>'); |
|
} |
|
|
|
# Check discussions if requested |
|
if ($discuss) { |
|
my $totaldiscussions = 0; |
|
$r->print('<br /><br /><b>'.&mt('Discussion postings').':</b><br />'); |
|
my $navmap = Apache::lonnavmaps::navmap->new(); |
|
my @allres=$navmap->retrieveResources(); |
|
my %discussiontime = &Apache::lonnet::dump('discussiontimes', |
|
$ENV{'course.'.$ENV{'request.course.id'}.'.domain'}, |
|
$ENV{'course.'.$ENV{'request.course.id'}.'.num'}); |
|
foreach my $resource (@allres) { |
|
my $result = ''; |
|
my $applies = 0; |
|
my $symb = $resource->symb(); |
|
my $ressymb = $symb; |
|
if ($symb =~ m#(___adm/\w+/\w+)/(\d+)/bulletinboard$#) { |
|
$ressymb = 'bulletin___'.$2.$1.'/'.$2.'/bulletinboard'; |
|
unless ($ressymb =~ m#bulletin___\d+___adm/wrapper#) { |
|
$ressymb=~s#(bulletin___\d+___)#$1adm/wrapper/#; |
|
} |
|
} |
|
if (defined($discussiontime{$ressymb})) { |
|
my %contrib = &Apache::lonnet::restore($ressymb,$ENV{'request.course.id'}, |
|
$ENV{'course.'.$ENV{'request.course.id'}.'.domain'}, |
|
$ENV{'course.'.$ENV{'request.course.id'}.'.num'}); |
|
if ($contrib{'version'}) { |
|
for (my $id=1;$id<=$contrib{'version'};$id++) { |
|
unless (($contrib{'hidden'}=~/\.$id\./) || ($contrib{'deleted'}=~/\.$id\./)) { |
|
if ($contrib{$id.':subject'}) { |
|
$result .= $contrib{$id.':subject'}; |
|
} |
|
if ($contrib{$id.':message'}) { |
|
$result .= $contrib{$id.':message'}; |
|
} |
|
if ($contrib{$id,':attachmenturl'}) { |
|
if ($contrib{$id,':attachmenturl'} =~ m-/([^/]+)$-) { |
|
$result .= $1; |
|
} |
|
} |
|
$applies = &checkwords($result,$applies,@allwords); |
|
} |
|
} |
|
} |
|
} |
|
# Does this discussion apply? |
|
if ($applies) { |
|
my ($map,$ind,$url)=&Apache::lonnet::decode_symb($ressymb); |
|
my $disctype = &mt('resource'); |
|
if ($url =~ m#/bulletinboard$#) { |
|
if ($url =~m#^adm/wrapper/adm/.*/bulletinboard$#) { |
|
$url =~s#^adm/wrapper##; |
|
} |
|
$disctype = &mt('bulletin board'); |
|
} else { |
|
$url = '/res/'.$url; |
|
} |
|
if ($url =~ /\?/) { |
|
$url .= '&symb='; |
|
} else { |
|
$url .= '?symb='; |
|
} |
|
$url .= &Apache::lonnet::escape($resource->symb()); |
|
my $title = $resource->compTitle(); |
|
$r->print('<br /><a href="'.$url.'" target="cat">'. |
|
($title?$title:$url).'</a> - '.$disctype.'<br />'); |
|
$totaldiscussions++; |
|
} else { |
|
$r->print(' .'); |
|
} |
|
} |
|
unless ($totaldiscussions) { |
|
$r->print('<p>'.&mt('No matches found in postings').'.</p>'); |
|
} |
} |
} |
|
|
# =================================================== Done going through course |
# =================================================== Done going through course |
$r->print('</body></html>'); |
$r->print('</body></html>'); |
} |
} |
Line 493 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; |
foreach (@allwords) { |
$applies = &checkwords($result,$applies,@allwords); |
if ($_=~/\w/) { |
|
if ($result=~/$_/si) { |
|
$applies++; |
|
} |
|
} |
|
} |
|
# Does this resource apply? |
# Does this resource apply? |
if ($applies) { |
if ($applies) { |
$r->print('<br />'); |
$r->print('<br />'); |
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 528 sub checkonthis {
|
Line 625 sub checkonthis {
|
# Check also the dependencies of this one |
# Check also the dependencies of this one |
my $dependencies= |
my $dependencies= |
&Apache::lonnet::metadata($url,'dependencies'); |
&Apache::lonnet::metadata($url,'dependencies'); |
foreach (split(/\,/,$dependencies)) { |
foreach (split(/\,/,$dependencies) && (!$alreadyseen{$id})) { |
if (($_=~/^\/res\//) && (!$alreadyseen{$_})) { |
if (($_=~/^\/res\//)) { |
&checkonthis($r,$_,$level+1,'',$fulltext,@allwords); |
&checkonthis($r,$id,$_,$level+1,'',$fulltext,undef,@allwords); |
} |
} |
} |
} |
} |
} |
|
|
|
sub checkwords { |
|
my ($result,$applies,@allwords) = @_; |
|
foreach (@allwords) { |
|
if ($_=~/\w/) { |
|
if ($result=~/$_/si) { |
|
$applies++; |
|
} |
|
} |
|
} |
|
return $applies; |
|
} |
|
|
sub untiehash { |
sub untiehash { |
if (tied(%hash)) { |
if (tied(%hash)) { |
untie(%hash); |
untie(%hash); |
Line 570 sub print_basic_search_form {
|
Line 679 sub print_basic_search_form {
|
my ($r,$closebutton,$hidden_fields) = @_; |
my ($r,$closebutton,$hidden_fields) = @_; |
my $result = ($ENV{'form.catalogmode'} ne 'groupsearch'); |
my $result = ($ENV{'form.catalogmode'} ne 'groupsearch'); |
my $bodytag=&Apache::loncommon::bodytag('Search'). |
my $bodytag=&Apache::loncommon::bodytag('Search'). |
&Apache::lonhtmlcommon::breadcrumbs(undef,'Searching','Searching', |
&Apache::lonhtmlcommon::breadcrumbs(undef,'Searching','Search_Basic', |
undef,undef, |
undef,undef, |
$ENV{'form.catalogmode'} ne 'groupsearch'); |
$ENV{'form.catalogmode'} ne 'groupsearch'); |
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 638 sub print_basic_search_form {
|
Line 747 sub print_basic_search_form {
|
'header' => 'Course Search', |
'header' => 'Course Search', |
'note' => 'Enter terms or phrases, then press "Search" below', |
'note' => 'Enter terms or phrases, then press "Search" below', |
'use' => 'use related words', |
'use' => 'use related words', |
'full' =>'fulltext search (time consuming)' |
'full' =>'fulltext search (time consuming)', |
|
'disc' => 'search discussion postings (resources and bulletin boards)', |
); |
); |
$scrout.=(<<ENDCOURSESEARCH); |
$scrout.=(<<ENDCOURSESEARCH); |
<form name="loncapa_search" method="post" action="/adm/searchcat"> |
<form name="loncapa_search" method="post" action="/adm/searchcat"> |
Line 663 ENDCOURSESEARCH
|
Line 773 ENDCOURSESEARCH
|
my $relcheckbox = |
my $relcheckbox = |
&Apache::lonhtmlcommon::checkbox('crsrelated', |
&Apache::lonhtmlcommon::checkbox('crsrelated', |
$ENV{'form.crsrelated'}); |
$ENV{'form.crsrelated'}); |
|
my $discheckbox = |
|
&Apache::lonhtmlcommon::checkbox('crsdiscuss', |
|
$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><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 697 Prints the advanced search form.
|
Line 811 Prints the advanced search form.
|
sub print_advanced_search_form{ |
sub print_advanced_search_form{ |
my ($r,$closebutton,$hidden_fields) = @_; |
my ($r,$closebutton,$hidden_fields) = @_; |
my $bodytag=&Apache::loncommon::bodytag('Advanced Catalog Search'). |
my $bodytag=&Apache::loncommon::bodytag('Advanced Catalog Search'). |
&Apache::lonhtmlcommon::breadcrumbs(undef,'Searching','Searching', |
&Apache::lonhtmlcommon::breadcrumbs(undef,'Searching', |
undef,undef, |
'Search_Advanced', |
|
undef,undef, |
$ENV{'form.catalogmode'} ne 'groupsearch'); |
$ENV{'form.catalogmode'} ne 'groupsearch'); |
my %lt=&Apache::lonlocal::texthash('srch' => 'Search', |
my %lt=&Apache::lonlocal::texthash('srch' => 'Search', |
'reset' => 'Reset', |
'reset' => 'Reset', |
Line 780 ENDHEADER
|
Line 895 ENDHEADER
|
$scrout.='<tr><td align="right" valign="top">'. |
$scrout.='<tr><td align="right" valign="top">'. |
&titlefield(&mt('Copyright/Distribution')).'</td><td colspan="2">'. |
&titlefield(&mt('Copyright/Distribution')).'</td><td colspan="2">'. |
&Apache::lonmeta::selectbox('copyright', |
&Apache::lonmeta::selectbox('copyright', |
'',, |
$ENV{'form.copyright'}, |
\&Apache::loncommon::copyrightdescription, |
\&Apache::loncommon::copyrightdescription, |
( undef, |
( undef, |
&Apache::loncommon::copyrightids) |
&Apache::loncommon::copyrightids) |
Line 788 ENDHEADER
|
Line 903 ENDHEADER
|
$scrout.='<tr><td align="right" valign="top">'. |
$scrout.='<tr><td align="right" valign="top">'. |
&titlefield(&mt('Language')).'</td><td colspan="2">'. |
&titlefield(&mt('Language')).'</td><td colspan="2">'. |
&Apache::lonmeta::selectbox('language', |
&Apache::lonmeta::selectbox('language', |
'notset',, |
$ENV{'form.language'}, |
\&Apache::loncommon::languagedescription, |
\&Apache::loncommon::languagedescription, |
('any',&Apache::loncommon::languageids) |
('any',&Apache::loncommon::languageids) |
).'</td></tr>'; |
).'</td></tr>'; |
Line 1200 sub parse_advanced_search {
|
Line 1315 sub parse_advanced_search {
|
my @StatsFields = &statfields(); |
my @StatsFields = &statfields(); |
my @EvalFields = &evalfields(); |
my @EvalFields = &evalfields(); |
my $fillflag=0; |
my $fillflag=0; |
my $pretty_search_string = "<br />\n"; |
my $pretty_search_string = ""; |
# Clean up fields for safety |
# Clean up fields for safety |
for my $field (@BasicFields, |
for my $field (@BasicFields, |
'creationdatestart_month','creationdatestart_day', |
'creationdatestart_month','creationdatestart_day', |
Line 1326 sub parse_advanced_search {
|
Line 1441 sub parse_advanced_search {
|
push @queries,"(copyright like \"$ENV{'form.copyright'}\")"; |
push @queries,"(copyright like \"$ENV{'form.copyright'}\")"; |
$pretty_search_string.=$font."copyright</font> = ". |
$pretty_search_string.=$font."copyright</font> = ". |
&Apache::loncommon::copyrightdescription($ENV{'form.copyright'}). |
&Apache::loncommon::copyrightdescription($ENV{'form.copyright'}). |
"<br \>\n"; |
"<br />\n"; |
} |
} |
# |
# |
# Statistics |
# Statistics |
Line 2244 $bodytag
|
Line 2359 $bodytag
|
<form name="statusform" action="" method="post"> |
<form name="statusform" action="" method="post"> |
<input type="hidden" name="Queue" value="" /> |
<input type="hidden" name="Queue" value="" /> |
END |
END |
# Check to see if $pretty_string has more than one carriage return. |
# Remove leading and trailing <br /> |
# Assume \n s are following <br /> s and truncate the value. |
$pretty_string =~ s:^\s*<br />::i; |
# (there is probably a better way)... |
$pretty_string =~ s:(<br />)*\s*$::im; |
my @Lines = split /<br \/>/,$pretty_string; |
my @Lines = split("<br />",$pretty_string); |
|
# I keep getting blank items at the end of the list, hence the following: |
|
while ($Lines[-1] =~ /^\s*$/ && @Lines) { |
|
pop(@Lines); |
|
} |
if (@Lines > 2) { |
if (@Lines > 2) { |
$pretty_string = join '<br \>',(@Lines[0..2],'....<br />'); |
$pretty_string = join '<br />',(@Lines[0..2],'....<br />'); |
} |
} |
$r->print(&mt("Search: [_1]",$pretty_string)); |
$r->print(&mt("Search: [_1]",$pretty_string)); |
$r->rflush(); |
$r->rflush(); |
Line 2540 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 2554 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) { |
Line 3077 sub detailed_citation_view {
|
Line 3268 sub detailed_citation_view {
|
} elsif (exists($field->{'format'}) && $field->{'format'} ne ''){ |
} elsif (exists($field->{'format'}) && $field->{'format'} ne ''){ |
$result.= &mt($field->{'translate'}, |
$result.= &mt($field->{'translate'}, |
sprintf($field->{'format'}, |
sprintf($field->{'format'}, |
$values{$field->{'name'}})).'<br />'."\n"; |
$values{$field->{'name'}}))."<br />\n"; |
} else { |
} else { |
if ($field->{'special'} eq 'url link') { |
if ($field->{'special'} eq 'url link') { |
$result.= |
$result.= |