File:  [LON-CAPA] / loncom / interface / lonindexer.pm
Revision 1.212: download - view: text, annotated - select for diffs
Mon Oct 17 13:12:30 2011 UTC (12 years, 8 months ago) by www
Branches: MAIN
CVS tags: language_hyphenation_merge, language_hyphenation, HEAD
Not sure why we have both no_host and no_such_host, but we do

    1: # The LearningOnline Network with CAPA
    2: # Directory Indexer
    3: #
    4: # $Id: lonindexer.pm,v 1.212 2011/10/17 13:12:30 www Exp $
    5: #
    6: # Copyright Michigan State University Board of Trustees
    7: #
    8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
    9: #
   10: # LON-CAPA is free software; you can redistribute it and/or modify
   11: # it under the terms of the GNU General Public License as published by
   12: # the Free Software Foundation; either version 2 of the License, or
   13: # (at your option) any later version.
   14: #
   15: # LON-CAPA is distributed in the hope that it will be useful,
   16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
   17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   18: # GNU General Public License for more details.
   19: #
   20: # You should have received a copy of the GNU General Public License
   21: # along with LON-CAPA; if not, write to the Free Software
   22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   23: #
   24: # /home/httpd/html/adm/gpl.txt
   25: #
   26: # http://www.lon-capa.org/
   27: #
   28: ###
   29: 
   30: ###############################################################################
   31: ##                                                                           ##
   32: ## ORGANIZATION OF THIS PERL MODULE                                          ##
   33: ##                                                                           ##
   34: ## 1. Description of functions                                               ##
   35: ## 2. Modules used by this module                                            ##
   36: ## 3. Choices for different output views (detailed, summary, xml, etc)       ##
   37: ## 4. BEGIN block (to be run once after compilation)                         ##
   38: ## 5. Handling routine called via Apache and mod_perl                        ##
   39: ## 6. Other subroutines                                                      ##
   40: ##                                                                           ##
   41: ###############################################################################
   42: 
   43: package Apache::lonindexer;
   44: 
   45: # ------------------------------------------------- modules used by this module
   46: use strict;
   47: use Apache::lonnet;
   48: use Apache::loncommon();
   49: use Apache::lonhtmlcommon();
   50: use Apache::lonsequence();
   51: use Apache::Constants qw(:common);
   52: use Apache::lonmeta;
   53: use Apache::File;
   54: use Apache::lonlocal;
   55: use Apache::lonsource();
   56: use Apache::groupsort();
   57: use GDBM_File;
   58: use LONCAPA qw(:match);
   59: 
   60: # ---------------------------------------- variables used throughout the module
   61: my %hash; # global user-specific gdbm file
   62: my %dirs; # keys are directories, values are the open/close status
   63: my %language; # has the reference information present in language.tab
   64: my %dynhash; # hash of hashes for dynamic metadata
   65: my %dynread; # hash of directories already read for dynamic metadata
   66: my %fieldnames; # Metadata fieldnames
   67: # ----- Values which are set by the handler subroutine and are accessible to
   68: # -----     other methods.
   69: my $extrafield; # default extra table cell
   70: my $fnum; # file counter
   71: my $dnum; # directory counter
   72: 
   73: # ----- Used to include or exclude files with certain extensions.
   74: my @Only = ();
   75: my @Omit = ();
   76: 
   77: 
   78: 
   79: 
   80: # ----------------------------- Handling routine called via Apache and mod_perl
   81: sub handler {
   82:     my $r = shift;
   83:     my $c = $r->connection();
   84:     &Apache::loncommon::content_type($r,'text/html');
   85:     &Apache::loncommon::no_cache($r);
   86:     $r->send_http_header;
   87:     return OK if $r->header_only;
   88:     $fnum=0;
   89:     $dnum=0;
   90: 
   91:     # Deal with stupid global variables (is there a way around making
   92:     # these global to this package?  It is just so wrong....)
   93:     undef (@Only);
   94:     undef (@Omit);
   95:     %fieldnames=&Apache::lonmeta::fieldnames();
   96: 
   97: # ------------------------------------- read in machine configuration variables
   98:     my $iconpath= $r->dir_config('lonIconsURL') . "/";
   99:     my $domain  = $r->dir_config('lonDefDomain');
  100:     my $role    = $r->dir_config('lonRole');
  101:     my $loadlim = $r->dir_config('lonLoadLim');
  102:     my $servadm = $r->dir_config('lonAdmEMail');
  103:     my $sysadm  = $r->dir_config('lonSysEMail');
  104:     my $lonhost = $r->dir_config('lonHostID');
  105:     my $tabdir  = $r->dir_config('lonTabDir');
  106: 
  107: #SB my $fileclr='#ffffe6';
  108:     my $line;
  109:     my (@attrchk,@openpath,$typeselect);
  110:     my $uri=$r->uri;
  111: 
  112: # -------------------------------------- see if called from an interactive mode
  113:     # Get the parameters from the query string
  114:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
  115: 	     ['catalogmode','launch','acts','mode','form','element',
  116:               'only','omit','titleelement']);
  117:     #-------------------------------------------------------------------
  118:     my $closebutton='';
  119:     my $groupimportbutton='';
  120:     my $colspan=''; 
  121:     
  122:     $extrafield='';
  123:     my $diropendb = LONCAPA::tempdir() .
  124: 	"$env{'user.domain'}_$env{'user.name'}_sel_res.db";
  125:     %hash = ();
  126:     {
  127: 	my %dbfile;
  128: 	if (tie(%dbfile,'GDBM_File',$diropendb,&GDBM_WRITER(),0640)) {
  129: 	    if ($env{'form.launch'} eq '1') {
  130: 		&start_fresh_session(\%dbfile);
  131: 	    }
  132: 	    while(my($key,$value)=each(%dbfile)) {
  133: 		$hash{$key}=$value;
  134: 	    }
  135: 	    untie(%dbfile);
  136: 	}
  137:     }
  138: # - Evaluate actions from previous page (both cumulatively and chronologically)
  139:         if ($env{'form.catalogmode'} eq 'import' || $hash{'form.catalogmode'} eq 'import') {
  140: 	    &Apache::groupsort::update_actions_hash(\%hash);
  141: 	}
  142:     
  143:     {
  144:   #Hijack lonindexer to verify a title and be close down.
  145:    if ($env{'form.launch'} eq '2') {
  146:        &Apache::loncommon::content_type($r,'text/html');
  147:        my $extra='';
  148:        if (defined($env{'form.titleelement'}) && 
  149: 	   $env{'form.titleelement'} ne '') {
  150: 	   my $verify_title = &Apache::lonnet::gettitle($env{'form.acts'});
  151: #	   &Apache::lonnet::logthis("Hrrm $env{'form.acts'} -- $verify_title");
  152: 	   $verify_title=~s/'/\\'/g;
  153: 	   $extra='window.opener.document.forms["'.$env{'form.form'}.'"].elements["'.$env{'form.titleelement'}.'"].value=\''.$verify_title.'\';';
  154:        }
  155:        my $js = <<ENDSUBM;
  156: 	       <script type="text/javascript">
  157: 		function load() {
  158: 			window.opener.document.forms["$env{'form.form'}"]
  159: 			    .elements["$env{'form.element'}"]
  160: 			    .value='$env{'form.acts'}';
  161: 			$extra
  162: 			window.close();
  163: 		}
  164:    	       </script>
  165: ENDSUBM
  166:        $r->print(&Apache::loncommon::start_page(undef,$js,
  167: 						{'only_body'   =>1,
  168: 						 'add_entries' =>
  169: 						     {'onload' => "load();"},}
  170: 						).
  171: 		 &Apache::loncommon::end_page());
  172:        return OK;
  173:    }
  174:     
  175: # -------------------- refresh environment with user database values (in %hash)
  176: 	&setvalues(\%hash,'form.catalogmode',\%env,'form.catalogmode'   );
  177: 
  178: # --------------------- define extra fields and buttons in case of special mode
  179: 	if ($env{'form.catalogmode'} eq 'interactive') {
  180: #SB	    $extrafield='<td bgcolor="'.$fileclr.'" valign="bottom">'.
  181:             $extrafield='<td class="LC_bottom">'.
  182: 		'<img alt="" src="'.$iconpath.'whitespace1.gif"'.
  183: 		' class="LC_icon" /></td>';
  184: 	    $colspan=" colspan='2' ";
  185:             my $cl=&mt('Close');
  186:             $closebutton=<<END;
  187: <input type="button" name="close" value='$cl' onclick="self.close()" />
  188: END
  189:         }
  190: 	elsif ($env{'form.catalogmode'} eq 'import') {
  191: #SB	    $extrafield='<td bgcolor="'.$fileclr.'" valign="bottom">'.
  192:             $extrafield='<td class="LC_bottom">'.
  193: 		'<img alt="" src="'.$iconpath.'whitespace1.gif"'.
  194: 		' class="LC_icon" /></td>';
  195: 	    $colspan=" colspan='2' ";
  196: 	    my $cl=&mt('Close');
  197:             my $gi=&mt('Import');
  198:             $closebutton=<<END;
  199: <input type="button" name="close" value='$cl' onclick="self.close()" />
  200: END
  201:             $groupimportbutton=<<END;
  202: <input type="button" name="groupimport" value='$gi'
  203: onclick="javascript:select_group()" />
  204: END
  205:         }
  206: 	# Additions made by Matthew to make the browser a little easier to deal
  207: 	# with in the future.
  208: 	#
  209: 	# $mode (at this time) indicates if we are in edit mode.
  210: 	# $form is the name of the form that the URL is placed when the
  211: 	#       selection is made.
  212: 	# $element is the name of the element in $formname which receives
  213: 	#       the URL.
  214: 	#&Apache::lonxml::debug('Checking mode, form, element');
  215: 	&setvalues(\%hash,'form.mode'        ,\%env,'form.mode'   );
  216: 	&setvalues(\%hash,'form.form'        ,\%env,'form.form'   );
  217: 	&setvalues(\%hash,'form.element'     ,\%env,'form.element');
  218: 	&setvalues(\%hash,'form.titleelement',\%env,'form.titleelement');
  219: 	&setvalues(\%hash,'form.only'        ,\%env,'form.only'   );
  220: 	&setvalues(\%hash,'form.omit'        ,\%env,'form.omit'   );
  221: 
  222:         # Deal with 'omit' and 'only' 
  223:         if (exists $env{'form.omit'}) {
  224:             @Omit = split(',',$env{'form.omit'});
  225:         }
  226:         if (exists $env{'form.only'}) {
  227:             @Only = split(',',$env{'form.only'});
  228:         }
  229:         
  230: 	my $mode = $env{'form.mode'};
  231: 	my ($form,$element,$titleelement);
  232: 	if ($mode eq 'edit' || $mode eq 'parmset') {
  233: 	    $form         = $env{'form.form'};
  234: 	    $element      = $env{'form.element'};
  235: 	    $titleelement = $env{'form.titleelement'};
  236: 	}
  237: 	#&Apache::lonxml::debug("mode=$mode form=$form element=$element titleelement=$titleelement");
  238: # ------ set catalogmodefunctions to have extra needed javascript functionality
  239: 	my $catalogmodefunctions='';
  240: 	if ($env{'form.catalogmode'} eq 'interactive' or
  241: 	    $env{'form.catalogmode'} eq 'import') {
  242: 	    # The if statement below sets us up to use the old version
  243: 	    # by default (ie. if $mode is undefined).  This is the easy
  244: 	    # way out.  Hopefully in the future I'll find a way to get 
  245: 	    # the calls dealt with in a more comprehensive manner.
  246: 
  247: #
  248: # There is now also mode "simple", which is for the simple version of the rat
  249: #
  250: #
  251: 	    if (!defined($mode) || ($mode ne 'edit' && $mode ne 'parmset')) {
  252:                 my $location = "/adm/groupsort?&inhibitmenu=yes&catalogmode=import&";
  253:                 $location .= "mode=".$mode."&";
  254:                 $location .= "acts=";
  255: 		$catalogmodefunctions=<<"END";
  256: function select_data(url) {
  257:     changeURL(url);
  258:     self.close();
  259: }
  260: function select_group() {
  261:     window.location="$location"+document.forms.fileattr.acts.value;
  262: }
  263: function changeURL(val) {
  264:     if (opener.inf) {
  265:         if (opener.inf.document.forms.resinfo.elements.u) {
  266: 	    opener.inf.document.forms.resinfo.elements.u.value=val;
  267:         }
  268:     }
  269: }
  270: END
  271:             } elsif ($mode eq 'edit') { # we are in 'edit' mode
  272:                 my $location = "/adm/groupsort?catalogmode=interactive&";
  273:                 $location .= "form=$form&element=$element&mode=edit&acts=";
  274: 		$catalogmodefunctions=<<END;
  275: // mode = $mode
  276: function select_data(url) {
  277:    var location = "/res/?launch=2&form=$form&element=$element&titleelement=$titleelement&acts=" + url;
  278:    window.location=location;
  279:    if (window.opener.document.forms["$form"].elements["$element"].value != url) {
  280:        window.opener.unClean();
  281:    }
  282: }
  283: function select_group() {
  284:     window.location="$location"+document.forms.fileattr.acts.value;
  285: }
  286: 
  287: function changeURL(val) {
  288:     if (window.opener.document) {
  289: 	window.opener.document.forms["$form"].elements["$element"].value=val;
  290:     } else {
  291: 	    alert("The file you selected is: "+val);
  292:     }
  293: }
  294: END
  295:                 if (!$titleelement) {
  296: 		    $catalogmodefunctions.='function changeTitle(val) {}';
  297: 		} else {
  298: 		    $catalogmodefunctions.=<<END;
  299: function changeTitle(val) {
  300:     if (window.opener.document) {
  301: 	    window.opener.document.forms["$form"].elements["$titleelement"].value=val;
  302:     } else {
  303: 	    alert("The title of the file you selected is: "+val);
  304:     }
  305: }
  306: END
  307:                 }
  308:             } elsif ($mode eq 'parmset') {
  309:                 my $location = "/adm/groupsort?catalogmode=interactive&";
  310:                 $location .= "form=$form&element=$element&mode=parmset&acts=";
  311: 		$catalogmodefunctions=<<END;
  312: // mode = $mode
  313: function select_data(url) {
  314:     changeURL(url);
  315:     self.close();
  316: }
  317: 
  318: function select_group() {
  319:     window.location="$location"+document.forms.fileattr.acts.value;
  320: }
  321: 
  322: function changeURL(val) {
  323:     if (window.opener.document) {
  324:         var elementname  = "$element";
  325: 	window.opener.document.forms["$form"].elements[elementname].value=val;
  326:     } else {
  327: 	    alert("The file you selected is: "+val);
  328:     }
  329: }
  330: 
  331: END
  332:             }
  333:         }
  334:         $catalogmodefunctions.=<<END;
  335: var acts='';
  336: function rep_dirpath(suffix,val) {
  337:     eval("document.forms.dirpath"+suffix+".acts.value=val");
  338: }
  339: END
  340: 	if ($env{'form.catalogmode'} eq 'import') {
  341:             $catalogmodefunctions.=<<END;
  342: function queue(val) {
  343:     if (eval("document.forms."+val+".filelink.checked")) {
  344: 	var l=val.length;
  345: 	var v=val.substring(4,l);
  346: 	document.forms.fileattr.acts.value+='1a'+v+'b';
  347:     }
  348:     else {
  349: 	var l=val.length;
  350: 	var v=val.substring(4,l);
  351: 	document.forms.fileattr.acts.value+='0a'+v+'b';
  352:     }
  353: }
  354: END
  355: 	}
  356: 
  357:         my $inhibit_menu = "+'&".&Apache::loncommon::inhibit_menu_check()."'";
  358: # ---------------------------------------------------------------- Print Header
  359:         
  360: 	my $js = <<"ENDHEADER";
  361: <script type="text/javascript">
  362: // <![CDATA[
  363: $catalogmodefunctions;
  364: function update_only(field) {
  365:     alert(field.name);
  366: }
  367: function checkAll() {
  368:     var numForms = document.forms.length;
  369:     for (i=0;i<numForms;i++) {
  370:         var numElements = document.forms[i].elements.length;
  371:         for (j=0;j<numElements;j++){
  372:             var fieldName = document.forms[i].elements[j].name;
  373:             if (fieldName == 'filelink') {
  374:                 document.forms[i].elements[j].checked = true;
  375:                 queue(document.forms[i].name);
  376:             }
  377:         }
  378:     }
  379: }
  380: function uncheckAll() {
  381:     var numForms = document.forms.length;
  382:     for (i=0;i<numForms;i++) {
  383:         var numElements = document.forms[i].elements.length;
  384:         for (j=0;j<numElements;j++){
  385:             var fieldName = document.forms[i].elements[j].name;
  386:             if (fieldName == 'filelink') {
  387:                 document.forms[i].elements[j].checked = false;
  388:                 queue(document.forms[i].name);
  389:             }
  390:         }
  391:     }
  392: }
  393: function openWindow(url, wdwName, w, h, toolbar,scrollbar,locationbar) {
  394:     var xpos = (screen.width-w)/2;
  395:     xpos = (xpos < 0) ? '0' : xpos;
  396:     var ypos = (screen.height-h)/2-30;
  397:     ypos = (ypos < 0) ? '0' : ypos;
  398:     var options = "width=" + w + ",height=" + h + ",screenx="+xpos+",screeny="+ypos+",";
  399:     options += "resizable=yes,scrollbars="+scrollbar+",status=no,";
  400:     options += "menubar=no,toolbar="+toolbar+",location="+locationbar+",directories=no";
  401:     var newWin = window.open(url, wdwName, options);
  402:     newWin.focus();
  403: }
  404: function gothere(val) {
  405:     window.location=val+'?acts='+document.forms.fileattr.acts.value$inhibit_menu;
  406: }
  407: // ]]>
  408: </script>
  409: ENDHEADER
  410: 
  411:         my ($headerdom)=($uri=~m{^/res/($match_domain)/});
  412: 
  413:         if ($env{'form.catalogmode'}) {
  414:             # "Popup mode"
  415:             $r->print(&Apache::loncommon::start_page('Browse published resources',$js,
  416:                                                      {'only_body' => 1,
  417:                                                       'domain' => $headerdom,}));
  418:         } else {
  419:             # Only display page header and breadcrumbs in non-popup mode
  420:             &Apache::lonhtmlcommon::clear_breadcrumbs();
  421:             &Apache::lonhtmlcommon::add_breadcrumb({
  422:                 'text'  => 'Browse published resources',
  423:                 'href'  => '/res/fhwfdev/?launch=1',
  424:             });
  425:             $r->print(&Apache::loncommon::start_page('Browse published resources',$js,
  426:                                                      {'domain' => $headerdom,})
  427:                      .&Apache::lonhtmlcommon::breadcrumbs()
  428:             );
  429:         }
  430: 
  431: # ---------------------------------- get state of file types to be showing
  432: 	if ($env{'form.only'}) {
  433: 	    $typeselect = $env{'form.only'};
  434: 	} else {
  435: 	    $typeselect = '';
  436: 	}
  437: 
  438: # ---------------------------------- get state of file attributes to be showing
  439: 	if ($env{'form.attrs'}) {
  440: 	    for (my $i=0; $i<=16; $i++) {
  441: 		delete $hash{'display_attrs_'.$i};
  442: 		if ($env{'form.attr'.$i} == 1) {
  443: 		    $attrchk[$i] = 'checked';
  444: 		    $hash{'display_attrs_'.$i} = 1;
  445: 		}
  446: 	    }
  447: 	} else {
  448: 	    for (my $i=0; $i<=16; $i++) {
  449: 		$attrchk[$i] = 'checked="checked"' if $hash{'display_attrs_'.$i} == 1;
  450: 	    }
  451: 	}
  452: 
  453:         my @file_categories = &Apache::loncommon::filecategories();
  454:         my %select_file_categories;
  455:         my @select_form_order = ('');
  456:         $select_file_categories{''} = &mt('All file types');
  457:         foreach my $cat (@file_categories) {
  458:             my $types = join(",",&Apache::loncommon::filecategorytypes($cat));
  459:             $select_file_categories{$types} = &mt($cat);
  460:             push(@select_form_order,$types);
  461:         }
  462:         $select_file_categories{'select_form_order'} = \@select_form_order;
  463:         my $onchange = 'this.form.submit();';
  464:         my $type_element=
  465:             &Apache::loncommon::select_form(
  466:                 $typeselect,
  467:                 'only',
  468:                 \%select_file_categories,$onchange);
  469:         my $type_selector = '<label>'.&mt('File Type Displayed: [_1]',
  470:                                           $type_element).'</label>';
  471: 
  472: # ------------------------------- output state of file attributes to be showing
  473: #                                 All versions has to the last item
  474: #                                 since it does not take an extra col
  475: 	my %lt=&Apache::lonlocal::texthash(
  476: 					   'av' => 'All versions',
  477: 					   'ud' => 'Update Display',
  478: 					   'pr' => 'Problems',
  479: 					   'gr' => 'Graphics',
  480: 					   'at' => 'All types',
  481: 					   'hd' => 'Display Options'
  482: 					   );
  483:         my @disp_order = ('0','4','5','6','13','1','2','3','10','14','8','11','7','12','15','16');
  484:         my %disp_options = &Apache::lonlocal::texthash (
  485:                               0  => 'Title',
  486:                               4  => 'Author',
  487:                               5  => 'Keywords',
  488:                               6  => 'Language',
  489:                               13 => 'Notes',
  490:                               1  => 'Size',
  491:                               2  => 'Last access',
  492:                               3  => 'Last modified',
  493:                               10 => 'Source Available',
  494:                               14 => 'Abstract',
  495:                               8  => 'Statistics',
  496:                               11 => 'Linked/Related Resources',
  497:                               7  => 'Show resource',
  498:                               12 => 'Subject',
  499:                               15 => 'Grade Level',
  500:                               16 => 'Standards',
  501:                            );
  502:         my $cell = 0;
  503:         my $numinrow = 4;
  504: 	$r->print('
  505: <form method="post" name="fileattr" action="'.$uri.'" enctype="application/x-www-form-urlencoded">
  506: <fieldset>
  507: <legend>'.$lt{'hd'}.'</legend>
  508: <table style=" border-collapse: collapse; border-style: none;">'."\n");
  509:         foreach my $item (@disp_order) {
  510:             my $style = 'padding-left: 12px; padding-right: 8px;';
  511:             if ($cell%$numinrow == 0) {
  512:                 $r->print('<tr>');
  513:             }
  514:             $cell ++;
  515:             if ($cell > 3 * $numinrow) {
  516:                 $style .= ' padding-bottom: 6px;'; 
  517:             }
  518:             if (defined($disp_options{$item})) {
  519:                 $r->print('<td style="'.$style.'"><span class="LC_nobreak">'.
  520:                           '<label><input type="checkbox" name="attr'.$item.'" value="1" '.
  521:                           $attrchk[$item].' onclick="this.form.submit();" /> '.$disp_options{$item}.
  522:                           '</label></span></td>'."\n");
  523:             }
  524:             if ($cell > 1 && $cell%$numinrow == 0) {
  525:                 $r->print('</tr>');
  526:             }
  527:         }
  528:         $r->print(<<END);
  529: <tr>
  530: <td style="font-style: italic; border-top: 1px solid black; padding-top: 6px"> 
  531: <label><input type="checkbox" name="attr9" value="1" $attrchk[9] onclick="this.form.submit();" /> $lt{'av'}</label>
  532: </td>
  533: <td colspan="3" style="padding-left:8px; padding-top: 4px; font-style: italic; border-top: 1px solid black; padding-top: 8px">$type_selector</td>
  534: </tr>
  535: </table>
  536: <input type="hidden" name="attrs" value="1" />
  537: </fieldset>
  538: <input type="submit" name="updatedisplay" value="$lt{'ud'}" />
  539: <input type="hidden" name="acts" value="" />
  540: $closebutton $groupimportbutton
  541: END
  542:         $r->print(&Apache::loncommon::inhibit_menu_check('input'));
  543:    
  544: # -------------- Filter out sequence containment in crumbs and "recent folders"
  545: 	my $storeuri=$uri;
  546: 	$storeuri='/'.(split(/\.(page|sequence)\/\//,$uri))[-1];
  547: 	$storeuri=~s/\/+/\//g;
  548: # ---------------------------------------------------------------- Bread crumbs
  549:         $r->print(
  550:             '<p>'
  551:            .&Apache::lonhtmlcommon::crumbs(
  552:                 $storeuri,
  553:                 '',
  554:                 '',
  555:                 (($env{'form.catalogmode'} eq 'import')?
  556:                                  'document.forms.fileattr':''))
  557:            .'<br />'
  558:            .&Apache::lonhtmlcommon::select_recent(
  559:                 'residx',
  560:                 'resrecent',
  561:                 'window.status=this.form.resrecent.options[this.form.resrecent.selectedIndex].value;this.form.action=this.form.resrecent.options[this.form.resrecent.selectedIndex].value;this.form.submit();')
  562:            .'</p>'
  563:         );
  564: # -------------------------------------------------------- Resource Home Button
  565: 	my $reshome=$env{'course.'.$env{'request.course.id'}.'.reshome'};
  566: 	if ($reshome) {
  567: 	    $r->print("<span class=\"LC_fontsize_large\"><a href='");
  568: 	    if ($env{'form.catalogmode'} eq 'import') {
  569: 		$r->print('javascript:document.forms.fileattr.action="'.&Apache::loncommon::inhibit_menu_check($reshome).'";document.forms.fileattr.submit();');
  570: 	    } else {
  571: 		$r->print($reshome);
  572: 	    }
  573: 	    $r->print("'>".&mt('Home').'</a></span>');
  574: 	}
  575: 	$r->print('</form>');
  576: # ------------------------------------------------------ Remember where we were
  577: 	&Apache::loncommon::storeresurl($storeuri);
  578: 	&Apache::lonhtmlcommon::store_recent('residx',$storeuri,$storeuri);
  579: # -------------------------------------------------- Check All and Uncheck all
  580: 	if ($env{'form.catalogmode'} eq 'import') {
  581: 	    $r->print('<p><input type="button" value="'.&mt("Check All").'" id="checkallbutton" onclick="javascript:checkAll()" />');
  582: 	    $r->print('<input type="button" value="'.&mt("Uncheck All").'" id="uncheckallbutton" onclick="javascript:uncheckAll()" /></p>');
  583: 	}
  584: # ----------------- output starting row to the indexed file/directory hierarchy
  585:         #$r->print(&initdebug());
  586:         #$r->print(&writedebug("Omit:@Omit")) if (@Omit);
  587:         #$r->print(&writedebug("Only:@Only")) if (@Only);
  588:         $r->print(&Apache::loncommon::start_data_table("LC_tableBrowseRes")
  589:                  .&Apache::loncommon::start_data_table_header_row());
  590: 	$r->print("<th $colspan>".&mt('Name')."</th>\n");
  591: 	$r->print("<th></th>\n");
  592: 	$r->print("<th>".&mt('Title')."</th>\n") 
  593: 	    if ($hash{'display_attrs_0'} == 1);
  594: 	$r->print('<th class="LC_right">'.&mt("Size")." (".&mt("bytes").") ".
  595: 		  "</th>\n") if ($hash{'display_attrs_1'} == 1);
  596: 	$r->print("<th>".&mt("Last accessed")."</th>\n") 
  597: 	    if ($hash{'display_attrs_2'} == 1);
  598: 	$r->print("<th>".&mt("Last modified")."</th>\n")
  599: 	    if ($hash{'display_attrs_3'} == 1);
  600: 	$r->print("<th>".&mt("Author(s)")."</th>\n")
  601: 	    if ($hash{'display_attrs_4'} == 1);
  602: 	$r->print("<th>".&mt("Keywords")."</th>\n")
  603: 	    if ($hash{'display_attrs_5'} == 1);
  604: 	$r->print("<th>".&mt("Language")."</th>\n")
  605: 	    if ($hash{'display_attrs_6'} == 1);
  606: 	$r->print("<th>".&mt("Usage Statistics")." <br />(".
  607: 		  &mt("Courses/Network Hits").") ".&mt('updated periodically')."</th>\n")
  608: 	    if ($hash{'display_attrs_8'} == 1);
  609: 	$r->print("<th>".&mt("Source Available")."</th>\n")
  610: 	    if ($hash{'display_attrs_10'} == 1);
  611: 	$r->print("<th>".&mt("Linked/Related Resources")."</th>\n")
  612: 	    if ($hash{'display_attrs_11'} == 1);
  613: 	$r->print("<th>".&mt("Resource")."</th>\n")
  614: 	    if ($hash{'display_attrs_7'} == 1);
  615: 	$r->print("<th>".&mt("Subject")."</th>\n")
  616: 	    if ($hash{'display_attrs_12'} == 1);
  617: 	$r->print("<th>".&mt("Notes")."</th>\n")
  618: 	    if ($hash{'display_attrs_13'} == 1);
  619: 	$r->print("<th>".&mt("Abstract")."</th>\n")
  620: 	    if ($hash{'display_attrs_14'} == 1);
  621: 	$r->print("<th>".&mt("Grade Level")."</th>\n")
  622: 	    if ($hash{'display_attrs_15'} == 1);
  623: 	$r->print("<th>".&mt("Standards")."</th>\n")
  624: 	    if ($hash{'display_attrs_16'} == 1);
  625: 	    
  626:     $r->print(&Apache::loncommon::end_data_table_header_row());
  627:     
  628:     	
  629: 
  630: # ----------------- read in what directories have previously been set to "open"
  631: 	foreach (keys %hash) {
  632: 	    if ($_ =~ /^diropen_status_/) {
  633: 		my $key = $_;
  634: 		$key =~ s/^diropen_status_//;
  635: 		$dirs{$key} = $hash{$_};
  636: 	    }
  637: 	}
  638: 
  639: 	if ($env{'form.openuri'}) {  # take care of review and refresh options
  640: 	    my $uri=$env{'form.openuri'};
  641: 	    if (exists($hash{'diropen_status_'.$uri})) {
  642: 		my $cursta = $hash{'diropen_status_'.$uri};
  643: 		$dirs{$uri} = 'open';
  644: 		$hash{'diropen_status_'.$uri} = 'open';
  645: 		if ($cursta eq 'open') {
  646: 		    $dirs{$uri} = 'closed';
  647: 		    $hash{'diropen_status_'.$uri} = 'closed';
  648: 		}
  649: 	    } else {
  650: 		$hash{'diropen_status_'.$uri} = 'open';
  651: 		$dirs{$uri} = 'open';
  652: 	    }
  653: 	}
  654: 	
  655: 	my $toplevel;
  656: 	my $indent = 0;
  657: 	$uri = $uri.'/' if $uri !~ /.*\/$/;
  658: 
  659:  	if ($env{'form.dirPointer'} ne 'on') {
  660:  	    $hash{'top.level'} = $uri;
  661:  	    $toplevel = $uri;
  662:  	} else {
  663:  	    $toplevel = $hash{'top.level'};
  664:  	}
  665: 
  666: # -------------------------------- if not at top level, provide an uplink arrow
  667: 	if ($toplevel ne '/res/'){
  668: 	    my (@uri_com) = split(/\//,$uri);
  669: 	    pop @uri_com;
  670: 	    my $upone = join('/',@uri_com);
  671: 	    my @list = qw (0);
  672: 	    &display_line ($r,'opened',$upone.'&viewOneUp',0,$upone,@list);
  673: 	    $indent = 1;
  674: 	}
  675: 
  676: # -------- recursively go through all the directories and output as appropriate
  677: 	&scanDir ($r,$toplevel,$indent,\%hash);
  678: 
  679: # -------------------------------------------------------------- end the tables
  680:         $r->print(&Apache::loncommon::end_data_table());
  681: 
  682: # ---------------------------- embed hidden information useful for group import
  683: 	$r->print("<form name='fnum' action=''>");
  684: 	$r->print("<input type='hidden' name='fnum' value='$fnum' /></form>");
  685: 
  686: # --------------------------------------------------- end the output and return
  687: 	$r->print(&Apache::loncommon::end_page()."\n");
  688:     }
  689:     if(! $c->aborted()) {
  690: # write back into the temporary file
  691: 	my %dbfile;
  692:         if (tie(%dbfile,'GDBM_File',$diropendb,&GDBM_NEWDB(),0640)) {
  693:             while (my($key,$value) = each(%hash)) {
  694:                 $dbfile{$key}=$value;
  695:             }
  696:             untie(%dbfile);
  697:         }
  698:     }
  699: 
  700:     return OK;
  701: }
  702: 
  703: # ----------------------------------------------- recursive scan of a directory
  704: sub scanDir {
  705:     my ($r,$startdir,$indent,$hashref)=@_;
  706:     my $c = $r->connection();
  707:     my ($compuri,$curdir);
  708:     my $dirptr=16384;
  709:     my $obs;
  710:     $indent++;
  711:     my %dupdirs = %dirs;
  712:     my @list=&get_list($r,$startdir);
  713:     foreach my $line (@list) {
  714:         return if ($c->aborted());
  715: 	#This is a kludge, sorry aboot this
  716: 	my ($strip,$dom,undef,$testdir,undef,undef,undef,undef,undef,undef,undef,undef,undef,undef,$obs,undef)=split(/\&/,$line,16); 
  717: 	next if($strip =~ /.*\.meta$/ | $obs eq '1');
  718: 	my (@fileparts) = split(/\./,$strip);
  719: 	if ($hash{'display_attrs_9'} != 1) {
  720:             # if not all versions to be shown
  721: 	    if (scalar(@fileparts) >= 3) {
  722: 		my $fext = pop @fileparts;
  723: 		my $ov = pop @fileparts;
  724: 		my $fname = join ('.',@fileparts,$fext);
  725: 		next if (grep /\Q$fname\E/,@list and $ov =~ /^\d+$/);
  726: 	    }
  727: 	}
  728: 
  729: 	if ($dom eq 'domain') {
  730: 	    # dom list has full path /res/<domain name>/ already
  731: 	    $curdir='';
  732: 	    $compuri = (split(/\&/,$line))[0];
  733: 	} else {
  734: 	    # user, dir & file have name only, i.e., w/o path
  735: 	    $compuri = join('',$startdir,$strip,'/');
  736: 	    $curdir = $startdir;
  737: 	}
  738: 	my $diropen = 'closed';
  739: 	if (($dirptr&$testdir) or ($dom =~ /^(domain|user)$/) or ($compuri=~/\.(sequence|page)\/$/)) {
  740: 	    while (my ($key,$val)= each %dupdirs) {
  741: 		if ($key eq $compuri and $val eq "open") {
  742: 		    $diropen = "opened";
  743: 		    delete($dupdirs{$key});
  744: 		    delete($dirs{$key});
  745: 		}
  746: 	    }
  747: 	}
  748: 	&display_line($r,$diropen,$line,$indent,$curdir,$hashref,@list);
  749: 	&scanDir ($r,$compuri,$indent) if $diropen eq 'opened';
  750:     }
  751:     $indent--;
  752: }
  753: 
  754: # --------------- get complete matched list based on the uri (returns an array)
  755: sub get_list {
  756:     my ($r,$uri)=@_;
  757:     my @list=();
  758:     my $listerror;
  759:     
  760:     (my $luri = $uri) =~ s/\//_/g;
  761:     if ($env{'form.updatedisplay'}) {
  762: 	foreach (keys %hash) {
  763: 	    delete $hash{$_} if ($_ =~ /^dirlist_files_/);
  764: 	    delete $hash{$_} if ($_ =~ /^dirlist_timestamp_files_/);
  765: 	}
  766:     }
  767: 
  768:     if (defined($hash{'dirlist_files_'.$luri}) &&
  769: 	$hash{'dirlist_timestamp_files_'.$luri}+600 > (time)) {
  770: 	@list = split(/\n/,$hash{'dirlist_files_'.$luri});
  771:     } elsif ($uri=~/\.(page|sequence)\/$/) {
  772: # is a page or a sequence
  773: 	$uri=~s/\/$//;
  774: 	$uri='/'.(split(/\.(page|sequence)\/\//,$uri))[-1];
  775: 	$uri=~s/\/+/\//g;
  776: 	foreach (&Apache::lonsequence::attemptread(&Apache::lonnet::filelocation('',$uri))) {
  777: 	    my @ratpart=split(/\:/,$_);
  778: 	    push(@list,&LONCAPA::map::qtescape($ratpart[1]));
  779: 	} 
  780: 	$hash{'dirlist_files_'.$luri} = join("\n",@list);
  781:     } else {
  782: # is really a directory
  783: 	(my $listref,$listerror) = &Apache::lonnet::dirlist($uri);
  784:         if (ref($listref) eq 'ARRAY') {
  785:             @list = @{$listref};
  786:         }
  787: 	$hash{'dirlist_files_'.$luri} = join("\n",@list);
  788: 	$hash{'dirlist_timestamp_files_'.$luri} = time;
  789:     }
  790: #Checking for error messages associated with empty directories or inaccessible servers (See Bug 4984)
  791:     if (($listerror eq 'no_such_dir') || ($listerror eq 'no_such_host') || ($listerror eq 'no_host')) { 
  792:         $r->print("<p class='LC_info'>" . &mt("Directory does not exist."). "</p>");
  793:     } elsif ($listerror eq 'con_lost') {
  794:         $r->print("<p class='LC_info'>" . &mt("Directory temporarily not accessible."). "</p>");
  795:     }
  796: 
  797:     return @list=&match_ext($r,@list);    
  798: }
  799: 
  800: sub dynmetaread {
  801:     my $uri=shift;
  802:     if (($hash{'display_attrs_8'}==1) || ($hash{'display_attrs_11'}==1)) {
  803: # We don't want the filename
  804: 	$uri=~s/\/[^\/]+$//;
  805: # Did we already see this?
  806: 	my $builddir=$uri;
  807: 	while ($builddir) {
  808: 	    if ($dynread{$builddir}) {
  809: 		return 0;
  810: 	    }
  811: 	    $builddir=~s/\/[^\/]+$//;
  812: 	}
  813: # Actually get the data
  814: 	%dynhash=
  815: 	    (%dynhash,&Apache::lonmeta::get_dynamic_metadata_from_sql($uri.'/'));
  816: # Remember that we got it
  817: 	$dynread{$uri}=1;
  818:     } 
  819: }
  820: 
  821: sub initdebug {
  822:     my $start_page=
  823: 	&Apache::loncommon::start_page('Debug',undef,
  824: 				       {'only_body' => 1,});
  825:     $start_page =~ s/\n/ /g;
  826:     return <<ENDJS;
  827: <script type="text/javascript">
  828: var debugging = true;
  829: if (debugging) {
  830:     var debuggingWindow = window.open('','Debug','width=400,height=300',true);
  831: } 
  832: 
  833: function output(text) {
  834:     if (debugging) {
  835:         debuggingWindow.document.writeln(text);
  836:     }
  837: }
  838: output('$start_page<pre>');   
  839: </script>
  840: ENDJS
  841: }
  842: 
  843: sub writedebug {
  844:     my ($text) = @_;
  845:     return "<script type=\"text/javascript\">output('$text');</script>";
  846: }
  847: 
  848: # -------------------- filters out files based on extensions (returns an array)
  849: sub match_ext {
  850:     my ($r,@packlist)=@_;
  851:     my @trimlist;
  852:     my $nextline;
  853:     my @fileext;
  854:     my $dirptr=16384;
  855: 
  856:     foreach my $line (@packlist) {
  857: 	chomp $line;
  858: 	$line =~ s/^\/home\/httpd\/html//;
  859: 	my @unpackline = split (/\&/,$line);
  860: 	next if ($unpackline[0] eq '.');
  861: 	next if ($unpackline[0] eq '..');
  862: 	my @filecom = split (/\./,$unpackline[0]);
  863: 	my $fext = pop(@filecom);
  864: 	my $fnptr = ($unpackline[3]&$dirptr) || ($fext=~/\.(page|sequence)$/);
  865:  	if ($fnptr == 0 and $unpackline[3] ne "") {
  866: 	    my $embstyle = &Apache::loncommon::fileembstyle($fext);
  867:             push @trimlist,$line if (defined($embstyle) && 
  868: 				     ($embstyle ne 'hdn' or $fext eq 'meta'));
  869: 	} else {
  870: 	    push @trimlist,$line;
  871: 	}
  872:     }
  873:     @trimlist = sort {uc($a) cmp uc($b)} (@trimlist);
  874:     return @trimlist;
  875: }
  876: 
  877: # ------------------------------- displays one line in appropriate table format
  878: sub display_line {
  879:     my ($r,$diropen,$line,$indent,$startdir,$hashref,@list)=@_;
  880:     my (@pathfn, $fndir);
  881: # there could be relative paths (files actually belonging into this directory)
  882: # or absolute paths (for example, from sequences)
  883:     my $absolute;
  884:     my $pathprefix;
  885:     if ($line=~m|^/res/| && $startdir ne '') {
  886: 	$absolute=1;
  887: 	$pathprefix='';
  888:     } else {
  889: 	$absolute=0;
  890: 	$pathprefix=$startdir;
  891:     }
  892:     my $dirptr=16384;
  893: #SB my $fileclr="#ffffe6";
  894:     my $iconpath= $r->dir_config('lonIconsURL') . '/';
  895: 
  896:     my @filecom = split (/\&/,$line);
  897:     my @pathcom = split (/\//,$filecom[0]);
  898:     my $listname = $pathcom[scalar(@pathcom)-1];
  899:     my $fnptr = $filecom[3]&$dirptr;
  900:     my $msg = &mt('View').' '.$filecom[0].' '.&mt('resources');
  901:     $msg = &mt('Close').' '.$filecom[0].' '.&mt('directory') if $diropen eq 'opened';
  902:     my $nowOpen = ($diropen eq 'opened' ? 1 : 0);
  903: 
  904:     my $tabtag='</td>';
  905:     my $i=0;
  906:     while ($i<=16) {
  907: 	$tabtag=join('',$tabtag,"<td>&nbsp;</td>")
  908: 	    if ($i != 9 &&
  909: 		$hash{'display_attrs_'.$i} == 1);
  910: 	$i++;
  911:     }
  912:     my $valign = ($hash{'display_attrs_7'} == 1 ? 'top' : 'bottom');
  913: 
  914: # display uplink arrow
  915:     if ($filecom[1] eq 'viewOneUp') {
  916: 	my $updir=$startdir;
  917: # -------------- Filter out sequence containment in crumbs and "recent folders"
  918: 	$updir='/'.(split(/\.(page|sequence)\/\//,$startdir))[-1];
  919: 	$updir=~s/\/+/\//g;
  920: 
  921: #SB	$r->print("<tr valign='$valign' bgcolor=\"$fileclr\">$extrafield");
  922:         $r->print(&Apache::loncommon::start_data_table_row()); # valign="$valign" ?!?
  923:         $r->print($extrafield);
  924: 	$r->print("<td>\n");
  925: 	$r->print ('<form method="post" name="dirpathUP" action="'.$updir.
  926: 		   '/" '.
  927: 		   'onsubmit="return rep_dirpath(\'UP\','.
  928: 		   'document.forms.fileattr.acts.value)" '.
  929: 		   'enctype="application/x-www-form-urlencoded"'.
  930:                    '>'."\n");
  931: 	$r->print(&Apache::loncommon::inhibit_menu_check('input'));
  932: 	$r->print ('<input type="hidden" name="openuri" value="'.
  933: 		   $startdir.'" />'."\n");
  934:         $r->print ('<input type="hidden" name="acts" value="" />'."\n");
  935: 	$r->print ('<a href="#" onclick="document.dirpathUP.submit()"><img src="'.$iconpath.'arrow.up.gif"');
  936: 	$r->print (' alt="'.$msg.'" class="LC_fileicon" />'.
  937: 		   "\n");
  938: 	$r->print(&mt("Up")."</a></form></td><td>$tabtag");
  939:         $r->print(&Apache::loncommon::end_data_table_row());
  940: 	return OK;
  941:     }
  942: # Do we have permission to look at this?
  943:     if($filecom[15] ne '1') { return OK if ((!&Apache::lonnet::allowed('bre',$pathprefix.$filecom[0])) && (!&Apache::lonnet::allowed('bro',$pathprefix.$filecom[0]))); }
  944: 
  945: # make absolute links appear on different background
  946: #SB    if ($absolute) { $fileclr='#ccdd99'; }
  947: 
  948: # display domain
  949:     if ($filecom[1] eq 'domain') {
  950:  	$r->print ('<input type="hidden" name="dirPointer" value="on" />'."\n")
  951:  	    if ($env{'form.dirPointer'} eq "on");
  952: #SB	$r->print("<tr valign='$valign' bgcolor=\"$fileclr\">$extrafield");
  953: 	$r->print(&Apache::loncommon::start_data_table_row()); # valign="$valign" ?!?"
  954:         $r->print($extrafield);
  955: 	$r->print("<td>");
  956: 	&begin_form ($r,$filecom[0]);
  957: 	my $anchor = $filecom[0];
  958: 	$anchor =~ s/\W//g;
  959: 	$r->print ('<a name="'.$anchor.'"></a>');
  960: $r->print ('<input type="hidden" name="acts" value="" />');
  961: 	$r->print ('<a href="#" onclick="document.dirpath'.($dnum-1).'.submit()"><img src="'.$iconpath.'arrow.'.($nowOpen ? "open" : "closed" ).'.gif"'); 
  962: 	$r->print (' alt="'.$msg.'" class="LC_fileicon" /></a>'.
  963: 		   "\n");
  964: 	my $quotable_filecom = &Apache::loncommon::escape_single($filecom[0]);
  965: 	$r->print ('<a href="javascript:gothere(\''.$quotable_filecom.
  966: 		   '\')"><img alt="" src="'.$iconpath.'server.gif"');
  967: 	$r->print (' class="LC_fileicon" />'."\n");
  968: 	$r->print (&mt("Domain")." - $listname </a>");
  969: 	if (&Apache::lonnet::domain($listname,'description')) {
  970: 	    $r->print("<br />(".&Apache::lonnet::domain($listname,'description').
  971: 		      ")");
  972: 	}
  973: 	$r->print("</form></td><td>$tabtag");
  974:          $r->print(&Apache::loncommon::end_data_table_row());
  975: 	return OK;
  976: 
  977: # display user directory
  978:     }
  979:     if ($filecom[1] eq 'user') {
  980: 	# $r->print("<tr valign=$valign bgcolor=\"$fileclr\">$extrafield");
  981: 	my $curdir = $startdir.$filecom[0].'/';
  982: 	my $anchor = $curdir;
  983: 	$anchor =~ s/\W//g;
  984: #SB	$r->print("<tr bgcolor=\"$fileclr\">$extrafield<td valign=$valign>");
  985:         $r->print(&Apache::loncommon::start_data_table_row()
  986:                  .$extrafield.'<td class="LC_'.$valign.'">');
  987: 	&begin_form ($r,$curdir);
  988: 	$r->print ('<a name="'.$anchor.'"></a><img alt="" src="'.$iconpath.
  989: 		   'whitespace_21.gif" class="LC_icon" />'."\n");
  990: 	$r->print ('<input type="hidden" name="acts" value="" />');
  991: 	$r->print ('<a href="#" onclick="document.dirpath'.($dnum-1).'.submit()">');
  992:         $r->print ('<img src="'.$iconpath.'arrow.'.($nowOpen ? "open" : "closed" ).
  993: 		   '.gif" class="LC_fileicon"'); 
  994: 	$r->print (' alt="'.$msg.'"/></a>'.
  995: 		   "\n");
  996: 	my $quotable_curdir = &Apache::loncommon::escape_single($curdir);
  997: 	$r->print ('<a href="javascript:gothere(\''.$quotable_curdir
  998: 		   .'\')"><img alt="'.$msg.'" src="'.
  999: 		   $iconpath.'quill.gif" class="LC_fileicon" />');
 1000: 	my $domain=(split(m|/|,$startdir))[2];
 1001: 	my $plainname=&Apache::loncommon::plainname($listname,$domain);
 1002:         $r->print ($listname.'</a>');
 1003: 
 1004:         if (defined($plainname) && $plainname) { $r->print(" ($plainname) "); }
 1005: # Wishlistlink
 1006:         $r->print('</form></td><td><a href="javascript:;" '.
 1007:                   'title="'.&mt('Set a link for this folder to wishlist').'" '.
 1008:                   'onclick="set_wishlistlink('."'$plainname','$startdir$listname'".')">'.
 1009:                   '<img class="LC_icon" src="/res/adm/pages/wishlist.png" '.
 1010:                   'alt="'.&mt('set wishlistlink').'" style="width:22px;"/></a>'.$tabtag);
 1011:         $r->print(&Apache::loncommon::end_data_table_row());
 1012:         return OK;
 1013:     }
 1014: 
 1015: # display file
 1016:         if (($fnptr == 0 and $filecom[3] ne '') or $absolute) {
 1017:             my $title;
 1018:             my $filelink = $pathprefix.$filecom[0];
 1019:             if ($hash{'display_attrs_0'} == 1) {
 1020:                 $title = &Apache::lonnet::gettitle($filelink);
 1021:             }
 1022:             my @file_ext = split (/\./,$listname);
 1023:             my $curfext = $file_ext[-1];
 1024:             if (@Omit) {
 1025:                 foreach (@Omit) { return OK if (lc($curfext) eq $_); }
 1026:             }
 1027:             if (@Only) {
 1028:                 my $skip = 1;
 1029:                 foreach (@Only) { $skip = 0 if (lc($curfext) eq $_); }
 1030:                 return OK if ($skip > 0);
 1031:             }
 1032:             # Set the icon for the file
 1033:             my $iconname = &Apache::loncommon::icon($listname);
 1034: #SB	$r->print("<tr valign='$valign' bgcolor=\"$fileclr\">);
 1035:         $r->print(&Apache::loncommon::start_data_table_row()); #SB valign="$valign" ?!?
 1036:         $r->print('<td class="LC_middle LC_nobreak">');
 1037: 	
 1038:         if ($env{'form.catalogmode'} eq 'interactive') {
 1039: 	    my $quotable_filelink = &Apache::loncommon::escape_single($filelink);
 1040:             $r->print("<a href=\"javascript:select_data(\'",
 1041:                       $quotable_filelink,"')\">");
 1042: 	    $r->print("<img alt=\"\" src='",$iconpath,"select.gif' class='LC_icon' /></a>".
 1043: 		      "\n");
 1044: 	    $r->print('</td><td class="LC_middle">');
 1045: 	} elsif ($env{'form.catalogmode'} eq 'import') {
 1046: 	    $r->print("<form name='form$fnum' action=''>\n");
 1047: 	    $r->print("<input type='checkbox' name='filelink"."' ".
 1048: 		      "value='$filelink' onclick='".
 1049: 		      "javascript:queue(\"form$fnum\")' ");
 1050: 	    if ($hash{'store_'.$filelink}) {
 1051: 		$r->print("checked");
 1052: 	    }
 1053: 	    $r->print(" />\n");
 1054: 	    $r->print('</form></td><td class="LC_middle">');
 1055: 	    $hash{"pre_${fnum}_link"}=$filelink;
 1056: 	    $hash{"pre_${fnum}_title"}=$title;
 1057: 	    if (!$hash{"pre_${fnum}_title"}) {
 1058: 	        $hash{"pre_${fnum}_title"} = 'Not_retrieved';
 1059: 	    }
 1060:   	    $fnum++;
 1061: 	}
 1062: # Form to open or close sequences
 1063: 	if ($filelink=~/\.(page|sequence)$/) {
 1064: 	    my $curdir = $startdir.$filecom[0].'/';
 1065: 	    &begin_form($r,$curdir);
 1066: 	    $indent--;
 1067: 	}
 1068: # General indentation
 1069: 	    my $count = 0;
 1070: 	    while ($count < $indent) {
 1071:             $r->print('<img alt="" src="'.$iconpath.'whitespace_21.gif" 
 1072:                 class="LC_icon" />');
 1073: 	        $count++;
 1074: 	    }
 1075: # Sequence open/close icon
 1076: 	if ($filelink=~/\.(page|sequence)$/) {
 1077: 	    my $curdir = $startdir.$filecom[0].'/';
 1078: 	    my $anchor = $curdir;
 1079: 	    $anchor =~ s/\W//g;
 1080: 	    $r->print ('<input type="hidden" name="acts" value="" />');
 1081: 	    $r->print ('<a name="'.$anchor.'"></a>');
 1082:             $r->print ('<a href="#" onclick="document.dirpath'.($dnum-1).'.submit()">');
 1083:             $r->print ('<img src="'.$iconpath.'arrow.'.($nowOpen ? "open" : "closed" ).
 1084:                        '.gif" class="LC_fileicon"');
 1085: 	    $r->print (' alt="'.$msg.'" /></a>'.
 1086: 		       "\n");
 1087: 	}
 1088: # Filetype icons
 1089: 	$r->print("<img alt=\"\" src='$iconname' class='LC_fileicon' />\n");
 1090: 	my $quotable_filelink = &Apache::loncommon::escape_single($filelink);
 1091: 
 1092: 	$r->print (" <a href=\"javascript:openWindow('".$quotable_filelink.
 1093: 		   "?inhibitmenu=yes','previewfile','450','500','no','yes','yes');\"".
 1094: 		   " target=\"_self\">$listname</a> ");
 1095: 	$quotable_filelink = &Apache::loncommon::escape_single($filelink.'.meta');
 1096: 	&Apache::loncommon::inhibit_menu_check(\$quotable_filelink);
 1097: 	$r->print (" (<a href=\"javascript:openWindow('".$quotable_filelink.
 1098: 		   "?inhibitmenu=yes','metadatafile','500','550','no','yes','no');\" ".
 1099: 		   " target=\"_self\">".&mt('metadata')."</a>) ");
 1100: # Close form to open/close sequence
 1101: 	if ($filelink=~/\.(page|sequence)$/) {
 1102: 	    $r->print('</form>');
 1103: 	}
 1104: 	$r->print("</td>\n");
 1105: # Wishlistlink
 1106:         $r->print('<td><a href="javascript:;" title="'.&mt('Set a link for this resource to wishlist').'" '.
 1107:                   'onclick="set_wishlistlink('."'".&Apache::lonnet::gettitle($filelink).
 1108:                   "','$startdir$listname'".')">'.
 1109:                   '<img class="LC_icon" src="/res/adm/pages/wishlist.png" '.
 1110:                   'alt="'.&mt('set wishlistlink').'" style="width:22px;"/></a></td>');
 1111: 	if ($hash{'display_attrs_0'} == 1) {
 1112: 	    $r->print('<td> '.($title eq '' ? '&nbsp;' : $title).
 1113: 		      ' </td>'."\n");
 1114: 	}
 1115: 	$r->print('<td class="LC_right"> ',
 1116: 		  $filecom[8]," </td>\n") 
 1117: 	    if $hash{'display_attrs_1'} == 1;
 1118: 	$r->print('<td class="LC_nobreak"> '.
 1119:                   (&Apache::lonlocal::locallocaltime($filecom[9]))." </td>\n")
 1120: 	    if $hash{'display_attrs_2'} == 1;
 1121: 	$r->print('<td class="LC_nobreak"> '.
 1122:                   (&Apache::lonlocal::locallocaltime($filecom[10]))." </td>\n")
 1123: 	    if $hash{'display_attrs_3'} == 1;
 1124: 
 1125: 	if ($hash{'display_attrs_4'} == 1) {
 1126: 	    my $author = &Apache::lonnet::metadata($filelink,'author');
 1127: 	    $r->print('<td class="LC_nobreak"> '.($author eq '' ? '&nbsp;' : $author).
 1128: 		      " </td>\n");
 1129: 	}
 1130: 	if ($hash{'display_attrs_5'} == 1) {
 1131: 	    my $keywords = &Apache::lonnet::metadata($filelink,'keywords');
 1132: 	    # $keywords = '&nbsp;' if (!$keywords);
 1133: 	    $r->print('<td> '.($keywords eq '' ? '&nbsp;' : $keywords).
 1134: 		      " </td>\n");
 1135: 	}
 1136: 
 1137: 	if ($hash{'display_attrs_6'} == 1) {
 1138: 	    my $lang = &Apache::lonnet::metadata($filelink,'language');
 1139: 	    $lang = &Apache::loncommon::languagedescription($lang);
 1140: 	    $r->print('<td> '.($lang eq '' ? '&nbsp;' : $lang).
 1141: 		      " </td>\n");
 1142: 	}
 1143: 	if ($hash{'display_attrs_8'} == 1) {
 1144: # statistics
 1145: 	    &dynmetaread($filelink);
 1146: 	    $r->print("<td>");
 1147: 
 1148:         for (qw(count course stdno avetries difficulty disc clear technical
 1149:             correct helpful depth)) {
 1150: 
 1151:             dynmetaprint($r,$filelink,$_);
 1152:         }
 1153: 
 1154: 	    $r->print("&nbsp;</td>\n");
 1155: 
 1156: 	}
 1157: 	if ($hash{'display_attrs_10'} == 1) {
 1158: 	    my $source = &Apache::lonnet::metadata($filelink,'sourceavail');
 1159: 	    if($source eq 'open') {
 1160: 		my $sourcelink = &Apache::lonsource::make_link($filelink,$listname);
 1161: 		my $quotable_sourcelink = &Apache::loncommon::escape_single($sourcelink);
 1162: 		&Apache::loncommon::inhibit_menu_check(\$quotable_sourcelink);
 1163: 		$r->print('<td>'."<a href=\"javascript:openWindow('"
 1164: 			  .$quotable_sourcelink.
 1165: 			  "', 'previewsource', '700', '700', 'no', 'yes','yes');\"".
 1166: 			  " target=\"_self\">".&mt('Source Code')."</a> "."</td>\n");
 1167: 	    } else { #A cuddled else. :P
 1168: 		$r->print("<td>&nbsp;</td>\n");
 1169: 	    }
 1170: 	}
 1171: 	if ($hash{'display_attrs_11'} == 1) {
 1172: # links
 1173: 	   &dynmetaread($filelink);
 1174: 	   $r->print('<td>');
 1175: 	   &coursecontext($r,$filelink);
 1176:        for (qw(goto_list comefrom_list sequsage_list dependencies course_list)) {
 1177:              dynmetaprint($r,$filelink,$_);
 1178:        }
 1179: 	   $r->print('</td>');
 1180:         }
 1181:         
 1182:    
 1183: 	
 1184: 	if ($hash{'display_attrs_7'} == 1) {
 1185: # Show resource
 1186: 	   my $output=&showpreview($filelink);
 1187:            $r->print('<td class="LC_fontsize_medium">'.($output eq '' ? '&nbsp;':$output).
 1188: 		      " </td>\n");
 1189:     }
 1190:     
 1191:     if ($hash{'display_attrs_12'} == 1) {
 1192: 	    my $subject = &Apache::lonnet::metadata($filelink,'subject');
 1193: 	    $r->print('<td> '.($subject eq '' ? '&nbsp;' : $subject).
 1194: 		      " </td>\n");
 1195: 	}
 1196: 	
 1197: 	if ($hash{'display_attrs_13'} == 1) {
 1198: 	    my $notes = &Apache::lonnet::metadata($filelink,'notes');
 1199: 	    $r->print('<td> '.($notes eq '' ? '&nbsp;' : $notes).
 1200: 		      " </td>\n");
 1201: 	}
 1202: 	
 1203: 	if ($hash{'display_attrs_14'} == 1) {
 1204: 	    my $abstract = &Apache::lonnet::metadata($filelink,'abstract');
 1205: 	    $r->print('<td> '.($abstract eq '' ? '&nbsp;' : $abstract).
 1206: 		      " </td>\n");
 1207: 	}
 1208: 	
 1209: 	if ($hash{'display_attrs_15'} == 1) {
 1210: 	    my $gradelevel = &Apache::lonnet::metadata($filelink,'gradelevel');
 1211: 	    $r->print('<td> '.($gradelevel eq '' ? '&nbsp;' : $gradelevel).
 1212: 		      " </td>\n");
 1213: 	}
 1214: 	
 1215: 	if ($hash{'display_attrs_16'} == 1) {
 1216: 	    my $standards = &Apache::lonnet::metadata($filelink,'standards');
 1217: 	    $r->print('<td> '.($standards eq '' ? '&nbsp;' : $standards).
 1218: 		      " </td>\n");
 1219: 	}
 1220: 	
 1221: 	$r->print(&Apache::loncommon::end_data_table_row());
 1222: }
 1223:     
 1224:     
 1225: 
 1226: # -- display directory
 1227:     if ($fnptr == $dirptr) {
 1228: 	my $curdir = $startdir.$filecom[0].'/';
 1229: 	my $anchor = $curdir;
 1230: 	$anchor =~ s/\W//g;
 1231: #SB	$r->print("<tr bgcolor=\"$fileclr\">$extrafield<td valign=$valign>");
 1232:         $r->print(&Apache::loncommon::start_data_table_row()); # SB: bgcolor suggestion: darkgrey ("LC_info_row"?!?)
 1233: #	$r->print('<tr class="LC_info_row">');
 1234:         $r->print($extrafield.'<td class="LC_middle LC_nobreak">');
 1235: 	&begin_form ($r,$curdir);
 1236: 	my $indentm1 = $indent-1;
 1237: 	my $count = 0;
 1238: 	while ($count < $indentm1) {
 1239: 	    $r->print ('<img alt="" src="',$iconpath
 1240: 	               ,'whitespace_21.gif" class="LC_icon" />');
 1241:             $count++;
 1242: 	}
 1243: 	$r->print ('<input type="hidden" name="acts" value="" />');
 1244: 	$r->print ('<a name="'.$anchor.'"></a>');
 1245:         $r->print ('<a href="#" onclick="document.dirpath'.($dnum-1).'.submit()"><img src="'.$iconpath.
 1246: 		   'arrow.'.($nowOpen ? "open" : "closed" ).'.gif"');
 1247: 	$r->print (' alt="'.$msg.'" class="LC_fileicon" /></a>'.
 1248: 		   "\n");
 1249: 	my $quotable_curdir = &Apache::loncommon::escape_single($curdir);
 1250:         
 1251:         my $location = &Apache::loncommon::lonhttpdurl("/adm/lonIcons");
 1252: 	my $icon = "navmap.folder.".($nowOpen ? "open":"closed").'.gif';
 1253:         $r->print ('<a href="javascript:gothere('
 1254:                   ."'$quotable_curdir'".');">'
 1255:                   .'<img class="LC_fileicon" alt="'.&mt('Open Folder').'" src="'
 1256:                   .$location.'/'.$icon.'" />'
 1257:                   ."\n");
 1258: 	$r->print ("$listname</a></form>");
 1259: # Wishlistlink
 1260:         $r->print('</td><td><a href="javascript:;" '.
 1261:                   'title="'.&mt('Set a link for this folder to wishlist').'" '.
 1262:                   'onclick="set_wishlistlink('."'$listname','$startdir$listname'".')">'.
 1263:                   '<img class="LC_icon" src="/res/adm/pages/wishlist.png" '.
 1264:                   'alt="'.&mt('set wishlistlink').'" style="width:22px;"/></a></td>');
 1265: # Attributes
 1266: 	my $filelink = $startdir.$filecom[0].'/default';
 1267: 
 1268: 	if ($hash{'display_attrs_0'} == 1) {
 1269: 	    my $title = &Apache::lonnet::gettitle($filelink);
 1270: 	    $r->print('<td> '.($title eq '' ? '&nbsp;' : $title).
 1271: 		      ' </td>'."\n");
 1272: 	}
 1273: 	$r->print('<td class="LC_right"> ',
 1274: 		  $filecom[8]," </td>\n") 
 1275: 	    if $hash{'display_attrs_1'} == 1;
 1276: 	$r->print('<td class="LC_break"> '.
 1277:                   (&Apache::lonlocal::locallocaltime($filecom[9]))." </td>\n")
 1278: 	    if $hash{'display_attrs_2'} == 1;
 1279: 	$r->print('<td class="LC_break"> '.
 1280:                   (&Apache::lonlocal::locallocaltime($filecom[10]))." </td>\n")
 1281: 	    if $hash{'display_attrs_3'} == 1;
 1282: 
 1283: 	if ($hash{'display_attrs_4'} == 1) {
 1284: 	    my $author = &Apache::lonnet::metadata($filelink,'author');
 1285: 	    $r->print('<td> '.($author eq '' ? '&nbsp;' : $author).
 1286: 		      " </td>\n");
 1287: 	}
 1288: 	if ($hash{'display_attrs_5'} == 1) {
 1289: 	    my $keywords = &Apache::lonnet::metadata($filelink,'keywords');
 1290: 	    # $keywords = '&nbsp;' if (!$keywords);
 1291: 	    $r->print('<td> '.($keywords eq '' ? '&nbsp;' : $keywords).
 1292: 		      " </td>\n");
 1293: 	}
 1294: 	if ($hash{'display_attrs_6'} == 1) {
 1295: 	    my $lang = &Apache::lonnet::metadata($filelink,'language');
 1296: 	    $lang = &Apache::loncommon::languagedescription($lang);
 1297: 	    $r->print('<td> '.($lang eq '' ? '&nbsp;' : $lang).
 1298: 		      " </td>\n");
 1299: 	}
 1300: 	
 1301: 	if ($hash{'display_attrs_8'} == 1) {
 1302: 	   $r->print('<td>&nbsp;</td>');
 1303: 	}
 1304:  	if ($hash{'display_attrs_10'} == 1) {
 1305: 	   $r->print('<td>&nbsp;</td>');
 1306: 	}
 1307: 	if ($hash{'display_attrs_7'} == 1) {
 1308: 	   $r->print('<td>&nbsp;</td>');
 1309:     }     
 1310:     if ($hash{'display_attrs_11'} == 1) {
 1311: 	   $r->print('<td>&nbsp;</td>');
 1312: 	}
 1313: 	if ($hash{'display_attrs_12'} == 1) {
 1314: 	    my $subject = &Apache::lonnet::metadata($filelink,'subject');
 1315: 	    $r->print('<td> '.($subject eq '' ? '&nbsp;' : $subject).
 1316: 		      " </td>\n");
 1317: 	}
 1318: 	if ($hash{'display_attrs_13'} == 1) {
 1319: 	    my $notes = &Apache::lonnet::metadata($filelink,'notes');
 1320: 	    $r->print('<td> '.($notes eq '' ? '&nbsp;' : $notes).
 1321: 		      " </td>\n");
 1322: 	}
 1323: 	
 1324: 	if ($hash{'display_attrs_14'} == 1) {
 1325: 	    my $abstract = &Apache::lonnet::metadata($filelink,'abstract');
 1326: 	    $r->print('<td> '.($abstract eq '' ? '&nbsp;' : $abstract).
 1327: 		      " </td>\n");
 1328: 	}
 1329: 	
 1330: 	if ($hash{'display_attrs_15'} == 1) {
 1331: 	    my $gradelevel = &Apache::lonnet::metadata($filelink,'gradelevel');
 1332: 	    $r->print('<td> '.($gradelevel eq '' ? '&nbsp;' : $gradelevel).
 1333: 		      " </td>\n");
 1334: 	}
 1335: 	
 1336: 	if ($hash{'display_attrs_16'} == 1) {
 1337: 	    my $standards = &Apache::lonnet::metadata($filelink,'standards');
 1338: 	    $r->print('<td> '.($standards eq '' ? '&nbsp;' : $standards).
 1339: 		      " </td>\n");
 1340: 	}
 1341: 	
 1342: 	
 1343: 	$r->print(&Apache::loncommon::end_data_table_row());
 1344:     }
 1345: 
 1346: }
 1347: 
 1348: sub coursecontext {
 1349:     my ($r,$filelink)=@_;
 1350:     my $filesymb=&Apache::lonnet::symbread($filelink);
 1351:     if ($filesymb) {
 1352: 	my ($map,$index,$resource)=&Apache::lonnet::decode_symb($filesymb);
 1353: 	$r->print(&mt('Already in this course:<br />[_1] in folder/map [_2].<br />',
 1354: 	      &Apache::lonnet::gettitle($resource),
 1355: 	      &Apache::lonnet::gettitle($map)));
 1356:     }
 1357: }
 1358: 
 1359: sub showpreview {
 1360:     my ($filelink)=@_;
 1361:     if ($filelink=~m-^(/ext/|http://)-) {
 1362: 	return &mt('External Resource, preview not enabled');
 1363:     }
 1364:     my ($curfext)=($filelink=~/\.(\w+)$/);
 1365:     my $output='';
 1366:     my $embstyle=&Apache::loncommon::fileembstyle($curfext);
 1367:     if ($embstyle eq 'ssi') {
 1368:        my $cache=$Apache::lonnet::perlvar{'lonDocRoot'}.$filelink.
 1369:                     '.tmp';
 1370:        if ((!$env{'form.updatedisplay'}) &&
 1371:                     (-e $cache)) {
 1372:           open(FH,$cache);
 1373:           $output=join("\n",<FH>);
 1374:           close(FH);
 1375:        } else {
 1376: # In update display mode, remove old cache. This is done to retroactively
 1377: # clean up course context renderings.
 1378: 	  if (-e $cache) {
 1379: 	       unlink($cache);
 1380: 	  }
 1381:           $output=&Apache::lonnet::ssi_body($filelink);
 1382: # Is access denied? Don't render, don't store
 1383:           if ($output=~/LONCAPAACCESSCONTROLERRORSCREEN/s) {
 1384:              $output='';
 1385: # Was this rendered in course content? Don't store
 1386:           } elsif (!&Apache::lonnet::symbread($filelink)) {
 1387:              open(FH,">$cache");
 1388:              print FH $output;
 1389:              close(FH);
 1390:           }
 1391:        }
 1392:     } elsif ($embstyle eq 'img') {
 1393:        $output='<img alt="'.&mt('Preview').'" src="'.$filelink.'" />';
 1394:     } elsif ($filelink=~m{^/res/($match_domain)/($match_username)/}) {
 1395:        $output='<img  alt="'.&mt('Preview').'" src="http://'.
 1396:                  &Apache::lonnet::hostname(&Apache::lonnet::homeserver($2,$1)).
 1397:                  '/cgi-bin/thumbnail.gif?url='.$filelink.'" />';
 1398:     }
 1399:     return $output;
 1400: }
 1401: 
 1402: sub dynmetaprint {
 1403:     my ($r,$filelink,$item)=@_;
 1404:     if ($dynhash{$filelink}->{$item}) {
 1405: 	$r->print("\n<br />".$fieldnames{$item}.': '.
 1406: 		  &Apache::lonmeta::prettyprint($item,
 1407: 						$dynhash{$filelink}->{$item},
 1408: 		  (($env{'form.catalogmode'} ne 'import')?'preview':''),
 1409: 		  '',
 1410: 		  (($env{'form.catalogmode'} eq 'import')?'document.forms.fileattr':''),1));
 1411:     }
 1412: }
 1413: 
 1414: # ------------------- prints the beginning of a form for directory or file link
 1415: sub begin_form {
 1416:     my ($r,$uri) = @_;
 1417:     my $anchor = $uri;
 1418:     $anchor =~ s/\W//g;
 1419:     $uri=&Apache::loncommon::escape_single($uri);
 1420:     $r->print ('<form method="post" name="dirpath'.$dnum.'" action="'.$uri.
 1421: 	       '#'.$anchor.
 1422: 	       '" onsubmit="return rep_dirpath(\''.$dnum.'\''.
 1423: 	       ',document.forms.fileattr.acts.value)" '.
 1424: 	       'enctype="application/x-www-form-urlencoded">'."\n");
 1425:     $r->print ('<input type="hidden" name="openuri" value="'.$uri.'" />'.
 1426: 	       "\n");
 1427:     $r->print ('<input type="hidden" name="dirPointer" value="on" />'."\n");
 1428:     $r->print(&Apache::loncommon::inhibit_menu_check('input'));
 1429:     $dnum++;
 1430: }
 1431: 
 1432: # --------- settings whenever the user causes the indexer window to be launched
 1433: sub start_fresh_session {
 1434:     my ($hash) = @_;
 1435:     delete $hash->{'form.catalogmode'};
 1436:     delete $hash->{'form.mode'};
 1437:     delete $hash->{'form.form'};
 1438:     delete $hash->{'form.element'};
 1439:     delete $hash->{'form.omit'};
 1440:     delete $hash->{'form.only'};
 1441:     foreach (keys %{$hash}) {
 1442:         delete $hash->{$_} if (/^(pre_|store)/);
 1443:     }
 1444: }
 1445: 
 1446: # ------------------------------------------------------------------- setvalues
 1447: sub setvalues {
 1448:     # setvalues is used in registerurl to synchronize the database
 1449:     # hash and environment hashes
 1450:     my ($H1,$h1key,$H2,$h2key) =@_;
 1451:     #
 1452:     if (exists $H2->{$h2key}) {
 1453: 	$H1->{$h1key} = $H2->{$h2key};
 1454:     } elsif (exists $H1->{$h1key}) {
 1455: 	$H2->{$h2key} = $H1->{$h1key};
 1456:     } 
 1457: }
 1458: 
 1459: 1;
 1460: 
 1461: sub cleanup {
 1462:     if (tied(%hash)){
 1463: 	&Apache::lonnet::logthis('Cleanup indexer: hash');
 1464:     }
 1465:     return OK;
 1466: }
 1467: 
 1468: 
 1469: 
 1470: 
 1471: 
 1472: =head1 NAME
 1473: 
 1474: Apache::lonindexer - mod_perl module for cross server filesystem browsing
 1475: 
 1476: =head1 SYNOPSIS
 1477: 
 1478: Invoked by /etc/httpd/conf/srm.conf:
 1479: 
 1480:  <LocationMatch "^/res.*/$">
 1481:  SetHandler perl-script
 1482:  PerlHandler Apache::lonindexer
 1483:  </LocationMatch>
 1484: 
 1485: =head1 INTRODUCTION
 1486: 
 1487: This module enables a scheme of browsing across a cross server.
 1488: 
 1489: This is part of the LearningOnline Network with CAPA project
 1490: described at http://www.lon-capa.org.
 1491: 
 1492: =head1 BEGIN SUBROUTINE
 1493: 
 1494: This routine is only run once after compilation.
 1495: 
 1496: =over 4
 1497: 
 1498: =item *
 1499: 
 1500: Initializes %language hash table.
 1501: 
 1502: =back
 1503: 
 1504: =head1 HANDLER SUBROUTINE
 1505: 
 1506: This routine is called by Apache and mod_perl.
 1507: 
 1508: =over 4
 1509: 
 1510: =item *
 1511: 
 1512: read in machine configuration variables
 1513: 
 1514: =item *
 1515: 
 1516: see if called from an interactive mode
 1517: 
 1518: =item *
 1519: 
 1520: refresh environment with user database values (in %hash)
 1521: 
 1522: =item *
 1523: 
 1524: define extra fields and buttons in case of special mode
 1525: 
 1526: =item *
 1527: 
 1528: set catalogmodefunctions to have extra needed javascript functionality
 1529: 
 1530: =item *
 1531: 
 1532: print header
 1533: 
 1534: =item *
 1535: 
 1536: evaluate actions from previous page (both cumulatively and chronologically)
 1537: 
 1538: =item *
 1539: 
 1540: output title
 1541: 
 1542: =item *
 1543: 
 1544: get state of file attributes to be showing
 1545: 
 1546: =item *
 1547: 
 1548: output state of file attributes to be showing
 1549: 
 1550: =item *
 1551: 
 1552: output starting row to the indexed file/directory hierarchy
 1553: 
 1554: =item *
 1555: 
 1556: read in what directories have previously been set to "open"
 1557: 
 1558: =item *
 1559: 
 1560: if not at top level, provide an uplink arrow
 1561: 
 1562: =item *
 1563: 
 1564: recursively go through all the directories and output as appropriate
 1565: 
 1566: =item *
 1567: 
 1568: information useful for group import
 1569: 
 1570: =item *
 1571: 
 1572: end the tables
 1573: 
 1574: =item *
 1575: 
 1576: end the output and return
 1577: 
 1578: =back
 1579: 
 1580: =head1 OTHER SUBROUTINES
 1581: 
 1582: =over 4
 1583: 
 1584: =item *
 1585: 
 1586: scanDir - recursive scan of a directory
 1587: 
 1588: =item *
 1589: 
 1590: get_list - get complete matched list based on the uri (returns an array)
 1591: 
 1592: =item *
 1593: 
 1594: match_ext - filters out files based on extensions (returns an array)
 1595: 
 1596: =item *
 1597: 
 1598: display_line - displays one line in appropriate table format
 1599: 
 1600: =item *
 1601: 
 1602: begin_form - prints the beginning of a form for directory or file link
 1603: 
 1604: =item *
 1605: 
 1606: start_fresh_session - settings whenever the user causes the indexer window
 1607: to be launched
 1608: 
 1609: =back
 1610: 
 1611: =cut

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>