Annotation of loncom/interface/lonindexer.pm, revision 1.174

1.1       www         1: # The LearningOnline Network with CAPA
1.24      harris41    2: # Directory Indexer
                      3: #
1.174   ! banghart    4: # $Id: lonindexer.pm,v 1.173 2007/07/18 13:39:31 banghart Exp $
1.24      harris41    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.
1.14      harris41   14: #
1.24      harris41   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/
1.14      harris41   27: #
1.23      harris41   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: ###############################################################################
1.7       harris41   42: 
1.1       www        43: package Apache::lonindexer;
                     44: 
1.23      harris41   45: # ------------------------------------------------- modules used by this module
1.1       www        46: use strict;
1.133     albertel   47: use Apache::lonnet;
1.30      harris41   48: use Apache::loncommon();
1.83      www        49: use Apache::lonhtmlcommon();
1.94      www        50: use Apache::lonsequence();
1.1       www        51: use Apache::Constants qw(:common);
1.70      ng         52: use Apache::lonmeta;
1.2       harris41   53: use Apache::File;
1.77      www        54: use Apache::lonlocal;
1.109     taceyjo1   55: use Apache::lonsource();
1.172     albertel   56: use Apache::groupsort();
1.2       harris41   57: use GDBM_File;
1.154     albertel   58: use LONCAPA qw(:match);
1.2       harris41   59: 
1.23      harris41   60: # ---------------------------------------- variables used throughout the module
1.87      www        61: my %hash; # global user-specific gdbm file
1.17      harris41   62: my %dirs; # keys are directories, values are the open/close status
                     63: my %language; # has the reference information present in language.tab
1.111     www        64: my %dynhash; # hash of hashes for dynamic metadata
1.117     www        65: my %dynread; # hash of directories already read for dynamic metadata
1.113     www        66: my %fieldnames; # Metadata fieldnames
1.17      harris41   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
1.1       www        72: 
1.40      matthew    73: # ----- Used to include or exclude files with certain extensions.
1.43      matthew    74: my @Only = ();
1.40      matthew    75: my @Omit = ();
                     76: 
                     77: 
1.125     foxr       78: 
                     79: 
1.23      harris41   80: # ----------------------------- Handling routine called via Apache and mod_perl
1.1       www        81: sub handler {
                     82:     my $r = shift;
1.67      matthew    83:     my $c = $r->connection();
1.76      www        84:     &Apache::loncommon::content_type($r,'text/html');
1.50      albertel   85:     &Apache::loncommon::no_cache($r);
1.1       www        86:     $r->send_http_header;
                     87:     return OK if $r->header_only;
1.9       harris41   88:     $fnum=0;
1.16      harris41   89:     $dnum=0;
1.17      harris41   90: 
1.43      matthew    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);
1.113     www        95:     %fieldnames=&Apache::lonmeta::fieldnames();
1.43      matthew    96: 
1.23      harris41   97: # ------------------------------------- read in machine configuration variables
1.10      harris41   98:     my $iconpath= $r->dir_config('lonIconsURL') . "/";
1.1       www        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: 
1.7       harris41  107:     my $fileclr='#ffffe6';
1.15      harris41  108:     my $line;
                    109:     my (@attrchk,@openpath);
                    110:     my $uri=$r->uri;
                    111: 
1.7       harris41  112: # -------------------------------------- see if called from an interactive mode
1.35      matthew   113:     # Get the parameters from the query string
1.36      matthew   114:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
1.40      matthew   115: 	     ['catalogmode','launch','acts','mode','form','element',
1.79      albertel  116:               'only','omit','titleelement']);
1.35      matthew   117:     #-------------------------------------------------------------------
1.17      harris41  118:     my $closebutton='';
1.7       harris41  119:     my $groupimportbutton='';
                    120:     my $colspan=''; 
1.141     albertel  121:     
1.14      harris41  122:     $extrafield='';
1.17      harris41  123:     my $diropendb = 
1.144     www       124: 	"/home/httpd/perl/tmp/$env{'user.domain'}_$env{'user.name'}_sel_res.db";
1.67      matthew   125:     %hash = ();
1.68      albertel  126:     {
                    127: 	my %dbfile;
1.149     albertel  128: 	if (tie(%dbfile,'GDBM_File',$diropendb,&GDBM_WRITER(),0640)) {
                    129: 	    if ($env{'form.launch'} eq '1') {
                    130: 		&start_fresh_session(\%dbfile);
                    131: 	    }
1.68      albertel  132: 	    while(my($key,$value)=each(%dbfile)) {
                    133: 		$hash{$key}=$value;
                    134: 	    }
                    135: 	    untie(%dbfile);
                    136: 	}
                    137:     }
1.174   ! banghart  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:     
1.68      albertel  143:     {
1.105     taceyjo1  144:   #Hijack lonindexer to verify a title and be close down.
1.133     albertel  145:    if ($env{'form.launch'} eq '2') {
1.130     albertel  146:        &Apache::loncommon::content_type($r,'text/html');
1.108     albertel  147:        my $extra='';
1.133     albertel  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");
1.108     albertel  152: 	   $verify_title=~s/'/\\'/g;
1.133     albertel  153: 	   $extra='window.opener.document.forms["'.$env{'form.form'}.'"].elements["'.$env{'form.titleelement'}.'"].value=\''.$verify_title.'\';';
1.108     albertel  154:        }
1.141     albertel  155:        my $js = <<ENDSUBM;
1.129     albertel  156: 	       <script type="text/javascript">
1.105     taceyjo1  157: 		function load() {
1.133     albertel  158: 			window.opener.document.forms["$env{'form.form'}"]
                    159: 			    .elements["$env{'form.element'}"]
                    160: 			    .value='$env{'form.acts'}';
1.108     albertel  161: 			$extra
1.105     taceyjo1  162: 			window.close();
                    163: 		}
1.129     albertel  164:    	       </script>
1.105     taceyjo1  165: ENDSUBM
1.141     albertel  166:        $r->print(&Apache::loncommon::start_page(undef,$js,
                    167: 						{'only_body'   =>1,
                    168: 						 'add_entries' =>
1.142     albertel  169: 						     {'onload' => "load();"},}
                    170: 						).
1.141     albertel  171: 		 &Apache::loncommon::end_page());
1.108     albertel  172:        return OK;
1.105     taceyjo1  173:    }
                    174:     
1.17      harris41  175: # -------------------- refresh environment with user database values (in %hash)
1.133     albertel  176: 	&setvalues(\%hash,'form.catalogmode',\%env,'form.catalogmode'   );
1.15      harris41  177: 
1.17      harris41  178: # --------------------- define extra fields and buttons in case of special mode
1.133     albertel  179: 	if ($env{'form.catalogmode'} eq 'interactive') {
1.15      harris41  180: 	    $extrafield='<td bgcolor="'.$fileclr.'" valign="bottom">'.
1.152     albertel  181: 		'<img alt="" src="'.$iconpath.'whitespace1.gif"'.
1.162     albertel  182: 		' class="LC_icon" /></td>';
1.15      harris41  183: 	    $colspan=" colspan='2' ";
1.77      www       184:             my $cl=&mt('Close');
1.15      harris41  185:             $closebutton=<<END;
1.131     albertel  186: <input type="button" name="close" value='$cl' onClick="self.close()" />
1.7       harris41  187: END
1.16      harris41  188:         }
1.145     www       189: 	elsif ($env{'form.catalogmode'} eq 'import') {
1.15      harris41  190: 	    $extrafield='<td bgcolor="'.$fileclr.'" valign="bottom">'.
1.152     albertel  191: 		'<img alt="" src="'.$iconpath.'whitespace1.gif"'.
1.162     albertel  192: 		' class="LC_icon" /></td>';
1.15      harris41  193: 	    $colspan=" colspan='2' ";
1.77      www       194: 	    my $cl=&mt('Close');
1.123     matthew   195:             my $gi=&mt('Import');
1.15      harris41  196:             $closebutton=<<END;
1.131     albertel  197: <input type="button" name="close" value='$cl' onClick="self.close()" />
1.7       harris41  198: END
1.15      harris41  199:             $groupimportbutton=<<END;
1.77      www       200: <input type="button" name="groupimport" value='$gi'
1.131     albertel  201: onClick="javascript:select_group()" />
1.7       harris41  202: END
1.15      harris41  203:         }
1.35      matthew   204: 	# Additions made by Matthew to make the browser a little easier to deal
                    205: 	# with in the future.
                    206: 	#
                    207: 	# $mode (at this time) indicates if we are in edit mode.
                    208: 	# $form is the name of the form that the URL is placed when the
                    209: 	#       selection is made.
                    210: 	# $element is the name of the element in $formname which receives
                    211: 	#       the URL.
1.91      taceyjo1  212: 	#&Apache::lonxml::debug('Checking mode, form, element');
1.133     albertel  213: 	&setvalues(\%hash,'form.mode'        ,\%env,'form.mode'   );
                    214: 	&setvalues(\%hash,'form.form'        ,\%env,'form.form'   );
                    215: 	&setvalues(\%hash,'form.element'     ,\%env,'form.element');
                    216: 	&setvalues(\%hash,'form.titleelement',\%env,'form.titleelement');
                    217: 	&setvalues(\%hash,'form.only'        ,\%env,'form.only'   );
                    218: 	&setvalues(\%hash,'form.omit'        ,\%env,'form.omit'   );
1.35      matthew   219: 
1.40      matthew   220:         # Deal with 'omit' and 'only' 
1.133     albertel  221:         if (exists $env{'form.omit'}) {
                    222:             @Omit = split(',',$env{'form.omit'});
1.40      matthew   223:         }
1.133     albertel  224:         if (exists $env{'form.only'}) {
                    225:             @Only = split(',',$env{'form.only'});
1.40      matthew   226:         }
                    227:         
