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