--- loncom/interface/lonparmset.pm 2009/11/01 12:20:16 1.475 +++ loncom/interface/lonparmset.pm 2009/11/06 18:32:42 1.479 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Handler to set parameters for assessments # -# $Id: lonparmset.pm,v 1.475 2009/11/01 12:20:16 amueller Exp $ +# $Id: lonparmset.pm,v 1.479 2009/11/06 18:32:42 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -2197,7 +2197,7 @@ ENDPARMSELSCRIPT # Display Unit 1 "General Parameters" if (!$pssymb) { - $r->print(&Apache::lonhtmlcommon::topic_bar (1,&mt('General Parameters'))); + $r->print(&Apache::lonhtmlcommon::topic_bar(1,&mt('Resource Specification'))); $r->print(< // print(&Apache::lonhtmlcommon::end_pick_box()); $r->print(''); #Display Unit 2 "Select Parameter" - $r->print(&Apache::lonhtmlcommon::topic_bar (2,&mt('Select Parameters'))); + $r->print(&Apache::lonhtmlcommon::topic_bar(2,&mt('Parameter Specification'))); &displaymenu($r,\%allparms,\%allparts,\@pscat,\@psprt,\%keyorder); + $r->print(&Apache::lonhtmlcommon::topic_bar(3,&mt('User Specification (optional)'))); } else { + # parameter screen for a single resource. my ($map,$id,$resource)=&Apache::lonnet::decode_symb($pssymb); my $title = &Apache::lonnet::gettitle($pssymb); $r->print(&mt('Specific Resource: [_1] ([_2])',$title,$resource). ''. '

'); + $r->print(&Apache::lonhtmlcommon::topic_bar('',&mt('User Specification (optional)'))); } - $r->print(&Apache::lonhtmlcommon::topic_bar (3,&mt('User Selection'))); $r->print(&Apache::lonhtmlcommon::start_pick_box()); &usermenu($r,$uname,$id,$udom,$csec,$cgroup,$parmlev,\@usersgroups); $r->print(&Apache::lonhtmlcommon::row_closure(1)); @@ -2266,6 +2268,7 @@ COURSECONTENTSCRIPT .'' .'

' ); + # Display Messages $r->print('
'.$message.'
'); @@ -3639,33 +3642,35 @@ ENDMAINFORMHEAD my $vgr = &Apache::lonnet::allowed('vgr',$env{'request.course.id'}); my $mgr = &Apache::lonnet::allowed('mgr',$env{'request.course.id'}); + my $crstype = &Apache::loncommon::course_type(); + my $lc_crstype = lc($crstype); my @menu = - ( { categorytitle=>'Settings for this Course', + ( { categorytitle=>"Settings for this $crstype", items => [ - { linktext => 'Course Configuration', + { linktext => "$crstype Configuration", url => '/adm/courseprefs?origin=params', permission => $parm_permission, - linktitle =>'Edit course configuration.' , + linktitle => "Edit $lc_crstype configuration." , icon => 'preferences-desktop-remote-desktop.png' , #help => 'Course_Environment', }, { linktext => 'Portfolio Metadata', url => '/adm/parmset?action=setrestrictmeta', permission => $parm_permission, - linktitle => 'Restrict metadata for this course.' , + linktitle => "Restrict metadata for this $lc_crstype." , icon =>'contact-new.png' , }, - { linktext => 'Manage Course Slots', + { linktext => "Manage $crstype Slots", url => '/adm/slotrequest?command=showslots', permission => $vgr, - linktitle =>'Manage slots for this course.' , + linktitle => "Manage slots for this $lc_crstype." , icon => 'format-justify-fill.png' , }, { linktext => 'Reset Student Access Times', url => '/adm/helper/resettimes.helper', permission => $mgr, - linktitle =>'Reset access times for folders/maps, resources or the course.' , + linktitle => "Reset access times for folders/maps, resources or the $lc_crstype." , icon => 'start-here.png' , }, @@ -3710,7 +3715,7 @@ ENDMAINFORMHEAD { linktext => 'Change Log', url => '/adm/parmset?action=parameterchangelog', permission => $parm_permission, - linktitle =>'View parameter and course blog posting/user notification change log.' , + linktitle =>"View parameter and $lc_crstype blog posting/user notification change log." , icon => 'emblem-system.png' , }]} );