1.133     albertel  228: 	my $mode = $env{'form.mode'};
1.79      albertel  229: 	my ($form,$element,$titleelement);
1.39      matthew   230: 	if ($mode eq 'edit' || $mode eq 'parmset') {
1.133     albertel  231: 	    $form         = $env{'form.form'};
                    232: 	    $element      = $env{'form.element'};
                    233: 	    $titleelement = $env{'form.titleelement'};
1.35      matthew   234: 	}
1.90      taceyjo1  235: 	#&Apache::lonxml::debug("mode=$mode form=$form element=$element titleelement=$titleelement");
1.17      harris41  236: # ------ set catalogmodefunctions to have extra needed javascript functionality
1.15      harris41  237: 	my $catalogmodefunctions='';
1.133     albertel  238: 	if ($env{'form.catalogmode'} eq 'interactive' or
1.145     www       239: 	    $env{'form.catalogmode'} eq 'import') {
1.35      matthew   240: 	    # The if statement below sets us up to use the old version
                    241: 	    # by default (ie. if $mode is undefined).  This is the easy
                    242: 	    # way out.  Hopefully in the future I'll find a way to get 
                    243: 	    # the calls dealt with in a more comprehensive manner.
1.41      www       244: 
                    245: #
                    246: # There is now also mode "simple", which is for the simple version of the rat
                    247: #
                    248: #
1.39      matthew   249: 	    if (!defined($mode) || ($mode ne 'edit' && $mode ne 'parmset')) {
1.170     albertel  250:                 my $location = "/adm/groupsort?&inhibitmenu=yes&catalogmode=import&";
1.41      www       251:                 $location .= "mode=".$mode."&";
1.40      matthew   252:                 $location .= "acts=";
1.35      matthew   253: 		$catalogmodefunctions=<<"END";
1.108     albertel  254: function select_data(url) {
1.7       harris41  255:     changeURL(url);
1.8       harris41  256:     self.close();
                    257: }
                    258: function select_group() {
1.40      matthew   259:     window.location="$location"+document.forms.fileattr.acts.value;
1.16      harris41  260: }
1.35      matthew   261: function changeURL(val) {
                    262:     if (opener.inf) {
                    263:         if (opener.inf.document.forms.resinfo.elements.u) {
                    264: 	    opener.inf.document.forms.resinfo.elements.u.value=val;
                    265:         }
1.7       harris41  266:     }
                    267: }
1.35      matthew   268: END
1.39      matthew   269:             } elsif ($mode eq 'edit') { # we are in 'edit' mode
1.40      matthew   270:                 my $location = "/adm/groupsort?catalogmode=interactive&";
                    271:                 $location .= "form=$form&element=$element&mode=edit&acts=";
1.35      matthew   272: 		$catalogmodefunctions=<<END;
                    273: // mode = $mode
1.108     albertel  274: function select_data(url) {
                    275:    var location = "/res/?launch=2&form=$form&element=$element&titleelement=$titleelement&acts=" + url;
1.105     taceyjo1  276:    window.location=location;
1.173     banghart  277:    if (window.opener.document.forms["$form"].elements["$element"].value != url) {
                    278:        window.opener.unClean();
                    279:    }
1.35      matthew   280: }
                    281: function select_group() {
1.40      matthew   282:     window.location="$location"+document.forms.fileattr.acts.value;
1.35      matthew   283: }
                    284: 
1.7       harris41  285: function changeURL(val) {
1.35      matthew   286:     if (window.opener.document) {
                    287: 	window.opener.document.forms["$form"].elements["$element"].value=val;
                    288:     } else {
                    289: 	    alert("The file you selected is: "+val);
1.7       harris41  290:     }
                    291: }
                    292: END
1.79      albertel  293:                 if (!$titleelement) {
                    294: 		    $catalogmodefunctions.='function changeTitle(val) {}';
                    295: 		} else {
                    296: 		    $catalogmodefunctions.=<<END;
                    297: function changeTitle(val) {
                    298:     if (window.opener.document) {
                    299: 	    window.opener.document.forms["$form"].elements["$titleelement"].value=val;
                    300:     } else {
                    301: 	    alert("The title of the file you selected is: "+val);
                    302:     }
                    303: }
                    304: END
                    305:                 }
1.39      matthew   306:             } elsif ($mode eq 'parmset') {
1.40      matthew   307:                 my $location = "/adm/groupsort?catalogmode=interactive&";
                    308:                 $location .= "form=$form&element=$element&mode=parmset&acts=";
1.39      matthew   309: 		$catalogmodefunctions=<<END;
                    310: // mode = $mode
1.108     albertel  311: function select_data(url) {
1.39      matthew   312:     changeURL(url);
                    313:     self.close();
                    314: }
                    315: 
                    316: function select_group() {
1.40      matthew   317:     window.location="$location"+document.forms.fileattr.acts.value;
1.39      matthew   318: }
                    319: 
                    320: function changeURL(val) {
                    321:     if (window.opener.document) {
                    322:         var elementname  = "$element"+"_value";
                    323:         var checkboxname = "$element"+"_setparmval";
                    324: 	window.opener.document.forms["$form"].elements[elementname].value=val;
                    325:         window.opener.document.forms["$form"].elements[checkboxname].checked=true;
                    326:     } else {
                    327: 	    alert("The file you selected is: "+val);
                    328:     }
                    329: }
                    330: 
                    331: END
                    332:             }
1.15      harris41  333:         }
1.38      matthew   334:         $catalogmodefunctions.=<<END;
                    335: var acts='';
                    336: function rep_dirpath(suffix,val) {
                    337:     eval("document.forms.dirpath"+suffix+".acts.value=val");
                    338: }
                    339: END
1.145     www       340: 	if ($env{'form.catalogmode'} eq 'import') {
1.38      matthew   341:             $catalogmodefunctions.=<<END;
1.16      harris41  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: 	}
1.17      harris41  356: 
1.170     albertel  357:         my $inhibit_menu = "+'&".&Apache::loncommon::inhibit_menu_check()."'";
1.1       www       358: # ---------------------------------------------------------------- Print Header
1.170     albertel  359:         
1.141     albertel  360: 	my $js = <<"ENDHEADER";
1.19      harris41  361: <script type="text/javascript">
1.7       harris41  362: $catalogmodefunctions
1.163     banghart  363: function checkAll() {
1.160     banghart  364:     var numForms = document.forms.length;
                    365:     for (i=0;i<numForms;i++) {
                    366:         var numElements = document.forms[i].elements.length;
                    367:         for (j=0;j<numElements;j++){
1.163     banghart  368:             var fieldName = document.forms[i].elements[j].name;
                    369:             if (fieldName == 'filelink') {
                    370:                 document.forms[i].elements[j].checked = true;
1.168     banghart  371:                 queue(document.forms[i].name);
1.163     banghart  372:             }
                    373:         }
                    374:     }
                    375: }
                    376: function uncheckAll() {
                    377:     var numForms = document.forms.length;
                    378:     for (i=0;i<numForms;i++) {
                    379:         var numElements = document.forms[i].elements.length;
                    380:         for (j=0;j<numElements;j++){
                    381:             var fieldName = document.forms[i].elements[j].name;
                    382:             if (fieldName == 'filelink') {
                    383:                 document.forms[i].elements[j].checked = false;
1.168     banghart  384:                 queue(document.forms[i].name);
1.160     banghart  385:             }
                    386:         }
                    387:     }
                    388: }
1.69      www       389: function openWindow(url, wdwName, w, h, toolbar,scrollbar,locationbar) {
1.71      ng        390:     var xpos = (screen.width-w)/2;
                    391:     xpos = (xpos < 0) ? '0' : xpos;
                    392:     var ypos = (screen.height-h)/2-30;
                    393:     ypos = (ypos < 0) ? '0' : ypos;
                    394:     var options = "width=" + w + ",height=" + h + ",screenx="+xpos+",screeny="+ypos+",";
1.2       harris41  395:     options += "resizable=yes,scrollbars="+scrollbar+",status=no,";
1.69      www       396:     options += "menubar=no,toolbar="+toolbar+",location="+locationbar+",directories=no";
1.2       harris41  397:     var newWin = window.open(url, wdwName, options);
                    398:     newWin.focus();
                    399: }
1.16      harris41  400: function gothere(val) {
1.170     albertel  401:     window.location=val+'?acts='+document.forms.fileattr.acts.value$inhibit_menu;
1.16      harris41  402: }
1.14      harris41  403: </script>
1.141     albertel  404: ENDHEADER
1.3       harris41  405: 
1.154     albertel  406:         my ($headerdom)=($uri=~m{^/res/($match_domain)/});
1.141     albertel  407: 	$r->print(&Apache::loncommon::start_page('Browse Resources',$js,
                    408: 						 {'domain' => $headerdom,}));
1.23      harris41  409: # ---------------------------------- get state of file attributes to be showing
1.133     albertel  410: 	if ($env{'form.attrs'}) {
1.111     www       411: 	    for (my $i=0; $i<=11; $i++) {
1.6       harris41  412: 		delete $hash{'display_attrs_'.$i};
1.133     albertel  413: 		if ($env{'form.attr'.$i} == 1) {
1.45      ng        414: 		    $attrchk[$i] = 'checked';
1.6       harris41  415: 		    $hash{'display_attrs_'.$i} = 1;
                    416: 		}
                    417: 	    }
                    418: 	} else {
1.111     www       419: 	    for (my $i=0; $i<=11; $i++) {
1.45      ng        420: 		$attrchk[$i] = 'checked' if $hash{'display_attrs_'.$i} == 1;
1.6       harris41  421: 	    }
                    422: 	}
1.87      www       423: 
1.23      harris41  424: # ------------------------------- output state of file attributes to be showing
1.71      ng        425: #                                 All versions has to the last item
                    426: #                                 since it does not take an extra col
