--- loncom/interface/lonindexer.pm 2011/12/09 01:04:27 1.213 +++ loncom/interface/lonindexer.pm 2013/08/08 14:44:11 1.213.4.5 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Directory Indexer # -# $Id: lonindexer.pm,v 1.213 2011/12/09 01:04:27 www Exp $ +# $Id: lonindexer.pm,v 1.213.4.5 2013/08/08 14:44:11 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -34,9 +34,8 @@ ## 1. Description of functions ## ## 2. Modules used by this module ## ## 3. Choices for different output views (detailed, summary, xml, etc) ## -## 4. BEGIN block (to be run once after compilation) ## -## 5. Handling routine called via Apache and mod_perl ## -## 6. Other subroutines ## +## 4. Handling routine called via Apache and mod_perl ## +## 5. Other subroutines ## ## ## ############################################################################### @@ -60,7 +59,6 @@ use LONCAPA qw(:match); # ---------------------------------------- variables used throughout the module my %hash; # global user-specific gdbm file my %dirs; # keys are directories, values are the open/close status -my %language; # has the reference information present in language.tab my %dynhash; # hash of hashes for dynamic metadata my %dynread; # hash of directories already read for dynamic metadata my %fieldnames; # Metadata fieldnames @@ -424,7 +422,7 @@ ENDHEADER &Apache::lonhtmlcommon::clear_breadcrumbs(); &Apache::lonhtmlcommon::add_breadcrumb({ 'text' => 'Browse published resources', - 'href' => '/res/fhwfdev/?launch=1', + 'href' => '/res/'.$headerdom.'/?launch=1', }); $r->print(&Apache::loncommon::start_page('Browse published resources',$js, {'domain' => $headerdom,}) @@ -1008,10 +1006,10 @@ $r->print ('print(''. ''.$tabtag); + 'alt="'.&mt('save in Stored Links').'" style="width:22px;"/>'.$tabtag); $r->print(&Apache::loncommon::end_data_table_row()); return OK; } @@ -1103,11 +1101,11 @@ $r->print ('\n"); # Wishlistlink - $r->print('print(''. ''); + 'alt="'.&mt('save in Stored Links').'" style="width:22px;"/>'); if ($hash{'display_attrs_0'} == 1) { $r->print(' '.($title eq '' ? ' ' : $title). ' '."\n"); @@ -1258,10 +1256,10 @@ $r->print ('"); # Wishlistlink $r->print(''. ''); + 'alt="'.&mt('save in Stored Links').'" style="width:22px;"/>'); # Attributes my $filelink = $startdir.$filecom[0].'/default'; @@ -1350,15 +1348,18 @@ sub coursecontext { my $filesymb=&Apache::lonnet::symbread($filelink); if ($filesymb) { my ($map,$index,$resource)=&Apache::lonnet::decode_symb($filesymb); - $r->print(&mt('Already in this course:
[_1] in folder/map [_2].
', - &Apache::lonnet::gettitle($resource), - &Apache::lonnet::gettitle($map))); + $r->print( + &mt('Already in this course:').'
' + .&mt('[_1] in folder/map [_2]', + &Apache::lonnet::gettitle($resource), + &Apache::lonnet::gettitle($map)) + .'
'); } } sub showpreview { my ($filelink)=@_; - if ($filelink=~m-^(/ext/|http://)-) { + if ($filelink=~m-^(/ext/|https?://)-) { return &mt('External Resource, preview not enabled'); } my ($curfext)=($filelink=~/\.(\w+)$/); @@ -1489,18 +1490,6 @@ This module enables a scheme of browsing This is part of the LearningOnline Network with CAPA project described at http://www.lon-capa.org. -=head1 BEGIN SUBROUTINE - -This routine is only run once after compilation. - -=over 4 - -=item * - -Initializes %language hash table. - -=back - =head1 HANDLER SUBROUTINE This routine is called by Apache and mod_perl.