--- loncom/interface/lonnavmaps.pm 2002/10/07 21:07:47 1.68
+++ loncom/interface/lonnavmaps.pm 2002/10/08 19:50:47 1.70
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Navigate Maps Handler
#
-# $Id: lonnavmaps.pm,v 1.68 2002/10/07 21:07:47 bowersj2 Exp $
+# $Id: lonnavmaps.pm,v 1.70 2002/10/08 19:50:47 bowersj2 Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -892,7 +892,13 @@ sub new_handle {
$res->OPEN_LATER => '',
$res->TRIES_LEFT => 'navmap.open.gif',
$res->INCORRECT => 'navmap.wrong.gif',
- $res->OPEN => 'navmap.open.gif' );
+ $res->OPEN => 'navmap.open.gif',
+ $res->ATTEMPTED => '' );
+
+ my %iconAltTags =
+ ( 'navmap.correct.gif' => 'Correct',
+ 'navmap.wrong.gif' => 'Incorrect',
+ 'navmap.open.gif' => 'Open' );
my %condenseStatuses =
( $res->NETWORK_FAILURE => 1,
@@ -1108,7 +1114,7 @@ sub new_handle {
$r->print(" ${newBranchText}${linkopen}$icon${linkclose}\n");
- if ($curRes->is_problem() && $part != "0" && !$condensed) {
+ if ($curRes->is_problem() && $part ne "0" && !$condensed) {
$partLabel = " (Part $part)";
$title = "";
}
@@ -1151,12 +1157,13 @@ sub new_handle {
# columns?
my $firstDisplayed = !$condensed && $multipart && $part eq "0";
- # THIRD ROW: Problem status icon
+ # THIRD COL: Problem status icon
if ($curRes->is_problem() &&
!$firstDisplayed) {
my $icon = $statusIconMap{$curRes->status($part)};
+ my $alt = $iconAltTags{$icon};
if ($icon) {
- $r->print("
$linkopen $linkclose | \n");
+ $r->print("$linkopen $linkclose | \n");
} else {
$r->print(" | \n");
}
@@ -1164,7 +1171,7 @@ sub new_handle {
$r->print(" | \n");
}
- # FOURTH ROW: Text description
+ # FOURTH COL: Text description
$r->print("\n");
if ($curRes->kind() eq "res" &&
@@ -1244,7 +1251,7 @@ sub getLinkForResource {
sub getDescription {
my $res = shift;
my $part = shift;
- my $status = $res->getDateStatus();
+ my $status = $res->status($part);
if ($status == $res->NETWORK_FAILURE) { return ""; }
if ($status == $res->NOTHING_SET) {
@@ -1272,6 +1279,9 @@ sub getDescription {
if ($status == $res->EXCUSED) {
return "Excused by instructor";
}
+ if ($status == $res->ATTEMPTED) {
+ return "Not yet graded.";
+ }
if ($status == $res->TRIES_LEFT) {
my $tries = $res->tries();
my $maxtries = $res->maxtries();
@@ -1306,10 +1316,6 @@ sub timeToHumanString {
package Apache::lonnavmaps::navmap;
-# LEFT:
-# * Actual handler code (multi-part)
-# * Branches (aieee!) (and conditionals)
-
=pod
lonnavmaps provides functions and objects for dealing with the compiled course hashes generated when a user enters the course, and also provides the Apache handler for the "Navigation Map" button.
@@ -1326,7 +1332,7 @@ You must obtain resource objects through
=over 4
-=item * B(filename, parmHashFile, genCourseAndUserOptions, genMailDiscussStatus): Binds a new navmap object to the compiled course representation and parmHashFile. genCourseAndUserOptions is a flag saying whether the course options and user options hash should be generated. This is for when you are using the parameters of the resources that require them; see documentation in resource object documentation. genMailDiscussStatus causes the nav map to retreive information about the email and discussion status of resources. Returns the navmap object if this is successful, or B if not. You must check for undef; errors will occur when you try to use the other methods otherwise.
+=item * B(navHashFile, parmHashFile, genCourseAndUserOptions, genMailDiscussStatus): Binds a new navmap object to the compiled nav map hash and parm hash given as filenames. genCourseAndUserOptions is a flag saying whether the course options and user options hash should be generated. This is for when you are using the parameters of the resources that require them; see documentation in resource object documentation. genMailDiscussStatus causes the nav map to retreive information about the email and discussion status of resources. Returns the navmap object if this is successful, or B if not. You must check for undef; errors will occur when you try to use the other methods otherwise.
=item * B(first, finish, filter, condition): See iterator documentation below.
@@ -1702,25 +1708,32 @@ getIterator behaves as follows:
=over 4
-=item B(nav_map, firstResource, finishResource, filterHash, condition): All parameters are optional. firstResource is a resource reference corresponding to where the iterator should start. It defaults to navmap->firstResource() for the corresponding nav map. finishResource corresponds to where you want the iterator to end, defaulting to navmap->finishResource(). It is your responsibility to ensure that the iterator will actually get there. filterHash is a hash used as a set containing strings representing the resource IDs, defaulting to empty. Condition is a 1 or 0 that sets what to do with the filter hash: If a 0, then only resource that exist IN the filterHash will be recursed on. If it is a 1, only resources NOT in the filterHash will be recursed on. Defaults to 0, which is to say, do not recurse unless explicitly asked to.
+=item B(firstResource, finishResource, filterHash, condition): All parameters are optional. firstResource is a resource reference corresponding to where the iterator should start. It defaults to navmap->firstResource() for the corresponding nav map. finishResource corresponds to where you want the iterator to end, defaulting to navmap->finishResource(). filterHash is a hash used as a set containing strings representing the resource IDs, defaulting to empty. Condition is a 1 or 0 that sets what to do with the filter hash: If a 0, then only resource that exist IN the filterHash will be recursed on. If it is a 1, only resources NOT in the filterHash will be recursed on. Defaults to 0, which is to say, do not recurse unless explicitly asked to.
-Thus, by default, all resources will be shown. Change the condition to a 1 without changing the hash, and only the top level of the map will be shown. Changing the condition to 1 and including some values in the hash will allow you to selectively examine parts of the navmap, while leaving it on 0 and adding things to the hash will allow you to selectively ignore parts of the nav map. See the handler code for examples.
+Thus, by default, all resources will be shown. Change the condition to a 1 without changing the hash, and only the top level of the map will be shown. Changing the condition to 1 and including some values in the hash will allow you to selectively examine parts of the navmap, while leaving it on 0 and adding things to the hash will allow you to selectively ignore parts of the nav map. See the handler code for examples: By default, the condition is 0 and all folders are closed unless explicitly opened. Clicking "Show All Resources" will use a condition of 1 and an empty filterHash, resulting in all resources being shown.
The iterator will return either a reference to a resource object, or a token representing something in the map, such as the beginning of a new branch. The possible tokens are:
=over 4
-=item * some list of tokens here
+=item * BEGIN_MAP: A new map is being recursed into. This is returned I the map resource itself is returned.
+
+=item * END_MAP: The map is now done.
+
+=item * BEGIN_BRANCH: A branch is now starting. The next resource returned will be the first in that branch.
+
+=item * END_BRANCH: The branch is now done.
=back
-The tokens are retreivable via methods on the iterator object, i.e., $iterator->END_NAV_MAP. (Perl will automatically optimize these into constants.
+The tokens are retreivable via methods on the iterator object, i.e., $iterator->END_MAP.
+
+=back
=cut
# Here are the tokens for the iterator:
-sub END_NAV_MAP { return 0; } # Represents end of entire nav map
sub BEGIN_MAP { return 1; } # begining of a new map
sub END_MAP { return 2; } # end of the map
sub BEGIN_BRANCH { return 3; } # beginning of a branch
@@ -1786,30 +1799,11 @@ sub new {
return $self;
}
-# FIXME: Document this.
-sub cancelTopRecursion {
- my $self = shift;
-
- if (!$self->{RECURSIVE_ITERATOR_FLAG}) {return;}
-
- # is this the iterator we want to kill?
- if ($self->{RECURSIVE_ITERATOR_FLAG} &&
- !$self->{RECURSIVE_ITERATOR}->{RECURSIVE_ITERATOR_FLAG}) {
- $self->{RECURSIVE_ITERATOR_FLAG} = 0;
- undef $self->{RECURSIVE_ITERATOR};
- return;
- }
-
- $self->{RECURSIVE_ITERATOR}->cancelTopRecursion();
-}
-
# Note... this function is *touchy*. I strongly recommend tracing
# through it with the debugger a few times on a non-trivial map before
# modifying it. Order is *everything*.
-# FIXME: Doc that skipMap will prevent the recursion, if any.
sub next {
my $self = shift;
- my $skipMap = shift;
# Iterator logic goes here
@@ -1894,12 +1888,6 @@ sub next {
# remember that we've seen this.
$self->{ALREADY_SEEN}->{$self->{HERE}->{ID}} = 1;
- # Are we at the utter end? If so, return the END_NAV_MAP marker.
- if ($self->{HERE} == $self->{NAV_MAP}->finishResource() ) {
- $self->{FORCE_NEXT} = $self->END_NAV_MAP;
- return $self->{HERE};
- }
-
# Get the next possible resources
my $nextUnfiltered = $self->{HERE}->getNext();
my $next = [];
@@ -1942,7 +1930,7 @@ sub next {
}
# If this is a map and we want to recurse down it... (not filtered out)
- if ($self->{HERE}->is_map() && !$skipMap &&
+ if ($self->{HERE}->is_map() &&
(defined($self->{FILTER}->{$self->{HERE}->map_pc()}) xor $self->{CONDITION})) {
$self->{RECURSIVE_ITERATOR_FLAG} = 1;
my $firstResource = $self->{HERE}->map_start();
@@ -2009,7 +1997,9 @@ resource objects have a hash called DATA
=over 4
-=item * B($navmapRef, $idString): The first arg is a reference to the parent navmap object. The second is the idString of the resource itself.
+=item * B($navmapRef, $idString): The first arg is a reference to the parent navmap object. The second is the idString of the resource itself. Very rarely, if ever, called directly. Use the nav map->getByID() method.
+
+=back
=cut
@@ -2036,20 +2026,6 @@ sub new {
return $self;
}
-=pod
-
-=item * B: Returns true if this is a map, false otherwise.
-
-=item * B: Returns title.
-
-=item * B: Returns the type of the resource, "start", "normal", or "finish".
-
-=item * B: Returns true if the resource is a problem type, false otherwise. (Looks at the extension on the src field.)
-
-=back
-
-=cut
-
# private function: simplify the NAV_HASH lookups we keep doing
# pass the name, and to automatically append my ID, pass a true val on the
# second param
@@ -2060,15 +2036,43 @@ sub navHash {
return $self->{NAV_MAP}->{NAV_HASH}->{$param . ($id?$self->{ID}:"")};
}
+=pod
+
+B
+
+These are methods that help you retrieve metadata about the resource:
+
+=over 4
+
+=item * B: Returns true if the resource is external.
+
+=item * B: Returns the "goesto" value from the compiled nav map. (It is likely you want to use B instead.)
+
+=item * B: Returns the kind of the resource from the compiled nav map.
+
+=item * B: Returns true if this resource was chosen to NOT be shown to the user by the random map selection feature.
+
+=item * B: Returns true for a map if the randompick feature is being used on the map. (?)
+
+=item * B: Returns the source for the resource.
+
+=item * B: Returns the symb for the resource.
+
+=item * B: Returns the title of the resource.
+
+=item * B: Returns the "to" value from the compiled nav map. (It is likely you want to use B instead.)
+
+=item * B: Returns the type of the resource, "start", "normal", or "finish".
+
+=back
+
+=cut
+
# These info functions can be used directly, as they don't return
# resource information.
-sub title { my $self=shift; return $self->navHash("title_", 1); }
-sub type { my $self=shift; return $self->navHash("type_", 1); }
+sub ext { my $self=shift; return $self->navHash("ext_", 1) eq 'true:'; }
sub goesto { my $self=shift; return $self->navHash("goesto_", 1); }
-# "to" can return a comma seperated list for branches
-sub to { my $self=shift; return $self->navHash("to_", 1); }
sub kind { my $self=shift; return $self->navHash("kind_", 1); }
-sub ext { my $self=shift; return $self->navHash("ext_", 1) eq 'true:'; }
sub randomout { my $self=shift; return $self->navHash("randomout_", 1); }
sub randompick {
my $self = shift;
@@ -2087,30 +2091,59 @@ sub symb {
$self->navHash('map_id_'.$first))
. '___' . $second . '___' . $symbSrc;
}
-sub is_problem {
+sub title { my $self=shift; return $self->navHash("title_", 1); }
+sub to { my $self=shift; return $self->navHash("to_", 1); }
+sub type { my $self=shift; return $self->navHash("type_", 1); }
+
+=pod
+
+B
+
+These methods are shortcuts to deciding if a given resource has a given property.
+
+=over 4
+
+=item * B: Returns true if the resource is a map type.
+
+=item * B: Returns true if the resource is a problem type, false otherwise. (Looks at the extension on the src field; might need more to work correctly.)
+
+=item * B: Returns true if the resource is a page.
+
+=item * B: Returns true if the resource is a problem.
+
+=item * B: Returns true if the resource sequence.
+
+=back
+
+=cut
+
+
+sub is_html {
my $self=shift;
my $src = $self->src();
- return ($src =~ /problem$/);
+ return ($src =~ /html$/);
}
-sub is_html {
+sub is_map { my $self=shift; return defined($self->navHash("is_map_", 1)); }
+sub is_page {
my $self=shift;
my $src = $self->src();
- return ($src =~ /html$/);
+ return ($src =~ /page$/);
}
-sub is_sequence {
+sub is_problem {
my $self=shift;
my $src = $self->src();
- return ($src =~ /sequence$/);
+ return ($src =~ /problem$/);
}
-sub is_page {
+sub is_sequence {
my $self=shift;
my $src = $self->src();
- return ($src =~ /page$/);
+ return ($src =~ /sequence$/);
}
+
# Move this into POD: In order to use these correctly, courseopt
# and useropt need to be generated
sub parmval {
@@ -2120,14 +2153,26 @@ sub parmval {
return $self->{NAV_MAP}->parmval($part.'.'.$what, $self->symb());
}
-#####
-# Map Queries
-#####
+=pod
-# These methods relate to whether or not the resource is a map, and the
-# attributes of that map.
+B |