1.77      www       427: 	my %lt=&Apache::lonlocal::texthash(
                    428: 					   'ti' => 'Title',
                    429: 					   'si' => 'Size',
                    430: 					   'la' => 'Last access',
                    431: 					   'lm' => 'Last modified',
                    432: 					   'st' => 'Statistics',
                    433: 					   'au' => 'Author',
                    434: 					   'kw' => 'Keywords',
1.78      www       435: 					   'ln' => 'Language',
1.109     taceyjo1  436: 					   'sa' => 'Source Available',
1.77      www       437: 					   'sr' => 'Show resource',
1.111     www       438: 					   'li' => 'Linked/Related Resources',
1.77      www       439: 					   'av' => 'All versions',
1.174   ! banghart  440: 					   'ud' => 'Update Display',
        !           441: 					   'pr' => 'Problems',
        !           442: 					   'gr' => 'Graphics',
        !           443: 					   'at' => 'All types'
1.77      www       444: 					   );
1.15      harris41  445: 	$r->print(<<END);
1.17      harris41  446: <form method="post" name="fileattr" action="$uri"
                    447:  enctype="application/x-www-form-urlencoded">
1.124     matthew   448: <label><input type="checkbox" name="attr9" value="1" $attrchk[9] onClick="this.form.submit();" /> $lt{'av'}</label>
1.115     www       449: <table border="0">
                    450: <tr>
1.124     matthew   451: <td><label><input type="checkbox" name="attr0" value="1" $attrchk[0] onClick="this.form.submit();" /> $lt{'ti'}</label></td>
                    452: <td><label><input type="checkbox" name="attr4" value="1" $attrchk[4] onClick="this.form.submit();" /> $lt{'au'}</label></td>
                    453: <td><label><input type="checkbox" name="attr5" value="1" $attrchk[5] onClick="this.form.submit();" /> $lt{'kw'}</label></td>
                    454: <td><label><input type="checkbox" name="attr6" value="1" $attrchk[6] onClick="this.form.submit();" /> $lt{'ln'}</label></td>
1.115     www       455: </tr>
                    456: <tr>
1.124     matthew   457: <td><label><input type="checkbox" name="attr1" value="1" $attrchk[1] onClick="this.form.submit();" /> $lt{'si'}</label></td>
                    458: <td><label><input type="checkbox" name="attr2" value="1" $attrchk[2] onClick="this.form.submit();" /> $lt{'la'}</label></td>
                    459: <td><label><input type="checkbox" name="attr3" value="1" $attrchk[3] onClick="this.form.submit();" /> $lt{'lm'}</label></td>
                    460: <td><label><input type="checkbox" name="attr10" value="1" $attrchk[10] onClick="this.form.submit();" /> $lt{'sa'}</label></td>
1.115     www       461: </tr>
                    462: <tr>
1.124     matthew   463: <td><label><input type="checkbox" name="attr8" value="1" $attrchk[8] onClick="this.form.submit();" /> $lt{'st'}</label></td>
                    464: <td><label><input type="checkbox" name="attr11" value="1" $attrchk[11] onClick="this.form.submit();" /> $lt{'li'}</label></td>
                    465: <td><label><input type="checkbox" name="attr7" value="1" $attrchk[7] onClick="this.form.submit();" /> $lt{'sr'}</label></td>
1.115     www       466: <td>&nbsp;</td>
                    467: </tr>
                    468: </table>
1.87      www       469: <input type="hidden" name="attrs" value="1" />
1.174   ! banghart  470: <input type="hidden" name="only" value="" />
        !           471: <label><input type="checkbox" name="problem" value="problem" onClick="this.form.only.value += 'problem';this.form.submit();" />$lt{'pr'}</label>
        !           472: <label><input type="checkbox" name="graphic" value="gif,jpg,jpeg" onClick="this.form.only.value += ',gif,jpg,jpg';this.form.submit();" />$lt{'gr'}</label>
        !           473: <label><input type="checkbox" name="all" value="" onClick="this.form.only.value = '';this.form.submit();" />$lt{'at'}</label>
        !           474: 
        !           475: <br />
