Annotation of loncom/interface/lonnavmaps.pm, revision 1.371
1.2 www 1: # The LearningOnline Network with CAPA
2: # Navigate Maps Handler
1.1 www 3: #
1.371 ! albertel 4: # $Id: lonnavmaps.pm,v 1.370 2006/03/14 22:17:55 albertel Exp $
1.20 albertel 5: #
6: # Copyright Michigan State University Board of Trustees
7: #
8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
9: #
10: # LON-CAPA is free software; you can redistribute it and/or modify
11: # it under the terms of the GNU General Public License as published by
12: # the Free Software Foundation; either version 2 of the License, or
13: # (at your option) any later version.
14: #
15: # LON-CAPA is distributed in the hope that it will be useful,
16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18: # GNU General Public License for more details.
19: #
20: # You should have received a copy of the GNU General Public License
21: # along with LON-CAPA; if not, write to the Free Software
22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23: #
24: # /home/httpd/html/adm/gpl.txt
25: #
26: # http://www.lon-capa.org/
27: #
1.245 www 28: ###
1.2 www 29:
1.1 www 30: package Apache::lonnavmaps;
31:
32: use strict;
1.317 albertel 33: use GDBM_File;
1.2 www 34: use Apache::Constants qw(:common :http);
1.18 albertel 35: use Apache::loncommon();
1.150 www 36: use Apache::lonmenu();
1.305 albertel 37: use Apache::lonenc();
1.229 www 38: use Apache::lonlocal;
1.306 foxr 39: use Apache::lonnet;
1.73 bowersj2 40: use POSIX qw (floor strftime);
1.300 albertel 41: use Data::Dumper; # for debugging, not always
1.316 albertel 42: use Time::HiRes qw( gettimeofday tv_interval );
1.2 www 43:
1.133 bowersj2 44: # symbolic constants
45: sub SYMB { return 1; }
46: sub URL { return 2; }
47: sub NOTHING { return 3; }
48:
49: # Some data
50:
1.140 bowersj2 51: my $resObj = "Apache::lonnavmaps::resource";
52:
1.135 bowersj2 53: # Keep these mappings in sync with lonquickgrades, which uses the colors
54: # instead of the icons.
55: my %statusIconMap =
1.224 bowersj2 56: (
57: $resObj->CLOSED => '',
58: $resObj->OPEN => 'navmap.open.gif',
59: $resObj->CORRECT => 'navmap.correct.gif',
1.355 www 60: $resObj->PARTIALLY_CORRECT => 'navmap.partial.gif',
1.224 bowersj2 61: $resObj->INCORRECT => 'navmap.wrong.gif',
62: $resObj->ATTEMPTED => 'navmap.ellipsis.gif',
63: $resObj->ERROR => ''
64: );
1.135 bowersj2 65:
66: my %iconAltTags =
67: ( 'navmap.correct.gif' => 'Correct',
68: 'navmap.wrong.gif' => 'Incorrect',
69: 'navmap.open.gif' => 'Open' );
1.133 bowersj2 70:
1.136 bowersj2 71: # Defines a status->color mapping, null string means don't color
72: my %colormap =
1.140 bowersj2 73: ( $resObj->NETWORK_FAILURE => '',
74: $resObj->CORRECT => '',
75: $resObj->EXCUSED => '#3333FF',
76: $resObj->PAST_DUE_ANSWER_LATER => '',
77: $resObj->PAST_DUE_NO_ANSWER => '',
78: $resObj->ANSWER_OPEN => '#006600',
79: $resObj->OPEN_LATER => '',
80: $resObj->TRIES_LEFT => '',
81: $resObj->INCORRECT => '',
82: $resObj->OPEN => '',
1.207 bowersj2 83: $resObj->NOTHING_SET => '',
84: $resObj->ATTEMPTED => '',
1.332 albertel 85: $resObj->ANSWER_SUBMITTED => '',
86: $resObj->PARTIALLY_CORRECT => '#006600'
1.207 bowersj2 87: );
1.136 bowersj2 88: # And a special case in the nav map; what to do when the assignment
89: # is not yet done and due in less then 24 hours
90: my $hurryUpColor = "#FF0000";
1.130 www 91:
1.268 albertel 92: sub launch_win {
1.336 albertel 93: my ($mode,$script,$toplinkitems,$firsttime)=@_;
1.268 albertel 94: my $result;
95: if ($script ne 'no') {
96: $result.='<script type="text/javascript">';
97: }
1.336 albertel 98: if ($firsttime) {
99: $result.='function launch_navmapwin() {
100: newWindow=open(\'/adm/navmaps?launchExternalRoles\',\'loncapanav\',\'width=400,height=600,scrollbars=1\');
101: }';
102: } else {
103: $result.='function launch_navmapwin() {
1.268 albertel 104: newWindow=open(\'/adm/navmaps?launchExternal\',\'loncapanav\',\'width=400,height=600,scrollbars=1\');
105: }';
1.336 albertel 106: }
1.268 albertel 107: if ($mode eq 'now') {
108: $result.="\nlaunch_navmapwin();\n";
109: }
110: if ($script ne 'no') {
111: $result.='</script>';
112: }
113: if ($mode eq 'link') {
1.281 albertel 114: &add_linkitem($toplinkitems,'launchnav','launch_navmapwin()',
115: "Launch navigation window");
1.268 albertel 116: }
117: return $result;
118: }
119:
1.269 albertel 120: sub close {
1.320 albertel 121: if ($env{'environment.remotenavmap'} ne 'on') { return ''; }
1.269 albertel 122: return(<<ENDCLOSE);
123: <script type="text/javascript">
124: window.status='Accessing Nav Control';
125: menu=window.open("/adm/rat/empty.html","loncapanav",
126: "height=600,width=400,scrollbars=1");
127: window.status='Closing Nav Control';
128: menu.close();
129: window.status='Done.';
130: </script>
131: ENDCLOSE
132: }
1.268 albertel 133:
1.270 albertel 134: sub update {
1.320 albertel 135: if ($env{'environment.remotenavmap'} ne 'on') { return ''; }
136: if (!$env{'request.course.id'}) { return ''; }
1.270 albertel 137: if ($ENV{'REQUEST_URI'}=~m|^/adm/navmaps|) { return ''; }
138: return(<<ENDUPDATE);
139: <form name="navform"></form>
140: <script type="text/javascript">
141: this.document.navform.action='/adm/navmaps#curloc';
142: this.document.navform.target='loncapanav';
143: this.document.navform.submit();
144: </script>
145: ENDUPDATE
146: }
1.268 albertel 147:
1.1 www 148: sub handler {
1.99 bowersj2 149: my $r = shift;
1.118 bowersj2 150: real_handler($r);
151: }
152:
153: sub real_handler {
154: my $r = shift;
1.316 albertel 155: #my $t0=[&gettimeofday()];
1.51 bowersj2 156: # Handle header-only request
157: if ($r->header_only) {
1.320 albertel 158: if ($env{'browser.mathml'}) {
1.232 www 159: &Apache::loncommon::content_type($r,'text/xml');
1.51 bowersj2 160: } else {
1.232 www 161: &Apache::loncommon::content_type($r,'text/html');
1.51 bowersj2 162: }
163: $r->send_http_header;
164: return OK;
165: }
166:
167: # Send header, don't cache this page
1.320 albertel 168: if ($env{'browser.mathml'}) {
1.232 www 169: &Apache::loncommon::content_type($r,'text/xml');
1.51 bowersj2 170: } else {
1.232 www 171: &Apache::loncommon::content_type($r,'text/html');
1.51 bowersj2 172: }
173: &Apache::loncommon::no_cache($r);
174:
1.281 albertel 175: my %toplinkitems=();
1.312 albertel 176: &add_linkitem(\%toplinkitems,'blank','',"Select Action");
1.268 albertel 177: if ($ENV{QUERY_STRING} eq 'collapseExternal') {
178: &Apache::lonnet::put('environment',{'remotenavmap' => 'off'});
179: &Apache::lonnet::appenv('environment.remotenavmap' => 'off');
1.275 albertel 180: my $menu=&Apache::lonmenu::reopenmenu();
181: my $navstatus=&Apache::lonmenu::get_nav_status();
182: if ($menu) {
183: $menu=(<<MENU)
184: swmenu=$menu
185: swmenu.clearTimeout(swmenu.menucltim);
186: $navstatus
187: MENU
1.280 albertel 188: } else {
189: my $nothing = &Apache::lonhtmlcommon::javascript_nothing();
190: my $mainwindow='window.open('.$nothing.',"loncapaclient","",false);';
191: $menu=(<<MENU)
192: swmenu=$mainwindow
193: $navstatus
194: MENU
1.275 albertel 195: }
1.348 albertel 196: $r->send_http_header;
1.371 ! albertel 197: my $js =<<"ENDSUBM";
1.268 albertel 198: <script type="text/javascript">
199: function submitthis() {
1.275 albertel 200: $menu
1.268 albertel 201: self.close();
202: }
1.275 albertel 203:
1.268 albertel 204: </script>
205: ENDSUBM
1.371 ! albertel 206: $r->print(&Apache::lonxml::xmlbegin().
! 207: &Apache::loncommon::head(undef,$js).
! 208: '<body bgcolor="#FFFFFF" onLoad="submitthis()">'.
! 209: &Apache::loncommon::end_page(undef,$js));
! 210:
1.348 albertel 211: return OK;
1.268 albertel 212: }
1.336 albertel 213: if ($ENV{QUERY_STRING} =~ /^launchExternal/) {
1.268 albertel 214: &Apache::lonnet::put('environment',{'remotenavmap' => 'on'});
215: &Apache::lonnet::appenv('environment.remotenavmap' => 'on');
1.335 albertel 216: my $menu=&Apache::lonmenu::reopenmenu();
217: my $navstatus=&Apache::lonmenu::get_nav_status();
218: if ($menu) {
219: $r->print(<<MENU);
220: <script type="text/javascript">
221: swmenu=$menu
222: swmenu.clearTimeout(swmenu.menucltim);
223: $navstatus
224: </script>
225: MENU
226: }
227: }
228: if ($ENV{QUERY_STRING} eq 'turningOffExternal') {
229: $env{'environment.remotenavmap'}='off';
1.268 albertel 230: }
231:
1.106 bowersj2 232: # Create the nav map
1.221 bowersj2 233: my $navmap = Apache::lonnavmaps::navmap->new();
1.51 bowersj2 234:
1.55 bowersj2 235: if (!defined($navmap)) {
236: my $requrl = $r->uri;
1.320 albertel 237: $env{'user.error.msg'} = "$requrl:bre:0:0:Course not initialized";
1.55 bowersj2 238: return HTTP_NOT_ACCEPTABLE;
239: }
1.348 albertel 240: $r->send_http_header;
1.371 ! albertel 241:
1.150 www 242: # ------------------------------------------------------------ Get query string
1.313 albertel 243: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['register','sort','showOnlyHomework','postsymb']);
1.158 bowersj2 244:
1.150 www 245: # ----------------------------------------------------- Force menu registration
246: my $addentries='';
1.268 albertel 247: my $more_unload;
1.278 albertel 248: my $body_only='';
1.371 ! albertel 249: my $js;
1.320 albertel 250: if ($env{'environment.remotenavmap'} eq 'on') {
1.371 ! albertel 251: $js='<script type="text/javascript">
! 252: function collapse() {
! 253: this.document.location="/adm/navmaps?collapseExternal";
! 254: }
! 255: </script>';
1.268 albertel 256: # FIXME need to be smarter to only catch window close events
257: # $more_unload="collapse()"
1.278 albertel 258: $body_only=1;
1.268 albertel 259: }
1.320 albertel 260: if ($env{'form.register'}) {
1.268 albertel 261: $addentries=' onLoad="'.&Apache::lonmenu::loadevents().
262: '" onUnload="'.&Apache::lonmenu::unloadevents().';'.
263: $more_unload.'"';
264: $r->print(&Apache::lonmenu::registerurl(1));
265: } else {
266: $addentries=' onUnload="'.$more_unload.'"';
1.150 www 267: }
1.111 bowersj2 268:
1.64 bowersj2 269: # Header
1.371 ! albertel 270: $r->print(&Apache::lonxml::xmlbegin().
! 271: &Apache::loncommon::head('Navigate Course Contents',$js).
1.150 www 272: &Apache::loncommon::bodytag('Navigate Course Contents','',
1.278 albertel 273: $addentries,$body_only,'',
1.320 albertel 274: $env{'form.register'}));
1.283 raeburn 275: $r->print('<script>window.focus();</script>');
1.265 albertel 276:
1.124 bowersj2 277: $r->rflush();
278:
1.55 bowersj2 279: # Check that it's defined
280: if (!($navmap->courseMapDefined())) {
1.283 raeburn 281: $r->print(&Apache::loncommon::help_open_menu('','Navigation Screen','Navigation_Screen','',undef,'RAT'));
1.55 bowersj2 282: $r->print('<font size="+2" color="red">Coursemap undefined.</font>' .
1.371 ! albertel 283: &Apache::loncommon::end_page());
1.55 bowersj2 284: return OK;
285: }
286:
1.178 bowersj2 287: # See if there's only one map in the top-level, if we don't
288: # already have a filter... if so, automatically display it
1.222 bowersj2 289: # (older code; should use retrieveResources)
1.179 bowersj2 290: if ($ENV{QUERY_STRING} !~ /filter/) {
1.178 bowersj2 291: my $iterator = $navmap->getIterator(undef, undef, undef, 0);
1.222 bowersj2 292: my $curRes;
1.178 bowersj2 293: my $sequenceCount = 0;
294: my $sequenceId;
1.222 bowersj2 295: while ($curRes = $iterator->next()) {
1.178 bowersj2 296: if (ref($curRes) && $curRes->is_sequence()) {
297: $sequenceCount++;
298: $sequenceId = $curRes->map_pc();
1.179 bowersj2 299: }
1.178 bowersj2 300: }
301:
302: if ($sequenceCount == 1) {
303: # The automatic iterator creation in the render call
304: # will pick this up. We know the condition because
1.320 albertel 305: # the defined($env{'form.filter'}) also ensures this
1.178 bowersj2 306: # is a fresh call.
1.320 albertel 307: $env{'form.filter'} = "$sequenceId";
1.155 bowersj2 308: }
309: }
310:
1.268 albertel 311: if ($ENV{QUERY_STRING} eq 'launchExternal') {
312: $r->print('
1.335 albertel 313: <form name="returnwin" action="/adm/flip?postdata=navlaunch%3a"
1.268 albertel 314: method="post" target="loncapaclient">
315: </form>');
316: $r->print('
317: <script type="text/javascript">
318: this.document.returnwin.submit();
319: </script>');
320: }
321:
1.320 albertel 322: if ($env{'environment.remotenavmap'} ne 'on') {
1.281 albertel 323: $r->print(&launch_win('link','yes',\%toplinkitems));
1.268 albertel 324: }
1.320 albertel 325: if ($env{'environment.remotenavmap'} eq 'on') {
1.281 albertel 326: &add_linkitem(\%toplinkitems,'closenav','collapse()',
327: "Close navigation window");
1.268 albertel 328: }
329:
1.191 bowersj2 330: my $jumpToFirstHomework = 0;
1.184 bowersj2 331: # Check to see if the student is jumping to next open, do-able problem
1.281 albertel 332: if ($ENV{QUERY_STRING} =~ /^jumpToFirstHomework/) {
1.191 bowersj2 333: $jumpToFirstHomework = 1;
1.184 bowersj2 334: # Find the next homework problem that they can do.
335: my $iterator = $navmap->getIterator(undef, undef, undef, 1);
1.222 bowersj2 336: my $curRes;
1.184 bowersj2 337: my $foundDoableProblem = 0;
338: my $problemRes;
339:
1.222 bowersj2 340: while (($curRes = $iterator->next()) && !$foundDoableProblem) {
1.184 bowersj2 341: if (ref($curRes) && $curRes->is_problem()) {
342: my $status = $curRes->status();
1.191 bowersj2 343: if ($curRes->completable()) {
1.184 bowersj2 344: $problemRes = $curRes;
345: $foundDoableProblem = 1;
346:
347: # Pop open all previous maps
348: my $stack = $iterator->getStack();
349: pop @$stack; # last resource in the stack is the problem
350: # itself, which we don't need in the map stack
351: my @mapPcs = map {$_->map_pc()} @$stack;
1.320 albertel 352: $env{'form.filter'} = join(',', @mapPcs);
1.184 bowersj2 353:
354: # Mark as both "here" and "jump"
1.320 albertel 355: $env{'form.postsymb'} = $curRes->symb();
1.184 bowersj2 356: }
357: }
358: }
359:
360: # If we found no problems, print a note to that effect.
361: if (!$foundDoableProblem) {
362: $r->print("<font size='+2'>All homework assignments have been completed.</font><br /><br />");
363: }
364: } else {
1.281 albertel 365: &add_linkitem(\%toplinkitems,'firsthomework',
366: 'location.href="navmaps?jumpToFirstHomework"',
1.287 albertel 367: "Show Me My First Homework Problem");
1.184 bowersj2 368: }
369:
1.191 bowersj2 370: my $suppressEmptySequences = 0;
371: my $filterFunc = undef;
1.201 bowersj2 372: my $resource_no_folder_link = 0;
373:
1.191 bowersj2 374: # Display only due homework.
375: my $showOnlyHomework = 0;
1.320 albertel 376: if ($env{'form.showOnlyHomework'} eq "1") {
1.191 bowersj2 377: $showOnlyHomework = 1;
378: $suppressEmptySequences = 1;
379: $filterFunc = sub { my $res = shift;
1.201 bowersj2 380: return $res->completable() || $res->is_map();
1.191 bowersj2 381: };
1.281 albertel 382: &add_linkitem(\%toplinkitems,'everything',
1.320 albertel 383: 'location.href="navmaps?sort='.$env{'form.sort'}.'"',
1.281 albertel 384: "Show Everything");
1.229 www 385: $r->print("<p><font size='+2'>".&mt("Uncompleted Homework")."</font></p>");
1.320 albertel 386: $env{'form.filter'} = '';
387: $env{'form.condition'} = 1;
1.201 bowersj2 388: $resource_no_folder_link = 1;
1.191 bowersj2 389: } else {
1.281 albertel 390: &add_linkitem(\%toplinkitems,'uncompleted',
1.320 albertel 391: 'location.href="navmaps?sort='.$env{'form.sort'}.
1.281 albertel 392: '&showOnlyHomework=1"',
393: "Show Only Uncompleted Homework");
1.191 bowersj2 394: }
395:
1.320 albertel 396: my %selected=($env{'form.sort'} => 'selected=on');
1.276 albertel 397: my $sort_html=("<form>
1.270 albertel 398: <nobr>
1.320 albertel 399: <input type=\"hidden\" name=\"showOnlyHomework\" value=\"".$env{'form.showOnlyHomework'}."\" />
1.276 albertel 400: <input type=\"submit\" value=\"".&mt('Sort by:')."\" />
1.270 albertel 401: <select name=\"sort\">
1.276 albertel 402: <option value=\"default\" $selected{'default'}>".&mt('Default')."</option>
403: <option value=\"title\" $selected{'title'} >".&mt('Title')."</option>
404: <option value=\"duedate\" $selected{'duedate'}>".&mt('Duedate')."</option>
1.307 raeburn 405: <option value=\"discussion\" $selected{'discussion'}>".&mt('Has New Discussion')."</option>
1.270 albertel 406: </select>
407: </nobr>
408: </form>");
1.133 bowersj2 409: # renderer call
1.285 albertel 410: my $renderArgs = { 'cols' => [0,1,2,3],
1.320 albertel 411: 'sort' => $env{'form.sort'},
1.191 bowersj2 412: 'url' => '/adm/navmaps',
413: 'navmap' => $navmap,
414: 'suppressNavmap' => 1,
415: 'suppressEmptySequences' => $suppressEmptySequences,
416: 'filterFunc' => $filterFunc,
1.201 bowersj2 417: 'resource_no_folder_link' => $resource_no_folder_link,
1.276 albertel 418: 'sort_html'=> $sort_html,
1.281 albertel 419: 'r' => $r,
420: 'caller' => 'navmapsdisplay',
421: 'linkitems' => \%toplinkitems};
1.191 bowersj2 422: my $render = render($renderArgs);
1.133 bowersj2 423:
1.191 bowersj2 424: # If no resources were printed, print a reassuring message so the
425: # user knows there was no error.
426: if ($renderArgs->{'counter'} == 0) {
427: if ($showOnlyHomework) {
1.229 www 428: $r->print("<p><font size='+1'>".&mt("All homework is currently completed").".</font></p>");
1.191 bowersj2 429: } else { # both jumpToFirstHomework and normal use the same: course must be empty
430: $r->print("<p><font size='+1'>This course is empty.</font></p>");
431: }
432: }
1.316 albertel 433: #my $td=&tv_interval($t0);
434: #$r->print("<br />$td");
1.51 bowersj2 435:
1.371 ! albertel 436: $r->print(&Apache::loncommon::end_page());
1.134 bowersj2 437: $r->rflush();
1.59 bowersj2 438:
1.51 bowersj2 439: return OK;
440: }
441:
442: # Convenience functions: Returns a string that adds or subtracts
443: # the second argument from the first hash, appropriate for the
444: # query string that determines which folders to recurse on
445: sub addToFilter {
446: my $hashIn = shift;
447: my $addition = shift;
448: my %hash = %$hashIn;
449: $hash{$addition} = 1;
450:
451: return join (",", keys(%hash));
452: }
453:
454: sub removeFromFilter {
455: my $hashIn = shift;
456: my $subtraction = shift;
457: my %hash = %$hashIn;
458:
459: delete $hash{$subtraction};
460: return join(",", keys(%hash));
461: }
462:
463: # Convenience function: Given a stack returned from getStack on the iterator,
464: # return the correct src() value.
465: sub getLinkForResource {
466: my $stack = shift;
467: my $res;
468:
469: # Check to see if there are any pages in the stack
470: foreach $res (@$stack) {
1.248 www 471: if (defined($res)) {
1.308 albertel 472: my $anchor;
1.248 www 473: if ($res->is_page()) {
1.308 albertel 474: foreach (@$stack) { if (defined($_)) { $anchor = $_; } }
475: $anchor=&Apache::lonnet::escape($anchor->shown_symb());
476: return ($res->link(),$res->shown_symb(),$anchor);
1.248 www 477: }
478: # in case folder was skipped over as "only sequence"
479: my ($map,$id,$src)=&Apache::lonnet::decode_symb($res->symb());
480: if ($map=~/\.page$/) {
1.308 albertel 481: my $url=&Apache::lonnet::clutter($map);
482: $anchor=&Apache::lonnet::escape($src->shown_symb());
483: return ($url,$res->shown_symb(),$anchor);
1.248 www 484: }
1.51 bowersj2 485: }
486: }
487:
488: # Failing that, return the src of the last resource that is defined
489: # (when we first recurse on a map, it puts an undefined resource
490: # on the bottom because $self->{HERE} isn't defined yet, and we
491: # want the src for the map anyhow)
492: foreach (@$stack) {
493: if (defined($_)) { $res = $_; }
494: }
495:
1.308 albertel 496: return ($res->link(),$res->shown_symb());
1.51 bowersj2 497: }
498:
1.251 www 499: # Convenience function: This separates the logic of how to create
1.53 bowersj2 500: # the problem text strings ("Due: DATE", "Open: DATE", "Not yet assigned",
1.251 www 501: # etc.) into a separate function. It takes a resource object as the
1.53 bowersj2 502: # first parameter, and the part number of the resource as the second.
503: # It's basically a big switch statement on the status of the resource.
504:
505: sub getDescription {
506: my $res = shift;
507: my $part = shift;
1.69 bowersj2 508: my $status = $res->status($part);
1.53 bowersj2 509:
1.182 bowersj2 510: if ($status == $res->NETWORK_FAILURE) {
1.229 www 511: return &mt("Having technical difficulties; please check status later");
1.182 bowersj2 512: }
1.53 bowersj2 513: if ($status == $res->NOTHING_SET) {
1.229 www 514: return &mt("Not currently assigned.");
1.53 bowersj2 515: }
516: if ($status == $res->OPEN_LATER) {
1.341 albertel 517: return "Open " . timeToHumanString($res->opendate($part),'start');
1.53 bowersj2 518: }
519: if ($status == $res->OPEN) {
1.79 bowersj2 520: if ($res->duedate($part)) {
1.341 albertel 521: return &mt("Due")." " .timeToHumanString($res->duedate($part),'end');
1.66 bowersj2 522: } else {
1.229 www 523: return &mt("Open, no due date");
1.66 bowersj2 524: }
1.53 bowersj2 525: }
1.54 bowersj2 526: if ($status == $res->PAST_DUE_ANSWER_LATER) {
1.341 albertel 527: return &mt("Answer open")." " . timeToHumanString($res->answerdate($part),'start');
1.54 bowersj2 528: }
529: if ($status == $res->PAST_DUE_NO_ANSWER) {
1.341 albertel 530: return &mt("Was due")." " . timeToHumanString($res->duedate($part),'end');
1.53 bowersj2 531: }
1.357 albertel 532: if (($status == $res->ANSWER_OPEN || $status == $res->PARTIALLY_CORRECT)
533: && $res->handgrade($part) ne 'yes') {
1.229 www 534: return &mt("Answer available");
1.53 bowersj2 535: }
1.59 bowersj2 536: if ($status == $res->EXCUSED) {
1.229 www 537: return &mt("Excused by instructor");
1.59 bowersj2 538: }
1.69 bowersj2 539: if ($status == $res->ATTEMPTED) {
1.229 www 540: return &mt("Answer submitted, not yet graded");
1.69 bowersj2 541: }
1.59 bowersj2 542: if ($status == $res->TRIES_LEFT) {
1.79 bowersj2 543: my $tries = $res->tries($part);
544: my $maxtries = $res->maxtries($part);
545: my $triesString = "";
546: if ($tries && $maxtries) {
547: $triesString = "<font size=\"-1\"><i>($tries of $maxtries tries used)</i></font>";
548: if ($maxtries > 1 && $maxtries - $tries == 1) {
549: $triesString = "<b>$triesString</b>";
550: }
551: }
1.244 albertel 552: if ($res->duedate($part)) {
1.341 albertel 553: return &mt("Due")." " . timeToHumanString($res->duedate($part),'end') .
1.66 bowersj2 554: " $triesString";
555: } else {
1.229 www 556: return &mt("No due date")." $triesString";
1.66 bowersj2 557: }
1.59 bowersj2 558: }
1.185 bowersj2 559: if ($status == $res->ANSWER_SUBMITTED) {
1.229 www 560: return &mt('Answer submitted');
1.185 bowersj2 561: }
1.53 bowersj2 562: }
563:
1.115 bowersj2 564: # Convenience function, so others can use it: Is the problem due in less then
565: # 24 hours, and still can be done?
566:
1.252 matthew 567: sub dueInLessThan24Hours {
1.115 bowersj2 568: my $res = shift;
569: my $part = shift;
570: my $status = $res->status($part);
571:
1.207 bowersj2 572: return ($status == $res->OPEN() ||
1.115 bowersj2 573: $status == $res->TRIES_LEFT()) &&
1.244 albertel 574: $res->duedate($part) && $res->duedate($part) < time()+(24*60*60) &&
575: $res->duedate($part) > time();
1.115 bowersj2 576: }
577:
578: # Convenience function, so others can use it: Is there only one try remaining for the
579: # part, with more then one try to begin with, not due yet and still can be done?
580: sub lastTry {
581: my $res = shift;
582: my $part = shift;
583:
584: my $tries = $res->tries($part);
585: my $maxtries = $res->maxtries($part);
586: return $tries && $maxtries && $maxtries > 1 &&
1.244 albertel 587: $maxtries - $tries == 1 && $res->duedate($part) &&
588: $res->duedate($part) > time();
1.115 bowersj2 589: }
590:
1.320 albertel 591: # This puts a human-readable name on the env variable.
1.177 www 592:
1.68 bowersj2 593: sub advancedUser {
1.320 albertel 594: return $env{'request.role.adv'};
1.68 bowersj2 595: }
596:
1.73 bowersj2 597:
598: # timeToHumanString takes a time number and converts it to a
599: # human-readable representation, meant to be used in the following
600: # manner:
601: # print "Due $timestring"
602: # print "Open $timestring"
603: # print "Answer available $timestring"
604: # Very, very, very, VERY English-only... goodness help a localizer on
605: # this func...
1.347 www 606:
607:
1.53 bowersj2 608: sub timeToHumanString {
1.346 foxr 609: my ($time,$type,$format) = @_;
610:
1.58 albertel 611: # zero, '0' and blank are bad times
1.73 bowersj2 612: if (!$time) {
1.229 www 613: return &mt('never');
1.73 bowersj2 614: }
1.231 www 615: unless (&Apache::lonlocal::current_language()=~/^en/) {
1.237 www 616: return &Apache::lonlocal::locallocaltime($time);
1.229 www 617: }
1.73 bowersj2 618: my $now = time();
619:
620: my @time = localtime($time);
621: my @now = localtime($now);
622:
623: # Positive = future
624: my $delta = $time - $now;
625:
626: my $minute = 60;
627: my $hour = 60 * $minute;
628: my $day = 24 * $hour;
629: my $week = 7 * $day;
630: my $inPast = 0;
631:
632: # Logic in comments:
633: # Is it now? (extremely unlikely)
634: if ( $delta == 0 ) {
635: return "this instant";
636: }
637:
638: if ($delta < 0) {
639: $inPast = 1;
640: $delta = -$delta;
641: }
642:
643: if ( $delta > 0 ) {
1.101 bowersj2 644:
1.73 bowersj2 645: my $tense = $inPast ? " ago" : "";
646: my $prefix = $inPast ? "" : "in ";
1.101 bowersj2 647:
648: # Less then a minute
1.73 bowersj2 649: if ( $delta < $minute ) {
650: if ($delta == 1) { return "${prefix}1 second$tense"; }
651: return "$prefix$delta seconds$tense";
652: }
653:
1.101 bowersj2 654: # Less then an hour
1.73 bowersj2 655: if ( $delta < $hour ) {
656: # If so, use minutes
657: my $minutes = floor($delta / 60);
658: if ($minutes == 1) { return "${prefix}1 minute$tense"; }
659: return "$prefix$minutes minutes$tense";
660: }
661:
662: # Is it less then 24 hours away? If so,
663: # display hours + minutes
664: if ( $delta < $hour * 24) {
665: my $hours = floor($delta / $hour);
666: my $minutes = floor(($delta % $hour) / $minute);
667: my $hourString = "$hours hours";
668: my $minuteString = ", $minutes minutes";
669: if ($hours == 1) {
670: $hourString = "1 hour";
671: }
672: if ($minutes == 1) {
673: $minuteString = ", 1 minute";
674: }
675: if ($minutes == 0) {
676: $minuteString = "";
677: }
678: return "$prefix$hourString$minuteString$tense";
679: }
680:
1.346 foxr 681: # If there's a caller supplied format, use it.
682:
683: if($format ne '') {
684: my $timeStr = strftime($format, localtime($time));
1.347 www 685: return $timeStr.&Apache::lonlocal::gettimezone();
1.346 foxr 686: }
687:
1.73 bowersj2 688: # Less then 5 days away, display day of the week and
689: # HH:MM
1.346 foxr 690:
1.73 bowersj2 691: if ( $delta < $day * 5 ) {
1.85 bowersj2 692: my $timeStr = strftime("%A, %b %e at %I:%M %P", localtime($time));
1.238 albertel 693: $timeStr =~ s/12:00 am/00:00/;
1.73 bowersj2 694: $timeStr =~ s/12:00 pm/noon/;
1.333 albertel 695: return ($inPast ? "last " : "this ") .
1.347 www 696: $timeStr.&Apache::lonlocal::gettimezone();
1.73 bowersj2 697: }
698:
1.341 albertel 699: my $conjunction='on';
700: if ($type eq 'start') {
701: $conjunction='at';
702: } elsif ($type eq 'end') {
703: $conjunction='by';
704: }
1.73 bowersj2 705: # Is it this year?
706: if ( $time[5] == $now[5]) {
707: # Return on Month Day, HH:MM meridian
1.341 albertel 708: my $timeStr = strftime("$conjunction %A, %b %e at %I:%M %P", localtime($time));
1.238 albertel 709: $timeStr =~ s/12:00 am/00:00/;
1.73 bowersj2 710: $timeStr =~ s/12:00 pm/noon/;
1.347 www 711: return $timeStr.&Apache::lonlocal::gettimezone();
1.73 bowersj2 712: }
713:
714: # Not this year, so show the year
1.341 albertel 715: my $timeStr = strftime("$conjunction %A, %b %e %Y at %I:%M %P", localtime($time));
1.238 albertel 716: $timeStr =~ s/12:00 am/00:00/;
1.73 bowersj2 717: $timeStr =~ s/12:00 pm/noon/;
1.347 www 718: return $timeStr.&Apache::lonlocal::gettimezone();
1.58 albertel 719: }
1.53 bowersj2 720: }
721:
1.51 bowersj2 722:
1.133 bowersj2 723: =pod
724:
1.174 albertel 725: =head1 NAME
726:
1.217 bowersj2 727: Apache::lonnavmap - Subroutines to handle and render the navigation
728: maps
1.174 albertel 729:
730: =head1 SYNOPSIS
731:
732: The main handler generates the navigational listing for the course,
733: the other objects export this information in a usable fashion for
1.205 bowersj2 734: other modules.
1.133 bowersj2 735:
1.216 bowersj2 736: =head1 OVERVIEW
737:
1.217 bowersj2 738: X<lonnavmaps, overview> When a user enters a course, LON-CAPA examines the
1.218 bowersj2 739: course structure and caches it in what is often referred to as the
740: "big hash" X<big hash>. You can see it if you are logged into
741: LON-CAPA, in a course, by going to /adm/test. (You may need to
742: tweak the /home/httpd/lonTabs/htpasswd file to view it.) The
743: content of the hash will be under the heading "Big Hash".
1.216 bowersj2 744:
745: Big Hash contains, among other things, how resources are related
746: to each other (next/previous), what resources are maps, which
747: resources are being chosen to not show to the student (for random
748: selection), and a lot of other things that can take a lot of time
749: to compute due to the amount of data that needs to be collected and
750: processed.
751:
752: Apache::lonnavmaps provides an object model for manipulating this
753: information in a higher-level fashion then directly manipulating
754: the hash. It also provides access to several auxilary functions
755: that aren't necessarily stored in the Big Hash, but are a per-
756: resource sort of value, like whether there is any feedback on
757: a given resource.
758:
759: Apache::lonnavmaps also abstracts away branching, and someday,
760: conditions, for the times where you don't really care about those
761: things.
762:
763: Apache::lonnavmaps also provides fairly powerful routines for
764: rendering navmaps, and last but not least, provides the navmaps
765: view for when the user clicks the NAV button.
766:
767: B<Note>: Apache::lonnavmaps I<only> works for the "currently
768: logged in user"; if you want things like "due dates for another
769: student" lonnavmaps can not directly retrieve information like
770: that. You need the EXT function. This module can still help,
771: because many things, such as the course structure, are constant
772: between users, and Apache::lonnavmaps can help by providing
773: symbs for the EXT call.
774:
775: The rest of this file will cover the provided rendering routines,
776: which can often be used without fiddling with the navmap object at
777: all, then documents the Apache::lonnavmaps::navmap object, which
778: is the key to accessing the Big Hash information, covers the use
779: of the Iterator (which provides the logic for traversing the
780: somewhat-complicated Big Hash data structure), documents the
781: Apache::lonnavmaps::Resource objects that are returned by
782:
1.205 bowersj2 783: =head1 Subroutine: render
1.133 bowersj2 784:
1.174 albertel 785: The navmap renderer package provides a sophisticated rendering of the
786: standard navigation maps interface into HTML. The provided nav map
787: handler is actually just a glorified call to this.
1.133 bowersj2 788:
1.216 bowersj2 789: Because of the large number of parameters this function accepts,
1.174 albertel 790: instead of passing it arguments as is normal, pass it in an anonymous
1.216 bowersj2 791: hash with the desired options.
1.174 albertel 792:
793: The package provides a function called 'render', called as
1.205 bowersj2 794: Apache::lonnavmaps::render({}).
1.51 bowersj2 795:
1.133 bowersj2 796: =head2 Overview of Columns
1.51 bowersj2 797:
1.174 albertel 798: The renderer will build an HTML table for the navmap and return
799: it. The table is consists of several columns, and a row for each
800: resource (or possibly each part). You tell the renderer how many
801: columns to create and what to place in each column, optionally using
1.205 bowersj2 802: one or more of the prepared columns, and the renderer will assemble
1.174 albertel 803: the table.
804:
805: Any additional generally useful column types should be placed in the
806: renderer code here, so anybody can use it anywhere else. Any code
807: specific to the current application (such as the addition of <input>
808: elements in a column) should be placed in the code of the thing using
809: the renderer.
810:
811: At the core of the renderer is the array reference COLS (see Example
812: section below for how to pass this correctly). The COLS array will
813: consist of entries of one of two types of things: Either an integer
814: representing one of the pre-packaged column types, or a sub reference
815: that takes a resource reference, a part number, and a reference to the
816: argument hash passed to the renderer, and returns a string that will
817: be inserted into the HTML representation as it.
818:
1.216 bowersj2 819: All other parameters are ways of either changing how the columns
820: are printing, or which rows are shown.
821:
1.174 albertel 822: The pre-packaged column names are refered to by constants in the
1.205 bowersj2 823: Apache::lonnavmaps namespace. The following currently exist:
1.51 bowersj2 824:
1.174 albertel 825: =over 4
1.51 bowersj2 826:
1.216 bowersj2 827: =item * B<Apache::lonnavmaps::resource>:
1.51 bowersj2 828:
1.174 albertel 829: The general info about the resource: Link, icon for the type, etc. The
1.216 bowersj2 830: first column in the standard nav map display. This column provides the
831: indentation effect seen in the B<NAV> screen. This column also accepts
1.205 bowersj2 832: the following parameters in the renderer hash:
1.51 bowersj2 833:
1.133 bowersj2 834: =over 4
1.51 bowersj2 835:
1.216 bowersj2 836: =item * B<resource_nolink>: default false
1.51 bowersj2 837:
1.216 bowersj2 838: If true, the resource will not be linked. By default, all non-folder
839: resources are linked.
1.174 albertel 840:
1.216 bowersj2 841: =item * B<resource_part_count>: default true
1.51 bowersj2 842:
1.216 bowersj2 843: If true, the resource will show a part count B<if> the full
844: part list is not displayed. (See "condense_parts" later.) If false,
845: the resource will never show a part count.
1.133 bowersj2 846:
1.174 albertel 847: =item * B<resource_no_folder_link>:
1.133 bowersj2 848:
1.174 albertel 849: If true, the resource's folder will not be clickable to open or close
850: it. Default is false. True implies printCloseAll is false, since you
851: can't close or open folders when this is on anyhow.
1.144 bowersj2 852:
1.133 bowersj2 853: =back
1.51 bowersj2 854:
1.225 bowersj2 855: =item * B<Apache::lonnavmaps::communication_status>:
1.174 albertel 856:
857: Whether there is discussion on the resource, email for the user, or
858: (lumped in here) perl errors in the execution of the problem. This is
859: the second column in the main nav map.
860:
1.225 bowersj2 861: =item * B<Apache::lonnavmaps::quick_status>:
1.51 bowersj2 862:
1.216 bowersj2 863: An icon for the status of a problem, with five possible states:
864: Correct, incorrect, open, awaiting grading (for a problem where the
865: computer's grade is suppressed, or the computer can't grade, like
866: essay problem), or none (not open yet, not a problem). The
1.174 albertel 867: third column of the standard navmap.
1.51 bowersj2 868:
1.225 bowersj2 869: =item * B<Apache::lonnavmaps::long_status>:
1.174 albertel 870:
871: A text readout of the details of the current status of the problem,
872: such as "Due in 22 hours". The fourth column of the standard navmap.
1.51 bowersj2 873:
1.225 bowersj2 874: =item * B<Apache::lonnavmaps::part_status_summary>:
875:
876: A text readout summarizing the status of the problem. If it is a
877: single part problem, will display "Correct", "Incorrect",
878: "Not yet open", "Open", "Attempted", or "Error". If there are
879: multiple parts, this will output a string that in HTML will show a
880: status of how many parts are in each status, in color coding, trying
881: to match the colors of the icons within reason.
882:
883: Note this only makes sense if you are I<not> showing parts. If
884: C<showParts> is true (see below), this column will not output
885: anything.
886:
1.133 bowersj2 887: =back
1.51 bowersj2 888:
1.133 bowersj2 889: If you add any others please be sure to document them here.
1.51 bowersj2 890:
1.174 albertel 891: An example of a column renderer that will show the ID number of a
892: resource, along with the part name if any:
1.51 bowersj2 893:
1.133 bowersj2 894: sub {
895: my ($resource, $part, $params) = @_;
896: if ($part) { return '<td>' . $resource->{ID} . ' ' . $part . '</td>'; }
897: return '<td>' . $resource->{ID} . '</td>';
898: }
1.51 bowersj2 899:
1.174 albertel 900: Note these functions are responsible for the TD tags, which allow them
901: to override vertical and horizontal alignment, etc.
1.130 www 902:
1.133 bowersj2 903: =head2 Parameters
1.115 bowersj2 904:
1.217 bowersj2 905: Minimally, you should be
1.174 albertel 906: able to get away with just using 'cols' (to specify the columns
907: shown), 'url' (necessary for the folders to link to the current screen
908: correctly), and possibly 'queryString' if your app calls for it. In
909: that case, maintaining the state of the folders will be done
910: automatically.
1.140 bowersj2 911:
1.133 bowersj2 912: =over 4
1.51 bowersj2 913:
1.320 albertel 914: =item * B<iterator>: default: constructs one from %env
1.174 albertel 915:
916: A reference to a fresh ::iterator to use from the navmaps. The
917: rendering will reflect the options passed to the iterator, so you can
918: use that to just render a certain part of the course, if you like. If
919: one is not passed, the renderer will attempt to construct one from
1.320 albertel 920: env{'form.filter'} and env{'form.condition'} information, plus the
1.174 albertel 921: 'iterator_map' parameter if any.
922:
1.216 bowersj2 923: =item * B<iterator_map>: default: not used
1.174 albertel 924:
925: If you are letting the renderer do the iterator handling, you can
926: instruct the renderer to render only a particular map by passing it
927: the source of the map you want to process, like
928: '/res/103/jerf/navmap.course.sequence'.
929:
1.320 albertel 930: =item * B<navmap>: default: constructs one from %env
1.174 albertel 931:
932: A reference to a navmap, used only if an iterator is not passed in. If
933: this is necessary to make an iterator but it is not passed in, a new
1.320 albertel 934: one will be constructed based on env info. This is useful to do basic
1.174 albertel 935: error checking before passing it off to render.
936:
1.216 bowersj2 937: =item * B<r>: default: must be passed in
1.174 albertel 938:
939: The standard Apache response object. This must be passed to the
940: renderer or the course hash will be locked.
941:
1.216 bowersj2 942: =item * B<cols>: default: empty (useless)
1.174 albertel 943:
944: An array reference
945:
1.216 bowersj2 946: =item * B<showParts>:default true
1.174 albertel 947:
1.216 bowersj2 948: A flag. If true, a line for the resource itself, and a line
1.174 albertel 949: for each part will be displayed. If not, only one line for each
950: resource will be displayed.
951:
1.216 bowersj2 952: =item * B<condenseParts>: default true
1.174 albertel 953:
1.216 bowersj2 954: A flag. If true, if all parts of the problem have the same
1.174 albertel 955: status and that status is Nothing Set, Correct, or Network Failure,
956: then only one line will be displayed for that resource anyhow. If no,
957: all parts will always be displayed. If showParts is 0, this is
958: ignored.
959:
1.320 albertel 960: =item * B<jumpCount>: default: determined from %env
1.174 albertel 961:
1.216 bowersj2 962: A string identifying the URL to place the anchor 'curloc' at.
963: It is the responsibility of the renderer user to
1.174 albertel 964: ensure that the #curloc is in the URL. By default, determined through
1.320 albertel 965: the use of the env{} 'jump' information, and should normally "just
1.174 albertel 966: work" correctly.
1.144 bowersj2 967:
1.216 bowersj2 968: =item * B<here>: default: empty string
1.140 bowersj2 969:
1.216 bowersj2 970: A Symb identifying where to place the 'here' marker. The empty
971: string means no marker.
1.92 bowersj2 972:
1.216 bowersj2 973: =item * B<indentString>: default: 25 pixel whitespace image
1.164 bowersj2 974:
1.216 bowersj2 975: A string identifying the indentation string to use.
1.92 bowersj2 976:
1.216 bowersj2 977: =item * B<queryString>: default: empty
1.51 bowersj2 978:
1.174 albertel 979: A string which will be prepended to the query string used when the
1.216 bowersj2 980: folders are opened or closed. You can use this to pass
981: application-specific values.
1.55 bowersj2 982:
1.216 bowersj2 983: =item * B<url>: default: none
1.84 bowersj2 984:
1.174 albertel 985: The url the folders will link to, which should be the current
1.216 bowersj2 986: page. Required if the resource info column is shown, and you
987: are allowing the user to open and close folders.
1.115 bowersj2 988:
1.216 bowersj2 989: =item * B<currentJumpIndex>: default: no jumping
1.55 bowersj2 990:
1.174 albertel 991: Describes the currently-open row number to cause the browser to jump
992: to, because the user just opened that folder. By default, pulled from
1.320 albertel 993: the Jump information in the env{'form.*'}.
1.51 bowersj2 994:
1.216 bowersj2 995: =item * B<printKey>: default: false
1.51 bowersj2 996:
1.174 albertel 997: If true, print the key that appears on the top of the standard
1.216 bowersj2 998: navmaps.
1.139 bowersj2 999:
1.216 bowersj2 1000: =item * B<printCloseAll>: default: true
1.140 bowersj2 1001:
1.174 albertel 1002: If true, print the "Close all folders" or "open all folders"
1.216 bowersj2 1003: links.
1.140 bowersj2 1004:
1.216 bowersj2 1005: =item * B<filterFunc>: default: sub {return 1;} (accept everything)
1.153 bowersj2 1006:
1.174 albertel 1007: A function that takes the resource object as its only parameter and
1008: returns a true or false value. If true, the resource is displayed. If
1.216 bowersj2 1009: false, it is simply skipped in the display.
1.174 albertel 1010:
1.216 bowersj2 1011: =item * B<suppressEmptySequences>: default: false
1.190 bowersj2 1012:
1013: If you're using a filter function, and displaying sequences to orient
1014: the user, then frequently some sequences will be empty. Setting this to
1015: true will cause those sequences not to display, so as not to confuse the
1016: user into thinking that if the sequence is there there should be things
1.216 bowersj2 1017: under it; for example, see the "Show Uncompleted Homework" view on the
1018: B<NAV> screen.
1.190 bowersj2 1019:
1.216 bowersj2 1020: =item * B<suppressNavmaps>: default: false
1.174 albertel 1021:
1.216 bowersj2 1022: If true, will not display Navigate Content resources.
1.143 bowersj2 1023:
1.133 bowersj2 1024: =back
1.51 bowersj2 1025:
1.133 bowersj2 1026: =head2 Additional Info
1.51 bowersj2 1027:
1.174 albertel 1028: In addition to the parameters you can pass to the renderer, which will
1029: be passed through unchange to the column renderers, the renderer will
1030: generate the following information which your renderer may find
1031: useful:
1032:
1.216 bowersj2 1033: =over 4
1034:
1035: =item * B<counter>:
1.145 bowersj2 1036:
1.216 bowersj2 1037: Contains the number of rows printed. Useful after calling the render
1038: function, as you can detect whether anything was printed at all.
1039:
1040: =item * B<isNewBranch>:
1041:
1042: Useful for renderers: If this resource is currently the first resource
1043: of a new branch, this will be true. The Resource column (leftmost in the
1044: navmaps screen) uses this to display the "new branch" icon
1.59 bowersj2 1045:
1.133 bowersj2 1046: =back
1.59 bowersj2 1047:
1.133 bowersj2 1048: =cut
1.59 bowersj2 1049:
1.133 bowersj2 1050: sub resource { return 0; }
1051: sub communication_status { return 1; }
1052: sub quick_status { return 2; }
1053: sub long_status { return 3; }
1.225 bowersj2 1054: sub part_status_summary { return 4; }
1.51 bowersj2 1055:
1.133 bowersj2 1056: sub render_resource {
1057: my ($resource, $part, $params) = @_;
1.51 bowersj2 1058:
1.133 bowersj2 1059: my $nonLinkedText = ''; # stuff after resource title not in link
1.51 bowersj2 1060:
1.134 bowersj2 1061: my $link = $params->{"resourceLink"};
1.306 foxr 1062:
1063: # The URL part is not escaped at this point, but the symb is...
1064: # The stuff to the left of the ? must have ' replaced by \' since
1065: # it will be quoted with ' in the href.
1066:
1067: my ($left,$right) = split(/\?/, $link);
1068: $link = $left.'?'.$right;
1069:
1.134 bowersj2 1070: my $src = $resource->src();
1071: my $it = $params->{"iterator"};
1.133 bowersj2 1072: my $filter = $it->{FILTER};
1073:
1074: my $title = $resource->compTitle();
1.258 albertel 1075:
1.133 bowersj2 1076: my $partLabel = "";
1077: my $newBranchText = "";
1.298 albertel 1078: my $location=&Apache::loncommon::lonhttpdurl("/adm/lonIcons");
1.133 bowersj2 1079: # If this is a new branch, label it so
1080: if ($params->{'isNewBranch'}) {
1.329 albertel 1081: $newBranchText = "<img src='$location/branch.gif' border='0' alt='Branch' />";
1.51 bowersj2 1082: }
1083:
1.133 bowersj2 1084: # links to open and close the folder
1.306 foxr 1085:
1086:
1.349 foxr 1087: my $linkopen = "<a href=\"$link\">";
1.306 foxr 1088:
1089:
1.133 bowersj2 1090: my $linkclose = "</a>";
1.51 bowersj2 1091:
1.204 albertel 1092: # Default icon: unknown page
1.329 albertel 1093: my $icon = "<img src='$location/unknown.gif' alt='' border='0' alt=' ' ' />";
1.133 bowersj2 1094:
1095: if ($resource->is_problem()) {
1.192 bowersj2 1096: if ($part eq '0' || $params->{'condensed'}) {
1.362 www 1097: $icon ='<img src="'.$location.'/problem.gif" alt="'.&mt('Problem').'" border="0" />';
1.133 bowersj2 1098: } else {
1099: $icon = $params->{'indentString'};
1100: }
1.204 albertel 1101: } else {
1.329 albertel 1102: $icon = "<img src='".&Apache::loncommon::icon($resource->src)."' alt=' ' border='0' />";
1.133 bowersj2 1103: }
1.51 bowersj2 1104:
1.133 bowersj2 1105: # Display the correct map icon to open or shut map
1106: if ($resource->is_map()) {
1107: my $mapId = $resource->map_pc();
1108: my $nowOpen = !defined($filter->{$mapId});
1109: if ($it->{CONDITION}) {
1110: $nowOpen = !$nowOpen;
1111: }
1.144 bowersj2 1112:
1.205 bowersj2 1113: my $folderType = $resource->is_sequence() ? 'folder' : 'page';
1.362 www 1114: my $title=$resource->title;
1.363 albertel 1115: $title=~s/\"/\"/g;
1.144 bowersj2 1116: if (!$params->{'resource_no_folder_link'}) {
1.205 bowersj2 1117: $icon = "navmap.$folderType." . ($nowOpen ? 'closed' : 'open') . '.gif';
1.363 albertel 1118: $icon = "<img src='$location/$icon' alt=\"".
1119: ($nowOpen ? &mt('Open Folder') : &mt('Close Folder')).' '.$title."\" border='0' />";
1.144 bowersj2 1120:
1.349 foxr 1121: $linkopen = "<a href=\"" . $params->{'url'} . '?' .
1.144 bowersj2 1122: $params->{'queryString'} . '&filter=';
1123: $linkopen .= ($nowOpen xor $it->{CONDITION}) ?
1124: addToFilter($filter, $mapId) :
1125: removeFromFilter($filter, $mapId);
1126: $linkopen .= "&condition=" . $it->{CONDITION} . '&hereType='
1127: . $params->{'hereType'} . '&here=' .
1128: &Apache::lonnet::escape($params->{'here'}) .
1.159 bowersj2 1129: '&jump=' .
1.144 bowersj2 1130: &Apache::lonnet::escape($resource->symb()) .
1.349 foxr 1131: "&folderManip=1\">";
1.306 foxr 1132:
1.144 bowersj2 1133: } else {
1134: # Don't allow users to manipulate folder
1.205 bowersj2 1135: $icon = "navmap.$folderType." . ($nowOpen ? 'closed' : 'open') .
1.144 bowersj2 1136: '.nomanip.gif';
1.364 www 1137: $icon = "<img src='$location/$icon' alt=\"".
1138: ($nowOpen ? &mt('Open Folder') : &mt('Close Folder')).' '.$title."\" border='0' />";
1.144 bowersj2 1139:
1140: $linkopen = "";
1141: $linkclose = "";
1142: }
1.133 bowersj2 1143: }
1.51 bowersj2 1144:
1.133 bowersj2 1145: if ($resource->randomout()) {
1.362 www 1146: $nonLinkedText .= ' <i>('.&mt('hidden').')</i> ';
1.133 bowersj2 1147: }
1.342 albertel 1148: if (!$resource->condval()) {
1.362 www 1149: $nonLinkedText .= ' <i>('.&mt('conditionally hidden').')</i> ';
1.342 albertel 1150: }
1.133 bowersj2 1151:
1152: # We're done preparing and finally ready to start the rendering
1153: my $result = "<td align='left' valign='center'>";
1.140 bowersj2 1154:
1155: my $indentLevel = $params->{'indentLevel'};
1156: if ($newBranchText) { $indentLevel--; }
1157:
1.133 bowersj2 1158: # print indentation
1.140 bowersj2 1159: for (my $i = 0; $i < $indentLevel; $i++) {
1.133 bowersj2 1160: $result .= $params->{'indentString'};
1.84 bowersj2 1161: }
1162:
1.133 bowersj2 1163: # Decide what to display
1.306 foxr 1164:
1.133 bowersj2 1165: $result .= "$newBranchText$linkopen$icon$linkclose";
1166:
1167: my $curMarkerBegin = '';
1168: my $curMarkerEnd = '';
1.51 bowersj2 1169:
1.133 bowersj2 1170: # Is this the current resource?
1.158 bowersj2 1171: if (!$params->{'displayedHereMarker'} &&
1172: $resource->symb() eq $params->{'here'} ) {
1.345 www 1173: $curMarkerBegin = '<font color="red" size="+2">></font>';
1.133 bowersj2 1174: $curMarkerEnd = '<font color="red" size="+2"><</font>';
1.158 bowersj2 1175: $params->{'displayedHereMarker'} = 1;
1.51 bowersj2 1176: }
1177:
1.192 bowersj2 1178: if ($resource->is_problem() && $part ne '0' &&
1.133 bowersj2 1179: !$params->{'condensed'}) {
1.274 matthew 1180: my $displaypart=$resource->part_display($part);
1.363 albertel 1181: $partLabel = " (".&mt('Part: [_1]', $displaypart).")";
1.309 albertel 1182: if ($link!~/\#/) { $link.='#'.&Apache::lonnet::escape($part); }
1.133 bowersj2 1183: $title = "";
1.51 bowersj2 1184: }
1185:
1.163 bowersj2 1186: if ($params->{'condensed'} && $resource->countParts() > 1) {
1.363 albertel 1187: $nonLinkedText .= ' ('.&mt('[_1] parts', $resource->countParts()).')';
1.51 bowersj2 1188: }
1189:
1.268 albertel 1190: my $target;
1.320 albertel 1191: if ($env{'environment.remotenavmap'} eq 'on') {
1.268 albertel 1192: $target=' target="loncapaclient" ';
1193: }
1.266 raeburn 1194: if (!$params->{'resource_nolink'} && !$resource->is_sequence() && !$resource->is_empty_sequence) {
1.349 foxr 1195: $result .= " $curMarkerBegin<a $target href=\"$link\">$title$partLabel</a>$curMarkerEnd $nonLinkedText</td>";
1.144 bowersj2 1196: } else {
1197: $result .= " $curMarkerBegin$title$partLabel$curMarkerEnd $nonLinkedText</td>";
1198: }
1.51 bowersj2 1199:
1.133 bowersj2 1200: return $result;
1201: }
1.51 bowersj2 1202:
1.133 bowersj2 1203: sub render_communication_status {
1204: my ($resource, $part, $params) = @_;
1.134 bowersj2 1205: my $discussionHTML = ""; my $feedbackHTML = ""; my $errorHTML = "";
1206:
1207: my $link = $params->{"resourceLink"};
1.335 albertel 1208: my $target;
1209: if ($env{'environment.remotenavmap'} eq 'on') {
1210: $target=' target="loncapaclient" ';
1211: }
1.349 foxr 1212: my $linkopen = "<a $target href=\"$link\">";
1.134 bowersj2 1213: my $linkclose = "</a>";
1.298 albertel 1214: my $location=&Apache::loncommon::lonhttpdurl("/adm/lonMisc");
1.134 bowersj2 1215: if ($resource->hasDiscussion()) {
1216: $discussionHTML = $linkopen .
1.298 albertel 1217: '<img border="0" src="'.$location.'/chat.gif" />' .
1.134 bowersj2 1218: $linkclose;
1219: }
1220:
1221: if ($resource->getFeedback()) {
1222: my $feedback = $resource->getFeedback();
1223: foreach (split(/\,/, $feedback)) {
1224: if ($_) {
1.335 albertel 1225: $feedbackHTML .= ' <a '.$target.' href="/adm/email?display='
1.134 bowersj2 1226: . &Apache::lonnet::escape($_) . '">'
1.298 albertel 1227: . '<img src="'.$location.'/feedback.gif" '
1.134 bowersj2 1228: . 'border="0" /></a>';
1229: }
1230: }
1231: }
1232:
1233: if ($resource->getErrors()) {
1234: my $errors = $resource->getErrors();
1.254 matthew 1235: my $errorcount = 0;
1.134 bowersj2 1236: foreach (split(/,/, $errors)) {
1.254 matthew 1237: last if ($errorcount>=10); # Only output 10 bombs maximum
1.134 bowersj2 1238: if ($_) {
1.254 matthew 1239: $errorcount++;
1.335 albertel 1240: $errorHTML .= ' <a '.$target.' href="/adm/email?display='
1.134 bowersj2 1241: . &Apache::lonnet::escape($_) . '">'
1.298 albertel 1242: . '<img src="'.$location.'/bomb.gif" '
1.134 bowersj2 1243: . 'border="0" /></a>';
1244: }
1245: }
1.197 bowersj2 1246: }
1247:
1248: if ($params->{'multipart'} && $part != '0') {
1249: $discussionHTML = $feedbackHTML = $errorHTML = '';
1.134 bowersj2 1250: }
1251:
1252: return "<td width=\"75\" align=\"left\" valign=\"center\">$discussionHTML$feedbackHTML$errorHTML </td>";
1253:
1.133 bowersj2 1254: }
1255: sub render_quick_status {
1256: my ($resource, $part, $params) = @_;
1.135 bowersj2 1257: my $result = "";
1258: my $firstDisplayed = !$params->{'condensed'} &&
1259: $params->{'multipart'} && $part eq "0";
1260:
1261: my $link = $params->{"resourceLink"};
1.335 albertel 1262: my $target;
1263: if ($env{'environment.remotenavmap'} eq 'on') {
1264: $target=' target="loncapaclient" ';
1265: }
1.349 foxr 1266: my $linkopen = "<a $target href=\"$link\">";
1.135 bowersj2 1267: my $linkclose = "</a>";
1268:
1269: if ($resource->is_problem() &&
1270: !$firstDisplayed) {
1.224 bowersj2 1271:
1272: my $icon = $statusIconMap{$resource->simpleStatus($part)};
1.135 bowersj2 1273: my $alt = $iconAltTags{$icon};
1274: if ($icon) {
1.298 albertel 1275: my $location=
1276: &Apache::loncommon::lonhttpdurl("/adm/lonIcons/$icon");
1277: $result .= "<td width='30' valign='center' width='50' align='right'>$linkopen<img width='25' height='25' src='$location' border='0' alt='$alt' />$linkclose</td>\n";
1.135 bowersj2 1278: } else {
1279: $result .= "<td width='30'> </td>\n";
1280: }
1281: } else { # not problem, no icon
1282: $result .= "<td width='30'> </td>\n";
1283: }
1284:
1285: return $result;
1.133 bowersj2 1286: }
1287: sub render_long_status {
1288: my ($resource, $part, $params) = @_;
1.136 bowersj2 1289: my $result = "<td align='right' valign='center'>\n";
1290: my $firstDisplayed = !$params->{'condensed'} &&
1291: $params->{'multipart'} && $part eq "0";
1292:
1293: my $color;
1.212 bowersj2 1294: if ($resource->is_problem()) {
1.136 bowersj2 1295: $color = $colormap{$resource->status};
1296:
1.252 matthew 1297: if (dueInLessThan24Hours($resource, $part) ||
1.136 bowersj2 1298: lastTry($resource, $part)) {
1299: $color = $hurryUpColor;
1300: }
1301: }
1302:
1303: if ($resource->kind() eq "res" &&
1304: $resource->is_problem() &&
1305: !$firstDisplayed) {
1306: if ($color) {$result .= "<font color=\"$color\"><b>"; }
1307: $result .= getDescription($resource, $part);
1308: if ($color) {$result .= "</b></font>"; }
1309: }
1310: if ($resource->is_map() && advancedUser() && $resource->randompick()) {
1311: $result .= '(randomly select ' . $resource->randompick() .')';
1312: }
1.210 bowersj2 1313:
1.213 bowersj2 1314: # Debugging code
1315: #$result .= " " . $resource->awarded($part) . '/' . $resource->weight($part) .
1316: # ' - Part: ' . $part;
1317:
1.210 bowersj2 1318: $result .= "</td>\n";
1.136 bowersj2 1319:
1320: return $result;
1.51 bowersj2 1321: }
1322:
1.227 bowersj2 1323: # Colors obtained by taking the icons, matching the colors, and
1324: # possibly reducing the Value (HSV) of the color, if it's too bright
1325: # for text, generally by one third or so.
1.225 bowersj2 1326: my %statusColors =
1327: (
1328: $resObj->CLOSED => '#000000',
1.227 bowersj2 1329: $resObj->OPEN => '#998b13',
1330: $resObj->CORRECT => '#26933f',
1331: $resObj->INCORRECT => '#c48207',
1332: $resObj->ATTEMPTED => '#a87510',
1.225 bowersj2 1333: $resObj->ERROR => '#000000'
1334: );
1335: my %statusStrings =
1336: (
1337: $resObj->CLOSED => 'Not yet open',
1338: $resObj->OPEN => 'Open',
1339: $resObj->CORRECT => 'Correct',
1340: $resObj->INCORRECT => 'Incorrect',
1341: $resObj->ATTEMPTED => 'Attempted',
1342: $resObj->ERROR => 'Network Error'
1343: );
1344: my @statuses = ($resObj->CORRECT, $resObj->ATTEMPTED, $resObj->INCORRECT, $resObj->OPEN, $resObj->CLOSED, $resObj->ERROR);
1345:
1346: use Data::Dumper;
1347: sub render_parts_summary_status {
1348: my ($resource, $part, $params) = @_;
1.256 albertel 1349: if (!$resource->is_problem() && !$resource->contains_problem) { return '<td></td>'; }
1.225 bowersj2 1350: if ($params->{showParts}) {
1351: return '<td></td>';
1352: }
1353:
1354: my $td = "<td align='right'>\n";
1355: my $endtd = "</td>\n";
1.256 albertel 1356: my @probs;
1.225 bowersj2 1357:
1.256 albertel 1358: if ($resource->contains_problem) {
1359: @probs=$resource->retrieveResources($resource,sub { $_[0]->is_problem() },1,0);
1360: } else {
1361: @probs=($resource);
1362: }
1363: my $return;
1364: my %overallstatus;
1365: my $totalParts;
1366: foreach my $resource (@probs) {
1367: # If there is a single part, just show the simple status
1368: if ($resource->singlepart()) {
1369: my $status = $resource->simpleStatus(${$resource->parts}[0]);
1370: $overallstatus{$status}++;
1371: $totalParts++;
1372: next;
1373: }
1374: # Now we can be sure the $part doesn't really matter.
1375: my $statusCount = $resource->simpleStatusCount();
1376: my @counts;
1377: foreach my $status (@statuses) {
1378: # decouple display order from the simpleStatusCount order
1379: my $slot = Apache::lonnavmaps::resource::statusToSlot($status);
1380: if ($statusCount->[$slot]) {
1381: $overallstatus{$status}+=$statusCount->[$slot];
1382: $totalParts+=$statusCount->[$slot];
1383: }
1384: }
1385: }
1386: $return.= $td . $totalParts . ' parts: ';
1387: foreach my $status (@statuses) {
1388: if ($overallstatus{$status}) {
1389: $return.="<font color='" . $statusColors{$status} .
1390: "'>" . $overallstatus{$status} . ' '
1.225 bowersj2 1391: . $statusStrings{$status} . "</font>";
1392: }
1393: }
1.256 albertel 1394: $return.= $endtd;
1395: return $return;
1.225 bowersj2 1396: }
1397:
1.133 bowersj2 1398: my @preparedColumns = (\&render_resource, \&render_communication_status,
1.225 bowersj2 1399: \&render_quick_status, \&render_long_status,
1400: \&render_parts_summary_status);
1.132 bowersj2 1401:
1402: sub setDefault {
1403: my ($val, $default) = @_;
1404: if (!defined($val)) { return $default; }
1405: return $val;
1406: }
1407:
1.296 albertel 1408: sub cmp_title {
1409: my ($atitle,$btitle) = (lc($_[0]->compTitle),lc($_[1]->compTitle));
1410: $atitle=~s/^\s*//;
1411: $btitle=~s/^\s*//;
1412: return $atitle cmp $btitle;
1413: }
1414:
1.132 bowersj2 1415: sub render {
1416: my $args = shift;
1.140 bowersj2 1417: &Apache::loncommon::get_unprocessed_cgi($ENV{QUERY_STRING});
1418: my $result = '';
1.132 bowersj2 1419: # Configure the renderer.
1420: my $cols = $args->{'cols'};
1421: if (!defined($cols)) {
1422: # no columns, no nav maps.
1423: return '';
1424: }
1.140 bowersj2 1425: my $navmap;
1426: if (defined($args->{'navmap'})) {
1427: $navmap = $args->{'navmap'};
1428: }
1429:
1.158 bowersj2 1430: my $r = $args->{'r'};
1.140 bowersj2 1431: my $queryString = $args->{'queryString'};
1.159 bowersj2 1432: my $jump = $args->{'jump'};
1.158 bowersj2 1433: my $here = $args->{'here'};
1.153 bowersj2 1434: my $suppressNavmap = setDefault($args->{'suppressNavmap'}, 0);
1.256 albertel 1435: my $closeAllPages = setDefault($args->{'closeAllPages'}, 0);
1.140 bowersj2 1436: my $currentJumpDelta = 2; # change this to change how many resources are displayed
1437: # before the current resource when using #current
1438:
1439: # If we were passed 'here' information, we are not rendering
1440: # after a folder manipulation, and we were not passed an
1441: # iterator, make sure we open the folders to show the "here"
1442: # marker
1443: my $filterHash = {};
1444: # Figure out what we're not displaying
1.320 albertel 1445: foreach (split(/\,/, $env{"form.filter"})) {
1.140 bowersj2 1446: if ($_) {
1447: $filterHash->{$_} = "1";
1448: }
1449: }
1450:
1.191 bowersj2 1451: # Filter: Remember filter function and add our own filter: Refuse
1452: # to show hidden resources unless the user can see them.
1453: my $userCanSeeHidden = advancedUser();
1454: my $filterFunc = setDefault($args->{'filterFunc'},
1455: sub {return 1;});
1456: if (!$userCanSeeHidden) {
1457: # Without renaming the filterfunc, the server seems to go into
1458: # an infinite loop
1459: my $oldFilterFunc = $filterFunc;
1460: $filterFunc = sub { my $res = shift; return !$res->randomout() &&
1461: &$oldFilterFunc($res);};
1462: }
1463:
1.140 bowersj2 1464: my $condition = 0;
1.320 albertel 1465: if ($env{'form.condition'}) {
1.140 bowersj2 1466: $condition = 1;
1467: }
1468:
1.320 albertel 1469: if (!$env{'form.folderManip'} && !defined($args->{'iterator'})) {
1.140 bowersj2 1470: # Step 1: Check to see if we have a navmap
1471: if (!defined($navmap)) {
1.221 bowersj2 1472: $navmap = Apache::lonnavmaps::navmap->new();
1.340 albertel 1473: if (!defined($navmap)) {
1474: # no londer in course
1.362 www 1475: return '<font color="red">'.&mt('No course selected').'</font><br />
1476: <a href="/adm/roles">'.&mt('Select a course').'</a><br />';
1.340 albertel 1477: }
1478: }
1.140 bowersj2 1479:
1480: # Step two: Locate what kind of here marker is necessary
1481: # Determine where the "here" marker is and where the screen jumps to.
1482:
1.332 albertel 1483: if ($env{'form.postsymb'} ne '') {
1.320 albertel 1484: $here = $jump = &Apache::lonnet::symbclean($env{'form.postsymb'});
1.332 albertel 1485: } elsif ($env{'form.postdata'} ne '') {
1.140 bowersj2 1486: # couldn't find a symb, is there a URL?
1.320 albertel 1487: my $currenturl = $env{'form.postdata'};
1.158 bowersj2 1488: #$currenturl=~s/^http\:\/\///;
1489: #$currenturl=~s/^[^\/]+//;
1.140 bowersj2 1490:
1.158 bowersj2 1491: $here = $jump = &Apache::lonnet::symbread($currenturl);
1.331 albertel 1492: }
1493: if ($here eq '') {
1.317 albertel 1494: my $last;
1.320 albertel 1495: if (tie(my %hash,'GDBM_File',$env{'request.course.fn'}.'_symb.db',
1.317 albertel 1496: &GDBM_READER(),0640)) {
1497: $last=$hash{'last_known'};
1498: untie(%hash);
1499: }
1500: if ($last) { $here = $jump = $last; }
1501: }
1.158 bowersj2 1502:
1.140 bowersj2 1503: # Step three: Ensure the folders are open
1504: my $mapIterator = $navmap->getIterator(undef, undef, undef, 1);
1.222 bowersj2 1505: my $curRes;
1.140 bowersj2 1506: my $found = 0;
1507:
1508: # We only need to do this if we need to open the maps to show the
1509: # current position. This will change the counter so we can't count
1510: # for the jump marker with this loop.
1.294 albertel 1511: while ($here && ($curRes = $mapIterator->next()) && !$found) {
1.158 bowersj2 1512: if (ref($curRes) && $curRes->symb() eq $here) {
1.140 bowersj2 1513: my $mapStack = $mapIterator->getStack();
1514:
1515: # Ensure the parent maps are open
1516: for my $map (@{$mapStack}) {
1517: if ($condition) {
1518: undef $filterHash->{$map->map_pc()};
1519: } else {
1520: $filterHash->{$map->map_pc()} = 1;
1521: }
1522: }
1523: $found = 1;
1524: }
1525: }
1.159 bowersj2 1526: }
1.140 bowersj2 1527:
1.320 albertel 1528: if ( !defined($args->{'iterator'}) && $env{'form.folderManip'} ) { # we came from a user's manipulation of the nav page
1.140 bowersj2 1529: # If this is a click on a folder or something, we want to preserve the "here"
1530: # from the querystring, and get the new "jump" marker
1.320 albertel 1531: $here = $env{'form.here'};
1532: $jump = $env{'form.jump'};
1.140 bowersj2 1533: }
1534:
1.132 bowersj2 1535: my $it = $args->{'iterator'};
1536: if (!defined($it)) {
1.320 albertel 1537: # Construct a default iterator based on $env{'form.'} information
1.140 bowersj2 1538:
1539: # Step 1: Check to see if we have a navmap
1540: if (!defined($navmap)) {
1.221 bowersj2 1541: $navmap = Apache::lonnavmaps::navmap->new();
1.140 bowersj2 1542: }
1543:
1.144 bowersj2 1544: # See if we're being passed a specific map
1545: if ($args->{'iterator_map'}) {
1546: my $map = $args->{'iterator_map'};
1.145 bowersj2 1547: $map = $navmap->getResourceByUrl($map);
1.144 bowersj2 1548: my $firstResource = $map->map_start();
1549: my $finishResource = $map->map_finish();
1550:
1551: $args->{'iterator'} = $it = $navmap->getIterator($firstResource, $finishResource, $filterHash, $condition);
1552: } else {
1553: $args->{'iterator'} = $it = $navmap->getIterator(undef, undef, $filterHash, $condition);
1554: }
1.132 bowersj2 1555: }
1.256 albertel 1556:
1.159 bowersj2 1557: # (re-)Locate the jump point, if any
1.191 bowersj2 1558: # Note this does not take filtering or hidden into account... need
1559: # to be fixed?
1.159 bowersj2 1560: my $mapIterator = $navmap->getIterator(undef, undef, $filterHash, 0);
1.222 bowersj2 1561: my $curRes;
1.159 bowersj2 1562: my $foundJump = 0;
1563: my $counter = 0;
1564:
1.222 bowersj2 1565: while (($curRes = $mapIterator->next()) && !$foundJump) {
1.159 bowersj2 1566: if (ref($curRes)) { $counter++; }
1567:
1568: if (ref($curRes) && $jump eq $curRes->symb()) {
1569:
1570: # This is why we have to use the main iterator instead of the
1571: # potentially faster DFS: The count has to be the same, so
1572: # the order has to be the same, which DFS won't give us.
1573: $args->{'currentJumpIndex'} = $counter;
1574: $foundJump = 1;
1575: }
1576: }
1577:
1.132 bowersj2 1578: my $showParts = setDefault($args->{'showParts'}, 1);
1579: my $condenseParts = setDefault($args->{'condenseParts'}, 1);
1.139 bowersj2 1580: # keeps track of when the current resource is found,
1581: # so we can back up a few and put the anchor above the
1582: # current resource
1.140 bowersj2 1583: my $printKey = $args->{'printKey'};
1584: my $printCloseAll = $args->{'printCloseAll'};
1585: if (!defined($printCloseAll)) { $printCloseAll = 1; }
1.298 albertel 1586:
1.140 bowersj2 1587: # Print key?
1588: if ($printKey) {
1589: $result .= '<table border="0" cellpadding="2" cellspacing="0">';
1590: my $date=localtime;
1591: $result.='<tr><td align="right" valign="bottom">Key: </td>';
1.298 albertel 1592: my $location=&Apache::loncommon::lonhttpdurl("/adm/lonMisc");
1.140 bowersj2 1593: if ($navmap->{LAST_CHECK}) {
1594: $result .=
1.298 albertel 1595: '<img src="'.$location.'/chat.gif"> '.&mt('New discussion since').' '.
1.140 bowersj2 1596: strftime("%A, %b %e at %I:%M %P", localtime($navmap->{LAST_CHECK})).
1597: '</td><td align="center" valign="bottom"> '.
1.298 albertel 1598: '<img src="'.$location.'/feedback.gif"> '.&mt('New message (click to open)').'<p>'.
1.140 bowersj2 1599: '</td>';
1600: } else {
1601: $result .= '<td align="center" valign="bottom"> '.
1.298 albertel 1602: '<img src="'.$location.'/chat.gif"> '.&mt('Discussions').'</td><td align="center" valign="bottom">'.
1603: ' <img src="'.$location.'/feedback.gif"> '.&mt('New message (click to open)').
1.140 bowersj2 1604: '</td>';
1605: }
1606:
1607: $result .= '</tr></table>';
1608: }
1609:
1.172 bowersj2 1610: if ($printCloseAll && !$args->{'resource_no_folder_link'}) {
1.281 albertel 1611: my ($link,$text);
1.140 bowersj2 1612: if ($condition) {
1.281 albertel 1613: $link='"navmaps?condition=0&filter=&'.$queryString.
1614: '&here='.&Apache::lonnet::escape($here).'"';
1615: $text='Close All Folders';
1.140 bowersj2 1616: } else {
1.281 albertel 1617: $link='"navmaps?condition=1&filter=&'.$queryString.
1618: '&here='.&Apache::lonnet::escape($here).'"';
1619: $text='Open All Folders';
1620: }
1621: if ($args->{'caller'} eq 'navmapsdisplay') {
1622: &add_linkitem($args->{'linkitems'},'changefolder',
1623: 'location.href='.$link,$text);
1624: } else {
1625: $result.='<a href='.$link.'>'.&mt($text).'</a>';
1626: }
1.266 raeburn 1627: $result .= "\n";
1628: }
1.140 bowersj2 1629:
1.266 raeburn 1630: # Check for any unread discussions in all resources.
1.281 albertel 1631: if ($args->{'caller'} eq 'navmapsdisplay') {
1.296 albertel 1632: &add_linkitem($args->{'linkitems'},'clearbubbles',
1633: 'document.clearbubbles.submit()',
1634: 'Mark all posts read');
1.297 albertel 1635: my $time=time;
1.296 albertel 1636: $result .= (<<END);
1637: <form name="clearbubbles" method="post" action="/adm/feedback">
1638: <input type="hidden" name="navurl" value="$ENV{'QUERY_STRING'}" />
1.297 albertel 1639: <input type="hidden" name="navtime" value="$time" />
1.296 albertel 1640: END
1641: if ($args->{'sort'} eq 'discussion') {
1642: my $totdisc = 0;
1643: my $haveDisc = '';
1644: my @allres=$navmap->retrieveResources();
1645: foreach my $resource (@allres) {
1646: if ($resource->hasDiscussion()) {
1.323 albertel 1647: $haveDisc .= $resource->wrap_symb().':';
1.296 albertel 1648: $totdisc ++;
1.267 albertel 1649: }
1650: }
1.296 albertel 1651: if ($totdisc > 0) {
1652: $haveDisc =~ s/:$//;
1653: $result .= (<<END);
1654: <input type="hidden" name="navmaps" value="$haveDisc" />
1655: </form>
1656: END
1657: }
1.297 albertel 1658: }
1659: $result.='</form>';
1.266 raeburn 1660: }
1.276 albertel 1661:
1.281 albertel 1662: if ($args->{'caller'} eq 'navmapsdisplay') {
1.283 raeburn 1663: $result .= '<table><tr><td>'.
1664: &Apache::loncommon::help_open_menu('','Navigation Screen','Navigation_Screen','',undef,'RAT').'</td>';
1.320 albertel 1665: if ($env{'environment.remotenavmap'} ne 'on') {
1.283 raeburn 1666: $result .= '<td> </td>';
1667: } else {
1668: $result .= '</tr><tr>';
1669: }
1.281 albertel 1670: $result.=&show_linkitems($args->{'linkitems'});
1671: if ($args->{'sort_html'}) {
1.320 albertel 1672: if ($env{'environment.remotenavmap'} ne 'on') {
1.281 albertel 1673: $result.='<td> </td><td> </td><td> </td>'.
1674: '<td align="right">'.$args->{'sort_html'}.'</td></tr>';
1675: } else {
1676: $result.='</tr><tr><td align="left"><br />'.
1677: $args->{'sort_html'}.'</td></tr>';
1678: }
1679: }
1680: $result .= '</table>';
1681: } elsif ($args->{'sort_html'}) {
1682: $result.=$args->{'sort_html'};
1683: }
1.276 albertel 1684:
1.266 raeburn 1685: $result .= "<br />\n";
1.140 bowersj2 1686: if ($r) {
1687: $r->print($result);
1688: $r->rflush();
1689: $result = "";
1690: }
1.132 bowersj2 1691: # End parameter setting
1.133 bowersj2 1692:
1.132 bowersj2 1693: # Data
1.140 bowersj2 1694: $result .= '<table cellspacing="0" cellpadding="3" border="0" bgcolor="#FFFFFF">' ."\n";
1.132 bowersj2 1695: my $res = "Apache::lonnavmaps::resource";
1696: my %condenseStatuses =
1697: ( $res->NETWORK_FAILURE => 1,
1698: $res->NOTHING_SET => 1,
1699: $res->CORRECT => 1 );
1700: my @backgroundColors = ("#FFFFFF", "#F6F6F6");
1.133 bowersj2 1701:
1702: # Shared variables
1703: $args->{'counter'} = 0; # counts the rows
1704: $args->{'indentLevel'} = 0;
1705: $args->{'isNewBranch'} = 0;
1706: $args->{'condensed'} = 0;
1.298 albertel 1707: my $location=
1708: &Apache::loncommon::lonhttpdurl("/adm/lonIcons/whitespace1.gif");
1.329 albertel 1709: $args->{'indentString'} = setDefault($args->{'indentString'}, "<img src='$location' width='25' height='1' alt=' ' border='0' />");
1.133 bowersj2 1710: $args->{'displayedHereMarker'} = 0;
1.132 bowersj2 1711:
1.190 bowersj2 1712: # If we're suppressing empty sequences, look for them here. Use DFS for speed,
1713: # since structure actually doesn't matter, except what map has what resources.
1714: if ($args->{'suppressEmptySequences'}) {
1715: my $dfsit = Apache::lonnavmaps::DFSiterator->new($navmap,
1716: $it->{FIRST_RESOURCE},
1717: $it->{FINISH_RESOURCE},
1718: {}, undef, 1);
1.222 bowersj2 1719: my $depth = 0;
1.190 bowersj2 1720: $dfsit->next();
1721: my $curRes = $dfsit->next();
1722: while ($depth > -1) {
1723: if ($curRes == $dfsit->BEGIN_MAP()) { $depth++; }
1724: if ($curRes == $dfsit->END_MAP()) { $depth--; }
1725:
1726: if (ref($curRes)) {
1727: # Parallel pre-processing: Do sequences have non-filtered-out children?
1.201 bowersj2 1728: if ($curRes->is_map()) {
1.190 bowersj2 1729: $curRes->{DATA}->{HAS_VISIBLE_CHILDREN} = 0;
1730: # Sequences themselves do not count as visible children,
1731: # unless those sequences also have visible children.
1732: # This means if a sequence appears, there's a "promise"
1733: # that there's something under it if you open it, somewhere.
1734: } else {
1735: # Not a sequence: if it's filtered, ignore it, otherwise
1736: # rise up the stack and mark the sequences as having children
1737: if (&$filterFunc($curRes)) {
1738: for my $sequence (@{$dfsit->getStack()}) {
1739: $sequence->{DATA}->{HAS_VISIBLE_CHILDREN} = 1;
1740: }
1741: }
1742: }
1743: }
1744: } continue {
1745: $curRes = $dfsit->next();
1746: }
1747: }
1748:
1.133 bowersj2 1749: my $displayedJumpMarker = 0;
1.132 bowersj2 1750: # Set up iteration.
1751: my $now = time();
1752: my $in24Hours = $now + 24 * 60 * 60;
1753: my $rownum = 0;
1754:
1.141 bowersj2 1755: # export "here" marker information
1756: $args->{'here'} = $here;
1757:
1.222 bowersj2 1758: $args->{'indentLevel'} = -1; # first BEGIN_MAP takes this to 0
1.270 albertel 1759: my @resources;
1760: my $code='';# sub { !(shift->is_map();) };
1761: if ($args->{'sort'} eq 'title') {
1.276 albertel 1762: my $oldFilterFunc = $filterFunc;
1763: my $filterFunc=
1764: sub {
1765: my ($res)=@_;
1766: if ($res->is_map()) { return 0;}
1767: return &$oldFilterFunc($res);
1768: };
1769: @resources=$navmap->retrieveResources(undef,$filterFunc);
1.296 albertel 1770: @resources= sort { &cmp_title($a,$b) } @resources;
1771: } elsif ($args->{'sort'} eq 'duedate') {
1772: my $oldFilterFunc = $filterFunc;
1773: my $filterFunc=
1774: sub {
1775: my ($res)=@_;
1776: if (!$res->is_problem()) { return 0;}
1777: return &$oldFilterFunc($res);
1778: };
1779: @resources=$navmap->retrieveResources(undef,$filterFunc);
1.289 raeburn 1780: @resources= sort {
1.270 albertel 1781: if ($a->duedate ne $b->duedate) {
1782: return $a->duedate cmp $b->duedate;
1783: }
1.296 albertel 1784: my $value=&cmp_title($a,$b);
1785: return $value;
1.270 albertel 1786: } @resources;
1.296 albertel 1787: } elsif ($args->{'sort'} eq 'discussion') {
1788: my $oldFilterFunc = $filterFunc;
1789: my $filterFunc=
1790: sub {
1791: my ($res)=@_;
1792: if (!$res->hasDiscussion() &&
1793: !$res->getFeedback() &&
1794: !$res->getErrors()) { return 0;}
1795: return &$oldFilterFunc($res);
1796: };
1797: @resources=$navmap->retrieveResources(undef,$filterFunc);
1798: @resources= sort { &cmp_title($a,$b) } @resources;
1.276 albertel 1799: } else {
1800: #unknow sort mechanism or default
1801: undef($args->{'sort'});
1.270 albertel 1802: }
1803:
1.276 albertel 1804:
1.270 albertel 1805: while (1) {
1806: if ($args->{'sort'}) {
1807: $curRes = shift(@resources);
1808: } else {
1809: $curRes = $it->next($closeAllPages);
1810: }
1811: if (!$curRes) { last; }
1812:
1.132 bowersj2 1813: # Maintain indentation level.
1814: if ($curRes == $it->BEGIN_MAP() ||
1815: $curRes == $it->BEGIN_BRANCH() ) {
1.133 bowersj2 1816: $args->{'indentLevel'}++;
1.132 bowersj2 1817: }
1818: if ($curRes == $it->END_MAP() ||
1819: $curRes == $it->END_BRANCH() ) {
1.133 bowersj2 1820: $args->{'indentLevel'}--;
1.132 bowersj2 1821: }
1822: # Notice new branches
1823: if ($curRes == $it->BEGIN_BRANCH()) {
1.133 bowersj2 1824: $args->{'isNewBranch'} = 1;
1825: }
1826:
1827: # If this isn't an actual resource, continue on
1828: if (!ref($curRes)) {
1829: next;
1.132 bowersj2 1830: }
1.133 bowersj2 1831:
1.143 bowersj2 1832: # If this has been filtered out, continue on
1833: if (!(&$filterFunc($curRes))) {
1834: $args->{'isNewBranch'} = 0; # Don't falsely remember this
1835: next;
1836: }
1.132 bowersj2 1837:
1.190 bowersj2 1838: # If this is an empty sequence and we're filtering them, continue on
1.201 bowersj2 1839: if ($curRes->is_map() && $args->{'suppressEmptySequences'} &&
1.190 bowersj2 1840: !$curRes->{DATA}->{HAS_VISIBLE_CHILDREN}) {
1841: next;
1842: }
1843:
1.153 bowersj2 1844: # If we're suppressing navmaps and this is a navmap, continue on
1845: if ($suppressNavmap && $curRes->src() =~ /^\/adm\/navmaps/) {
1846: next;
1847: }
1848:
1.191 bowersj2 1849: $args->{'counter'}++;
1850:
1.132 bowersj2 1851: # Does it have multiple parts?
1.133 bowersj2 1852: $args->{'multipart'} = 0;
1853: $args->{'condensed'} = 0;
1.132 bowersj2 1854: my @parts;
1855:
1856: # Decide what parts to show.
1.133 bowersj2 1857: if ($curRes->is_problem() && $showParts) {
1.132 bowersj2 1858: @parts = @{$curRes->parts()};
1.192 bowersj2 1859: $args->{'multipart'} = $curRes->multipart();
1.132 bowersj2 1860:
1861: if ($condenseParts) { # do the condensation
1.133 bowersj2 1862: if (!$args->{'condensed'}) {
1.132 bowersj2 1863: # Decide whether to condense based on similarity
1.192 bowersj2 1864: my $status = $curRes->status($parts[0]);
1865: my $due = $curRes->duedate($parts[0]);
1866: my $open = $curRes->opendate($parts[0]);
1.132 bowersj2 1867: my $statusAllSame = 1;
1868: my $dueAllSame = 1;
1869: my $openAllSame = 1;
1.192 bowersj2 1870: for (my $i = 1; $i < scalar(@parts); $i++) {
1.132 bowersj2 1871: if ($curRes->status($parts[$i]) != $status){
1872: $statusAllSame = 0;
1873: }
1874: if ($curRes->duedate($parts[$i]) != $due ) {
1875: $dueAllSame = 0;
1876: }
1877: if ($curRes->opendate($parts[$i]) != $open) {
1878: $openAllSame = 0;
1879: }
1880: }
1881: # $*allSame is true if all the statuses were
1882: # the same. Now, if they are all the same and
1883: # match one of the statuses to condense, or they
1884: # are all open with the same due date, or they are
1885: # all OPEN_LATER with the same open date, display the
1886: # status of the first non-zero part (to get the 'correct'
1887: # status right, since 0 is never 'correct' or 'open').
1888: if (($statusAllSame && defined($condenseStatuses{$status})) ||
1889: ($dueAllSame && $status == $curRes->OPEN && $statusAllSame)||
1890: ($openAllSame && $status == $curRes->OPEN_LATER && $statusAllSame) ){
1.192 bowersj2 1891: @parts = ($parts[0]);
1.133 bowersj2 1892: $args->{'condensed'} = 1;
1.132 bowersj2 1893: }
1894: }
1.198 bowersj2 1895: # Multipart problem with one part: always "condense" (happens
1896: # to match the desirable behavior)
1897: if ($curRes->countParts() == 1) {
1898: @parts = ($parts[0]);
1899: $args->{'condensed'} = 1;
1900: }
1.132 bowersj2 1901: }
1.157 bowersj2 1902: }
1.132 bowersj2 1903:
1904: # If the multipart problem was condensed, "forget" it was multipart
1905: if (scalar(@parts) == 1) {
1.133 bowersj2 1906: $args->{'multipart'} = 0;
1.192 bowersj2 1907: } else {
1908: # Add part 0 so we display it correctly.
1909: unshift @parts, '0';
1.132 bowersj2 1910: }
1.310 albertel 1911:
1912: {
1913: my ($src,$symb,$anchor,$stack);
1914: if ($args->{'sort'}) {
1915: my $it = $navmap->getIterator(undef, undef, undef, 1);
1916: while ( my $res=$it->next()) {
1917: if (ref($res) &&
1918: $res->symb() eq $curRes->symb()) { last; }
1919: }
1920: $stack=$it->getStack();
1921: } else {
1922: $stack=$it->getStack();
1923: }
1924: ($src,$symb,$anchor)=getLinkForResource($stack);
1925: if (defined($anchor)) { $anchor='#'.$anchor; }
1926: my $srcHasQuestion = $src =~ /\?/;
1927: $args->{"resourceLink"} = $src.
1928: ($srcHasQuestion?'&':'?') .
1929: 'symb=' . &Apache::lonnet::escape($symb).$anchor;
1930: }
1.132 bowersj2 1931: # Now, we've decided what parts to show. Loop through them and
1932: # show them.
1.192 bowersj2 1933: foreach my $part (@parts) {
1.132 bowersj2 1934: $rownum ++;
1935: my $backgroundColor = $backgroundColors[$rownum % scalar(@backgroundColors)];
1936:
1937: $result .= " <tr bgcolor='$backgroundColor'>\n";
1.134 bowersj2 1938:
1939: # Set up some data about the parts that the cols might want
1940: my $filter = $it->{FILTER};
1.270 albertel 1941:
1.132 bowersj2 1942: # Now, display each column.
1943: foreach my $col (@$cols) {
1.139 bowersj2 1944: my $colHTML = '';
1945: if (ref($col)) {
1946: $colHTML .= &$col($curRes, $part, $args);
1947: } else {
1948: $colHTML .= &{$preparedColumns[$col]}($curRes, $part, $args);
1949: }
1.132 bowersj2 1950:
1.133 bowersj2 1951: # If this is the first column and it's time to print
1952: # the anchor, do so
1953: if ($col == $cols->[0] &&
1954: $args->{'counter'} == $args->{'currentJumpIndex'} -
1.139 bowersj2 1955: $currentJumpDelta) {
1956: # Jam the anchor after the <td> tag;
1957: # necessary for valid HTML (which Mozilla requires)
1958: $colHTML =~ s/\>/\>\<a name="curloc" \/\>/;
1.133 bowersj2 1959: $displayedJumpMarker = 1;
1960: }
1.139 bowersj2 1961: $result .= $colHTML . "\n";
1.132 bowersj2 1962: }
1.139 bowersj2 1963: $result .= " </tr>\n";
1.140 bowersj2 1964: $args->{'isNewBranch'} = 0;
1.139 bowersj2 1965: }
1.153 bowersj2 1966:
1.139 bowersj2 1967: if ($r && $rownum % 20 == 0) {
1968: $r->print($result);
1969: $result = "";
1970: $r->rflush();
1.132 bowersj2 1971: }
1.156 bowersj2 1972: } continue {
1.208 bowersj2 1973: if ($r) {
1974: # If we have the connection, make sure the user is still connected
1975: my $c = $r->connection;
1976: if ($c->aborted()) {
1977: # Who cares what we do, nobody will see it anyhow.
1978: return '';
1979: }
1980: }
1.132 bowersj2 1981: }
1982:
1.134 bowersj2 1983: # Print out the part that jumps to #curloc if it exists
1.159 bowersj2 1984: # delay needed because the browser is processing the jump before
1985: # it finishes rendering, so it goes to the wrong place!
1986: # onload might be better, but this routine has no access to that.
1987: # On mozilla, the 0-millisecond timeout seems to prevent this;
1988: # it's quite likely this might fix other browsers, too, and
1989: # certainly won't hurt anything.
1.139 bowersj2 1990: if ($displayedJumpMarker) {
1.247 albertel 1991: $result .= "
1992: <script>
1993: if (location.href.indexOf('#curloc')==-1) {
1994: setTimeout(\"location += '#curloc';\", 0)
1995: }
1996: </script>";
1.134 bowersj2 1997: }
1998:
1.132 bowersj2 1999: $result .= "</table>";
1.140 bowersj2 2000:
2001: if ($r) {
2002: $r->print($result);
2003: $result = "";
2004: $r->rflush();
2005: }
2006:
1.132 bowersj2 2007: return $result;
2008: }
2009:
1.281 albertel 2010: sub add_linkitem {
2011: my ($linkitems,$name,$cmd,$text)=@_;
2012: $$linkitems{$name}{'cmd'}=$cmd;
2013: $$linkitems{$name}{'text'}=&mt($text);
2014: }
2015:
2016: sub show_linkitems {
2017: my ($linkitems)=@_;
1.312 albertel 2018: my @linkorder = ("blank","launchnav","closenav","firsthomework",
2019: "everything","uncompleted","changefolder","clearbubbles");
1.281 albertel 2020:
2021: my $result .= (<<ENDBLOCK);
1.283 raeburn 2022: <td align="left">
1.281 albertel 2023: <script type="text/javascript">
2024: function changeNavDisplay () {
2025: var navchoice = document.linkitems.toplink[document.linkitems.toplink.selectedIndex].value;
2026: ENDBLOCK
2027: foreach my $link (@linkorder) {
2028: $result.= "if (navchoice == '$link') {".
2029: $linkitems->{$link}{'cmd'}."}\n";
2030: }
2031: $result.='}
2032: </script>
2033: <form name="linkitems" method="post">
2034: <nobr><select name="toplink">'."\n";
2035: foreach my $link (@linkorder) {
2036: if (defined($linkitems->{$link})) {
2037: if ($linkitems->{$link}{'text'} ne '') {
2038: $result .= ' <option value="'.$link.'">'.
2039: $linkitems->{$link}{'text'}."</option>\n";
2040: }
2041: }
2042: }
2043: $result .= '</select> <input type="button" name="chgnav"
2044: value="Go" onClick="javascript:changeNavDisplay()" />
2045: </nobr></form></td>'."\n";
1.298 albertel 2046:
1.281 albertel 2047: return $result;
2048: }
2049:
1.133 bowersj2 2050: 1;
2051:
2052: package Apache::lonnavmaps::navmap;
2053:
2054: =pod
2055:
1.216 bowersj2 2056: =head1 Object: Apache::lonnavmaps::navmap
1.133 bowersj2 2057:
1.217 bowersj2 2058: =head2 Overview
1.133 bowersj2 2059:
1.217 bowersj2 2060: The navmap object's job is to provide access to the resources
2061: in the course as Apache::lonnavmaps::resource objects, and to
2062: query and manage the relationship between those resource objects.
2063:
2064: Generally, you'll use the navmap object in one of three basic ways.
2065: In order of increasing complexity and power:
2066:
2067: =over 4
2068:
1.358 albertel 2069: =item * C<$navmap-E<gt>getByX>, where X is B<Id>, B<Symb> or B<MapPc> and getResourceByUrl. This provides
1.217 bowersj2 2070: various ways to obtain resource objects, based on various identifiers.
2071: Use this when you want to request information about one object or
2072: a handful of resources you already know the identities of, from some
2073: other source. For more about Ids, Symbs, and MapPcs, see the
2074: Resource documentation. Note that Url should be a B<last resort>,
1.358 albertel 2075: not your first choice; it only really works when there is only one
1.217 bowersj2 2076: instance of the resource in the course, which only applies to
1.358 albertel 2077: maps, and even that may change in the future (see the B<getResourceByUrl>
2078: documentation for more details.)
1.217 bowersj2 2079:
2080: =item * C<my @resources = $navmap-E<gt>retrieveResources(args)>. This
2081: retrieves resources matching some criterion and returns them
2082: in a flat array, with no structure information. Use this when
2083: you are manipulating a series of resources, based on what map
2084: the are in, but do not care about branching, or exactly how
2085: the maps and resources are related. This is the most common case.
2086:
2087: =item * C<$it = $navmap-E<gt>getIterator(args)>. This allows you traverse
2088: the course's navmap in various ways without writing the traversal
2089: code yourself. See iterator documentation below. Use this when
2090: you need to know absolutely everything about the course, including
2091: branches and the precise relationship between maps and resources.
2092:
2093: =back
2094:
2095: =head2 Creation And Destruction
2096:
2097: To create a navmap object, use the following function:
1.133 bowersj2 2098:
2099: =over 4
2100:
1.221 bowersj2 2101: =item * B<Apache::lonnavmaps::navmap-E<gt>new>():
1.133 bowersj2 2102:
1.221 bowersj2 2103: Creates a new navmap object. Returns the navmap object if this is
2104: successful, or B<undef> if not.
1.174 albertel 2105:
1.216 bowersj2 2106: =back
2107:
2108: =head2 Methods
2109:
2110: =over 4
2111:
1.174 albertel 2112: =item * B<getIterator>(first, finish, filter, condition):
2113:
2114: See iterator documentation below.
1.133 bowersj2 2115:
2116: =cut
2117:
2118: use strict;
2119: use GDBM_File;
1.320 albertel 2120: use Apache::lonnet;
1.133 bowersj2 2121:
2122: sub new {
2123: # magic invocation to create a class instance
2124: my $proto = shift;
2125: my $class = ref($proto) || $proto;
2126: my $self = {};
2127:
2128: # Resource cache stores navmap resources as we reference them. We generate
2129: # them on-demand so we don't pay for creating resources unless we use them.
2130: $self->{RESOURCE_CACHE} = {};
2131:
2132: # Network failure flag, if we accessed the course or user opt and
2133: # failed
2134: $self->{NETWORK_FAILURE} = 0;
2135:
2136: # tie the nav hash
2137:
1.168 bowersj2 2138: my %navmaphash;
2139: my %parmhash;
1.320 albertel 2140: my $courseFn = $env{"request.course.fn"};
1.220 bowersj2 2141: if (!(tie(%navmaphash, 'GDBM_File', "${courseFn}.db",
1.133 bowersj2 2142: &GDBM_READER(), 0640))) {
2143: return undef;
2144: }
2145:
1.220 bowersj2 2146: if (!(tie(%parmhash, 'GDBM_File', "${courseFn}_parms.db",
1.133 bowersj2 2147: &GDBM_READER(), 0640)))
2148: {
1.170 matthew 2149: untie %{$self->{PARM_HASH}};
1.133 bowersj2 2150: return undef;
2151: }
2152:
1.199 bowersj2 2153: $self->{NAV_HASH} = \%navmaphash;
1.168 bowersj2 2154: $self->{PARM_HASH} = \%parmhash;
1.221 bowersj2 2155: $self->{PARM_CACHE} = {};
1.133 bowersj2 2156:
2157: bless($self);
2158:
2159: return $self;
2160: }
2161:
1.221 bowersj2 2162: sub generate_course_user_opt {
1.133 bowersj2 2163: my $self = shift;
1.221 bowersj2 2164: if ($self->{COURSE_USER_OPT_GENERATED}) { return; }
1.133 bowersj2 2165:
1.320 albertel 2166: my $uname=$env{'user.name'};
2167: my $udom=$env{'user.domain'};
2168: my $cid=$env{'request.course.id'};
1.326 albertel 2169: my $cdom=$env{'course.'.$cid.'.domain'};
2170: my $cnum=$env{'course.'.$cid.'.num'};
1.221 bowersj2 2171:
1.133 bowersj2 2172: # ------------------------------------------------- Get coursedata (if present)
1.326 albertel 2173: my $courseopt=&Apache::lonnet::get_courseresdata($cnum,$cdom);
2174: # Check for network failure
2175: if (!ref($courseopt)) {
2176: if ( $courseopt =~ /no.such.host/i || $courseopt =~ /con_lost/i) {
1.324 albertel 2177: $self->{NETWORK_FAILURE} = 1;
1.221 bowersj2 2178: }
1.326 albertel 2179: undef($courseopt);
2180: }
1.325 albertel 2181:
1.133 bowersj2 2182: # --------------------------------------------------- Get userdata (if present)
1.325 albertel 2183:
1.326 albertel 2184: my $useropt=&Apache::lonnet::get_userresdata($uname,$udom);
2185: # Check for network failure
2186: if (!ref($useropt)) {
2187: if ( $useropt =~ /no.such.host/i || $useropt =~ /con_lost/i) {
1.324 albertel 2188: $self->{NETWORK_FAILURE} = 1;
1.221 bowersj2 2189: }
1.326 albertel 2190: undef($useropt);
1.221 bowersj2 2191: }
2192:
1.326 albertel 2193: $self->{COURSE_OPT} = $courseopt;
2194: $self->{USER_OPT} = $useropt;
2195:
1.221 bowersj2 2196: $self->{COURSE_USER_OPT_GENERATED} = 1;
2197:
2198: return;
2199: }
2200:
2201: sub generate_email_discuss_status {
2202: my $self = shift;
1.259 raeburn 2203: my $symb = shift;
1.221 bowersj2 2204: if ($self->{EMAIL_DISCUSS_GENERATED}) { return; }
1.133 bowersj2 2205:
1.320 albertel 2206: my $cid=$env{'request.course.id'};
1.326 albertel 2207: my $cdom=$env{'course.'.$cid.'.domain'};
2208: my $cnum=$env{'course.'.$cid.'.num'};
1.221 bowersj2 2209:
2210: my %emailstatus = &Apache::lonnet::dump('email_status');
2211: my $logoutTime = $emailstatus{'logout'};
1.320 albertel 2212: my $courseLeaveTime = $emailstatus{'logout_'.$env{'request.course.id'}};
1.221 bowersj2 2213: $self->{LAST_CHECK} = (($courseLeaveTime > $logoutTime) ?
2214: $courseLeaveTime : $logoutTime);
2215: my %discussiontime = &Apache::lonnet::dump('discussiontimes',
2216: $cdom, $cnum);
1.259 raeburn 2217: my %lastread = &Apache::lonnet::dump('nohist_'.$cid.'_discuss',
1.320 albertel 2218: $env{'user.domain'},$env{'user.name'},'lastread');
1.259 raeburn 2219: my %lastreadtime = ();
2220: foreach (keys %lastread) {
2221: my $key = $_;
2222: $key =~ s/_lastread$//;
2223: $lastreadtime{$key} = $lastread{$_};
2224: }
2225:
1.221 bowersj2 2226: my %feedback=();
2227: my %error=();
1.325 albertel 2228: my @keys = &Apache::lonnet::getkeys('nohist_email',$env{'user.domain'},
2229: $env{'user.name'});
1.221 bowersj2 2230:
1.325 albertel 2231: foreach my $msgid (@keys) {
1.295 albertel 2232: if ((!$emailstatus{$msgid}) || ($emailstatus{$msgid} eq 'new')) {
2233: my $plain=
2234: &Apache::lonnet::unescape(&Apache::lonnet::unescape($msgid));
1.351 www 2235: if ($plain=~/ \[([^\]]+)\]\:/) {
2236: my $url=$1;
2237: if ($plain=~/\:Error \[/) {
1.221 bowersj2 2238: $error{$url}.=','.$msgid;
2239: } else {
2240: $feedback{$url}.=','.$msgid;
2241: }
2242: }
2243: }
1.211 bowersj2 2244: }
1.221 bowersj2 2245:
1.295 albertel 2246: #url's of resources that have feedbacks
1.221 bowersj2 2247: $self->{FEEDBACK} = \%feedback;
1.295 albertel 2248: #or errors
2249: $self->{ERROR_MSG} = \%error;
1.221 bowersj2 2250: $self->{DISCUSSION_TIME} = \%discussiontime;
2251: $self->{EMAIL_STATUS} = \%emailstatus;
1.259 raeburn 2252: $self->{LAST_READ} = \%lastreadtime;
1.221 bowersj2 2253:
2254: $self->{EMAIL_DISCUSS_GENERATED} = 1;
2255: }
2256:
2257: sub get_user_data {
2258: my $self = shift;
2259: if ($self->{RETRIEVED_USER_DATA}) { return; }
1.211 bowersj2 2260:
1.221 bowersj2 2261: # Retrieve performance data on problems
1.320 albertel 2262: my %student_data = Apache::lonnet::currentdump($env{'request.course.id'},
2263: $env{'user.domain'},
2264: $env{'user.name'});
1.221 bowersj2 2265: $self->{STUDENT_DATA} = \%student_data;
1.133 bowersj2 2266:
1.221 bowersj2 2267: $self->{RETRIEVED_USER_DATA} = 1;
1.133 bowersj2 2268: }
2269:
1.354 raeburn 2270: sub get_discussion_data {
2271: my $self = shift;
2272: if ($self->{RETRIEVED_DISCUSSION_DATA}) {
1.366 albertel 2273: return $self->{DISCUSSION_DATA};
1.354 raeburn 2274: }
1.366 albertel 2275:
2276: $self->generate_email_discuss_status();
2277:
1.354 raeburn 2278: my $cid=$env{'request.course.id'};
2279: my $cdom=$env{'course.'.$cid.'.domain'};
2280: my $cnum=$env{'course.'.$cid.'.num'};
2281: # Retrieve discussion data for resources in course
1.367 albertel 2282: my %discussion_data = &Apache::lonnet::dumpstore($cid,$cdom,$cnum);
1.366 albertel 2283:
2284:
1.354 raeburn 2285: $self->{DISCUSSION_DATA} = \%discussion_data;
2286: $self->{RETRIEVED_DISCUSSION_DATA} = 1;
2287: return $self->{DISCUSSION_DATA};
2288: }
2289:
2290:
1.133 bowersj2 2291: # Internal function: Takes a key to look up in the nav hash and implements internal
2292: # memory caching of that key.
2293: sub navhash {
2294: my $self = shift; my $key = shift;
2295: return $self->{NAV_HASH}->{$key};
2296: }
2297:
1.217 bowersj2 2298: =pod
2299:
2300: =item * B<courseMapDefined>(): Returns true if the course map is defined,
2301: false otherwise. Undefined course maps indicate an error somewhere in
2302: LON-CAPA, and you will not be able to proceed with using the navmap.
2303: See the B<NAV> screen for an example of using this.
2304:
2305: =cut
2306:
1.133 bowersj2 2307: # Checks to see if coursemap is defined, matching test in old lonnavmaps
2308: sub courseMapDefined {
2309: my $self = shift;
1.320 albertel 2310: my $uri = &Apache::lonnet::clutter($env{'request.course.uri'});
1.133 bowersj2 2311:
2312: my $firstres = $self->navhash("map_start_$uri");
2313: my $lastres = $self->navhash("map_finish_$uri");
2314: return $firstres && $lastres;
2315: }
2316:
2317: sub getIterator {
2318: my $self = shift;
2319: my $iterator = Apache::lonnavmaps::iterator->new($self, shift, shift,
1.314 albertel 2320: shift, undef, shift,
2321: shift, shift);
1.133 bowersj2 2322: return $iterator;
2323: }
2324:
2325: # Private method: Does the given resource (as a symb string) have
2326: # current discussion? Returns 0 if chat/mail data not extracted.
2327: sub hasDiscussion {
2328: my $self = shift;
2329: my $symb = shift;
1.221 bowersj2 2330: $self->generate_email_discuss_status();
2331:
1.133 bowersj2 2332: if (!defined($self->{DISCUSSION_TIME})) { return 0; }
2333:
2334: #return defined($self->{DISCUSSION_TIME}->{$symb});
1.259 raeburn 2335:
1.323 albertel 2336: # backward compatibility (bulletin boards used to be 'wrapped')
2337: my $ressymb = $self->wrap_symb($symb);
1.259 raeburn 2338: if ( defined ( $self->{LAST_READ}->{$ressymb} ) ) {
2339: return $self->{DISCUSSION_TIME}->{$ressymb} > $self->{LAST_READ}->{$ressymb};
2340: } else {
1.266 raeburn 2341: # return $self->{DISCUSSION_TIME}->{$ressymb} > $self->{LAST_CHECK}; # v.1.1 behavior
2342: return $self->{DISCUSSION_TIME}->{$ressymb} > 0; # in 1.2 will display speech bubble icons for all items with posts until marked as read (even if read in v 1.1).
1.259 raeburn 2343: }
1.133 bowersj2 2344: }
2345:
1.366 albertel 2346: sub last_post_time {
2347: my $self = shift;
2348: my $symb = shift;
2349: my $ressymb = $self->wrap_symb($symb);
2350: return $self->{DISCUSSION_TIME}->{$ressymb};
2351: }
2352:
2353: sub unread_discussion {
2354: my $self = shift;
2355: my $symb = shift;
2356:
2357: $self->get_discussion_data();
2358:
2359: my $ressymb = $self->wrap_symb($symb);
2360:
2361: my $version = $self->{DISCUSSION_DATA}{'version:'.$ressymb};
2362: if (!$version) { return; }
2363:
2364: my $prevread = $self->{LAST_READ}{$ressymb};
2365:
2366: my $unreadcount = 0;
2367: my $hiddenflag = 0;
2368: my $deletedflag = 0;
2369: my ($hidden,$deleted);
2370:
2371: my %subjects;
2372:
2373: for (my $id=$version; $id>0; $id--) {
2374: my $vkeys=$self->{DISCUSSION_DATA}{$id.':keys:'.$ressymb};
2375: my @keys=split(/:/,$vkeys);
2376: if (grep(/^hidden$/ ,@keys)) {
2377: if (!$hiddenflag) {
2378: $hidden = $self->{DISCUSSION_DATA}{$id.':'.$ressymb.':hidden'};
2379: $hiddenflag = 1;
2380: }
2381: } elsif (grep(/^deleted$/,@keys)) {
2382: if (!$deletedflag) {
2383: $deleted = $self->{DISCUSSION_DATA}{$id.':'.$ressymb.':deleted'};
2384: $deletedflag = 1;
2385: }
2386: } else {
2387: if (($hidden !~/\.$id\./) && ($deleted !~/\.$id\./)
2388: && $prevread < $self->{DISCUSSION_DATA}{$id.':'.$ressymb.':timestamp'}) {
2389: $unreadcount++;
2390: $subjects{$unreadcount}=
2391: $id.': '.$self->{DISCUSSION_DATA}{$id.':'.$ressymb.':subject'};
2392: }
2393: }
2394: }
2395: if (wantarray) {
2396: return ($unreadcount,\%subjects);
2397: }
2398: return $unreadcount
2399: }
2400:
1.321 raeburn 2401: sub wrap_symb {
1.322 albertel 2402: my $self = shift;
1.321 raeburn 2403: my $symb = shift;
1.322 albertel 2404: if ($symb =~ m-___(adm/\w+/\w+/)(\d+)(/bulletinboard)$-) {
2405: unless ($symb =~ m|adm/wrapper/adm|) {
2406: $symb = 'bulletin___'.$2.'___adm/wrapper/'.$1.$2.$3;
1.321 raeburn 2407: }
2408: }
1.322 albertel 2409: return $symb;
1.321 raeburn 2410: }
2411:
1.322 albertel 2412: # Private method: Does the given resource (as a symb string) have
2413: # current feedback? Returns the string in the feedback hash, which
2414: # will be false if it does not exist.
2415:
1.133 bowersj2 2416: sub getFeedback {
2417: my $self = shift;
2418: my $symb = shift;
2419:
1.221 bowersj2 2420: $self->generate_email_discuss_status();
2421:
1.133 bowersj2 2422: if (!defined($self->{FEEDBACK})) { return ""; }
2423:
2424: return $self->{FEEDBACK}->{$symb};
2425: }
2426:
2427: # Private method: Get the errors for that resource (by source).
2428: sub getErrors {
2429: my $self = shift;
2430: my $src = shift;
1.221 bowersj2 2431:
2432: $self->generate_email_discuss_status();
2433:
1.133 bowersj2 2434: if (!defined($self->{ERROR_MSG})) { return ""; }
2435: return $self->{ERROR_MSG}->{$src};
2436: }
2437:
2438: =pod
2439:
1.174 albertel 2440: =item * B<getById>(id):
2441:
2442: Based on the ID of the resource (1.1, 3.2, etc.), get a resource
2443: object for that resource. This method, or other methods that use it
2444: (as in the resource object) is the only proper way to obtain a
2445: resource object.
1.133 bowersj2 2446:
1.194 bowersj2 2447: =item * B<getBySymb>(symb):
2448:
2449: Based on the symb of the resource, get a resource object for that
2450: resource. This is one of the proper ways to get a resource object.
2451:
2452: =item * B<getMapByMapPc>(map_pc):
2453:
2454: Based on the map_pc of the resource, get a resource object for
2455: the given map. This is one of the proper ways to get a resource object.
2456:
1.133 bowersj2 2457: =cut
2458:
2459: # The strategy here is to cache the resource objects, and only construct them
2460: # as we use them. The real point is to prevent reading any more from the tied
2461: # hash then we have to, which should hopefully alleviate speed problems.
2462:
2463: sub getById {
2464: my $self = shift;
2465: my $id = shift;
2466:
2467: if (defined ($self->{RESOURCE_CACHE}->{$id}))
2468: {
2469: return $self->{RESOURCE_CACHE}->{$id};
2470: }
2471:
2472: # resource handles inserting itself into cache.
2473: # Not clear why the quotes are necessary, but as of this
2474: # writing it doesn't work without them.
2475: return "Apache::lonnavmaps::resource"->new($self, $id);
1.132 bowersj2 2476: }
1.133 bowersj2 2477:
1.172 bowersj2 2478: sub getBySymb {
2479: my $self = shift;
2480: my $symb = shift;
1.277 matthew 2481:
1.228 albertel 2482: my ($mapUrl, $id, $filename) = &Apache::lonnet::decode_symb($symb);
1.172 bowersj2 2483: my $map = $self->getResourceByUrl($mapUrl);
1.277 matthew 2484: my $returnvalue = undef;
2485: if (ref($map)) {
2486: $returnvalue = $self->getById($map->map_pc() .'.'.$id);
2487: }
2488: return $returnvalue;
1.194 bowersj2 2489: }
2490:
2491: sub getByMapPc {
2492: my $self = shift;
2493: my $map_pc = shift;
2494: my $map_id = $self->{NAV_HASH}->{'map_id_' . $map_pc};
2495: $map_id = $self->{NAV_HASH}->{'ids_' . $map_id};
2496: return $self->getById($map_id);
1.172 bowersj2 2497: }
2498:
1.133 bowersj2 2499: =pod
2500:
1.174 albertel 2501: =item * B<firstResource>():
2502:
2503: Returns a resource object reference corresponding to the first
2504: resource in the navmap.
1.133 bowersj2 2505:
2506: =cut
2507:
2508: sub firstResource {
2509: my $self = shift;
2510: my $firstResource = $self->navhash('map_start_' .
1.320 albertel 2511: &Apache::lonnet::clutter($env{'request.course.uri'}));
1.133 bowersj2 2512: return $self->getById($firstResource);
1.132 bowersj2 2513: }
1.133 bowersj2 2514:
2515: =pod
2516:
1.174 albertel 2517: =item * B<finishResource>():
2518:
2519: Returns a resource object reference corresponding to the last resource
2520: in the navmap.
1.133 bowersj2 2521:
2522: =cut
2523:
2524: sub finishResource {
2525: my $self = shift;
2526: my $firstResource = $self->navhash('map_finish_' .
1.320 albertel 2527: &Apache::lonnet::clutter($env{'request.course.uri'}));
1.133 bowersj2 2528: return $self->getById($firstResource);
1.132 bowersj2 2529: }
1.133 bowersj2 2530:
2531: # Parmval reads the parm hash and cascades the lookups. parmval_real does
2532: # the actual lookup; parmval caches the results.
2533: sub parmval {
2534: my $self = shift;
2535: my ($what,$symb)=@_;
2536: my $hashkey = $what."|||".$symb;
2537:
2538: if (defined($self->{PARM_CACHE}->{$hashkey})) {
2539: return $self->{PARM_CACHE}->{$hashkey};
2540: }
2541:
2542: my $result = $self->parmval_real($what, $symb);
2543: $self->{PARM_CACHE}->{$hashkey} = $result;
2544: return $result;
1.132 bowersj2 2545: }
2546:
1.133 bowersj2 2547: sub parmval_real {
2548: my $self = shift;
1.219 albertel 2549: my ($what,$symb,$recurse) = @_;
1.133 bowersj2 2550:
1.221 bowersj2 2551: # Make sure the {USER_OPT} and {COURSE_OPT} hashes are populated
2552: $self->generate_course_user_opt();
2553:
1.320 albertel 2554: my $cid=$env{'request.course.id'};
2555: my $csec=$env{'request.course.sec'};
1.350 raeburn 2556: my $cgroup='';
2557: my @cgrps=split(/:/,$env{'request.course.groups'});
2558: if (@cgrps > 0) {
2559: @cgrps = sort(@cgrps);
2560: $cgroup = $cgrps[0];
2561: }
1.320 albertel 2562: my $uname=$env{'user.name'};
2563: my $udom=$env{'user.domain'};
1.133 bowersj2 2564:
2565: unless ($symb) { return ''; }
2566: my $result='';
2567:
1.226 www 2568: my ($mapname,$id,$fn)=&Apache::lonnet::decode_symb($symb);
1.133 bowersj2 2569:
2570: # ----------------------------------------------------- Cascading lookup scheme
2571: my $rwhat=$what;
2572: $what=~s/^parameter\_//;
2573: $what=~s/\_/\./;
2574:
2575: my $symbparm=$symb.'.'.$what;
2576: my $mapparm=$mapname.'___(all).'.$what;
1.325 albertel 2577: my $usercourseprefix=$cid;
1.133 bowersj2 2578:
1.350 raeburn 2579: my $grplevel=$usercourseprefix.'.['.$cgroup.'].'.$what;
2580: my $grplevelr=$usercourseprefix.'.['.$cgroup.'].'.$symbparm;
2581: my $grplevelm=$usercourseprefix.'.['.$cgroup.'].'.$mapparm;
2582:
1.133 bowersj2 2583: my $seclevel= $usercourseprefix.'.['.$csec.'].'.$what;
2584: my $seclevelr=$usercourseprefix.'.['.$csec.'].'.$symbparm;
2585: my $seclevelm=$usercourseprefix.'.['.$csec.'].'.$mapparm;
2586:
2587: my $courselevel= $usercourseprefix.'.'.$what;
2588: my $courselevelr=$usercourseprefix.'.'.$symbparm;
2589: my $courselevelm=$usercourseprefix.'.'.$mapparm;
2590:
2591: my $useropt = $self->{USER_OPT};
2592: my $courseopt = $self->{COURSE_OPT};
2593: my $parmhash = $self->{PARM_HASH};
2594:
2595: # ---------------------------------------------------------- first, check user
2596: if ($uname and defined($useropt)) {
2597: if (defined($$useropt{$courselevelr})) { return $$useropt{$courselevelr}; }
2598: if (defined($$useropt{$courselevelm})) { return $$useropt{$courselevelm}; }
2599: if (defined($$useropt{$courselevel})) { return $$useropt{$courselevel}; }
2600: }
2601:
2602: # ------------------------------------------------------- second, check course
1.350 raeburn 2603: if ($cgroup ne '' and defined($courseopt)) {
2604: if (defined($$courseopt{$grplevelr})) { return $$courseopt{$grplevelr}; }
2605: if (defined($$courseopt{$grplevelm})) { return $$courseopt{$grplevelm}; }
2606: if (defined($$courseopt{$grplevel})) { return $$courseopt{$grplevel}; }
2607: }
2608:
1.133 bowersj2 2609: if ($csec and defined($courseopt)) {
2610: if (defined($$courseopt{$seclevelr})) { return $$courseopt{$seclevelr}; }
2611: if (defined($$courseopt{$seclevelm})) { return $$courseopt{$seclevelm}; }
2612: if (defined($$courseopt{$seclevel})) { return $$courseopt{$seclevel}; }
2613: }
2614:
2615: if (defined($courseopt)) {
2616: if (defined($$courseopt{$courselevelr})) { return $$courseopt{$courselevelr}; }
2617: }
2618:
2619: # ----------------------------------------------------- third, check map parms
2620:
2621: my $thisparm=$$parmhash{$symbparm};
2622: if (defined($thisparm)) { return $thisparm; }
2623:
2624: # ----------------------------------------------------- fourth , check default
2625:
1.246 albertel 2626: my $meta_rwhat=$rwhat;
2627: $meta_rwhat=~s/\./_/g;
2628: my $default=&Apache::lonnet::metadata($fn,$meta_rwhat);
2629: if (defined($default)) { return $default}
2630: $default=&Apache::lonnet::metadata($fn,'parameter_'.$meta_rwhat);
1.133 bowersj2 2631: if (defined($default)) { return $default}
2632:
1.315 albertel 2633: # --------------------------------------------------- fifth, check more course
2634: if (defined($courseopt)) {
2635: if (defined($$courseopt{$courselevelm})) { return $$courseopt{$courselevelm}; }
2636: if (defined($$courseopt{$courselevel})) { return $$courseopt{$courselevel}; }
2637: }
2638:
2639: # --------------------------------------------------- sixth , cascade up parts
1.133 bowersj2 2640:
2641: my ($space,@qualifier)=split(/\./,$rwhat);
2642: my $qualifier=join('.',@qualifier);
2643: unless ($space eq '0') {
1.160 albertel 2644: my @parts=split(/_/,$space);
2645: my $id=pop(@parts);
2646: my $part=join('_',@parts);
2647: if ($part eq '') { $part='0'; }
1.219 albertel 2648: my $partgeneral=$self->parmval($part.".$qualifier",$symb,1);
1.160 albertel 2649: if (defined($partgeneral)) { return $partgeneral; }
1.133 bowersj2 2650: }
1.219 albertel 2651: if ($recurse) { return undef; }
2652: my $pack_def=&Apache::lonnet::packages_tab_default($fn,'resource.'.$what);
2653: if (defined($pack_def)) { return $pack_def; }
1.133 bowersj2 2654: return '';
1.145 bowersj2 2655: }
2656:
1.174 albertel 2657: =pod
1.145 bowersj2 2658:
1.352 raeburn 2659: =item * B<getResourceByUrl>(url,multiple):
1.145 bowersj2 2660:
1.352 raeburn 2661: Retrieves a resource object by URL of the resource, unless the optional
2662: multiple parameter is included in wahich caes an array of resource
2663: objects is returned. If passed a resource object, it will simply return
2664: it, so it is safe to use this method in code like
2665: "$res = $navmap->getResourceByUrl($res)"
2666: if you're not sure if $res is already an object, or just a URL. If the
2667: resource appears multiple times in the course, only the first instance
2668: will be returned (useful for maps), unless the multiple parameter has
2669: been included, in which case all instances are returned in an array.
1.174 albertel 2670:
1.314 albertel 2671: =item * B<retrieveResources>(map, filterFunc, recursive, bailout, showall):
1.174 albertel 2672:
2673: The map is a specification of a map to retreive the resources from,
2674: either as a url or as an object. The filterFunc is a reference to a
2675: function that takes a resource object as its one argument and returns
2676: true if the resource should be included, or false if it should not
2677: be. If recursive is true, the map will be recursively examined,
2678: otherwise it will not be. If bailout is true, the function will return
1.314 albertel 2679: as soon as it finds a resource, if false it will finish. If showall is
2680: true it will not hide maps that contain nothing but one other map. By
2681: default, the map is the top-level map of the course, filterFunc is a
2682: function that always returns 1, recursive is true, bailout is false,
2683: showall is false. The resources will be returned in a list containing
2684: the resource objects for the corresponding resources, with B<no
2685: structure information> in the list; regardless of branching,
2686: recursion, etc., it will be a flat list.
1.174 albertel 2687:
2688: Thus, this is suitable for cases where you don't want the structure,
2689: just a list of all resources. It is also suitable for finding out how
2690: many resources match a given description; for this use, if all you
2691: want to know is if I<any> resources match the description, the bailout
2692: parameter will allow you to avoid potentially expensive enumeration of
2693: all matching resources.
1.145 bowersj2 2694:
1.318 albertel 2695: =item * B<hasResource>(map, filterFunc, recursive, showall):
1.145 bowersj2 2696:
1.174 albertel 2697: Convience method for
1.146 bowersj2 2698:
1.318 albertel 2699: scalar(retrieveResources($map, $filterFunc, $recursive, 1, $showall)) > 0
1.146 bowersj2 2700:
1.174 albertel 2701: which will tell whether the map has resources matching the description
2702: in the filter function.
1.146 bowersj2 2703:
1.352 raeburn 2704: =item * B<usedVersion>(url):
2705:
2706: Retrieves version infomation for a url. Returns the version (a number, or
2707: the string "mostrecent") for resources which have version information in
2708: the big hash.
2709:
1.145 bowersj2 2710: =cut
2711:
1.277 matthew 2712:
1.145 bowersj2 2713: sub getResourceByUrl {
2714: my $self = shift;
2715: my $resUrl = shift;
1.352 raeburn 2716: my $multiple = shift;
1.145 bowersj2 2717:
2718: if (ref($resUrl)) { return $resUrl; }
2719:
2720: $resUrl = &Apache::lonnet::clutter($resUrl);
2721: my $resId = $self->{NAV_HASH}->{'ids_' . $resUrl};
1.352 raeburn 2722: if (!$resId) { return ''; }
2723: if ($multiple) {
2724: my @resources = ();
2725: my @resIds = split (/,/, $resId);
2726: foreach my $id (@resIds) {
1.353 raeburn 2727: my $resourceId = $self->getById($id);
2728: if ($resourceId) {
2729: push(@resources,$resourceId);
1.352 raeburn 2730: }
2731: }
2732: return @resources;
2733: } else {
2734: if ($resId =~ /,/) {
2735: $resId = (split (/,/, $resId))[0];
2736: }
2737: return $self->getById($resId);
1.145 bowersj2 2738: }
2739: }
2740:
2741: sub retrieveResources {
2742: my $self = shift;
2743: my $map = shift;
2744: my $filterFunc = shift;
2745: if (!defined ($filterFunc)) {
2746: $filterFunc = sub {return 1;};
2747: }
2748: my $recursive = shift;
2749: if (!defined($recursive)) { $recursive = 1; }
2750: my $bailout = shift;
2751: if (!defined($bailout)) { $bailout = 0; }
1.314 albertel 2752: my $showall = shift;
1.145 bowersj2 2753: # Create the necessary iterator.
2754: if (!ref($map)) { # assume it's a url of a map.
1.172 bowersj2 2755: $map = $self->getResourceByUrl($map);
1.145 bowersj2 2756: }
2757:
1.213 bowersj2 2758: # If nothing was passed, assume top-level map
2759: if (!$map) {
2760: $map = $self->getById('0.0');
2761: }
2762:
1.145 bowersj2 2763: # Check the map's validity.
1.213 bowersj2 2764: if (!$map->is_map()) {
1.145 bowersj2 2765: # Oh, to throw an exception.... how I'd love that!
2766: return ();
2767: }
2768:
1.146 bowersj2 2769: # Get an iterator.
2770: my $it = $self->getIterator($map->map_start(), $map->map_finish(),
1.314 albertel 2771: undef, $recursive, $showall);
1.146 bowersj2 2772:
2773: my @resources = ();
2774:
2775: # Run down the iterator and collect the resources.
1.222 bowersj2 2776: my $curRes;
2777:
2778: while ($curRes = $it->next()) {
1.146 bowersj2 2779: if (ref($curRes)) {
2780: if (!&$filterFunc($curRes)) {
2781: next;
2782: }
2783:
2784: push @resources, $curRes;
2785:
2786: if ($bailout) {
2787: return @resources;
2788: }
2789: }
2790:
2791: }
2792:
2793: return @resources;
2794: }
2795:
2796: sub hasResource {
2797: my $self = shift;
2798: my $map = shift;
2799: my $filterFunc = shift;
2800: my $recursive = shift;
1.318 albertel 2801: my $showall = shift;
1.146 bowersj2 2802:
1.318 albertel 2803: return scalar($self->retrieveResources($map, $filterFunc, $recursive, 1, $showall)) > 0;
1.133 bowersj2 2804: }
1.51 bowersj2 2805:
1.352 raeburn 2806: sub usedVersion {
2807: my $self = shift;
2808: my $linkurl = shift;
2809: return $self->navhash("version_$linkurl");
2810: }
2811:
1.51 bowersj2 2812: 1;
2813:
2814: package Apache::lonnavmaps::iterator;
1.365 albertel 2815: use Scalar::Util qw(weaken);
1.320 albertel 2816: use Apache::lonnet;
2817:
1.51 bowersj2 2818: =pod
2819:
2820: =back
2821:
1.174 albertel 2822: =head1 Object: navmap Iterator
1.51 bowersj2 2823:
1.174 albertel 2824: An I<iterator> encapsulates the logic required to traverse a data
2825: structure. navmap uses an iterator to traverse the course map
2826: according to the criteria you wish to use.
2827:
2828: To obtain an iterator, call the B<getIterator>() function of a
2829: B<navmap> object. (Do not instantiate Apache::lonnavmaps::iterator
2830: directly.) This will return a reference to the iterator:
1.51 bowersj2 2831:
2832: C<my $resourceIterator = $navmap-E<gt>getIterator();>
2833:
2834: To get the next thing from the iterator, call B<next>:
2835:
2836: C<my $nextThing = $resourceIterator-E<gt>next()>
2837:
2838: getIterator behaves as follows:
2839:
2840: =over 4
2841:
1.174 albertel 2842: =item * B<getIterator>(firstResource, finishResource, filterHash, condition, forceTop, returnTopMap):
2843:
2844: All parameters are optional. firstResource is a resource reference
2845: corresponding to where the iterator should start. It defaults to
2846: navmap->firstResource() for the corresponding nav map. finishResource
2847: corresponds to where you want the iterator to end, defaulting to
2848: navmap->finishResource(). filterHash is a hash used as a set
2849: containing strings representing the resource IDs, defaulting to
2850: empty. Condition is a 1 or 0 that sets what to do with the filter
1.205 bowersj2 2851: hash: If a 0, then only resources that exist IN the filterHash will be
1.174 albertel 2852: recursed on. If it is a 1, only resources NOT in the filterHash will
2853: be recursed on. Defaults to 0. forceTop is a boolean value. If it is
2854: false (default), the iterator will only return the first level of map
2855: that is not just a single, 'redirecting' map. If true, the iterator
2856: will return all information, starting with the top-level map,
2857: regardless of content. returnTopMap, if true (default false), will
2858: cause the iterator to return the top-level map object (resource 0.0)
2859: before anything else.
2860:
2861: Thus, by default, only top-level resources will be shown. Change the
2862: condition to a 1 without changing the hash, and all resources will be
2863: shown. Changing the condition to 1 and including some values in the
2864: hash will allow you to selectively suppress parts of the navmap, while
2865: leaving it on 0 and adding things to the hash will allow you to
2866: selectively add parts of the nav map. See the handler code for
2867: examples.
2868:
2869: The iterator will return either a reference to a resource object, or a
2870: token representing something in the map, such as the beginning of a
2871: new branch. The possible tokens are:
2872:
2873: =over 4
1.51 bowersj2 2874:
1.222 bowersj2 2875: =item * B<END_ITERATOR>:
2876:
2877: The iterator has returned all that it's going to. Further calls to the
2878: iterator will just produce more of these. This is a "false" value, and
2879: is the only false value the iterator which will be returned, so it can
2880: be used as a loop sentinel.
2881:
1.217 bowersj2 2882: =item * B<BEGIN_MAP>:
1.51 bowersj2 2883:
1.174 albertel 2884: A new map is being recursed into. This is returned I<after> the map
2885: resource itself is returned.
1.51 bowersj2 2886:
1.217 bowersj2 2887: =item * B<END_MAP>:
1.174 albertel 2888:
2889: The map is now done.
1.51 bowersj2 2890:
1.217 bowersj2 2891: =item * B<BEGIN_BRANCH>:
1.70 bowersj2 2892:
1.174 albertel 2893: A branch is now starting. The next resource returned will be the first
2894: in that branch.
1.70 bowersj2 2895:
1.217 bowersj2 2896: =item * B<END_BRANCH>:
1.70 bowersj2 2897:
1.174 albertel 2898: The branch is now done.
1.51 bowersj2 2899:
2900: =back
2901:
1.174 albertel 2902: The tokens are retreivable via methods on the iterator object, i.e.,
2903: $iterator->END_MAP.
1.70 bowersj2 2904:
1.174 albertel 2905: Maps can contain empty resources. The iterator will automatically skip
2906: over such resources, but will still treat the structure
2907: correctly. Thus, a complicated map with several branches, but
2908: consisting entirely of empty resources except for one beginning or
2909: ending resource, will cause a lot of BRANCH_STARTs and BRANCH_ENDs,
2910: but only one resource will be returned.
1.116 bowersj2 2911:
1.242 matthew 2912: =back
2913:
1.222 bowersj2 2914: =head2 Normal Usage
2915:
2916: Normal usage of the iterator object is to do the following:
2917:
2918: my $it = $navmap->getIterator([your params here]);
2919: my $curRes;
2920: while ($curRes = $it->next()) {
2921: [your logic here]
2922: }
2923:
2924: Note that inside of the loop, it's frequently useful to check if
2925: "$curRes" is a reference or not with the reference function; only
2926: resource objects will be references, and any non-references will
2927: be the tokens described above.
2928:
2929: Also note there is some old code floating around that trys to track
2930: the depth of the iterator to see when it's done; do not copy that
2931: code. It is difficult to get right and harder to understand then
2932: this. They should be migrated to this new style.
1.51 bowersj2 2933:
2934: =cut
2935:
2936: # Here are the tokens for the iterator:
2937:
1.222 bowersj2 2938: sub END_ITERATOR { return 0; }
1.51 bowersj2 2939: sub BEGIN_MAP { return 1; } # begining of a new map
2940: sub END_MAP { return 2; } # end of the map
2941: sub BEGIN_BRANCH { return 3; } # beginning of a branch
2942: sub END_BRANCH { return 4; } # end of a branch
1.89 bowersj2 2943: sub FORWARD { return 1; } # go forward
2944: sub BACKWARD { return 2; }
1.51 bowersj2 2945:
1.96 bowersj2 2946: sub min {
2947: (my $a, my $b) = @_;
2948: if ($a < $b) { return $a; } else { return $b; }
2949: }
2950:
1.94 bowersj2 2951: sub new {
2952: # magic invocation to create a class instance
2953: my $proto = shift;
2954: my $class = ref($proto) || $proto;
2955: my $self = {};
2956:
1.300 albertel 2957: weaken($self->{NAV_MAP} = shift);
1.94 bowersj2 2958: return undef unless ($self->{NAV_MAP});
2959:
2960: # Handle the parameters
2961: $self->{FIRST_RESOURCE} = shift || $self->{NAV_MAP}->firstResource();
2962: $self->{FINISH_RESOURCE} = shift || $self->{NAV_MAP}->finishResource();
2963:
2964: # If the given resources are just the ID of the resource, get the
2965: # objects
2966: if (!ref($self->{FIRST_RESOURCE})) { $self->{FIRST_RESOURCE} =
2967: $self->{NAV_MAP}->getById($self->{FIRST_RESOURCE}); }
2968: if (!ref($self->{FINISH_RESOURCE})) { $self->{FINISH_RESOURCE} =
2969: $self->{NAV_MAP}->getById($self->{FINISH_RESOURCE}); }
2970:
2971: $self->{FILTER} = shift;
2972:
2973: # A hash, used as a set, of resource already seen
2974: $self->{ALREADY_SEEN} = shift;
2975: if (!defined($self->{ALREADY_SEEN})) { $self->{ALREADY_SEEN} = {} };
2976: $self->{CONDITION} = shift;
2977:
1.116 bowersj2 2978: # Do we want to automatically follow "redirection" maps?
2979: $self->{FORCE_TOP} = shift;
2980:
1.162 bowersj2 2981: # Do we want to return the top-level map object (resource 0.0)?
2982: $self->{RETURN_0} = shift;
2983: # have we done that yet?
2984: $self->{HAVE_RETURNED_0} = 0;
2985:
1.94 bowersj2 2986: # Now, we need to pre-process the map, by walking forward and backward
2987: # over the parts of the map we're going to look at.
1.96 bowersj2 2988:
1.97 bowersj2 2989: # The processing steps are exactly the same, except for a few small
2990: # changes, so I bundle those up in the following list of two elements:
2991: # (direction_to_iterate, VAL_name, next_resource_method_to_call,
2992: # first_resource).
2993: # This prevents writing nearly-identical code twice.
2994: my @iterations = ( [FORWARD(), 'TOP_DOWN_VAL', 'getNext',
2995: 'FIRST_RESOURCE'],
2996: [BACKWARD(), 'BOT_UP_VAL', 'getPrevious',
2997: 'FINISH_RESOURCE'] );
2998:
1.98 bowersj2 2999: my $maxDepth = 0; # tracks max depth
3000:
1.116 bowersj2 3001: # If there is only one resource in this map, and it's a map, we
3002: # want to remember that, so the user can ask for the first map
3003: # that isn't just a redirector.
3004: my $resource; my $resourceCount = 0;
3005:
1.209 bowersj2 3006: # Documentation on this algorithm can be found in the CVS repository at
3007: # /docs/lonnavdocs; these "**#**" markers correspond to documentation
3008: # in that file.
1.107 bowersj2 3009: # **1**
3010:
1.97 bowersj2 3011: foreach my $pass (@iterations) {
3012: my $direction = $pass->[0];
3013: my $valName = $pass->[1];
3014: my $nextResourceMethod = $pass->[2];
3015: my $firstResourceName = $pass->[3];
3016:
3017: my $iterator = Apache::lonnavmaps::DFSiterator->new($self->{NAV_MAP},
3018: $self->{FIRST_RESOURCE},
3019: $self->{FINISH_RESOURCE},
3020: {}, undef, 0, $direction);
1.96 bowersj2 3021:
1.97 bowersj2 3022: # prime the recursion
3023: $self->{$firstResourceName}->{DATA}->{$valName} = 0;
1.222 bowersj2 3024: $iterator->next();
1.97 bowersj2 3025: my $curRes = $iterator->next();
1.222 bowersj2 3026: my $depth = 1;
3027: while ($depth > 0) {
3028: if ($curRes == $iterator->BEGIN_MAP()) { $depth++; }
3029: if ($curRes == $iterator->END_MAP()) { $depth--; }
3030:
1.97 bowersj2 3031: if (ref($curRes)) {
1.116 bowersj2 3032: # If there's only one resource, this will save it
1.117 bowersj2 3033: # we have to filter empty resources from consideration here,
3034: # or even "empty", redirecting maps have two (start & finish)
3035: # or three (start, finish, plus redirector)
3036: if($direction == FORWARD && $curRes->src()) {
3037: $resource = $curRes; $resourceCount++;
3038: }
1.97 bowersj2 3039: my $resultingVal = $curRes->{DATA}->{$valName};
3040: my $nextResources = $curRes->$nextResourceMethod();
1.116 bowersj2 3041: my $nextCount = scalar(@{$nextResources});
1.104 bowersj2 3042:
1.116 bowersj2 3043: if ($nextCount == 1) { # **3**
1.97 bowersj2 3044: my $current = $nextResources->[0]->{DATA}->{$valName} || 999999999;
3045: $nextResources->[0]->{DATA}->{$valName} = min($resultingVal, $current);
3046: }
3047:
1.116 bowersj2 3048: if ($nextCount > 1) { # **4**
1.97 bowersj2 3049: foreach my $res (@{$nextResources}) {
3050: my $current = $res->{DATA}->{$valName} || 999999999;
3051: $res->{DATA}->{$valName} = min($current, $resultingVal + 1);
3052: }
3053: }
3054: }
1.96 bowersj2 3055:
1.107 bowersj2 3056: # Assign the final val (**2**)
1.97 bowersj2 3057: if (ref($curRes) && $direction == BACKWARD()) {
1.98 bowersj2 3058: my $finalDepth = min($curRes->{DATA}->{TOP_DOWN_VAL},
3059: $curRes->{DATA}->{BOT_UP_VAL});
3060:
3061: $curRes->{DATA}->{DISPLAY_DEPTH} = $finalDepth;
3062: if ($finalDepth > $maxDepth) {$maxDepth = $finalDepth;}
1.190 bowersj2 3063: }
1.222 bowersj2 3064:
3065: $curRes = $iterator->next();
1.96 bowersj2 3066: }
3067: }
1.94 bowersj2 3068:
1.116 bowersj2 3069: # Check: Was this only one resource, a map?
1.255 albertel 3070: if ($resourceCount == 1 && $resource->is_sequence() && !$self->{FORCE_TOP}) {
1.116 bowersj2 3071: my $firstResource = $resource->map_start();
3072: my $finishResource = $resource->map_finish();
3073: return
3074: Apache::lonnavmaps::iterator->new($self->{NAV_MAP}, $firstResource,
3075: $finishResource, $self->{FILTER},
3076: $self->{ALREADY_SEEN},
1.314 albertel 3077: $self->{CONDITION},
3078: $self->{FORCE_TOP});
1.116 bowersj2 3079:
3080: }
3081:
1.98 bowersj2 3082: # Set up some bookkeeping information.
3083: $self->{CURRENT_DEPTH} = 0;
3084: $self->{MAX_DEPTH} = $maxDepth;
3085: $self->{STACK} = [];
3086: $self->{RECURSIVE_ITERATOR_FLAG} = 0;
1.222 bowersj2 3087: $self->{FINISHED} = 0; # When true, the iterator has finished
1.98 bowersj2 3088:
3089: for (my $i = 0; $i <= $self->{MAX_DEPTH}; $i++) {
3090: push @{$self->{STACK}}, [];
3091: }
3092:
1.107 bowersj2 3093: # Prime the recursion w/ the first resource **5**
1.98 bowersj2 3094: push @{$self->{STACK}->[0]}, $self->{FIRST_RESOURCE};
3095: $self->{ALREADY_SEEN}->{$self->{FIRST_RESOURCE}->{ID}} = 1;
3096:
3097: bless ($self);
3098:
3099: return $self;
3100: }
3101:
3102: sub next {
3103: my $self = shift;
1.256 albertel 3104: my $closeAllPages=shift;
1.222 bowersj2 3105: if ($self->{FINISHED}) {
3106: return END_ITERATOR();
3107: }
3108:
1.162 bowersj2 3109: # If we want to return the top-level map object, and haven't yet,
3110: # do so.
3111: if ($self->{RETURN_0} && !$self->{HAVE_RETURNED_0}) {
3112: $self->{HAVE_RETURNED_0} = 1;
3113: return $self->{NAV_MAP}->getById('0.0');
3114: }
1.98 bowersj2 3115:
3116: if ($self->{RECURSIVE_ITERATOR_FLAG}) {
3117: # grab the next from the recursive iterator
1.256 albertel 3118: my $next = $self->{RECURSIVE_ITERATOR}->next($closeAllPages);
1.98 bowersj2 3119:
3120: # is it a begin or end map? If so, update the depth
3121: if ($next == BEGIN_MAP() ) { $self->{RECURSIVE_DEPTH}++; }
3122: if ($next == END_MAP() ) { $self->{RECURSIVE_DEPTH}--; }
3123:
3124: # Are we back at depth 0? If so, stop recursing
3125: if ($self->{RECURSIVE_DEPTH} == 0) {
3126: $self->{RECURSIVE_ITERATOR_FLAG} = 0;
3127: }
3128:
3129: return $next;
3130: }
3131:
3132: if (defined($self->{FORCE_NEXT})) {
3133: my $tmp = $self->{FORCE_NEXT};
3134: $self->{FORCE_NEXT} = undef;
3135: return $tmp;
3136: }
3137:
3138: # Have we not yet begun? If not, return BEGIN_MAP and
3139: # remember we've started.
3140: if ( !$self->{STARTED} ) {
3141: $self->{STARTED} = 1;
3142: return $self->BEGIN_MAP();
3143: }
3144:
3145: # Here's the guts of the iterator.
3146:
3147: # Find the next resource, if any.
3148: my $found = 0;
3149: my $i = $self->{MAX_DEPTH};
3150: my $newDepth;
3151: my $here;
3152: while ( $i >= 0 && !$found ) {
1.107 bowersj2 3153: if ( scalar(@{$self->{STACK}->[$i]}) > 0 ) { # **6**
3154: $here = pop @{$self->{STACK}->[$i]}; # **7**
1.98 bowersj2 3155: $found = 1;
3156: $newDepth = $i;
3157: }
3158: $i--;
3159: }
3160:
3161: # If we still didn't find anything, we're done.
3162: if ( !$found ) {
3163: # We need to get back down to the correct branch depth
3164: if ( $self->{CURRENT_DEPTH} > 0 ) {
3165: $self->{CURRENT_DEPTH}--;
3166: return END_BRANCH();
3167: } else {
1.222 bowersj2 3168: $self->{FINISHED} = 1;
1.98 bowersj2 3169: return END_MAP();
3170: }
3171: }
3172:
1.104 bowersj2 3173: # If this is not a resource, it must be an END_BRANCH marker we want
3174: # to return directly.
1.107 bowersj2 3175: if (!ref($here)) { # **8**
1.104 bowersj2 3176: if ($here == END_BRANCH()) { # paranoia, in case of later extension
3177: $self->{CURRENT_DEPTH}--;
3178: return $here;
3179: }
3180: }
3181:
3182: # Otherwise, it is a resource and it's safe to store in $self->{HERE}
3183: $self->{HERE} = $here;
3184:
1.98 bowersj2 3185: # Get to the right level
3186: if ( $self->{CURRENT_DEPTH} > $newDepth ) {
3187: push @{$self->{STACK}->[$newDepth]}, $here;
3188: $self->{CURRENT_DEPTH}--;
3189: return END_BRANCH();
3190: }
3191: if ( $self->{CURRENT_DEPTH} < $newDepth) {
3192: push @{$self->{STACK}->[$newDepth]}, $here;
3193: $self->{CURRENT_DEPTH}++;
3194: return BEGIN_BRANCH();
3195: }
3196:
3197: # If we made it here, we have the next resource, and we're at the
3198: # right branch level. So let's examine the resource for where
3199: # we can get to from here.
3200:
3201: # So we need to look at all the resources we can get to from here,
3202: # categorize them if we haven't seen them, remember if we have a new
3203: my $nextUnfiltered = $here->getNext();
1.104 bowersj2 3204: my $maxDepthAdded = -1;
3205:
1.98 bowersj2 3206: for (@$nextUnfiltered) {
3207: if (!defined($self->{ALREADY_SEEN}->{$_->{ID}})) {
1.104 bowersj2 3208: my $depth = $_->{DATA}->{DISPLAY_DEPTH};
3209: push @{$self->{STACK}->[$depth]}, $_;
1.98 bowersj2 3210: $self->{ALREADY_SEEN}->{$_->{ID}} = 1;
1.104 bowersj2 3211: if ($maxDepthAdded < $depth) { $maxDepthAdded = $depth; }
1.98 bowersj2 3212: }
3213: }
1.104 bowersj2 3214:
3215: # Is this the end of a branch? If so, all of the resources examined above
3216: # led to lower levels then the one we are currently at, so we push a END_BRANCH
3217: # marker onto the stack so we don't forget.
3218: # Example: For the usual A(BC)(DE)F case, when the iterator goes down the
3219: # BC branch and gets to C, it will see F as the only next resource, but it's
3220: # one level lower. Thus, this is the end of the branch, since there are no
3221: # more resources added to this level or above.
1.111 bowersj2 3222: # We don't do this if the examined resource is the finish resource,
3223: # because the condition given above is true, but the "END_MAP" will
3224: # take care of things and we should already be at depth 0.
1.104 bowersj2 3225: my $isEndOfBranch = $maxDepthAdded < $self->{CURRENT_DEPTH};
1.111 bowersj2 3226: if ($isEndOfBranch && $here != $self->{FINISH_RESOURCE}) { # **9**
1.104 bowersj2 3227: push @{$self->{STACK}->[$self->{CURRENT_DEPTH}]}, END_BRANCH();
3228: }
3229:
1.98 bowersj2 3230: # That ends the main iterator logic. Now, do we want to recurse
3231: # down this map (if this resource is a map)?
1.256 albertel 3232: if ( ($self->{HERE}->is_sequence() || (!$closeAllPages && $self->{HERE}->is_page())) &&
1.98 bowersj2 3233: (defined($self->{FILTER}->{$self->{HERE}->map_pc()}) xor $self->{CONDITION})) {
3234: $self->{RECURSIVE_ITERATOR_FLAG} = 1;
3235: my $firstResource = $self->{HERE}->map_start();
3236: my $finishResource = $self->{HERE}->map_finish();
3237:
3238: $self->{RECURSIVE_ITERATOR} =
3239: Apache::lonnavmaps::iterator->new($self->{NAV_MAP}, $firstResource,
3240: $finishResource, $self->{FILTER},
1.314 albertel 3241: $self->{ALREADY_SEEN},
3242: $self->{CONDITION},
3243: $self->{FORCE_TOP});
1.98 bowersj2 3244: }
3245:
1.116 bowersj2 3246: # If this is a blank resource, don't actually return it.
1.117 bowersj2 3247: # Should you ever find you need it, make sure to add an option to the code
3248: # that you can use; other things depend on this behavior.
1.138 bowersj2 3249: my $browsePriv = $self->{HERE}->browsePriv();
3250: if (!$self->{HERE}->src() ||
3251: (!($browsePriv eq 'F') && !($browsePriv eq '2')) ) {
1.256 albertel 3252: return $self->next($closeAllPages);
1.116 bowersj2 3253: }
3254:
1.98 bowersj2 3255: return $self->{HERE};
3256:
3257: }
3258:
3259: =pod
3260:
1.174 albertel 3261: The other method available on the iterator is B<getStack>, which
3262: returns an array populated with the current 'stack' of maps, as
3263: references to the resource objects. Example: This is useful when
3264: making the navigation map, as we need to check whether we are under a
3265: page map to see if we need to link directly to the resource, or to the
3266: page. The first elements in the array will correspond to the top of
3267: the stack (most inclusive map).
1.98 bowersj2 3268:
3269: =cut
3270:
3271: sub getStack {
3272: my $self=shift;
3273:
3274: my @stack;
3275:
3276: $self->populateStack(\@stack);
3277:
3278: return \@stack;
3279: }
3280:
3281: # Private method: Calls the iterators recursively to populate the stack.
3282: sub populateStack {
3283: my $self=shift;
3284: my $stack = shift;
3285:
3286: push @$stack, $self->{HERE} if ($self->{HERE});
3287:
3288: if ($self->{RECURSIVE_ITERATOR_FLAG}) {
3289: $self->{RECURSIVE_ITERATOR}->populateStack($stack);
3290: }
1.94 bowersj2 3291: }
3292:
3293: 1;
3294:
3295: package Apache::lonnavmaps::DFSiterator;
1.365 albertel 3296: use Scalar::Util qw(weaken);
1.320 albertel 3297: use Apache::lonnet;
3298:
1.100 bowersj2 3299: # Not documented in the perldoc: This is a simple iterator that just walks
3300: # through the nav map and presents the resources in a depth-first search
3301: # fashion, ignorant of conditionals, randomized resources, etc. It presents
3302: # BEGIN_MAP and END_MAP, but does not understand branches at all. It is
3303: # useful for pre-processing of some kind, and is in fact used by the main
3304: # iterator that way, but that's about it.
3305: # One could imagine merging this into the init routine of the main iterator,
1.251 www 3306: # but this might as well be left separate, since it is possible some other
1.100 bowersj2 3307: # use might be found for it. - Jeremy
1.94 bowersj2 3308:
1.117 bowersj2 3309: # Unlike the main iterator, this DOES return all resources, even blank ones.
3310: # The main iterator needs them to correctly preprocess the map.
3311:
1.94 bowersj2 3312: sub BEGIN_MAP { return 1; } # begining of a new map
3313: sub END_MAP { return 2; } # end of the map
3314: sub FORWARD { return 1; } # go forward
3315: sub BACKWARD { return 2; }
3316:
1.100 bowersj2 3317: # Params: Nav map ref, first resource id/ref, finish resource id/ref,
3318: # filter hash ref (or undef), already seen hash or undef, condition
3319: # (as in main iterator), direction FORWARD or BACKWARD (undef->forward).
1.51 bowersj2 3320: sub new {
3321: # magic invocation to create a class instance
3322: my $proto = shift;
3323: my $class = ref($proto) || $proto;
3324: my $self = {};
3325:
1.300 albertel 3326: weaken($self->{NAV_MAP} = shift);
1.51 bowersj2 3327: return undef unless ($self->{NAV_MAP});
3328:
3329: $self->{FIRST_RESOURCE} = shift || $self->{NAV_MAP}->firstResource();
3330: $self->{FINISH_RESOURCE} = shift || $self->{NAV_MAP}->finishResource();
3331:
3332: # If the given resources are just the ID of the resource, get the
3333: # objects
3334: if (!ref($self->{FIRST_RESOURCE})) { $self->{FIRST_RESOURCE} =
3335: $self->{NAV_MAP}->getById($self->{FIRST_RESOURCE}); }
3336: if (!ref($self->{FINISH_RESOURCE})) { $self->{FINISH_RESOURCE} =
3337: $self->{NAV_MAP}->getById($self->{FINISH_RESOURCE}); }
3338:
3339: $self->{FILTER} = shift;
3340:
3341: # A hash, used as a set, of resource already seen
3342: $self->{ALREADY_SEEN} = shift;
1.140 bowersj2 3343: if (!defined($self->{ALREADY_SEEN})) { $self->{ALREADY_SEEN} = {} };
1.63 bowersj2 3344: $self->{CONDITION} = shift;
1.89 bowersj2 3345: $self->{DIRECTION} = shift || FORWARD();
1.51 bowersj2 3346:
1.100 bowersj2 3347: # Flag: Have we started yet?
1.51 bowersj2 3348: $self->{STARTED} = 0;
3349:
3350: # Should we continue calling the recursive iterator, if any?
3351: $self->{RECURSIVE_ITERATOR_FLAG} = 0;
3352: # The recursive iterator, if any
3353: $self->{RECURSIVE_ITERATOR} = undef;
3354: # Are we recursing on a map, or a branch?
3355: $self->{RECURSIVE_MAP} = 1; # we'll manually unset this when recursing on branches
3356: # And the count of how deep it is, so that this iterator can keep track of
3357: # when to pick back up again.
3358: $self->{RECURSIVE_DEPTH} = 0;
3359:
3360: # For keeping track of our branches, we maintain our own stack
1.100 bowersj2 3361: $self->{STACK} = [];
1.51 bowersj2 3362:
3363: # Start with the first resource
1.89 bowersj2 3364: if ($self->{DIRECTION} == FORWARD) {
1.100 bowersj2 3365: push @{$self->{STACK}}, $self->{FIRST_RESOURCE};
1.89 bowersj2 3366: } else {
1.100 bowersj2 3367: push @{$self->{STACK}}, $self->{FINISH_RESOURCE};
1.89 bowersj2 3368: }
1.51 bowersj2 3369:
3370: bless($self);
3371: return $self;
3372: }
3373:
3374: sub next {
3375: my $self = shift;
3376:
3377: # Are we using a recursive iterator? If so, pull from that and
3378: # watch the depth; we want to resume our level at the correct time.
1.98 bowersj2 3379: if ($self->{RECURSIVE_ITERATOR_FLAG}) {
1.51 bowersj2 3380: # grab the next from the recursive iterator
3381: my $next = $self->{RECURSIVE_ITERATOR}->next();
3382:
3383: # is it a begin or end map? Update depth if so
3384: if ($next == BEGIN_MAP() ) { $self->{RECURSIVE_DEPTH}++; }
3385: if ($next == END_MAP() ) { $self->{RECURSIVE_DEPTH}--; }
3386:
3387: # Are we back at depth 0? If so, stop recursing.
3388: if ($self->{RECURSIVE_DEPTH} == 0) {
3389: $self->{RECURSIVE_ITERATOR_FLAG} = 0;
3390: }
3391:
3392: return $next;
3393: }
3394:
3395: # Is there a current resource to grab? If not, then return
1.100 bowersj2 3396: # END_MAP, which will end the iterator.
3397: if (scalar(@{$self->{STACK}}) == 0) {
3398: return $self->END_MAP();
1.51 bowersj2 3399: }
3400:
3401: # Have we not yet begun? If not, return BEGIN_MAP and
3402: # remember that we've started.
3403: if ( !$self->{STARTED} ) {
3404: $self->{STARTED} = 1;
3405: return $self->BEGIN_MAP;
3406: }
3407:
3408: # Get the next resource in the branch
1.100 bowersj2 3409: $self->{HERE} = pop @{$self->{STACK}};
1.52 bowersj2 3410:
1.100 bowersj2 3411: # remember that we've seen this, so we don't return it again later
1.51 bowersj2 3412: $self->{ALREADY_SEEN}->{$self->{HERE}->{ID}} = 1;
3413:
3414: # Get the next possible resources
1.90 bowersj2 3415: my $nextUnfiltered;
1.89 bowersj2 3416: if ($self->{DIRECTION} == FORWARD()) {
1.90 bowersj2 3417: $nextUnfiltered = $self->{HERE}->getNext();
1.89 bowersj2 3418: } else {
1.90 bowersj2 3419: $nextUnfiltered = $self->{HERE}->getPrevious();
1.89 bowersj2 3420: }
1.51 bowersj2 3421: my $next = [];
3422:
3423: # filter the next possibilities to remove things we've
1.100 bowersj2 3424: # already seen.
1.51 bowersj2 3425: foreach (@$nextUnfiltered) {
1.52 bowersj2 3426: if (!defined($self->{ALREADY_SEEN}->{$_->{ID}})) {
3427: push @$next, $_;
3428: }
1.51 bowersj2 3429: }
3430:
3431: while (@$next) {
1.100 bowersj2 3432: # copy the next possibilities over to the stack
3433: push @{$self->{STACK}}, shift @$next;
1.51 bowersj2 3434: }
3435:
3436: # If this is a map and we want to recurse down it... (not filtered out)
1.70 bowersj2 3437: if ($self->{HERE}->is_map() &&
1.63 bowersj2 3438: (defined($self->{FILTER}->{$self->{HERE}->map_pc()}) xor $self->{CONDITION})) {
1.51 bowersj2 3439: $self->{RECURSIVE_ITERATOR_FLAG} = 1;
3440: my $firstResource = $self->{HERE}->map_start();
3441: my $finishResource = $self->{HERE}->map_finish();
3442:
3443: $self->{RECURSIVE_ITERATOR} =
1.94 bowersj2 3444: Apache::lonnavmaps::DFSiterator->new ($self->{NAV_MAP}, $firstResource,
1.63 bowersj2 3445: $finishResource, $self->{FILTER}, $self->{ALREADY_SEEN},
1.91 bowersj2 3446: $self->{CONDITION}, $self->{DIRECTION});
1.51 bowersj2 3447: }
3448:
3449: return $self->{HERE};
1.190 bowersj2 3450: }
3451:
3452: # Identical to the full iterator methods of the same name. Hate to copy/paste
3453: # but I also hate to "inherit" either iterator from the other.
3454:
3455: sub getStack {
3456: my $self=shift;
3457:
3458: my @stack;
3459:
3460: $self->populateStack(\@stack);
3461:
3462: return \@stack;
3463: }
3464:
3465: # Private method: Calls the iterators recursively to populate the stack.
3466: sub populateStack {
3467: my $self=shift;
3468: my $stack = shift;
3469:
3470: push @$stack, $self->{HERE} if ($self->{HERE});
3471:
3472: if ($self->{RECURSIVE_ITERATOR_FLAG}) {
3473: $self->{RECURSIVE_ITERATOR}->populateStack($stack);
3474: }
1.51 bowersj2 3475: }
3476:
1.1 www 3477: 1;
1.2 www 3478:
1.51 bowersj2 3479: package Apache::lonnavmaps::resource;
1.365 albertel 3480: use Scalar::Util qw(weaken);
1.51 bowersj2 3481: use Apache::lonnet;
3482:
3483: =pod
3484:
1.217 bowersj2 3485: =head1 Object: resource
1.51 bowersj2 3486:
1.217 bowersj2 3487: X<resource, navmap object>
1.174 albertel 3488: A resource object encapsulates a resource in a resource map, allowing
3489: easy manipulation of the resource, querying the properties of the
3490: resource (including user properties), and represents a reference that
3491: can be used as the canonical representation of the resource by
3492: lonnavmap clients like renderers.
3493:
3494: A resource only makes sense in the context of a navmap, as some of the
3495: data is stored in the navmap object.
3496:
3497: You will probably never need to instantiate this object directly. Use
3498: Apache::lonnavmaps::navmap, and use the "start" method to obtain the
3499: starting resource.
1.51 bowersj2 3500:
1.188 bowersj2 3501: Resource objects respect the parameter_hiddenparts, which suppresses
3502: various parts according to the wishes of the map author. As of this
3503: writing, there is no way to override this parameter, and suppressed
3504: parts will never be returned, nor will their response types or ids be
3505: stored.
3506:
1.217 bowersj2 3507: =head2 Overview
1.51 bowersj2 3508:
1.217 bowersj2 3509: A B<Resource> is the most granular type of object in LON-CAPA that can
3510: be included in a course. It can either be a particular resource, like
3511: an HTML page, external resource, problem, etc., or it can be a
3512: container sequence, such as a "page" or a "map".
3513:
3514: To see a sequence from the user's point of view, please see the
3515: B<Creating a Course: Maps and Sequences> chapter of the Author's
3516: Manual.
3517:
3518: A Resource Object, once obtained from a navmap object via a B<getBy*>
3519: method of the navmap, or from an iterator, allows you to query
3520: information about that resource.
3521:
3522: Generally, you do not ever want to create a resource object yourself,
3523: so creation has been left undocumented. Always retrieve resources
3524: from navmap objects.
3525:
3526: =head3 Identifying Resources
3527:
3528: X<big hash>Every resource is identified by a Resource ID in the big hash that is
3529: unique to that resource for a given course. X<resource ID, in big hash>
3530: The Resource ID has the form #.#, where the first number is the same
3531: for every resource in a map, and the second is unique. For instance,
3532: for a course laid out like this:
3533:
3534: * Problem 1
3535: * Map
3536: * Resource 2
3537: * Resource 3
3538:
3539: C<Problem 1> and C<Map> will share a first number, and C<Resource 2>
3540: C<Resource 3> will share a first number. The second number may end up
3541: re-used between the two groups.
3542:
3543: The resource ID is only used in the big hash, but can be used in the
3544: context of a course to identify a resource easily. (For instance, the
3545: printing system uses it to record which resources from a sequence you
3546: wish to print.)
3547:
3548: X<symb> X<resource, symb>
3549: All resources also have B<symb>s, which uniquely identify a resource
3550: in a course. Many internal LON-CAPA functions expect a symb. A symb
3551: carries along with it the URL of the resource, and the map it appears
3552: in. Symbs are much larger then resource IDs.
1.51 bowersj2 3553:
3554: =cut
3555:
3556: sub new {
3557: # magic invocation to create a class instance
3558: my $proto = shift;
3559: my $class = ref($proto) || $proto;
3560: my $self = {};
3561:
1.300 albertel 3562: weaken($self->{NAV_MAP} = shift);
1.51 bowersj2 3563: $self->{ID} = shift;
3564:
3565: # Store this new resource in the parent nav map's cache.
3566: $self->{NAV_MAP}->{RESOURCE_CACHE}->{$self->{ID}} = $self;
1.66 bowersj2 3567: $self->{RESOURCE_ERROR} = 0;
1.51 bowersj2 3568:
3569: # A hash that can be used by two-pass algorithms to store data
3570: # about this resource in. Not used by the resource object
3571: # directly.
3572: $self->{DATA} = {};
3573:
3574: bless($self);
3575:
3576: return $self;
3577: }
3578:
1.70 bowersj2 3579: # private function: simplify the NAV_HASH lookups we keep doing
3580: # pass the name, and to automatically append my ID, pass a true val on the
3581: # second param
3582: sub navHash {
3583: my $self = shift;
3584: my $param = shift;
3585: my $id = shift;
1.115 bowersj2 3586: return $self->{NAV_MAP}->navhash($param . ($id?$self->{ID}:""));
1.70 bowersj2 3587: }
3588:
1.51 bowersj2 3589: =pod
3590:
1.217 bowersj2 3591: =head2 Methods
1.70 bowersj2 3592:
1.217 bowersj2 3593: Once you have a resource object, here's what you can do with it:
3594:
3595: =head3 Attribute Retrieval
3596:
3597: Every resource has certain attributes that can be retrieved and used:
1.70 bowersj2 3598:
3599: =over 4
3600:
1.217 bowersj2 3601: =item * B<ID>: Every resource has an ID that is unique for that
3602: resource in the course it is in. The ID is actually in the hash
3603: representing the resource, so for a resource object $res, obtain
3604: it via C<$res->{ID}).
3605:
1.174 albertel 3606: =item * B<compTitle>:
3607:
3608: Returns a "composite title", that is equal to $res->title() if the
3609: resource has a title, and is otherwise the last part of the URL (e.g.,
3610: "problem.problem").
3611:
3612: =item * B<ext>:
3613:
3614: Returns true if the resource is external.
3615:
3616: =item * B<kind>:
3617:
3618: Returns the kind of the resource from the compiled nav map.
3619:
3620: =item * B<randomout>:
1.106 bowersj2 3621:
1.174 albertel 3622: Returns true if this resource was chosen to NOT be shown to the user
3623: by the random map selection feature. In other words, this is usually
3624: false.
1.70 bowersj2 3625:
1.174 albertel 3626: =item * B<randompick>:
1.70 bowersj2 3627:
1.174 albertel 3628: Returns true for a map if the randompick feature is being used on the
3629: map. (?)
1.70 bowersj2 3630:
1.174 albertel 3631: =item * B<src>:
1.51 bowersj2 3632:
1.174 albertel 3633: Returns the source for the resource.
1.70 bowersj2 3634:
1.174 albertel 3635: =item * B<symb>:
1.70 bowersj2 3636:
1.174 albertel 3637: Returns the symb for the resource.
1.70 bowersj2 3638:
1.174 albertel 3639: =item * B<title>:
1.70 bowersj2 3640:
1.174 albertel 3641: Returns the title of the resource.
3642:
1.51 bowersj2 3643: =back
3644:
3645: =cut
3646:
3647: # These info functions can be used directly, as they don't return
3648: # resource information.
1.85 bowersj2 3649: sub comesfrom { my $self=shift; return $self->navHash("comesfrom_", 1); }
1.303 albertel 3650: sub encrypted { my $self=shift; return $self->navHash("encrypted_", 1); }
1.70 bowersj2 3651: sub ext { my $self=shift; return $self->navHash("ext_", 1) eq 'true:'; }
1.85 bowersj2 3652: sub from { my $self=shift; return $self->navHash("from_", 1); }
1.217 bowersj2 3653: # considered private and undocumented
1.51 bowersj2 3654: sub goesto { my $self=shift; return $self->navHash("goesto_", 1); }
3655: sub kind { my $self=shift; return $self->navHash("kind_", 1); }
1.68 bowersj2 3656: sub randomout { my $self=shift; return $self->navHash("randomout_", 1); }
3657: sub randompick {
3658: my $self = shift;
1.370 albertel 3659: return $self->parmval('randompick');
1.68 bowersj2 3660: }
1.303 albertel 3661: sub link {
3662: my $self=shift;
3663: if ($self->encrypted()) { return &Apache::lonenc::encrypted($self->src); }
3664: return $self->src;
3665: }
1.51 bowersj2 3666: sub src {
3667: my $self=shift;
3668: return $self->navHash("src_", 1);
3669: }
1.303 albertel 3670: sub shown_symb {
3671: my $self=shift;
3672: if ($self->encrypted()) {return &Apache::lonenc::encrypted($self->symb());}
3673: return $self->symb();
3674: }
1.328 www 3675: sub id {
3676: my $self=shift;
3677: return $self->{ID};
3678: }
3679: sub enclosing_map_src {
3680: my $self=shift;
3681: (my $first, my $second) = $self->{ID} =~ /(\d+).(\d+)/;
3682: return $self->navHash('map_id_'.$first);
3683: }
1.51 bowersj2 3684: sub symb {
3685: my $self=shift;
3686: (my $first, my $second) = $self->{ID} =~ /(\d+).(\d+)/;
3687: my $symbSrc = &Apache::lonnet::declutter($self->src());
1.223 albertel 3688: my $symb = &Apache::lonnet::declutter($self->navHash('map_id_'.$first))
1.51 bowersj2 3689: . '___' . $second . '___' . $symbSrc;
1.223 albertel 3690: return &Apache::lonnet::symbclean($symb);
1.51 bowersj2 3691: }
1.321 raeburn 3692: sub wrap_symb {
3693: my $self = shift;
3694: return $self->{NAV_MAP}->wrap_symb($self->symb());
3695: }
1.213 bowersj2 3696: sub title {
3697: my $self=shift;
3698: if ($self->{ID} eq '0.0') {
3699: # If this is the top-level map, return the title of the course
3700: # since this map can not be titled otherwise.
1.320 albertel 3701: return $env{'course.'.$env{'request.course.id'}.'.description'};
1.213 bowersj2 3702: }
3703: return $self->navHash("title_", 1); }
1.217 bowersj2 3704: # considered private and undocumented
1.70 bowersj2 3705: sub to { my $self=shift; return $self->navHash("to_", 1); }
1.301 albertel 3706: sub condition {
3707: my $self=shift;
3708: my $undercond=$self->navHash("undercond_", 1);
3709: if (!defined($undercond)) { return 1; };
3710: my $condid=$self->navHash("condid_$undercond");
3711: if (!defined($condid)) { return 1; };
3712: my $condition=&Apache::lonnet::directcondval($condid);
3713: return $condition;
3714: }
1.342 albertel 3715: sub condval {
3716: my $self=shift;
1.359 albertel 3717: my ($pathname,$filename) =
3718: &Apache::lonnet::split_uri_for_cond($self->src());
1.342 albertel 3719:
3720: my $match=($env{'acc.res.'.$env{'request.course.id'}.'.'.$pathname}=~
3721: /\&\Q$filename\E\:([\d\|]+)\&/);
3722: if ($match) {
3723: return &Apache::lonnet::condval($1);
3724: }
3725: return 0;
3726: }
1.106 bowersj2 3727: sub compTitle {
3728: my $self = shift;
3729: my $title = $self->title();
1.176 www 3730: $title=~s/\&colon\;/\:/gs;
1.106 bowersj2 3731: if (!$title) {
3732: $title = $self->src();
3733: $title = substr($title, rindex($title, '/') + 1);
3734: }
3735: return $title;
3736: }
1.70 bowersj2 3737: =pod
3738:
3739: B<Predicate Testing the Resource>
3740:
3741: These methods are shortcuts to deciding if a given resource has a given property.
3742:
3743: =over 4
3744:
1.174 albertel 3745: =item * B<is_map>:
3746:
3747: Returns true if the resource is a map type.
3748:
3749: =item * B<is_problem>:
1.70 bowersj2 3750:
1.174 albertel 3751: Returns true if the resource is a problem type, false
3752: otherwise. (Looks at the extension on the src field; might need more
3753: to work correctly.)
1.70 bowersj2 3754:
1.174 albertel 3755: =item * B<is_page>:
1.70 bowersj2 3756:
1.174 albertel 3757: Returns true if the resource is a page.
3758:
3759: =item * B<is_sequence>:
3760:
3761: Returns true if the resource is a sequence.
1.70 bowersj2 3762:
3763: =back
3764:
3765: =cut
3766:
1.256 albertel 3767: sub hasResource {
3768: my $self = shift;
3769: return $self->{NAV_MAP}->hasResource(@_);
3770: }
3771:
3772: sub retrieveResources {
3773: my $self = shift;
3774: return $self->{NAV_MAP}->retrieveResources(@_);
3775: }
1.70 bowersj2 3776:
1.369 albertel 3777: sub is_exam {
3778: my ($self,$part) = @_;
3779: if ($self->parmval('type',$part) eq 'exam') {
3780: return 1;
3781: }
3782: if ($self->src() =~ /\.(exam)$/) {
3783: return 1;
3784: }
3785: return 0;
3786: }
1.70 bowersj2 3787: sub is_html {
1.51 bowersj2 3788: my $self=shift;
3789: my $src = $self->src();
1.70 bowersj2 3790: return ($src =~ /html$/);
1.51 bowersj2 3791: }
1.70 bowersj2 3792: sub is_map { my $self=shift; return defined($self->navHash("is_map_", 1)); }
3793: sub is_page {
1.51 bowersj2 3794: my $self=shift;
3795: my $src = $self->src();
1.205 bowersj2 3796: return $self->navHash("is_map_", 1) &&
3797: $self->navHash("map_type_" . $self->map_pc()) eq 'page';
1.51 bowersj2 3798: }
1.361 albertel 3799: sub is_practice {
3800: my $self=shift;
3801: my ($part) = @_;
3802: if ($self->parmval('type',$part) eq 'practice') {
3803: return 1;
3804: }
3805: return 0;
3806: }
1.70 bowersj2 3807: sub is_problem {
1.51 bowersj2 3808: my $self=shift;
3809: my $src = $self->src();
1.361 albertel 3810: if ($src =~ /\.(problem|exam|quiz|assess|survey|form|library|task)$/) {
3811: return !($self->is_practice());
3812: }
3813: return 0;
1.256 albertel 3814: }
3815: sub contains_problem {
3816: my $self=shift;
3817: if ($self->is_page()) {
3818: my $hasProblem=$self->hasResource($self,sub { $_[0]->is_problem() },1);
3819: return $hasProblem;
3820: }
3821: return 0;
1.51 bowersj2 3822: }
1.70 bowersj2 3823: sub is_sequence {
1.51 bowersj2 3824: my $self=shift;
3825: my $src = $self->src();
1.205 bowersj2 3826: return $self->navHash("is_map_", 1) &&
3827: $self->navHash("map_type_" . $self->map_pc()) eq 'sequence';
1.51 bowersj2 3828: }
1.261 matthew 3829: sub is_survey {
3830: my $self = shift();
3831: my $part = shift();
1.263 albertel 3832: if ($self->parmval('type',$part) eq 'survey') {
1.261 matthew 3833: return 1;
3834: }
1.263 albertel 3835: if ($self->src() =~ /\.(survey)$/) {
1.261 matthew 3836: return 1;
3837: }
3838: return 0;
3839: }
1.360 albertel 3840: sub is_task {
3841: my $self=shift;
3842: my $src = $self->src();
3843: return ($src =~ /\.(task)$/)
3844: }
1.51 bowersj2 3845:
1.266 raeburn 3846: sub is_empty_sequence {
3847: my $self=shift;
3848: my $src = $self->src();
3849: return !$self->is_page() && $self->navHash("is_map_", 1) && !$self->navHash("map_type_" . $self->map_pc());
3850: }
3851:
1.101 bowersj2 3852: # Private method: Shells out to the parmval in the nav map, handler parts.
1.51 bowersj2 3853: sub parmval {
3854: my $self = shift;
3855: my $what = shift;
1.185 bowersj2 3856: my $part = shift;
3857: if (!defined($part)) {
3858: $part = '0';
3859: }
1.51 bowersj2 3860: return $self->{NAV_MAP}->parmval($part.'.'.$what, $self->symb());
3861: }
3862:
1.70 bowersj2 3863: =pod
3864:
3865: B<Map Methods>
3866:
1.174 albertel 3867: These methods are useful for getting information about the map
3868: properties of the resource, if the resource is a map (B<is_map>).
1.70 bowersj2 3869:
3870: =over 4
3871:
1.174 albertel 3872: =item * B<map_finish>:
3873:
3874: Returns a reference to a resource object corresponding to the finish
3875: resource of the map.
1.70 bowersj2 3876:
1.174 albertel 3877: =item * B<map_pc>:
1.70 bowersj2 3878:
1.174 albertel 3879: Returns the pc value of the map, which is the first number that
3880: appears in the resource ID of the resources in the map, and is the
3881: number that appears around the middle of the symbs of the resources in
3882: that map.
1.70 bowersj2 3883:
1.174 albertel 3884: =item * B<map_start>:
3885:
3886: Returns a reference to a resource object corresponding to the start
3887: resource of the map.
3888:
3889: =item * B<map_type>:
3890:
3891: Returns a string with the type of the map in it.
1.70 bowersj2 3892:
3893: =back
1.51 bowersj2 3894:
1.70 bowersj2 3895: =cut
1.51 bowersj2 3896:
3897: sub map_finish {
3898: my $self = shift;
3899: my $src = $self->src();
1.144 bowersj2 3900: $src = Apache::lonnet::clutter($src);
1.51 bowersj2 3901: my $res = $self->navHash("map_finish_$src", 0);
3902: $res = $self->{NAV_MAP}->getById($res);
3903: return $res;
3904: }
1.70 bowersj2 3905: sub map_pc {
3906: my $self = shift;
3907: my $src = $self->src();
3908: return $self->navHash("map_pc_$src", 0);
3909: }
1.51 bowersj2 3910: sub map_start {
3911: my $self = shift;
3912: my $src = $self->src();
1.144 bowersj2 3913: $src = Apache::lonnet::clutter($src);
1.51 bowersj2 3914: my $res = $self->navHash("map_start_$src", 0);
3915: $res = $self->{NAV_MAP}->getById($res);
3916: return $res;
3917: }
3918: sub map_type {
3919: my $self = shift;
3920: my $pc = $self->map_pc();
3921: return $self->navHash("map_type_$pc", 0);
3922: }
3923:
3924: #####
3925: # Property queries
3926: #####
3927:
3928: # These functions will be responsible for returning the CORRECT
3929: # VALUE for the parameter, no matter what. So while they may look
3930: # like direct calls to parmval, they can be more then that.
3931: # So, for instance, the duedate function should use the "duedatetype"
3932: # information, rather then the resource object user.
3933:
3934: =pod
3935:
3936: =head2 Resource Parameters
3937:
1.174 albertel 3938: In order to use the resource parameters correctly, the nav map must
3939: have been instantiated with genCourseAndUserOptions set to true, so
3940: the courseopt and useropt is read correctly. Then, you can call these
3941: functions to get the relevant parameters for the resource. Each
3942: function defaults to part "0", but can be directed to another part by
3943: passing the part as the parameter.
3944:
3945: These methods are responsible for getting the parameter correct, not
3946: merely reflecting the contents of the GDBM hashes. As we move towards
3947: dates relative to other dates, these methods should be updated to
3948: reflect that. (Then, anybody using these methods will not have to update
3949: their code.)
3950:
3951: =over 4
3952:
3953: =item * B<acc>:
3954:
3955: Get the Client IP/Name Access Control information.
1.51 bowersj2 3956:
1.174 albertel 3957: =item * B<answerdate>:
1.51 bowersj2 3958:
1.174 albertel 3959: Get the answer-reveal date for the problem.
3960:
1.211 bowersj2 3961: =item * B<awarded>:
3962:
3963: Gets the awarded value for the problem part. Requires genUserData set to
3964: true when the navmap object was created.
3965:
1.174 albertel 3966: =item * B<duedate>:
3967:
3968: Get the due date for the problem.
3969:
3970: =item * B<tries>:
3971:
3972: Get the number of tries the student has used on the problem.
3973:
3974: =item * B<maxtries>:
3975:
3976: Get the number of max tries allowed.
3977:
3978: =item * B<opendate>:
1.51 bowersj2 3979:
1.174 albertel 3980: Get the open date for the problem.
1.51 bowersj2 3981:
1.174 albertel 3982: =item * B<sig>:
1.51 bowersj2 3983:
1.174 albertel 3984: Get the significant figures setting.
1.51 bowersj2 3985:
1.174 albertel 3986: =item * B<tol>:
1.51 bowersj2 3987:
1.174 albertel 3988: Get the tolerance for the problem.
1.51 bowersj2 3989:
1.174 albertel 3990: =item * B<tries>:
1.51 bowersj2 3991:
1.174 albertel 3992: Get the number of tries the user has already used on the problem.
1.51 bowersj2 3993:
1.174 albertel 3994: =item * B<type>:
1.51 bowersj2 3995:
1.174 albertel 3996: Get the question type for the problem.
1.70 bowersj2 3997:
1.174 albertel 3998: =item * B<weight>:
1.51 bowersj2 3999:
1.174 albertel 4000: Get the weight for the problem.
1.51 bowersj2 4001:
4002: =back
4003:
4004: =cut
4005:
4006: sub acc {
4007: (my $self, my $part) = @_;
4008: return $self->parmval("acc", $part);
4009: }
4010: sub answerdate {
4011: (my $self, my $part) = @_;
4012: # Handle intervals
4013: if ($self->parmval("answerdate.type", $part) eq 'date_interval') {
4014: return $self->duedate($part) +
4015: $self->parmval("answerdate", $part);
4016: }
4017: return $self->parmval("answerdate", $part);
1.106 bowersj2 4018: }
1.211 bowersj2 4019: sub awarded {
4020: my $self = shift; my $part = shift;
1.221 bowersj2 4021: $self->{NAV_MAP}->get_user_data();
1.211 bowersj2 4022: if (!defined($part)) { $part = '0'; }
4023: return $self->{NAV_MAP}->{STUDENT_DATA}->{$self->symb()}->{'resource.'.$part.'.awarded'};
4024: }
1.51 bowersj2 4025: sub duedate {
4026: (my $self, my $part) = @_;
1.260 albertel 4027: my $interval=$self->parmval("interval", $part);
4028: if ($interval) {
4029: my $first_access=&Apache::lonnet::get_first_access('map',$self->symb);
4030: if ($first_access) { return ($first_access+$interval); }
4031: }
1.51 bowersj2 4032: return $self->parmval("duedate", $part);
4033: }
1.334 albertel 4034: sub handgrade {
4035: (my $self, my $part) = @_;
4036: return $self->parmval("handgrade", $part);
4037: }
1.51 bowersj2 4038: sub maxtries {
4039: (my $self, my $part) = @_;
4040: return $self->parmval("maxtries", $part);
4041: }
4042: sub opendate {
4043: (my $self, my $part) = @_;
4044: if ($self->parmval("opendate.type", $part) eq 'date_interval') {
4045: return $self->duedate($part) -
4046: $self->parmval("opendate", $part);
4047: }
4048: return $self->parmval("opendate");
4049: }
1.185 bowersj2 4050: sub problemstatus {
4051: (my $self, my $part) = @_;
1.236 bowersj2 4052: return lc $self->parmval("problemstatus", $part);
1.185 bowersj2 4053: }
1.51 bowersj2 4054: sub sig {
4055: (my $self, my $part) = @_;
4056: return $self->parmval("sig", $part);
4057: }
4058: sub tol {
4059: (my $self, my $part) = @_;
4060: return $self->parmval("tol", $part);
4061: }
1.108 bowersj2 4062: sub tries {
4063: my $self = shift;
4064: my $tries = $self->queryRestoreHash('tries', shift);
4065: if (!defined($tries)) { return '0';}
1.51 bowersj2 4066: return $tries;
4067: }
1.70 bowersj2 4068: sub type {
4069: (my $self, my $part) = @_;
4070: return $self->parmval("type", $part);
4071: }
1.109 bowersj2 4072: sub weight {
4073: my $self = shift; my $part = shift;
1.211 bowersj2 4074: if (!defined($part)) { $part = '0'; }
4075: return &Apache::lonnet::EXT('resource.'.$part.'.weight',
1.320 albertel 4076: $self->symb(), $env{'user.domain'},
4077: $env{'user.name'},
4078: $env{'request.course.sec'});
1.274 matthew 4079: }
4080: sub part_display {
4081: my $self= shift(); my $partID = shift();
4082: if (! defined($partID)) { $partID = '0'; }
4083: my $display=&Apache::lonnet::EXT('resource.'.$partID.'.display',
4084: $self->symb);
4085: if (! defined($display) || $display eq '') {
4086: $display = $partID;
4087: }
4088: return $display;
1.70 bowersj2 4089: }
1.51 bowersj2 4090:
4091: # Multiple things need this
4092: sub getReturnHash {
4093: my $self = shift;
4094:
4095: if (!defined($self->{RETURN_HASH})) {
1.84 bowersj2 4096: my %tmpHash = &Apache::lonnet::restore($self->symb());
1.51 bowersj2 4097: $self->{RETURN_HASH} = \%tmpHash;
4098: }
4099: }
4100:
4101: ######
4102: # Status queries
4103: ######
4104:
4105: # These methods query the status of problems.
4106:
4107: # If we need to count parts, this function determines the number of
4108: # parts from the metadata. When called, it returns a reference to a list
4109: # of strings corresponding to the parts. (Thus, using it in a scalar context
4110: # tells you how many parts you have in the problem:
4111: # $partcount = scalar($resource->countParts());
4112: # Don't use $self->{PARTS} directly because you don't know if it's been
4113: # computed yet.
4114:
4115: =pod
4116:
4117: =head2 Resource misc
4118:
4119: Misc. functions for the resource.
4120:
4121: =over 4
4122:
1.174 albertel 4123: =item * B<hasDiscussion>:
1.59 bowersj2 4124:
1.174 albertel 4125: Returns a false value if there has been discussion since the user last
4126: logged in, true if there has. Always returns false if the discussion
4127: data was not extracted when the nav map was constructed.
4128:
1.366 albertel 4129: =item * B<last_post_time>:
4130:
4131: Returns a false value if there hasn't been discussion otherwise returns
4132: unix timestamp of last time a discussion posting (or edit) was made.
4133:
4134: =item * B<unread_discussion>:
4135:
4136: returns in scalar context the count of the number of unread discussion
4137: postings
4138:
4139: returns in list context both the count of postings and a hash ref
4140: containing the subjects of all unread postings
4141:
1.174 albertel 4142: =item * B<getFeedback>:
4143:
4144: Gets the feedback for the resource and returns the raw feedback string
4145: for the resource, or the null string if there is no feedback or the
4146: email data was not extracted when the nav map was constructed. Usually
4147: used like this:
1.59 bowersj2 4148:
4149: for (split(/\,/, $res->getFeedback())) {
4150: my $link = &Apache::lonnet::escape($_);
4151: ...
4152:
4153: and use the link as appropriate.
4154:
4155: =cut
4156:
4157: sub hasDiscussion {
4158: my $self = shift;
4159: return $self->{NAV_MAP}->hasDiscussion($self->symb());
4160: }
4161:
1.366 albertel 4162: sub last_post_time {
4163: my $self = shift;
4164: return $self->{NAV_MAP}->last_post_time($self->symb());
4165: }
4166:
4167: sub unread_discussion {
4168: my $self = shift;
4169: return $self->{NAV_MAP}->unread_discussion($self->symb());
4170: }
4171:
1.59 bowersj2 4172: sub getFeedback {
4173: my $self = shift;
1.124 bowersj2 4174: my $source = $self->src();
1.125 bowersj2 4175: if ($source =~ /^\/res\//) { $source = substr $source, 5; }
1.124 bowersj2 4176: return $self->{NAV_MAP}->getFeedback($source);
4177: }
4178:
4179: sub getErrors {
4180: my $self = shift;
4181: my $source = $self->src();
4182: if ($source =~ /^\/res\//) { $source = substr $source, 5; }
4183: return $self->{NAV_MAP}->getErrors($source);
1.59 bowersj2 4184: }
4185:
4186: =pod
4187:
1.174 albertel 4188: =item * B<parts>():
1.51 bowersj2 4189:
1.174 albertel 4190: Returns a list reference containing sorted strings corresponding to
1.193 bowersj2 4191: each part of the problem. Single part problems have only a part '0'.
4192: Multipart problems do not return their part '0', since they typically
4193: do not really matter.
1.174 albertel 4194:
4195: =item * B<countParts>():
4196:
4197: Returns the number of parts of the problem a student can answer. Thus,
4198: for single part problems, returns 1. For multipart, it returns the
1.193 bowersj2 4199: number of parts in the problem, not including psuedo-part 0.
1.51 bowersj2 4200:
1.290 matthew 4201: =item * B<countResponses>():
4202:
4203: Returns the total number of responses in the problem a student can answer.
4204:
4205: =item * B<responseTypes>():
4206:
4207: Returns a hash whose keys are the response types. The values are the number
4208: of times each response type is used. This is for the I<entire> problem, not
4209: just a single part.
4210:
1.192 bowersj2 4211: =item * B<multipart>():
4212:
1.193 bowersj2 4213: Returns true if the problem is multipart, false otherwise. Use this instead
4214: of countParts if all you want is multipart/not multipart.
1.192 bowersj2 4215:
1.187 bowersj2 4216: =item * B<responseType>($part):
4217:
4218: Returns the response type of the part, without the word "response" on the
4219: end. Example return values: 'string', 'essay', 'numeric', etc.
4220:
1.193 bowersj2 4221: =item * B<responseIds>($part):
1.187 bowersj2 4222:
1.193 bowersj2 4223: Retreives the response IDs for the given part as an array reference containing
4224: strings naming the response IDs. This may be empty.
1.187 bowersj2 4225:
1.51 bowersj2 4226: =back
4227:
4228: =cut
4229:
4230: sub parts {
4231: my $self = shift;
4232:
1.192 bowersj2 4233: if ($self->ext) { return []; }
1.67 bowersj2 4234:
1.51 bowersj2 4235: $self->extractParts();
4236: return $self->{PARTS};
4237: }
4238:
4239: sub countParts {
4240: my $self = shift;
4241:
4242: my $parts = $self->parts();
1.191 bowersj2 4243:
4244: # If I left this here, then it's not necessary.
4245: #my $delta = 0;
4246: #for my $part (@$parts) {
4247: # if ($part eq '0') { $delta--; }
4248: #}
1.66 bowersj2 4249:
4250: if ($self->{RESOURCE_ERROR}) {
4251: return 0;
4252: }
4253:
1.191 bowersj2 4254: return scalar(@{$parts}); # + $delta;
1.192 bowersj2 4255: }
4256:
1.290 matthew 4257: sub countResponses {
4258: my $self = shift;
4259: my $count;
1.293 matthew 4260: foreach my $part (@{$self->parts()}) {
4261: $count+= scalar($self->responseIds($part));
1.290 matthew 4262: }
4263: return $count;
4264: }
4265:
4266: sub responseTypes {
4267: my $self = shift;
1.291 albertel 4268: my %responses;
1.368 raeburn 4269: foreach my $part (@{$self->parts()}) {
1.290 matthew 4270: foreach my $responsetype ($self->responseType($part)) {
1.291 albertel 4271: $responses{$responsetype}++ if (defined($responsetype));
1.290 matthew 4272: }
4273: }
1.291 albertel 4274: return %responses;
1.290 matthew 4275: }
4276:
1.192 bowersj2 4277: sub multipart {
4278: my $self = shift;
4279: return $self->countParts() > 1;
1.51 bowersj2 4280: }
4281:
1.225 bowersj2 4282: sub singlepart {
4283: my $self = shift;
4284: return $self->countParts() == 1;
4285: }
4286:
1.187 bowersj2 4287: sub responseType {
1.184 bowersj2 4288: my $self = shift;
4289: my $part = shift;
4290:
4291: $self->extractParts();
1.235 albertel 4292: if (defined($self->{RESPONSE_TYPES}->{$part})) {
4293: return @{$self->{RESPONSE_TYPES}->{$part}};
4294: } else {
4295: return undef;
4296: }
1.187 bowersj2 4297: }
4298:
1.193 bowersj2 4299: sub responseIds {
1.187 bowersj2 4300: my $self = shift;
4301: my $part = shift;
4302:
4303: $self->extractParts();
1.235 albertel 4304: if (defined($self->{RESPONSE_IDS}->{$part})) {
4305: return @{$self->{RESPONSE_IDS}->{$part}};
4306: } else {
4307: return undef;
4308: }
1.184 bowersj2 4309: }
4310:
4311: # Private function: Extracts the parts information, both part names and
1.187 bowersj2 4312: # part types, and saves it.
1.51 bowersj2 4313: sub extractParts {
4314: my $self = shift;
4315:
1.153 bowersj2 4316: return if (defined($self->{PARTS}));
1.67 bowersj2 4317: return if ($self->ext);
1.51 bowersj2 4318:
4319: $self->{PARTS} = [];
4320:
1.181 bowersj2 4321: my %parts;
4322:
1.82 bowersj2 4323: # Retrieve part count, if this is a problem
4324: if ($self->is_problem()) {
1.240 albertel 4325: my $partorder = &Apache::lonnet::metadata($self->src(), 'partorder');
1.152 matthew 4326: my $metadata = &Apache::lonnet::metadata($self->src(), 'packages');
1.181 bowersj2 4327:
1.239 bowersj2 4328: if ($partorder) {
4329: my @parts;
4330: for my $part (split (/,/,$partorder)) {
4331: if (!Apache::loncommon::check_if_partid_hidden($part, $self->symb())) {
4332: push @parts, $part;
1.241 albertel 4333: $parts{$part} = 1;
1.239 bowersj2 4334: }
4335: }
4336: $self->{PARTS} = \@parts;
4337: } else {
4338: if (!$metadata) {
4339: $self->{RESOURCE_ERROR} = 1;
4340: $self->{PARTS} = [];
4341: $self->{PART_TYPE} = {};
4342: return;
4343: }
4344: foreach (split(/\,/,$metadata)) {
1.337 albertel 4345: if ($_ =~ /^(?:part|Task)_(.*)$/) {
1.239 bowersj2 4346: my $part = $1;
4347: # This floods the logs if it blows up
4348: if (defined($parts{$part})) {
1.241 albertel 4349: &Apache::lonnet::logthis("$part multiply defined in metadata for " . $self->symb());
4350: }
1.239 bowersj2 4351:
4352: # check to see if part is turned off.
4353:
4354: if (!Apache::loncommon::check_if_partid_hidden($part, $self->symb())) {
4355: $parts{$part} = 1;
4356: }
4357: }
4358: }
4359: my @sortedParts = sort keys %parts;
4360: $self->{PARTS} = \@sortedParts;
1.51 bowersj2 4361: }
1.82 bowersj2 4362:
1.187 bowersj2 4363:
1.284 matthew 4364: # These hashes probably do not need names that end with "Hash"....
1.187 bowersj2 4365: my %responseIdHash;
4366: my %responseTypeHash;
4367:
1.189 bowersj2 4368:
4369: # Init the responseIdHash
4370: foreach (@{$self->{PARTS}}) {
4371: $responseIdHash{$_} = [];
4372: }
4373:
1.187 bowersj2 4374: # Now, the unfortunate thing about this is that parts, part name, and
1.239 bowersj2 4375: # response id are delimited by underscores, but both the part
1.187 bowersj2 4376: # name and response id can themselves have underscores in them.
4377: # So we have to use our knowlege of part names to figure out
4378: # where the part names begin and end, and even then, it is possible
4379: # to construct ambiguous situations.
4380: foreach (split /,/, $metadata) {
1.360 albertel 4381: if ($_ =~ /^([a-zA-Z]+)response_(.*)/
4382: || $_ =~ /^(Task)_(.*)/) {
1.187 bowersj2 4383: my $responseType = $1;
4384: my $partStuff = $2;
4385: my $partIdSoFar = '';
4386: my @partChunks = split /_/, $partStuff;
4387: my $i = 0;
4388: for ($i = 0; $i < scalar(@partChunks); $i++) {
4389: if ($partIdSoFar) { $partIdSoFar .= '_'; }
4390: $partIdSoFar .= $partChunks[$i];
4391: if ($parts{$partIdSoFar}) {
4392: my @otherChunks = @partChunks[$i+1..$#partChunks];
4393: my $responseId = join('_', @otherChunks);
1.188 bowersj2 4394: push @{$responseIdHash{$partIdSoFar}}, $responseId;
1.233 matthew 4395: push @{$responseTypeHash{$partIdSoFar}}, $responseType;
1.187 bowersj2 4396: }
4397: }
4398: }
4399: }
1.264 albertel 4400: my $resorder = &Apache::lonnet::metadata($self->src(),'responseorder');
1.284 matthew 4401: #
4402: # Reorder the arrays in the %responseIdHash and %responseTypeHash
1.264 albertel 4403: if ($resorder) {
4404: my @resorder=split(/,/,$resorder);
4405: foreach my $part (keys(%responseIdHash)) {
1.286 albertel 4406: my $i=0;
4407: my %resids = map { ($_,$i++) } @{ $responseIdHash{$part} };
1.264 albertel 4408: my @neworder;
4409: foreach my $possibleid (@resorder) {
4410: if (exists($resids{$possibleid})) {
1.286 albertel 4411: push(@neworder,$resids{$possibleid});
1.264 albertel 4412: }
4413: }
1.286 albertel 4414: my @ids;
4415: my @type;
4416: foreach my $element (@neworder) {
4417: push (@ids,$responseIdHash{$part}->[$element]);
4418: push (@type,$responseTypeHash{$part}->[$element]);
4419: }
4420: $responseIdHash{$part}=\@ids;
4421: $responseTypeHash{$part}=\@type;
1.264 albertel 4422: }
4423: }
1.187 bowersj2 4424: $self->{RESPONSE_IDS} = \%responseIdHash;
4425: $self->{RESPONSE_TYPES} = \%responseTypeHash;
1.154 bowersj2 4426: }
4427:
1.51 bowersj2 4428: return;
4429: }
4430:
4431: =pod
4432:
4433: =head2 Resource Status
4434:
1.174 albertel 4435: Problem resources have status information, reflecting their various
4436: dates and completion statuses.
1.51 bowersj2 4437:
1.174 albertel 4438: There are two aspects to the status: the date-related information and
4439: the completion information.
1.51 bowersj2 4440:
1.174 albertel 4441: Idiomatic usage of these two methods would probably look something
4442: like
1.51 bowersj2 4443:
4444: foreach ($resource->parts()) {
4445: my $dateStatus = $resource->getDateStatus($_);
4446: my $completionStatus = $resource->getCompletionStatus($_);
4447:
1.70 bowersj2 4448: or
4449:
4450: my $status = $resource->status($_);
4451:
1.51 bowersj2 4452: ... use it here ...
4453: }
4454:
1.174 albertel 4455: Which you use depends on exactly what you are looking for. The
4456: status() function has been optimized for the nav maps display and may
4457: not precisely match what you need elsewhere.
1.101 bowersj2 4458:
1.174 albertel 4459: The symbolic constants shown below can be accessed through the
4460: resource object: C<$res->OPEN>.
1.101 bowersj2 4461:
1.51 bowersj2 4462: =over 4
4463:
1.174 albertel 4464: =item * B<getDateStatus>($part):
4465:
4466: ($part defaults to 0). A convenience function that returns a symbolic
4467: constant telling you about the date status of the part. The possible
4468: return values are:
1.51 bowersj2 4469:
4470: =back
4471:
4472: B<Date Codes>
4473:
4474: =over 4
4475:
1.174 albertel 4476: =item * B<OPEN_LATER>:
4477:
4478: The problem will be opened later.
4479:
4480: =item * B<OPEN>:
4481:
4482: Open and not yet due.
4483:
1.51 bowersj2 4484:
1.174 albertel 4485: =item * B<PAST_DUE_ANSWER_LATER>:
1.51 bowersj2 4486:
1.174 albertel 4487: The due date has passed, but the answer date has not yet arrived.
1.59 bowersj2 4488:
1.174 albertel 4489: =item * B<PAST_DUE_NO_ANSWER>:
1.54 bowersj2 4490:
1.174 albertel 4491: The due date has passed and there is no answer opening date set.
1.51 bowersj2 4492:
1.174 albertel 4493: =item * B<ANSWER_OPEN>:
1.51 bowersj2 4494:
1.174 albertel 4495: The answer date is here.
4496:
4497: =item * B<NETWORK_FAILURE>:
4498:
4499: The information is unknown due to network failure.
1.51 bowersj2 4500:
4501: =back
4502:
4503: =cut
4504:
4505: # Apparently the compiler optimizes these into constants automatically
1.54 bowersj2 4506: sub OPEN_LATER { return 0; }
4507: sub OPEN { return 1; }
4508: sub PAST_DUE_NO_ANSWER { return 2; }
4509: sub PAST_DUE_ANSWER_LATER { return 3; }
4510: sub ANSWER_OPEN { return 4; }
4511: sub NOTHING_SET { return 5; }
4512: sub NETWORK_FAILURE { return 100; }
4513:
4514: # getDateStatus gets the date status for a given problem part.
4515: # Because answer date, due date, and open date are fully independent
4516: # (i.e., it is perfectly possible to *only* have an answer date),
4517: # we have to completely cover the 3x3 maxtrix of (answer, due, open) x
4518: # (past, future, none given). This function handles this with a decision
4519: # tree. Read the comments to follow the decision tree.
1.51 bowersj2 4520:
4521: sub getDateStatus {
4522: my $self = shift;
4523: my $part = shift;
4524: $part = "0" if (!defined($part));
1.54 bowersj2 4525:
4526: # Always return network failure if there was one.
1.51 bowersj2 4527: return $self->NETWORK_FAILURE if ($self->{NAV_MAP}->{NETWORK_FAILURE});
4528:
4529: my $now = time();
4530:
1.53 bowersj2 4531: my $open = $self->opendate($part);
4532: my $due = $self->duedate($part);
4533: my $answer = $self->answerdate($part);
4534:
4535: if (!$open && !$due && !$answer) {
4536: # no data on the problem at all
4537: # should this be the same as "open later"? think multipart.
4538: return $self->NOTHING_SET;
4539: }
1.59 bowersj2 4540: if (!$open || $now < $open) {return $self->OPEN_LATER}
4541: if (!$due || $now < $due) {return $self->OPEN}
4542: if ($answer && $now < $answer) {return $self->PAST_DUE_ANSWER_LATER}
4543: if ($answer) { return $self->ANSWER_OPEN; }
1.54 bowersj2 4544: return PAST_DUE_NO_ANSWER;
1.51 bowersj2 4545: }
4546:
4547: =pod
4548:
4549: B<>
4550:
4551: =over 4
4552:
1.174 albertel 4553: =item * B<getCompletionStatus>($part):
1.51 bowersj2 4554:
1.174 albertel 4555: ($part defaults to 0.) A convenience function that returns a symbolic
4556: constant telling you about the completion status of the part, with the
4557: following possible results:
4558:
4559: =back
1.51 bowersj2 4560:
4561: B<Completion Codes>
4562:
4563: =over 4
4564:
1.174 albertel 4565: =item * B<NOT_ATTEMPTED>:
4566:
4567: Has not been attempted at all.
4568:
4569: =item * B<INCORRECT>:
4570:
4571: Attempted, but wrong by student.
1.51 bowersj2 4572:
1.174 albertel 4573: =item * B<INCORRECT_BY_OVERRIDE>:
1.51 bowersj2 4574:
1.174 albertel 4575: Attempted, but wrong by instructor override.
1.51 bowersj2 4576:
1.174 albertel 4577: =item * B<CORRECT>:
1.51 bowersj2 4578:
1.174 albertel 4579: Correct or correct by instructor.
1.51 bowersj2 4580:
1.174 albertel 4581: =item * B<CORRECT_BY_OVERRIDE>:
1.51 bowersj2 4582:
1.174 albertel 4583: Correct by instructor override.
1.51 bowersj2 4584:
1.174 albertel 4585: =item * B<EXCUSED>:
4586:
4587: Excused. Not yet implemented.
4588:
4589: =item * B<NETWORK_FAILURE>:
4590:
4591: Information not available due to network failure.
4592:
4593: =item * B<ATTEMPTED>:
4594:
4595: Attempted, and not yet graded.
1.69 bowersj2 4596:
1.51 bowersj2 4597: =back
4598:
4599: =cut
4600:
1.53 bowersj2 4601: sub NOT_ATTEMPTED { return 10; }
4602: sub INCORRECT { return 11; }
4603: sub INCORRECT_BY_OVERRIDE { return 12; }
4604: sub CORRECT { return 13; }
4605: sub CORRECT_BY_OVERRIDE { return 14; }
4606: sub EXCUSED { return 15; }
1.69 bowersj2 4607: sub ATTEMPTED { return 16; }
1.51 bowersj2 4608:
4609: sub getCompletionStatus {
4610: my $self = shift;
1.332 albertel 4611: my $part = shift;
1.51 bowersj2 4612: return $self->NETWORK_FAILURE if ($self->{NAV_MAP}->{NETWORK_FAILURE});
4613:
1.332 albertel 4614: my $status = $self->queryRestoreHash('solved', $part);
1.51 bowersj2 4615:
1.251 www 4616: # Left as separate if statements in case we ever do more with this
1.51 bowersj2 4617: if ($status eq 'correct_by_student') {return $self->CORRECT;}
1.288 albertel 4618: if ($status eq 'correct_by_scantron') {return $self->CORRECT;}
1.332 albertel 4619: if ($status eq 'correct_by_override') {
4620: return $self->CORRECT_BY_OVERRIDE;
4621: }
1.51 bowersj2 4622: if ($status eq 'incorrect_attempted') {return $self->INCORRECT; }
4623: if ($status eq 'incorrect_by_override') {return $self->INCORRECT_BY_OVERRIDE; }
4624: if ($status eq 'excused') {return $self->EXCUSED; }
1.69 bowersj2 4625: if ($status eq 'ungraded_attempted') {return $self->ATTEMPTED; }
1.51 bowersj2 4626: return $self->NOT_ATTEMPTED;
1.108 bowersj2 4627: }
4628:
4629: sub queryRestoreHash {
4630: my $self = shift;
4631: my $hashentry = shift;
4632: my $part = shift;
1.185 bowersj2 4633: $part = "0" if (!defined($part) || $part eq '');
1.108 bowersj2 4634: return $self->NETWORK_FAILURE if ($self->{NAV_MAP}->{NETWORK_FAILURE});
4635:
4636: $self->getReturnHash();
4637:
4638: return $self->{RETURN_HASH}->{'resource.'.$part.'.'.$hashentry};
1.51 bowersj2 4639: }
4640:
4641: =pod
4642:
4643: B<Composite Status>
4644:
1.174 albertel 4645: Along with directly returning the date or completion status, the
4646: resource object includes a convenience function B<status>() that will
4647: combine the two status tidbits into one composite status that can
1.191 bowersj2 4648: represent the status of the resource as a whole. This method represents
4649: the concept of the thing we want to display to the user on the nav maps
4650: screen, which is a combination of completion and open status. The precise logic is
1.174 albertel 4651: documented in the comments of the status method. The following results
4652: may be returned, all available as methods on the resource object
1.185 bowersj2 4653: ($res->NETWORK_FAILURE): In addition to the return values that match
4654: the date or completion status, this function can return "ANSWER_SUBMITTED"
4655: if that problemstatus parameter value is set to No, suppressing the
4656: incorrect/correct feedback.
1.51 bowersj2 4657:
4658: =over 4
4659:
1.174 albertel 4660: =item * B<NETWORK_FAILURE>:
4661:
4662: The network has failed and the information is not available.
1.51 bowersj2 4663:
1.174 albertel 4664: =item * B<NOTHING_SET>:
1.53 bowersj2 4665:
1.174 albertel 4666: No dates have been set for this problem (part) at all. (Because only
4667: certain parts of a multi-part problem may be assigned, this can not be
4668: collapsed into "open later", as we do not know a given part will EVER
4669: be opened. For single part, this is the same as "OPEN_LATER".)
1.51 bowersj2 4670:
1.174 albertel 4671: =item * B<CORRECT>:
1.51 bowersj2 4672:
1.174 albertel 4673: For any reason at all, the part is considered correct.
1.54 bowersj2 4674:
1.174 albertel 4675: =item * B<EXCUSED>:
1.51 bowersj2 4676:
1.174 albertel 4677: For any reason at all, the problem is excused.
1.51 bowersj2 4678:
1.174 albertel 4679: =item * B<PAST_DUE_NO_ANSWER>:
1.51 bowersj2 4680:
1.174 albertel 4681: The problem is past due, not considered correct, and no answer date is
4682: set.
1.51 bowersj2 4683:
1.174 albertel 4684: =item * B<PAST_DUE_ANSWER_LATER>:
1.51 bowersj2 4685:
1.174 albertel 4686: The problem is past due, not considered correct, and an answer date in
4687: the future is set.
1.51 bowersj2 4688:
1.174 albertel 4689: =item * B<ANSWER_OPEN>:
4690:
4691: The problem is past due, not correct, and the answer is now available.
4692:
4693: =item * B<OPEN_LATER>:
4694:
4695: The problem is not yet open.
4696:
4697: =item * B<TRIES_LEFT>:
4698:
4699: The problem is open, has been tried, is not correct, but there are
4700: tries left.
4701:
4702: =item * B<INCORRECT>:
4703:
4704: The problem is open, and all tries have been used without getting the
4705: correct answer.
4706:
4707: =item * B<OPEN>:
4708:
4709: The item is open and not yet tried.
4710:
4711: =item * B<ATTEMPTED>:
4712:
4713: The problem has been attempted.
1.69 bowersj2 4714:
1.185 bowersj2 4715: =item * B<ANSWER_SUBMITTED>:
4716:
4717: An answer has been submitted, but the student should not see it.
4718:
1.51 bowersj2 4719: =back
4720:
4721: =cut
4722:
1.185 bowersj2 4723: sub TRIES_LEFT { return 20; }
4724: sub ANSWER_SUBMITTED { return 21; }
1.332 albertel 4725: sub PARTIALLY_CORRECT{ return 22; }
1.51 bowersj2 4726:
4727: sub status {
4728: my $self = shift;
4729: my $part = shift;
4730: if (!defined($part)) { $part = "0"; }
4731: my $completionStatus = $self->getCompletionStatus($part);
4732: my $dateStatus = $self->getDateStatus($part);
4733:
4734: # What we have is a two-dimensional matrix with 4 entries on one
4735: # dimension and 5 entries on the other, which we want to colorize,
1.54 bowersj2 4736: # plus network failure and "no date data at all".
1.51 bowersj2 4737:
1.222 bowersj2 4738: #if ($self->{RESOURCE_ERROR}) { return NETWORK_FAILURE; }
1.53 bowersj2 4739: if ($completionStatus == NETWORK_FAILURE) { return NETWORK_FAILURE; }
1.51 bowersj2 4740:
1.236 bowersj2 4741: my $suppressFeedback = $self->problemstatus($part) eq 'no';
4742: # If there's an answer date and we're past it, don't
4743: # suppress the feedback; student should know
1.330 albertel 4744: if ($self->duedate($part) && $self->duedate($part) < time() &&
4745: $self->answerdate($part) && $self->answerdate($part) < time()) {
1.236 bowersj2 4746: $suppressFeedback = 0;
4747: }
1.185 bowersj2 4748:
1.51 bowersj2 4749: # There are a few whole rows we can dispose of:
1.53 bowersj2 4750: if ($completionStatus == CORRECT ||
4751: $completionStatus == CORRECT_BY_OVERRIDE ) {
1.332 albertel 4752: if ( $suppressFeedback ) { return ANSWER_SUBMITTED }
4753: my $awarded=$self->awarded($part);
4754: if ($awarded < 1 && $awarded > 0) {
4755: return PARTIALLY_CORRECT;
4756: } elsif ($awarded<1) {
4757: return INCORRECT;
4758: }
4759: return CORRECT;
1.69 bowersj2 4760: }
4761:
1.343 albertel 4762: # If it's WRONG... and not open
4763: if ( ($completionStatus == INCORRECT ||
4764: $completionStatus == INCORRECT_BY_OVERRIDE)
4765: && (!$self->opendate($part) || $self->opendate($part) > time()) ) {
4766: return INCORRECT;
4767: }
4768:
1.69 bowersj2 4769: if ($completionStatus == ATTEMPTED) {
4770: return ATTEMPTED;
1.53 bowersj2 4771: }
4772:
4773: # If it's EXCUSED, then return that no matter what
4774: if ($completionStatus == EXCUSED) {
4775: return EXCUSED;
1.51 bowersj2 4776: }
4777:
1.53 bowersj2 4778: if ($dateStatus == NOTHING_SET) {
4779: return NOTHING_SET;
1.51 bowersj2 4780: }
4781:
1.69 bowersj2 4782: # Now we're down to a 4 (incorrect, incorrect_override, not_attempted)
4783: # by 4 matrix (date statuses).
1.51 bowersj2 4784:
1.54 bowersj2 4785: if ($dateStatus == PAST_DUE_ANSWER_LATER ||
1.59 bowersj2 4786: $dateStatus == PAST_DUE_NO_ANSWER ) {
1.272 albertel 4787: return $suppressFeedback ? ANSWER_SUBMITTED : $dateStatus;
1.51 bowersj2 4788: }
4789:
1.53 bowersj2 4790: if ($dateStatus == ANSWER_OPEN) {
4791: return ANSWER_OPEN;
1.51 bowersj2 4792: }
4793:
4794: # Now: (incorrect, incorrect_override, not_attempted) x
4795: # (open_later), (open)
4796:
1.53 bowersj2 4797: if ($dateStatus == OPEN_LATER) {
4798: return OPEN_LATER;
1.51 bowersj2 4799: }
4800:
4801: # If it's WRONG...
1.53 bowersj2 4802: if ($completionStatus == INCORRECT || $completionStatus == INCORRECT_BY_OVERRIDE) {
1.51 bowersj2 4803: # and there are TRIES LEFT:
1.79 bowersj2 4804: if ($self->tries($part) < $self->maxtries($part) || !$self->maxtries($part)) {
1.222 bowersj2 4805: return $suppressFeedback ? ANSWER_SUBMITTED : TRIES_LEFT;
1.51 bowersj2 4806: }
1.185 bowersj2 4807: return $suppressFeedback ? ANSWER_SUBMITTED : INCORRECT; # otherwise, return orange; student can't fix this
1.51 bowersj2 4808: }
4809:
4810: # Otherwise, it's untried and open
1.53 bowersj2 4811: return OPEN;
1.224 bowersj2 4812: }
4813:
4814: sub CLOSED { return 23; }
4815: sub ERROR { return 24; }
4816:
4817: =pod
4818:
4819: B<Simple Status>
4820:
4821: Convenience method B<simpleStatus> provides a "simple status" for the resource.
4822: "Simple status" corresponds to "which icon is shown on the
4823: Navmaps". There are six "simple" statuses:
4824:
4825: =over 4
4826:
4827: =item * B<CLOSED>: The problem is currently closed. (No icon shown.)
4828:
4829: =item * B<OPEN>: The problem is open and unattempted.
4830:
4831: =item * B<CORRECT>: The problem is correct for any reason.
4832:
4833: =item * B<INCORRECT>: The problem is incorrect and can still be
4834: completed successfully.
4835:
4836: =item * B<ATTEMPTED>: The problem has been attempted, but the student
4837: does not know if they are correct. (The ellipsis icon.)
4838:
4839: =item * B<ERROR>: There is an error retrieving information about this
4840: problem.
4841:
4842: =back
4843:
4844: =cut
4845:
4846: # This hash maps the composite status to this simple status, and
4847: # can be used directly, if you like
4848: my %compositeToSimple =
4849: (
4850: NETWORK_FAILURE() => ERROR,
4851: NOTHING_SET() => CLOSED,
4852: CORRECT() => CORRECT,
1.332 albertel 4853: PARTIALLY_CORRECT() => PARTIALLY_CORRECT,
1.224 bowersj2 4854: EXCUSED() => CORRECT,
4855: PAST_DUE_NO_ANSWER() => INCORRECT,
4856: PAST_DUE_ANSWER_LATER() => INCORRECT,
4857: ANSWER_OPEN() => INCORRECT,
4858: OPEN_LATER() => CLOSED,
4859: TRIES_LEFT() => OPEN,
4860: INCORRECT() => INCORRECT,
4861: OPEN() => OPEN,
4862: ATTEMPTED() => ATTEMPTED,
4863: ANSWER_SUBMITTED() => ATTEMPTED
4864: );
4865:
4866: sub simpleStatus {
4867: my $self = shift;
4868: my $part = shift;
4869: my $status = $self->status($part);
4870: return $compositeToSimple{$status};
1.225 bowersj2 4871: }
4872:
4873: =pod
4874:
4875: B<simpleStatusCount> will return an array reference containing, in
4876: this order, the number of OPEN, CLOSED, CORRECT, INCORRECT, ATTEMPTED,
4877: and ERROR parts the given problem has.
4878:
4879: =cut
4880:
4881: # This maps the status to the slot we want to increment
4882: my %statusToSlotMap =
4883: (
4884: OPEN() => 0,
4885: CLOSED() => 1,
4886: CORRECT() => 2,
4887: INCORRECT() => 3,
4888: ATTEMPTED() => 4,
4889: ERROR() => 5
4890: );
4891:
4892: sub statusToSlot { return $statusToSlotMap{shift()}; }
4893:
4894: sub simpleStatusCount {
4895: my $self = shift;
4896:
4897: my @counts = (0, 0, 0, 0, 0, 0, 0);
4898: foreach my $part (@{$self->parts()}) {
4899: $counts[$statusToSlotMap{$self->simpleStatus($part)}]++;
4900: }
4901:
4902: return \@counts;
1.191 bowersj2 4903: }
4904:
4905: =pod
4906:
4907: B<Completable>
4908:
4909: The completable method represents the concept of I<whether the student can
4910: currently do the problem>. If the student can do the problem, which means
4911: that it is open, there are tries left, and if the problem is manually graded
4912: or the grade is suppressed via problemstatus, the student has not tried it
4913: yet, then the method returns 1. Otherwise, it returns 0, to indicate that
4914: either the student has tried it and there is no feedback, or that for
4915: some reason it is no longer completable (not open yet, successfully completed,
4916: out of tries, etc.). As an example, this is used as the filter for the
4917: "Uncompleted Homework" option for the nav maps.
4918:
4919: If this does not quite meet your needs, do not fiddle with it (unless you are
4920: fixing it to better match the student's conception of "completable" because
4921: it's broken somehow)... make a new method.
4922:
4923: =cut
4924:
4925: sub completable {
4926: my $self = shift;
4927: if (!$self->is_problem()) { return 0; }
4928: my $partCount = $self->countParts();
4929:
4930: foreach my $part (@{$self->parts()}) {
4931: if ($part eq '0' && $partCount != 1) { next; }
4932: my $status = $self->status($part);
4933: # "If any of the parts are open, or have tries left (implies open),
4934: # and it is not "attempted" (manually graded problem), it is
4935: # not "complete"
1.216 bowersj2 4936: if ($self->getCompletionStatus($part) == ATTEMPTED() ||
4937: $status == ANSWER_SUBMITTED() ) {
4938: # did this part already, as well as we can
4939: next;
4940: }
4941: if ($status == OPEN() || $status == TRIES_LEFT()) {
4942: return 1;
4943: }
1.191 bowersj2 4944: }
4945:
4946: # If all the parts were complete, so was this problem.
1.216 bowersj2 4947: return 0;
1.51 bowersj2 4948: }
4949:
4950: =pod
4951:
4952: =head2 Resource/Nav Map Navigation
4953:
4954: =over 4
4955:
1.174 albertel 4956: =item * B<getNext>():
4957:
4958: Retreive an array of the possible next resources after this
4959: one. Always returns an array, even in the one- or zero-element case.
4960:
4961: =item * B<getPrevious>():
1.85 bowersj2 4962:
1.174 albertel 4963: Retreive an array of the possible previous resources from this
4964: one. Always returns an array, even in the one- or zero-element case.
1.51 bowersj2 4965:
4966: =cut
4967:
4968: sub getNext {
4969: my $self = shift;
4970: my @branches;
4971: my $to = $self->to();
1.85 bowersj2 4972: foreach my $branch ( split(/,/, $to) ) {
1.51 bowersj2 4973: my $choice = $self->{NAV_MAP}->getById($branch);
1.342 albertel 4974: #if (!$choice->condition()) { next; }
1.51 bowersj2 4975: my $next = $choice->goesto();
4976: $next = $self->{NAV_MAP}->getById($next);
4977:
1.131 bowersj2 4978: push @branches, $next;
1.85 bowersj2 4979: }
4980: return \@branches;
4981: }
4982:
4983: sub getPrevious {
4984: my $self = shift;
4985: my @branches;
4986: my $from = $self->from();
4987: foreach my $branch ( split /,/, $from) {
4988: my $choice = $self->{NAV_MAP}->getById($branch);
4989: my $prev = $choice->comesfrom();
4990: $prev = $self->{NAV_MAP}->getById($prev);
4991:
1.131 bowersj2 4992: push @branches, $prev;
1.51 bowersj2 4993: }
4994: return \@branches;
1.131 bowersj2 4995: }
4996:
4997: sub browsePriv {
4998: my $self = shift;
4999: if (defined($self->{BROWSE_PRIV})) {
5000: return $self->{BROWSE_PRIV};
5001: }
5002:
1.311 albertel 5003: $self->{BROWSE_PRIV} = &Apache::lonnet::allowed('bre',$self->src(),
5004: $self->symb());
1.51 bowersj2 5005: }
5006:
5007: =pod
1.2 www 5008:
1.51 bowersj2 5009: =back
1.2 www 5010:
1.51 bowersj2 5011: =cut
1.2 www 5012:
1.51 bowersj2 5013: 1;
1.2 www 5014:
1.51 bowersj2 5015: __END__
1.2 www 5016:
5017:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>