Annotation of loncom/interface/lonnavmaps.pm, revision 1.416

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

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