1.87      www       476: <input type="submit" name="updatedisplay" value="$lt{'ud'}" />
1.16      harris41  477: <input type="hidden" name="acts" value="" />
1.87      www       478: $closebutton $groupimportbutton
1.1       www       479: END
1.170     albertel  480:         $r->print(&Apache::loncommon::inhibit_menu_check('input'));
1.97      www       481: # -------------- Filter out sequence containment in crumbs and "recent folders"
                    482: 	my $storeuri=$uri;
                    483: 	$storeuri='/'.(split(/\.(page|sequence)\/\//,$uri))[-1];
                    484: 	$storeuri=~s/\/+/\//g;
1.82      www       485: # ---------------------------------------------------------------- Bread crumbs
1.97      www       486:         $r->print(&Apache::lonhtmlcommon::crumbs($storeuri,'','',
1.145     www       487: 				(($env{'form.catalogmode'} eq 'import')?
1.87      www       488: 				 'document.forms.fileattr':'')).
                    489: 		  &Apache::lonhtmlcommon::select_recent('residx','resrecent',
1.128     foxr      490: '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();'));
1.100     www       491: # -------------------------------------------------------- Resource Home Button
1.133     albertel  492: 	my $reshome=$env{'course.'.$env{'request.course.id'}.'.reshome'};
1.100     www       493: 	if ($reshome) {
                    494: 	    $r->print("<font size='+2'><a href='");
1.145     www       495: 	    if ($env{'form.catalogmode'} eq 'import') {
1.170     albertel  496: 		$r->print('javascript:document.forms.fileattr.action="'.&Apache::loncommon::inhibit_menu_check($reshome).'";document.forms.fileattr.submit();');
1.100     www       497: 	    } else {
                    498: 		$r->print($reshome);
                    499: 	    }
                    500: 	    $r->print("'>".&mt('Home').'</a></font>');
                    501: 	}
                    502: 	$r->print('</form>');
1.85      www       503: # ------------------------------------------------------ Remember where we were
1.97      www       504: 	&Apache::loncommon::storeresurl($storeuri);
                    505: 	&Apache::lonhtmlcommon::store_recent('residx',$storeuri,$storeuri);
1.163     banghart  506: # -------------------------------------------------- Check All and Uncheck all
1.171     albertel  507: 	if ($env{'form.catalogmode'} eq 'import') {
                    508: 	    $r->print('<br /><input type="button" value="'.&mt("Check All").'" id="checkallbutton" onClick="javascript:checkAll()" />');
                    509: 	    $r->print('<input type="button" value="'.&mt("Uncheck All").'" id="uncheckallbutton" onClick="javascript:uncheckAll()" />');
                    510: 	}
1.23      harris41  511: # ----------------- output starting row to the indexed file/directory hierarchy
1.15      harris41  512:         my $titleclr="#ddffff";
1.129     albertel  513:         #$r->print(&initdebug());
                    514:         #$r->print(&writedebug("Omit:@Omit")) if (@Omit);
                    515:         #$r->print(&writedebug("Only:@Only")) if (@Only);
                    516:         $r->print('<table width="100%" border="0"><tr><td bgcolor="#777777">'."\n");
                    517: 	$r->print('<table width="100%" border="0"><tr bgcolor="'.$titleclr.'">'."\n");
1.77      www       518: 	$r->print("<td $colspan><b>".&mt('Name')."</b></td>\n");
                    519: 	$r->print("<td><b>".&mt('Title')."</b></td>\n") 
1.45      ng        520: 	    if ($hash{'display_attrs_0'} == 1);
1.77      www       521: 	$r->print("<td align=right><b>".&mt("Size")." (".&mt("bytes").") ".
1.45      ng        522: 		  "</b></td>\n") if ($hash{'display_attrs_1'} == 1);
1.77      www       523: 	$r->print("<td><b>".&mt("Last accessed")."</b></td>\n") 
1.17      harris41  524: 	    if ($hash{'display_attrs_2'} == 1);
1.77      www       525: 	$r->print("<td><b>".&mt("Last modified")."</b></td>\n")
1.17      harris41  526: 	    if ($hash{'display_attrs_3'} == 1);
1.77      www       527: 	$r->print("<td><b>".&mt("Author(s)")."</b></td>\n")
1.17      harris41  528: 	    if ($hash{'display_attrs_4'} == 1);
1.77      www       529: 	$r->print("<td><b>".&mt("Keywords")."</b></td>\n")
1.17      harris41  530: 	    if ($hash{'display_attrs_5'} == 1);
1.77      www       531: 	$r->print("<td><b>".&mt("Language")."</b></td>\n")
1.45      ng        532: 	    if ($hash{'display_attrs_6'} == 1);
1.77      www       533: 	$r->print("<td><b>".&mt("Usage Statistics")." <br />(".
1.120     matthew   534: 		  &mt("Courses/Network Hits").")</b> ".&mt('updated periodically')."</td>\n")
1.70      ng        535: 	    if ($hash{'display_attrs_8'} == 1);
1.109     taceyjo1  536: 	$r->print("<td><b>".&mt("Source Available")."</b></td>\n")
                    537: 	    if ($hash{'display_attrs_10'} == 1);
1.111     www       538: 	$r->print("<td><b>".&mt("Linked/Related Resources")."</b></td>\n")
                    539: 	    if ($hash{'display_attrs_11'} == 1);
1.115     www       540: 	$r->print("<td><b>".&mt("Resource")."</b></td>\n")
                    541: 	    if ($hash{'display_attrs_7'} == 1);
1.45      ng        542: 	$r->print('</tr>');
1.5       harris41  543: 
1.23      harris41  544: # ----------------- read in what directories have previously been set to "open"
1.27      harris41  545: 	foreach (keys %hash) {
1.4       harris41  546: 	    if ($_ =~ /^diropen_status_/) {
                    547: 		my $key = $_;
                    548: 		$key =~ s/^diropen_status_//;
                    549: 		$dirs{$key} = $hash{$_};
                    550: 	    }
1.27      harris41  551: 	}
1.4       harris41  552: 
1.133     albertel  553: 	if ($env{'form.openuri'}) {  # take care of review and refresh options
                    554: 	    my $uri=$env{'form.openuri'};
1.4       harris41  555: 	    if (exists($hash{'diropen_status_'.$uri})) {
                    556: 		my $cursta = $hash{'diropen_status_'.$uri};
1.2       harris41  557: 		$dirs{$uri} = 'open';
1.4       harris41  558: 		$hash{'diropen_status_'.$uri} = 'open';
                    559: 		if ($cursta eq 'open') {
                    560: 		    $dirs{$uri} = 'closed';
                    561: 		    $hash{'diropen_status_'.$uri} = 'closed';
                    562: 		}
1.2       harris41  563: 	    } else {
1.4       harris41  564: 		$hash{'diropen_status_'.$uri} = 'open';
1.2       harris41  565: 		$dirs{$uri} = 'open';
                    566: 	    }
                    567: 	}
1.12      ng        568: 	
                    569: 	my $toplevel;
1.13      ng        570: 	my $indent = 0;
1.12      ng        571: 	$uri = $uri.'/' if $uri !~ /.*\/$/;
1.17      harris41  572: 
1.133     albertel  573:  	if ($env{'form.dirPointer'} ne 'on') {
1.88      www       574:  	    $hash{'top.level'} = $uri;
                    575:  	    $toplevel = $uri;
                    576:  	} else {
                    577:  	    $toplevel = $hash{'top.level'};
                    578:  	}
1.17      harris41  579: 
1.23      harris41  580: # -------------------------------- if not at top level, provide an uplink arrow
1.45      ng        581: 	if ($toplevel ne '/res/'){
1.13      ng        582: 	    my (@uri_com) = split(/\//,$uri);
                    583: 	    pop @uri_com;
                    584: 	    my $upone = join('/',@uri_com);
                    585: 	    my @list = qw (0);
                    586: 	    &display_line ($r,'opened',$upone.'&viewOneUp',0,$upone,@list);
                    587: 	    $indent = 1;
1.12      ng        588: 	}
1.17      harris41  589: 
1.23      harris41  590: # -------- recursively go through all the directories and output as appropriate
1.16      harris41  591: 	&scanDir ($r,$toplevel,$indent,\%hash);
1.12      ng        592: 	
1.152     albertel  593: 
                    594: # -------------------------------------------------------------- end the tables
                    595: 	$r->print('</table>');
1.23      harris41  596: # ---------------------------- embed hidden information useful for group import
1.152     albertel  597: 	$r->print("<form name='fnum' action=''>");
1.131     albertel  598: 	$r->print("<input type='hidden' name='fnum' value='$fnum' /></form>");
1.23      harris41  599: # -------------------------------------------------------------- end the tables
1.45      ng        600: 	$r->print('</td></tr></table>');
1.17      harris41  601: 
1.23      harris41  602: # --------------------------------------------------- end the output and return
1.141     albertel  603: 	$r->print(&Apache::loncommon::end_page()."\n");
1.2       harris41  604:     }
1.67      matthew   605:     if(! $c->aborted()) {
1.87      www       606: # write back into the temporary file
1.68      albertel  607: 	my %dbfile;
1.67      matthew   608:         if (tie(%dbfile,'GDBM_File',$diropendb,&GDBM_NEWDB(),0640)) {
                    609:             while (my($key,$value) = each(%hash)) {
                    610:                 $dbfile{$key}=$value;
                    611:             }
                    612:             untie(%dbfile);
                    613:         }
                    614:     }
                    615: 
1.1       www       616:     return OK;
                    617: }
1.2       harris41  618: 
1.17      harris41  619: # ----------------------------------------------- recursive scan of a directory
1.2       harris41  620: sub scanDir {
1.16      harris41  621:     my ($r,$startdir,$indent,$hashref)=@_;
1.67      matthew   622:     my $c = $r->connection();
1.3       harris41  623:     my ($compuri,$curdir);
                    624:     my $dirptr=16384;
1.90      taceyjo1  625:     my $obs;
1.1       www       626:     $indent++;
1.2       harris41  627:     my %dupdirs = %dirs;
                    628:     my @list=&get_list($r,$startdir);
                    629:     foreach my $line (@list) {
1.67      matthew   630:         return if ($c->aborted());
1.90      taceyjo1  631: 	#This is a kludge, sorry aboot this
1.92      taceyjo1  632: 	my ($strip,$dom,undef,$testdir,undef,undef,undef,undef,undef,undef,undef,undef,undef,undef,$obs,undef)=split(/\&/,$line,16); 
1.90      taceyjo1  633: 	next if($strip =~ /.*\.meta$/ | $obs eq '1');
1.18      ng        634: 	my (@fileparts) = split(/\./,$strip);
1.70      ng        635: 	if ($hash{'display_attrs_9'} != 1) {
1.95      www       636: # if not all versions to be shown
1.18      ng        637: 	    if (scalar(@fileparts) >= 3) {
                    638: 		my $fext = pop @fileparts;
                    639: 		my $ov = pop @fileparts;
                    640: 		my $fname = join ('.',@fileparts,$fext);
1.75      albertel  641: 		next if (grep /\Q$fname\E/,@list and $ov =~ /^\d+$/);
1.18      ng        642: 	    }
                    643: 	}
                    644: 
1.45      ng        645: 	if ($dom eq 'domain') {
1.72      albertel  646: 	    # dom list has full path /res/<domain name>/ already
                    647: 	    $curdir='';
1.73      albertel  648: 	    $compuri = (split(/\&/,$line))[0];
1.2       harris41  649: 	} else {
1.17      harris41  650: 	    # user, dir & file have name only, i.e., w/o path
1.45      ng        651: 	    $compuri = join('',$startdir,$strip,'/');
1.3       harris41  652: 	    $curdir = $startdir;
1.2       harris41  653: 	}
1.45      ng        654: 	my $diropen = 'closed';
1.96      www       655: 	if (($dirptr&$testdir) or ($dom =~ /^(domain|user)$/) or ($compuri=~/\.(sequence|page)\/$/)) {
1.3       harris41  656: 	    while (my ($key,$val)= each %dupdirs) {
1.5       harris41  657: 		if ($key eq $compuri and $val eq "open") {
1.11      ng        658: 		    $diropen = "opened";
1.53      albertel  659: 		    delete($dupdirs{$key});
                    660: 		    delete($dirs{$key});
1.5       harris41  661: 		}
1.3       harris41  662: 	    }
1.1       www       663: 	}
1.16      harris41  664: 	&display_line($r,$diropen,$line,$indent,$curdir,$hashref,@list);
1.45      ng        665: 	&scanDir ($r,$compuri,$indent) if $diropen eq 'opened';
1.1       www       666:     }
                    667:     $indent--;
                    668: }
                    669: 
1.17      harris41  670: # --------------- get complete matched list based on the uri (returns an array)
1.1       www       671: sub get_list {
                    672:     my ($r,$uri)=@_;
1.97      www       673:     my @list=();
1.45      ng        674:     (my $luri = $uri) =~ s/\//_/g;
1.133     albertel  675:     if ($env{'form.updatedisplay'}) {
1.27      harris41  676: 	foreach (keys %hash) {
1.4       harris41  677: 	    delete $hash{$_} if ($_ =~ /^dirlist_files_/);
1.121     albertel  678: 	    delete $hash{$_} if ($_ =~ /^dirlist_timestamp_files_/);
1.87      www       679: 	}
1.2       harris41  680:     }
                    681: 
1.121     albertel  682:     if (defined($hash{'dirlist_files_'.$luri}) &&
                    683: 	$hash{'dirlist_timestamp_files_'.$luri}+600 > (time)) {
1.4       harris41  684: 	@list = split(/\n/,$hash{'dirlist_files_'.$luri});
1.97      www       685:     } elsif ($uri=~/\.(page|sequence)\/$/) {
1.94      www       686: # is a page or a sequence
1.97      www       687: 	$uri=~s/\/$//;
                    688: 	$uri='/'.(split(/\.(page|sequence)\/\//,$uri))[-1];
                    689: 	$uri=~s/\/+/\//g;
                    690: 	foreach (&Apache::lonsequence::attemptread(&Apache::lonnet::filelocation('',$uri))) {
                    691: 	    my @ratpart=split(/\:/,$_);
1.156     albertel  692: 	    push(@list,&LONCAPA::map::qtescape($ratpart[1]));
1.97      www       693: 	} 
1.94      www       694: 	$hash{'dirlist_files_'.$luri} = join("\n",@list);
1.1       www       695:     } else {
1.94      www       696: # is really a directory
1.4       harris41  697: 	@list = &Apache::lonnet::dirlist($uri);
1.87      www       698: 	$hash{'dirlist_files_'.$luri} = join("\n",@list);
1.121     albertel  699: 	$hash{'dirlist_timestamp_files_'.$luri} = time;
1.1       www       700:     }
1.156     albertel  701:     return @list=&match_ext($r,@list);    
1.1       www       702: }
                    703: 
1.112     www       704: sub dynmetaread {
                    705:     my $uri=shift;
                    706:     if (($hash{'display_attrs_8'}==1) || ($hash{'display_attrs_11'}==1)) {
1.117     www       707: # We don't want the filename
                    708: 	$uri=~s/\/[^\/]+$//;
                    709: # Did we already see this?
                    710: 	my $builddir=$uri;
                    711: 	while ($builddir) {
                    712: 	    if ($dynread{$builddir}) {
                    713: 		return 0;
                    714: 	    }
                    715: 	    $builddir=~s/\/[^\/]+$//;
                    716: 	}
                    717: # Actually get the data
1.112     www       718: 	%dynhash=
1.143     www       719: 	    (%dynhash,&Apache::lonmeta::get_dynamic_metadata_from_sql($uri.'/'));
1.117     www       720: # Remember that we got it
                    721: 	$dynread{$uri}=1;
1.112     www       722:     } 
                    723: }
                    724: 
1.40      matthew   725: sub initdebug {
1.141     albertel  726:     my $start_page=
                    727: 	&Apache::loncommon::start_page('Debug',undef,
                    728: 				       {'only_body' => 1,});
                    729:     $start_page =~ s/\n/ /g;
1.40      matthew   730:     return <<ENDJS;
1.141     albertel  731: <script type="text/javascript">
1.40      matthew   732: var debugging = true;
                    733: if (debugging) {
                    734:     var debuggingWindow = window.open('','Debug','width=400,height=300',true);
                    735: } 
                    736: 
                    737: function output(text) {
                    738:     if (debugging) {
                    739:         debuggingWindow.document.writeln(text);
                    740:     }
                    741: }
1.141     albertel  742: output('$start_page<pre>');   
1.40      matthew   743: </script>
                    744: ENDJS
                    745: }
                    746: 
                    747: sub writedebug {
1.141     albertel  748:     my ($text) = @_;
                    749:     return "<script type=\"text/javascript\">output('$text');</script>";
1.40      matthew   750: }
                    751: 
1.17      harris41  752: # -------------------- filters out files based on extensions (returns an array)
1.1       www       753: sub match_ext {
                    754:     my ($r,@packlist)=@_;
                    755:     my @trimlist;
                    756:     my $nextline;
                    757:     my @fileext;
                    758:     my $dirptr=16384;
                    759: 
1.2       harris41  760:     foreach my $line (@packlist) {
                    761: 	chomp $line;
                    762: 	$line =~ s/^\/home\/httpd\/html//;
                    763: 	my @unpackline = split (/\&/,$line);
1.45      ng        764: 	next if ($unpackline[0] eq '.');
                    765: 	next if ($unpackline[0] eq '..');
1.2       harris41  766: 	my @filecom = split (/\./,$unpackline[0]);
                    767: 	my $fext = pop(@filecom);
1.96      www       768: 	my $fnptr = ($unpackline[3]&$dirptr) || ($fext=~/\.(page|sequence)$/);
1.2       harris41  769:  	if ($fnptr == 0 and $unpackline[3] ne "") {
1.28      harris41  770: 	    my $embstyle = &Apache::loncommon::fileembstyle($fext);
1.25      matthew   771:             push @trimlist,$line if (defined($embstyle) && 
1.32      harris41  772: 				     ($embstyle ne 'hdn' or $fext eq 'meta'));
1.1       www       773: 	} else {
1.2       harris41  774: 	    push @trimlist,$line;
1.1       www       775: 	}
                    776:     }
1.80      albertel  777:     @trimlist = sort {uc($a) cmp uc($b)} (@trimlist);
1.1       www       778:     return @trimlist;
                    779: }
                    780: 
1.17      harris41  781: # ------------------------------- displays one line in appropriate table format
1.23      harris41  782: sub display_line {
1.16      harris41  783:     my ($r,$diropen,$line,$indent,$startdir,$hashref,@list)=@_;
1.53      albertel  784:     my (@pathfn, $fndir);
1.97      www       785: # there could be relative paths (files actually belonging into this directory)
                    786: # or absolute paths (for example, from sequences)
                    787:     my $absolute;
                    788:     my $pathprefix;
1.107     albertel  789:     if ($line=~m|^/res/| && $startdir ne '') {
1.97      www       790: 	$absolute=1;
                    791: 	$pathprefix='';
                    792:     } else {
                    793: 	$absolute=0;
                    794: 	$pathprefix=$startdir;
                    795:     }
1.1       www       796:     my $dirptr=16384;
                    797:     my $fileclr="#ffffe6";
1.45      ng        798:     my $iconpath= $r->dir_config('lonIconsURL') . '/';
1.1       www       799: 
                    800:     my @filecom = split (/\&/,$line);
                    801:     my @pathcom = split (/\//,$filecom[0]);
                    802:     my $listname = $pathcom[scalar(@pathcom)-1];
                    803:     my $fnptr = $filecom[3]&$dirptr;
1.77      www       804:     my $msg = &mt('View').' '.$filecom[0].' '.&mt('resources');
                    805:     $msg = &mt('Close').' '.$filecom[0].' '.&mt('directory') if $diropen eq 'opened';
1.1       www       806: 
1.45      ng        807:     my $tabtag='</td>';
1.1       www       808:     my $i=0;
1.109     taceyjo1  809:     while ($i<=11) {
1.45      ng        810: 	$tabtag=join('',$tabtag,"<td>&nbsp;</td>")
1.155     albertel  811: 	    if ($i != 9 &&
                    812: 		$hash{'display_attrs_'.$i} == 1);
1.1       www       813: 	$i++;
                    814:     }
1.63      ng        815:     my $valign = ($hash{'display_attrs_7'} == 1 ? 'top' : 'bottom');
1.17      harris41  816: 
                    817: # display uplink arrow
1.45      ng        818:     if ($filecom[1] eq 'viewOneUp') {
1.98      www       819: 	my $updir=$startdir;
                    820: # -------------- Filter out sequence containment in crumbs and "recent folders"
                    821: 	$updir='/'.(split(/\.(page|sequence)\/\//,$startdir))[-1];
                    822: 	$updir=~s/\/+/\//g;
                    823: 
1.159     banghart  824: 	$r->print("<tr valign='$valign' bgcolor=\"$fileclr\">$extrafield");
1.70      ng        825: 	$r->print("<td>\n");
1.98      www       826: 	$r->print ('<form method="post" name="dirpathUP" action="'.$updir.
1.16      harris41  827: 		   '/" '.
1.17      harris41  828: 		   'onSubmit="return rep_dirpath(\'UP\','.
                    829: 		   'document.forms.fileattr.acts.value)" '.
1.16      harris41  830: 		   'enctype="application/x-www-form-urlencoded"'.
                    831:                    '>'."\n");
1.170     albertel  832: 	$r->print(&Apache::loncommon::inhibit_menu_check('input'));
1.17      harris41  833: 	$r->print ('<input type=hidden name=openuri value="'.
1.131     albertel  834: 		   $startdir.'" />'."\n");
                    835: 	$r->print ('<input type="hidden" name="acts" value="" />'."\n");
1.13      ng        836: 	$r->print ('<input src="'.$iconpath.'arrow_up.gif"');
1.162     albertel  837: 	$r->print (' name="'.$msg.'" type="image" class="LC_indexer_icon" />'.
1.17      harris41  838: 		   "\n");
1.135     www       839: 	$r->print(&mt("Up")."</form>$tabtag</tr>\n");
1.13      ng        840: 	return OK;
                    841:     }
1.97      www       842: # Do we have permission to look at this?
                    843: 
                    844:     if($filecom[15] ne '1') { return OK if (!&Apache::lonnet::allowed('bre',$pathprefix.$filecom[0])); }
                    845: 
                    846: # make absolute links appear on different background
1.112     www       847:     if ($absolute) { $fileclr='#ccdd99'; }
1.17      harris41  848: 
                    849: # display domain
1.45      ng        850:     if ($filecom[1] eq 'domain') {
1.131     albertel  851:  	$r->print ('<input type="hidden" name="dirPointer" value="on" />'."\n")
1.133     albertel  852:  	    if ($env{'form.dirPointer'} eq "on");
1.159     banghart  853: 	$r->print("<tr valign='$valign' bgcolor=\"$fileclr\">$extrafield");
1.70      ng        854: 	$r->print("<td>");
1.73      albertel  855: 	&begin_form ($r,$filecom[0]);
                    856: 	my $anchor = $filecom[0];
1.162     albertel  857: 	$anchor =~ s/\W//g;
1.152     albertel  858: 	$r->print ('<a name="'.$anchor.'"></a>');
1.131     albertel  859: 	$r->print ('<input type="hidden" name="acts" value="" />');
1.17      harris41  860: 	$r->print ('<input src="'.$iconpath.'folder_pointer_'.
                    861: 		   $diropen.'.gif"'); 
1.162     albertel  862: 	$r->print (' name="'.$msg.'" type="image" class="LC_indexer_icon" />'.
1.17      harris41  863: 		   "\n");
1.128     foxr      864: 	my $quotable_filecom = &Apache::loncommon::escape_single($filecom[0]);
1.125     foxr      865: 	$r->print ('<a href="javascript:gothere(\''.$quotable_filecom.
1.152     albertel  866: 		   '\')"><img alt="" src="'.$iconpath.'server.gif"');
1.162     albertel  867: 	$r->print (' class="LC_icon" /></a>'."\n");
1.77      www       868: 	$r->print (&mt("Domain")." - $listname ");
1.158     albertel  869: 	if (&Apache::lonnet::domain($listname,'description')) {
                    870: 	    $r->print("(".&Apache::lonnet::domain($listname,'description').
1.60      albertel  871: 		      ")");
                    872: 	}
1.135     www       873: 	$r->print ("</form>$tabtag</tr>\n");
1.1       www       874: 	return OK;
1.17      harris41  875: 
                    876: # display user directory
1.1       www       877:     }
1.45      ng        878:     if ($filecom[1] eq 'user') {
1.160     banghart  879: 	# $r->print("<tr valign=$valign bgcolor=\"$fileclr\">$extrafield");
1.2       harris41  880: 	my $curdir = $startdir.$filecom[0].'/';
1.3       harris41  881: 	my $anchor = $curdir;
1.162     albertel  882: 	$anchor =~ s/\W//g;
1.163     banghart  883: 	$r->print("<tr bgcolor=\"$fileclr\">$extrafield<td valign=$valign>");
1.13      ng        884: 	&begin_form ($r,$curdir);
1.152     albertel  885: 	$r->print ('<a name="'.$anchor.'"></a><img alt="" src="'.$iconpath.
1.162     albertel  886: 		   'whitespace1.gif" class="LC_icon" />'."\n");
1.131     albertel  887: 	$r->print ('<input type="hidden" name="acts" value="" />');
1.17      harris41  888: 	$r->print ('<input src="'.$iconpath.'folder_pointer_'.$diropen.
                    889: 		   '.gif"'); 
1.162     albertel  890: 	$r->print (' name="'.$msg.'" type="image" class="LC_indexer_icon" />'.
1.17      harris41  891: 		   "\n");
1.128     foxr      892: 	my $quotable_curdir = &Apache::loncommon::escape_single($curdir);
1.125     foxr      893: 	$r->print ('<a href="javascript:gothere(\''.$quotable_curdir
1.162     albertel  894: 		   .'\')"><img alt="'.$msg.'" src="'.
                    895: 		   $iconpath.'quill.gif" class="LC_indexer_icon" /></a>');
1.60      albertel  896: 	my $domain=(split(m|/|,$startdir))[2];
                    897: 	my $plainname=&Apache::loncommon::plainname($listname,$domain);
                    898: 	$r->print ($listname);
                    899: 	if (defined($plainname) && $plainname) { $r->print(" ($plainname) "); }
1.131     albertel  900: 	$r->print ('</form>'.$tabtag.'</tr>'."\n");
1.1       www       901: 	return OK;
                    902:     }
1.17      harris41  903: 
1.1       www       904: # display file
1.97      www       905:     if (($fnptr == 0 and $filecom[3] ne '') or $absolute) {
1.166     banghart  906:         my $title;
1.97      www       907: 	my $filelink = $pathprefix.$filecom[0];
1.166     banghart  908: 	if ($hash{'display_attrs_0'} == 1) {
1.169     albertel  909: 	    $title = &Apache::lonnet::gettitle($filelink);
1.166     banghart  910: 	}
1.1       www       911: 	my @file_ext = split (/\./,$listname);
1.25      matthew   912: 	my $curfext = $file_ext[-1];
1.40      matthew   913:         if (@Omit) {
                    914:             foreach (@Omit) { return OK if ($curfext eq $_); }
                    915:         }
                    916:         if (@Only) {
                    917:             my $skip = 1;
                    918:             foreach (@Only) { $skip = 0 if ($curfext eq $_); }
                    919:             return OK if ($skip > 0);
                    920:         }
1.25      matthew   921: 	# Set the icon for the file
1.84      albertel  922: 	my $iconname = &Apache::loncommon::icon($listname);
1.159     banghart  923: 	$r->print("<tr valign='$valign' bgcolor=\"$fileclr\"><td nowrap='nowrap' valign='top'>");
1.104     albertel  924: 	
1.133     albertel  925:         if ($env{'form.catalogmode'} eq 'interactive') {
1.128     foxr      926: 	    my $quotable_filelink = &Apache::loncommon::escape_single($filelink);
1.35      matthew   927:             $r->print("<a href=\"javascript:select_data(\'",
1.125     foxr      928:                       $quotable_filelink,"')\">");
1.162     albertel  929: 	    $r->print("<img alt=\"\" src='",$iconpath,"select.gif' class='LC_icon' /></a>".
1.17      harris41  930: 		      "\n");
1.153     albertel  931: 	    $r->print("</td><td nowrap='nowrap' valign='top'>");
1.145     www       932: 	} elsif ($env{'form.catalogmode'} eq 'import') {
1.152     albertel  933: 	    $r->print("<form name='form$fnum' action=''>\n");
1.8       harris41  934: 	    $r->print("<input type='checkbox' name='filelink"."' ".
1.16      harris41  935: 		      "value='$filelink' onClick='".
                    936: 		      "javascript:queue(\"form$fnum\")' ");
                    937: 	    if ($hash{'store_'.$filelink}) {
                    938: 		$r->print("checked");
                    939: 	    }
1.131     albertel  940: 	    $r->print(" />\n");
1.153     albertel  941: 	    $r->print("</form></td><td nowrap='nowrap' valign='top'>");
1.16      harris41  942: 	    $hash{"pre_${fnum}_link"}=$filelink;
1.166     banghart  943: 	    $hash{"pre_${fnum}_title"}=$title;
1.165     banghart  944: 	    if (!$hash{"pre_${fnum}_title"}) {
1.167     banghart  945: 	        $hash{"pre_${fnum}_title"} = 'Not_retrieved';
1.165     banghart  946: 	    }
1.8       harris41  947:   	    $fnum++;
1.7       harris41  948: 	}
1.95      www       949: # Form to open or close sequences
                    950: 	if ($filelink=~/\.(page|sequence)$/) {
                    951: 	    my $curdir = $startdir.$filecom[0].'/';
                    952: 	    &begin_form($r,$curdir);
                    953: 	    $indent--;
                    954: 	}
                    955: # General indentation
1.12      ng        956: 	if ($indent > 0 and $indent < 11) {
1.162     albertel  957: 	    $r->print("<img alt=\"\" src='",$iconpath,"whitespace",$indent,
                    958: 		      ".gif' class='LC_icon' />\n");
1.11      ng        959: 	} elsif ($indent >0) {
1.4       harris41  960: 	    my $ten = int($indent/10.);
                    961: 	    my $rem = $indent%10.0;
                    962: 	    my $count = 0;
                    963: 	    while ($count < $ten) {
1.162     albertel  964: 		$r->print("<img alt=\"\" src=".$iconpath.
                    965: 			  "whitespace10.gif class='LC_icon' />\n");
1.1       www       966: 	    $count++;
1.4       harris41  967: 	    }
1.152     albertel  968: 	    $r->print("<img alt=\"\" src=",$iconpath,"whitespace",$rem,
1.162     albertel  969: 		      ".gif class='LC_icon' />\n") if $rem > 0;
1.1       www       970: 	}
1.95      www       971: # Sequence open/close icon
                    972: 	if ($filelink=~/\.(page|sequence)$/) {
                    973: 	    my $curdir = $startdir.$filecom[0].'/';
                    974: 	    my $anchor = $curdir;
1.162     albertel  975: 	    $anchor =~ s/\W//g;
1.131     albertel  976: 	    $r->print ('<input type="hidden" name="acts" value="" />');
1.152     albertel  977: 	    $r->print ('<a name="'.$anchor.'"></a><input src="'.$iconpath.
1.95      www       978: 		       'folder_pointer_'.$diropen.'.gif"');
1.162     albertel  979: 	    $r->print (' name="'.$msg.'" type="image" class="LC_indexer_icon" />'.
1.95      www       980: 		       "\n");
                    981: 	}
                    982: # Filetype icons
1.162     albertel  983: 	$r->print("<img alt=\"\" src='$iconname' class='LC_icon' />\n");
1.128     foxr      984: 	my $quotable_filelink = &Apache::loncommon::escape_single($filelink);
1.125     foxr      985: 
                    986: 	$r->print (" <a href=\"javascript:openWindow('".$quotable_filelink.
1.170     albertel  987: 		   "?inhibitmenu=yes','previewfile','450','500','no','yes','yes');\"".
1.152     albertel  988: 		   " target=\"_self\">$listname</a> ");
1.170     albertel  989: 	$quotable_filelink = &Apache::loncommon::escape_single($filelink.'.meta');
                    990: 	&Apache::loncommon::inhibit_menu_check(\$quotable_filelink);
1.125     foxr      991: 	$r->print (" (<a href=\"javascript:openWindow('".$quotable_filelink.
1.170     albertel  992: 		   "?inhibitmenu=yes','metadatafile','500','550','no','yes','no');\" ".
1.152     albertel  993: 		   " target=\"_self\">metadata</a>) ");
1.134     www       994: # Close form to open/close sequence
                    995: 	if ($filelink=~/\.(page|sequence)$/) {
                    996: 	    $r->print('</form>');
                    997: 	}
1.7       harris41  998: 	$r->print("</td>\n");
1.45      ng        999: 	if ($hash{'display_attrs_0'} == 1) {
1.70      ng       1000: 	    $r->print('<td> '.($title eq '' ? '&nbsp;' : $title).
1.45      ng       1001: 		      ' </td>'."\n");
                   1002: 	}
1.70      ng       1003: 	$r->print('<td align=right> ',
1.17      harris41 1004: 		  $filecom[8]," </td>\n") 
1.45      ng       1005: 	    if $hash{'display_attrs_1'} == 1;
1.70      ng       1006: 	$r->print('<td> '.
1.17      harris41 1007: 		  (localtime($filecom[9]))." </td>\n") 
1.45      ng       1008: 	    if $hash{'display_attrs_2'} == 1;
1.70      ng       1009: 	$r->print('<td> '.
1.17      harris41 1010: 		  (localtime($filecom[10]))." </td>\n") 
1.45      ng       1011: 	    if $hash{'display_attrs_3'} == 1;
1.2       harris41 1012: 
1.45      ng       1013: 	if ($hash{'display_attrs_4'} == 1) {
1.104     albertel 1014: 	    my $author = &Apache::lonnet::metadata($filelink,'author');
1.70      ng       1015: 	    $r->print('<td> '.($author eq '' ? '&nbsp;' : $author).
1.17      harris41 1016: 		      " </td>\n");
1.2       harris41 1017: 	}
1.45      ng       1018: 	if ($hash{'display_attrs_5'} == 1) {
1.104     albertel 1019: 	    my $keywords = &Apache::lonnet::metadata($filelink,'keywords');
1.45      ng       1020: 	    # $keywords = '&nbsp;' if (!$keywords);
1.70      ng       1021: 	    $r->print('<td> '.($keywords eq '' ? '&nbsp;' : $keywords).
1.17      harris41 1022: 		      " </td>\n");
1.2       harris41 1023: 	}
1.109     taceyjo1 1024: #'
                   1025: 
1.45      ng       1026: 	if ($hash{'display_attrs_6'} == 1) {
1.104     albertel 1027: 	    my $lang = &Apache::lonnet::metadata($filelink,'language');
1.28      harris41 1028: 	    $lang = &Apache::loncommon::languagedescription($lang);
1.70      ng       1029: 	    $r->print('<td> '.($lang eq '' ? '&nbsp;' : $lang).
1.17      harris41 1030: 		      " </td>\n");
1.2       harris41 1031: 	}
1.70      ng       1032: 	if ($hash{'display_attrs_8'} == 1) {
1.111     www      1033: # statistics
1.117     www      1034: 	    &dynmetaread($filelink);
1.112     www      1035: 	    $r->print("<td>");
1.114     www      1036: 	    &dynmetaprint($r,$filelink,'count');
                   1037: 	    &dynmetaprint($r,$filelink,'course');
                   1038: 	    &dynmetaprint($r,$filelink,'stdno');
                   1039: 	    &dynmetaprint($r,$filelink,'avetries');
                   1040: 	    &dynmetaprint($r,$filelink,'difficulty');
                   1041: 	    &dynmetaprint($r,$filelink,'disc');
                   1042: 	    &dynmetaprint($r,$filelink,'clear');
                   1043: 	    &dynmetaprint($r,$filelink,'technical');
                   1044: 	    &dynmetaprint($r,$filelink,'correct');
                   1045: 	    &dynmetaprint($r,$filelink,'helpful');
                   1046: 	    &dynmetaprint($r,$filelink,'depth');
1.112     www      1047: 	    $r->print("&nbsp;</td>\n");
1.111     www      1048: 
1.70      ng       1049: 	}
1.109     taceyjo1 1050: 	if ($hash{'display_attrs_10'} == 1) {
                   1051: 	    my $source = &Apache::lonnet::metadata($filelink,'sourceavail');
1.110     albertel 1052: 	    if($source eq 'open') {
1.119     taceyjo1 1053: 		my $sourcelink = &Apache::lonsource::make_link($filelink,$listname);
1.128     foxr     1054: 		my $quotable_sourcelink = &Apache::loncommon::escape_single($sourcelink);
1.170     albertel 1055: 		&Apache::loncommon::inhibit_menu_check(\$quotable_sourcelink);
1.125     foxr     1056: 		$r->print('<td>'."<a href=\"javascript:openWindow('"
                   1057: 			  .$quotable_sourcelink.
1.152     albertel 1058: 			  "', 'previewsource', '700', '700', 'no', 'yes','yes');\"".
                   1059: 			  " target=\"_self\">Yes</a> "."</td>\n");
1.110     albertel 1060: 	    } else { #A cuddled else. :P
1.111     www      1061: 		$r->print("<td>&nbsp;</td>\n");
1.110     albertel 1062: 	    }
1.109     taceyjo1 1063: 	}
1.111     www      1064: 	if ($hash{'display_attrs_11'} == 1) {
                   1065: # links
1.117     www      1066: 	   &dynmetaread($filelink);
1.113     www      1067: 	   $r->print('<td>');
1.148     www      1068: 	   &coursecontext($r,$filelink);
1.113     www      1069: 	   &dynmetaprint($r,$filelink,'goto_list');
                   1070: 	   &dynmetaprint($r,$filelink,'comefrom_list');
                   1071: 	   &dynmetaprint($r,$filelink,'sequsage_list');
1.114     www      1072: 	   &dynmetaprint($r,$filelink,'dependencies');
1.139     www      1073:            &dynmetaprint($r,$filelink,'course_list');
1.113     www      1074: 	   $r->print('</td>');
1.114     www      1075:         }
1.115     www      1076:         if ($hash{'display_attrs_7'} == 1) {
                   1077: # Show resource
1.140     www      1078: 	   my $output=&showpreview($filelink);
                   1079:            $r->print('<td> '.($output eq '' ? '&nbsp;':$output).
1.115     www      1080: 		      " </td>\n");
                   1081:         }
1.1       www      1082: 	$r->print("</tr>\n");
                   1083:     }
1.17      harris41 1084: 
1.2       harris41 1085: # -- display directory
1.1       www      1086:     if ($fnptr == $dirptr) {
1.2       harris41 1087: 	my $curdir = $startdir.$filecom[0].'/';
1.3       harris41 1088: 	my $anchor = $curdir;
1.162     albertel 1089: 	$anchor =~ s/\W//g;
1.159     banghart 1090: 	$r->print("<tr bgcolor=\"$fileclr\">$extrafield<td valign=$valign>");
1.2       harris41 1091: 	&begin_form ($r,$curdir);
1.4       harris41 1092: 	my $indentm1 = $indent-1;
1.11      ng       1093: 	if ($indentm1 < 11 and $indentm1 > 0) {
1.152     albertel 1094: 	    $r->print("<img alt=\"\" src=",$iconpath,"whitespace",$indentm1,
1.162     albertel 1095: 		      ".gif class='LC_icon' />\n");
1.4       harris41 1096: 	} else {
                   1097: 	    my $ten = int($indentm1/10.);
                   1098: 	    my $rem = $indentm1%10.0;
                   1099: 	    my $count = 0;
                   1100: 	    while ($count < $ten) {
1.152     albertel 1101: 		$r->print ("<img alt=\"\" src=",$iconpath
1.162     albertel 1102: 			   ,"whitespace10.gif class='LC_icon' />\n");
1.12      ng       1103: 		$count++;
1.4       harris41 1104: 	    }
1.152     albertel 1105: 	    $r->print ("<img alt=\"\" src=",$iconpath,"whitespace",$rem,
1.162     albertel 1106: 		       ".gif class='LC_icon' />\n") if $rem > 0;
1.1       www      1107: 	}
1.131     albertel 1108: 	$r->print ('<input type="hidden" name="acts" value="" />');
1.152     albertel 1109: 	$r->print ('<a name="'.$anchor.'"></a><input src="'.$iconpath.
1.17      harris41 1110: 		   'folder_pointer_'.$diropen.'.gif"');
1.162     albertel 1111: 	$r->print (' name="'.$msg.'" type="image" class="LC_indexer_icon" />'.
1.17      harris41 1112: 		   "\n");
1.128     foxr     1113: 	my $quotable_curdir = &Apache::loncommon::escape_single($curdir);
1.125     foxr     1114: 	$r->print ('<a href="javascript:gothere(\''
1.152     albertel 1115: 		   .$quotable_curdir.'\')">'
                   1116: 		   .'<img alt="'.&mt('Open Folder').'"src="'.
1.162     albertel 1117: 		   $iconpath.'folder_'.$diropen.'.gif" class="LC_icon" /></a>'.
1.17      harris41 1118: 		   "\n");
1.152     albertel 1119: 	$r->print ("$listname</form></td>\n");
1.86      www      1120: # Attributes
                   1121: 	my $filelink = $startdir.$filecom[0].'/default';
                   1122: 
                   1123: 	if ($hash{'display_attrs_0'} == 1) {
1.169     albertel 1124: 	    my $title = &Apache::lonnet::gettitle($filelink);
1.86      www      1125: 	    $r->print('<td> '.($title eq '' ? '&nbsp;' : $title).
                   1126: 		      ' </td>'."\n");
                   1127: 	}
                   1128: 	$r->print('<td align=right> ',
                   1129: 		  $filecom[8]," </td>\n") 
                   1130: 	    if $hash{'display_attrs_1'} == 1;
                   1131: 	$r->print('<td> '.
                   1132: 		  (localtime($filecom[9]))." </td>\n") 
                   1133: 	    if $hash{'display_attrs_2'} == 1;
                   1134: 	$r->print('<td> '.
                   1135: 		  (localtime($filecom[10]))." </td>\n") 
                   1136: 	    if $hash{'display_attrs_3'} == 1;
                   1137: 
                   1138: 	if ($hash{'display_attrs_4'} == 1) {
                   1139: 	    my $author = &Apache::lonnet::metadata($filelink,'author');
                   1140: 	    $r->print('<td> '.($author eq '' ? '&nbsp;' : $author).
                   1141: 		      " </td>\n");
                   1142: 	}
                   1143: 	if ($hash{'display_attrs_5'} == 1) {
                   1144: 	    my $keywords = &Apache::lonnet::metadata($filelink,'keywords');
                   1145: 	    # $keywords = '&nbsp;' if (!$keywords);
                   1146: 	    $r->print('<td> '.($keywords eq '' ? '&nbsp;' : $keywords).
                   1147: 		      " </td>\n");
                   1148: 	}
                   1149: 	if ($hash{'display_attrs_6'} == 1) {
                   1150: 	    my $lang = &Apache::lonnet::metadata($filelink,'language');
                   1151: 	    $lang = &Apache::loncommon::languagedescription($lang);
                   1152: 	    $r->print('<td> '.($lang eq '' ? '&nbsp;' : $lang).
                   1153: 		      " </td>\n");
                   1154: 	}
                   1155: 	if ($hash{'display_attrs_8'} == 1) {
                   1156: 	   $r->print('<td>&nbsp;</td>');
                   1157: 	}
1.115     www      1158:  	if ($hash{'display_attrs_10'} == 1) {
1.109     taceyjo1 1159: 	   $r->print('<td>&nbsp;</td>');
                   1160: 	}
1.111     www      1161: 	if ($hash{'display_attrs_11'} == 1) {
                   1162: 	   $r->print('<td>&nbsp;</td>');
                   1163: 	}
1.115     www      1164: 	if ($hash{'display_attrs_7'} == 1) {
                   1165: 	   $r->print('<td>&nbsp;</td>');
                   1166:         }
1.152     albertel 1167: 	$r->print('</tr>');
1.1       www      1168:     }
1.2       harris41 1169: 
1.1       www      1170: }
                   1171: 
1.148     www      1172: sub coursecontext {
                   1173:     my ($r,$filelink)=@_;
                   1174:     my $filesymb=&Apache::lonnet::symbread($filelink);
                   1175:     if ($filesymb) {
                   1176: 	my ($map,$index,$resource)=&Apache::lonnet::decode_symb($filesymb);
                   1177: 	$r->print(&mt('Already in this course:<br />[_1] in folder/map [_2].<br />',
                   1178: 	      &Apache::lonnet::gettitle($resource),
                   1179: 	      &Apache::lonnet::gettitle($map)));
                   1180:     }
                   1181: }
                   1182: 
1.140     www      1183: sub showpreview {
                   1184:     my ($filelink)=@_;
1.151     albertel 1185:     if ($filelink=~m-^(/ext/|http://)-) {
1.150     www      1186: 	return &mt('External Resource, preview not enabled');
                   1187:     }
1.140     www      1188:     my ($curfext)=($filelink=~/\.(\w+)$/);
                   1189:     my $output='';
                   1190:     my $embstyle=&Apache::loncommon::fileembstyle($curfext);
                   1191:     if ($embstyle eq 'ssi') {
                   1192:        my $cache=$Apache::lonnet::perlvar{'lonDocRoot'}.$filelink.
                   1193:                     '.tmp';
                   1194:        if ((!$env{'form.updatedisplay'}) &&
                   1195:                     (-e $cache)) {
                   1196:           open(FH,$cache);
                   1197:           $output=join("\n",<FH>);
                   1198:           close(FH);
                   1199:        } else {
1.147     www      1200: # In update display mode, remove old cache. This is done to retroactively
                   1201: # clean up course context renderings.
                   1202: 	  if (-e $cache) {
                   1203: 	       unlink($cache);
                   1204: 	  }
1.140     www      1205:           $output=&Apache::lonnet::ssi_body($filelink);
1.146     www      1206: # Is access denied? Don't render, don't store
1.140     www      1207:           if ($output=~/LONCAPAACCESSCONTROLERRORSCREEN/s) {
                   1208:              $output='';
1.146     www      1209: # Was this rendered in course content? Don't store
                   1210:           } elsif (!&Apache::lonnet::symbread($filelink)) {
1.140     www      1211:              open(FH,">$cache");
                   1212:              print FH $output;
                   1213:              close(FH);
                   1214:           }
                   1215:        }
                   1216:        $output='<font size="-2">'.$output.'</font>';
                   1217:     } elsif ($embstyle eq 'img') {
1.152     albertel 1218:        $output='<img alt="'.&mt('Preview').'" src="'.$filelink.'" />';
1.154     albertel 1219:     } elsif ($filelink=~m{^/res/($match_domain)/($match_username)/}) {
1.152     albertel 1220:        $output='<img  alt="'.&mt('Preview').'" src="http://'.
1.157     albertel 1221:                  &Apache::lonnet::hostname(&Apache::lonnet::homeserver($2,$1)).
1.140     www      1222:                  '/cgi-bin/thumbnail.gif?url='.$filelink.'" />';
                   1223:     }
                   1224:     return $output;
                   1225: }
                   1226: 
1.113     www      1227: sub dynmetaprint {
                   1228:     my ($r,$filelink,$item)=@_;
                   1229:     if ($dynhash{$filelink}->{$item}) {
1.114     www      1230: 	$r->print("\n<br />".$fieldnames{$item}.': '.
1.113     www      1231: 		  &Apache::lonmeta::prettyprint($item,
                   1232: 						$dynhash{$filelink}->{$item},
1.145     www      1233: 		  (($env{'form.catalogmode'} ne 'import')?'preview':''),
1.113     www      1234: 		  '',
1.145     www      1235: 		  (($env{'form.catalogmode'} eq 'import')?'document.forms.fileattr':''),1));
1.113     www      1236:     }
                   1237: }
                   1238: 
1.14      harris41 1239: # ------------------- prints the beginning of a form for directory or file link
1.1       www      1240: sub begin_form {
                   1241:     my ($r,$uri) = @_;
1.3       harris41 1242:     my $anchor = $uri;
1.162     albertel 1243:     $anchor =~ s/\W//g;
                   1244:     $uri=&Apache::loncommon::escape_single($uri);
1.17      harris41 1245:     $r->print ('<form method="post" name="dirpath'.$dnum.'" action="'.$uri.
                   1246: 	       '#'.$anchor.
                   1247: 	       '" onSubmit="return rep_dirpath(\''.$dnum.'\''.
                   1248: 	       ',document.forms.fileattr.acts.value)" '.
1.16      harris41 1249: 	       'enctype="application/x-www-form-urlencoded">'."\n");
1.131     albertel 1250:     $r->print ('<input type="hidden" name="openuri" value="'.$uri.'" />'.
1.17      harris41 1251: 	       "\n");
1.131     albertel 1252:     $r->print ('<input type="hidden" name="dirPointer" value="on" />'."\n");
1.170     albertel 1253:     $r->print(&Apache::loncommon::inhibit_menu_check('input'));
1.16      harris41 1254:     $dnum++;
1.17      harris41 1255: }
                   1256: 
                   1257: # --------- settings whenever the user causes the indexer window to be launched
                   1258: sub start_fresh_session {
1.149     albertel 1259:     my ($hash) = @_;
                   1260:     delete $hash->{'form.catalogmode'};
                   1261:     delete $hash->{'form.mode'};
                   1262:     delete $hash->{'form.form'};
                   1263:     delete $hash->{'form.element'};
                   1264:     delete $hash->{'form.omit'};
                   1265:     delete $hash->{'form.only'};
                   1266:     foreach (keys %{$hash}) {
                   1267:         delete $hash->{$_} if (/^(pre_|store)/);
1.27      harris41 1268:     }
1.1       www      1269: }
                   1270: 
1.35      matthew  1271: # ------------------------------------------------------------------- setvalues
                   1272: sub setvalues {
                   1273:     # setvalues is used in registerurl to synchronize the database
                   1274:     # hash and environment hashes
                   1275:     my ($H1,$h1key,$H2,$h2key) =@_;
                   1276:     #
                   1277:     if (exists $H2->{$h2key}) {
                   1278: 	$H1->{$h1key} = $H2->{$h2key};
                   1279:     } elsif (exists $H1->{$h1key}) {
                   1280: 	$H2->{$h2key} = $H1->{$h1key};
                   1281:     } 
                   1282: }
                   1283: 
1.1       www      1284: 1;
1.54      www      1285: 
                   1286: sub cleanup {
1.55      www      1287:     if (tied(%hash)){
                   1288: 	&Apache::lonnet::logthis('Cleanup indexer: hash');
                   1289:     }
1.138     albertel 1290:     return OK;
1.54      www      1291: }
1.23      harris41 1292: 
1.126     foxr     1293: 
                   1294: 
                   1295: 
                   1296: 
1.23      harris41 1297: =head1 NAME
                   1298: 
                   1299: Apache::lonindexer - mod_perl module for cross server filesystem browsing
                   1300: 
                   1301: =head1 SYNOPSIS
                   1302: 
                   1303: Invoked by /etc/httpd/conf/srm.conf:
                   1304: 
                   1305:  <LocationMatch "^/res.*/$">
                   1306:  SetHandler perl-script
                   1307:  PerlHandler Apache::lonindexer
                   1308:  </LocationMatch>
                   1309: 
                   1310: =head1 INTRODUCTION
                   1311: 
                   1312: This module enables a scheme of browsing across a cross server.
                   1313: 
                   1314: This is part of the LearningOnline Network with CAPA project
                   1315: described at http://www.lon-capa.org.
                   1316: 
                   1317: =head1 BEGIN SUBROUTINE
                   1318: 
                   1319: This routine is only run once after compilation.
                   1320: 
                   1321: =over 4
                   1322: 
                   1323: =item *
                   1324: 
                   1325: Initializes %language hash table.
                   1326: 
                   1327: =back
                   1328: 
                   1329: =head1 HANDLER SUBROUTINE
                   1330: 
                   1331: This routine is called by Apache and mod_perl.
                   1332: 
                   1333: =over 4
                   1334: 
                   1335: =item *
                   1336: 
                   1337: read in machine configuration variables
                   1338: 
                   1339: =item *
                   1340: 
                   1341: see if called from an interactive mode
                   1342: 
                   1343: =item *
                   1344: 
                   1345: refresh environment with user database values (in %hash)
                   1346: 
                   1347: =item *
                   1348: 
                   1349: define extra fields and buttons in case of special mode
                   1350: 
                   1351: =item *
                   1352: 
                   1353: set catalogmodefunctions to have extra needed javascript functionality
                   1354: 
                   1355: =item *
                   1356: 
                   1357: print header
                   1358: 
                   1359: =item *
                   1360: 
                   1361: evaluate actions from previous page (both cumulatively and chronologically)
                   1362: 
                   1363: =item *
                   1364: 
                   1365: output title
                   1366: 
                   1367: =item *
                   1368: 
                   1369: get state of file attributes to be showing
                   1370: 
                   1371: =item *
                   1372: 
                   1373: output state of file attributes to be showing
                   1374: 
                   1375: =item *
                   1376: 
                   1377: output starting row to the indexed file/directory hierarchy
                   1378: 
                   1379: =item *
                   1380: 
                   1381: read in what directories have previously been set to "open"
                   1382: 
                   1383: =item *
                   1384: 
                   1385: if not at top level, provide an uplink arrow
                   1386: 
                   1387: =item *
                   1388: 
                   1389: recursively go through all the directories and output as appropriate
                   1390: 
                   1391: =item *
                   1392: 
                   1393: information useful for group import
                   1394: 
                   1395: =item *
                   1396: 
                   1397: end the tables
                   1398: 
                   1399: =item *
                   1400: 
                   1401: end the output and return
                   1402: 
                   1403: =back
                   1404: 
                   1405: =head1 OTHER SUBROUTINES
                   1406: 
                   1407: =over 4
                   1408: 
                   1409: =item *
                   1410: 
                   1411: scanDir - recursive scan of a directory
                   1412: 
                   1413: =item *
                   1414: 
                   1415: get_list - get complete matched list based on the uri (returns an array)
                   1416: 
                   1417: =item *
                   1418: 
                   1419: match_ext - filters out files based on extensions (returns an array)
                   1420: 
                   1421: =item *
                   1422: 
                   1423: display_line - displays one line in appropriate table format
                   1424: 
                   1425: =item *
                   1426: 
                   1427: begin_form - prints the beginning of a form for directory or file link
                   1428: 
                   1429: =item *
                   1430: 
                   1431: start_fresh_session - settings whenever the user causes the indexer window
                   1432: to be launched
                   1433: 
                   1434: =back
                   1435: 
                   1436: =cut

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