File:  [LON-CAPA] / loncom / interface / domainprefs.pm
Revision 1.160.6.65: download - view: text, annotated - select for diffs
Mon Jun 15 20:18:35 2015 UTC (8 years, 11 months ago) by raeburn
Branches: version_2_11_X
Diff to branchpoint 1.160: preferred, unified
- For 2.11
  Backport 1.266.

    1: # The LearningOnline Network with CAPA
    2: # Handler to set domain-wide configuration settings
    3: #
    4: # $Id: domainprefs.pm,v 1.160.6.65 2015/06/15 20:18:35 raeburn Exp $
    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: # /home/httpd/html/adm/gpl.txt
   24: #
   25: # http://www.lon-capa.org/
   26: #
   27: #
   28: ###############################################################
   29: ##############################################################
   30: 
   31: =pod
   32: 
   33: =head1 NAME
   34: 
   35: Apache::domainprefs.pm
   36: 
   37: =head1 SYNOPSIS
   38: 
   39: Handles configuration of a LON-CAPA domain.  
   40: 
   41: This is part of the LearningOnline Network with CAPA project
   42: described at http://www.lon-capa.org.
   43: 
   44: 
   45: =head1 OVERVIEW
   46: 
   47: Each institution using LON-CAPA will typically have a single domain designated 
   48: for use by individuals affiliated with the institution.  Accordingly, each domain
   49: may define a default set of logos and a color scheme which can be used to "brand"
   50: the LON-CAPA instance. In addition, an institution will typically have a language
   51: and timezone which are used for the majority of courses.
   52: 
   53: LON-CAPA provides a mechanism to display and modify these defaults, as well as a 
   54: host of other domain-wide settings which determine the types of functionality
   55: available to users and courses in the domain.
   56: 
   57: There is also a mechanism to configure cataloging of courses in the domain, and
   58: controls on the operation of automated processes which govern such things as
   59: roster updates, user directory updates and processing of course requests.
   60: 
   61: The domain coordination manual which is built dynamically on install/update of 
   62: LON-CAPA from the relevant help items provides more information about domain 
   63: configuration.
   64: 
   65: Most of the domain settings are stored in the configuration.db GDBM file which is
   66: housed on the primary library server for the domain in /home/httpd/lonUsers/$dom,
   67: where $dom is the domain.  The configuration.db stores settings in a number of 
   68: frozen hashes of hashes.  In a few cases, domain information must be uploaded to
   69: the domain as files (e.g., image files for logos etc., or plain text files for
   70: bubblesheet formats).  In this case the domainprefs.pm must be running in a user
   71: session hosted on the primary library server in the domain, as these files are 
   72: stored in author space belonging to a special $dom-domainconfig user.   
   73: 
   74: domainprefs.pm in combination with lonconfigsettings.pm will retrieve and display
   75: the current settings, and provides an interface to make modifications.
   76: 
   77: =head1 SUBROUTINES
   78: 
   79: =over
   80: 
   81: =item print_quotas()
   82: 
   83: Inputs: 4 
   84: 
   85: $dom,$settings,$rowtotal,$action.
   86: 
   87: $dom is the domain, $settings is a reference to a hash of current settings for
   88: the current context, $rowtotal is a reference to the scalar used to record the 
   89: number of rows displayed on the page, and $action is the context (quotas, 
   90: requestcourses or requestauthor).
   91: 
   92: The print_quotas routine was orginally created to display/store information
   93: about default quota sizes for portfolio spaces for the different types of 
   94: institutional affiliation in the domain (e.g., Faculty, Staff, Student etc.), 
   95: but is now also used to manage availability of user tools: 
   96: i.e., blogs, aboutme page, and portfolios, and the course request tool,
   97: used by course owners to request creation of a course, and to display/store
   98: default quota sizes for Authoring Spaces.
   99: 
  100: Outputs: 1
  101: 
  102: $datatable  - HTML containing form elements which allow settings to be changed. 
  103: 
  104: In the case of course requests, radio buttons are displayed for each institutional
  105: affiliate type (and also default, and _LC_adv) for each of the course types 
  106: (official, unofficial, community, and textbook).  In each case the radio buttons 
  107: allow the selection of one of four values:
  108: 
  109: 0, approval, validate, autolimit=N (where N is blank, or a positive integer).
  110: which have the following effects:
  111: 
  112: 0
  113: 
  114: =over
  115: 
  116: - course requests are not allowed for this course types/affiliation
  117: 
  118: =back
  119: 
  120: approval 
  121: 
  122: =over 
  123: 
  124: - course requests must be approved by a Doman Coordinator in the 
  125: course's domain
  126: 
  127: =back
  128: 
  129: validate 
  130: 
  131: =over
  132: 
  133: - an institutional validation (e.g., check requestor is instructor
  134: of record) needs to be passed before the course will be created.  The required
  135: validation is in localenroll.pm on the primary library server for the course 
  136: domain.
  137: 
  138: =back
  139: 
  140: autolimit 
  141: 
  142: =over
  143:  
  144: - course requests will be processed automatically up to a limit of
  145: N requests for the course type for the particular requestor.
  146: If N is undefined, there is no limit to the number of course requests
  147: which a course owner may submit and have processed automatically. 
  148: 
  149: =back
  150: 
  151: =item modify_quotas() 
  152: 
  153: =back
  154: 
  155: =cut
  156: 
  157: package Apache::domainprefs;
  158: 
  159: use strict;
  160: use Apache::Constants qw(:common :http);
  161: use Apache::lonnet;
  162: use Apache::loncommon();
  163: use Apache::lonhtmlcommon();
  164: use Apache::lonlocal;
  165: use Apache::lonmsg();
  166: use Apache::lonconfigsettings;
  167: use Apache::lonuserutils();
  168: use Apache::loncoursequeueadmin();
  169: use LONCAPA qw(:DEFAULT :match);
  170: use LONCAPA::Enrollment;
  171: use LONCAPA::lonauthcgi();
  172: use File::Copy;
  173: use Locale::Language;
  174: use DateTime::TimeZone;
  175: use DateTime::Locale;
  176: 
  177: my $registered_cleanup;
  178: my $modified_urls;
  179: 
  180: sub handler {
  181:     my $r=shift;
  182:     if ($r->header_only) {
  183:         &Apache::loncommon::content_type($r,'text/html');
  184:         $r->send_http_header;
  185:         return OK;
  186:     }
  187: 
  188:     my $context = 'domain';
  189:     my $dom = $env{'request.role.domain'};
  190:     my $domdesc = &Apache::lonnet::domain($dom,'description');
  191:     if (&Apache::lonnet::allowed('mau',$dom)) {
  192:         &Apache::loncommon::content_type($r,'text/html');
  193:         $r->send_http_header;
  194:     } else {
  195:         $env{'user.error.msg'}=
  196:         "/adm/domainprefs:mau:0:0:Cannot modify domain settings";
  197:         return HTTP_NOT_ACCEPTABLE;
  198:     }
  199: 
  200:     $registered_cleanup=0;
  201:     @{$modified_urls}=();
  202: 
  203:     &Apache::lonhtmlcommon::clear_breadcrumbs();
  204:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
  205:                                             ['phase','actions']);
  206:     my $phase = 'pickactions';
  207:     if ( exists($env{'form.phase'}) ) {
  208:         $phase = $env{'form.phase'};
  209:     }
  210:     my %servers = &Apache::lonnet::internet_dom_servers($dom);
  211:     my %domconfig =
  212:       &Apache::lonnet::get_dom('configuration',['login','rolecolors',
  213:                 'quotas','autoenroll','autoupdate','autocreate',
  214:                 'directorysrch','usercreation','usermodification',
  215:                 'contacts','defaults','scantron','coursecategories',
  216:                 'serverstatuses','requestcourses','coursedefaults',
  217:                 'usersessions','loadbalancing','requestauthor',
  218:                 'selfenrollment','inststatus'],$dom);
  219:     my @prefs_order = ('rolecolors','login','defaults','quotas','autoenroll',
  220:                        'autoupdate','autocreate','directorysrch','contacts',
  221:                        'usercreation','selfcreation','usermodification','scantron',
  222:                        'requestcourses','requestauthor','coursecategories',
  223:                        'serverstatuses','coursedefaults','selfenrollment',
  224:                        'usersessions');
  225:     my %existing;
  226:     if (ref($domconfig{'loadbalancing'}) eq 'HASH') {
  227:         %existing = %{$domconfig{'loadbalancing'}};
  228:     }
  229:     if ((keys(%servers) > 1) || (keys(%existing) > 0)) {
  230:         push(@prefs_order,'loadbalancing');
  231:     }
  232:     my %prefs = (
  233:         'rolecolors' =>
  234:                    { text => 'Default color schemes',
  235:                      help => 'Domain_Configuration_Color_Schemes',
  236:                      header => [{col1 => 'Student Settings',
  237:                                  col2 => '',},
  238:                                 {col1 => 'Coordinator Settings',
  239:                                  col2 => '',},
  240:                                 {col1 => 'Author Settings',
  241:                                  col2 => '',},
  242:                                 {col1 => 'Administrator Settings',
  243:                                  col2 => '',}],
  244:                       print => \&print_rolecolors,
  245:                       modify => \&modify_rolecolors,
  246:                     },
  247:         'login' =>
  248:                     { text => 'Log-in page options',
  249:                       help => 'Domain_Configuration_Login_Page',
  250:                       header => [{col1 => 'Log-in Page Items',
  251:                                   col2 => '',},
  252:                                  {col1 => 'Log-in Help',
  253:                                   col2 => 'Value'},
  254:                                  {col1 => 'Custom HTML in document head',
  255:                                   col2 => 'Value'}],
  256:                       print => \&print_login,
  257:                       modify => \&modify_login,
  258:                     },
  259:         'defaults' => 
  260:                     { text => 'Default authentication/language/timezone/portal/types',
  261:                       help => 'Domain_Configuration_LangTZAuth',
  262:                       header => [{col1 => 'Setting',
  263:                                   col2 => 'Value'},
  264:                                  {col1 => 'Institutional user types',
  265:                                   col2 => 'Assignable to e-mail usernames'}],
  266:                       print => \&print_defaults,
  267:                       modify => \&modify_defaults,
  268:                     },
  269:         'quotas' => 
  270:                     { text => 'Blogs, personal web pages, webDAV/quotas, portfolios',
  271:                       help => 'Domain_Configuration_Quotas',
  272:                       header => [{col1 => 'User affiliation',
  273:                                   col2 => 'Available tools',
  274:                                   col3 => 'Quotas, MB; (Authoring requires role)',}],
  275:                       print => \&print_quotas,
  276:                       modify => \&modify_quotas,
  277:                     },
  278:         'autoenroll' =>
  279:                    { text => 'Auto-enrollment settings',
  280:                      help => 'Domain_Configuration_Auto_Enrollment',
  281:                      header => [{col1 => 'Configuration setting',
  282:                                  col2 => 'Value(s)'}],
  283:                      print => \&print_autoenroll,
  284:                      modify => \&modify_autoenroll,
  285:                    },
  286:         'autoupdate' => 
  287:                    { text => 'Auto-update settings',
  288:                      help => 'Domain_Configuration_Auto_Updates',
  289:                      header => [{col1 => 'Setting',
  290:                                  col2 => 'Value',},
  291:                                 {col1 => 'Setting',
  292:                                  col2 => 'Affiliation'},
  293:                                 {col1 => 'User population',
  294:                                  col2 => 'Updatable user data'}],
  295:                      print => \&print_autoupdate,
  296:                      modify => \&modify_autoupdate,
  297:                   },
  298:         'autocreate' => 
  299:                   { text => 'Auto-course creation settings',
  300:                      help => 'Domain_Configuration_Auto_Creation',
  301:                      header => [{col1 => 'Configuration Setting',
  302:                                  col2 => 'Value',}],
  303:                      print => \&print_autocreate,
  304:                      modify => \&modify_autocreate,
  305:                   },
  306:         'directorysrch' => 
  307:                   { text => 'Institutional directory searches',
  308:                     help => 'Domain_Configuration_InstDirectory_Search',
  309:                     header => [{col1 => 'Setting',
  310:                                 col2 => 'Value',}],
  311:                     print => \&print_directorysrch,
  312:                     modify => \&modify_directorysrch,
  313:                   },
  314:         'contacts' =>
  315:                   { text => 'Contact Information',
  316:                     help => 'Domain_Configuration_Contact_Info',
  317:                     header => [{col1 => 'Setting',
  318:                                 col2 => 'Value',}],
  319:                     print => \&print_contacts,
  320:                     modify => \&modify_contacts,
  321:                   },
  322:         'usercreation' => 
  323:                   { text => 'User creation',
  324:                     help => 'Domain_Configuration_User_Creation',
  325:                     header => [{col1 => 'Format rule type',
  326:                                 col2 => 'Format rules in force'},
  327:                                {col1 => 'User account creation',
  328:                                 col2 => 'Usernames which may be created',},
  329:                                {col1 => 'Context',
  330:                                 col2 => 'Assignable authentication types'}],
  331:                     print => \&print_usercreation,
  332:                     modify => \&modify_usercreation,
  333:                   },
  334:         'selfcreation' => 
  335:                   { text => 'Users self-creating accounts',
  336:                     help => 'Domain_Configuration_Self_Creation', 
  337:                     header => [{col1 => 'Self-creation with institutional username',
  338:                                 col2 => 'Enabled?'},
  339:                                {col1 => 'Institutional user type (login/SSO self-creation)',
  340:                                 col2 => 'Information user can enter'},
  341:                                {col1 => 'Self-creation with e-mail as username',
  342:                                 col2 => 'Settings'}],
  343:                     print => \&print_selfcreation,
  344:                     modify => \&modify_selfcreation,
  345:                   },
  346:         'usermodification' =>
  347:                   { text => 'User modification',
  348:                     help => 'Domain_Configuration_User_Modification',
  349:                     header => [{col1 => 'Target user has role',
  350:                                 col2 => 'User information updatable in author context'},
  351:                                {col1 => 'Target user has role',
  352:                                 col2 => 'User information updatable in course context'}],
  353:                     print => \&print_usermodification,
  354:                     modify => \&modify_usermodification,
  355:                   },
  356:         'scantron' =>
  357:                   { text => 'Bubblesheet format file',
  358:                     help => 'Domain_Configuration_Scantron_Format',
  359:                     header => [ {col1 => 'Item',
  360:                                  col2 => '',
  361:                               }],
  362:                     print => \&print_scantron,
  363:                     modify => \&modify_scantron,
  364:                   },
  365:         'requestcourses' => 
  366:                  {text => 'Request creation of courses',
  367:                   help => 'Domain_Configuration_Request_Courses',
  368:                   header => [{col1 => 'User affiliation',
  369:                               col2 => 'Availability/Processing of requests',},
  370:                              {col1 => 'Setting',
  371:                               col2 => 'Value'},
  372:                              {col1 => 'Available textbooks',
  373:                               col2 => ''},
  374:                              {col1 => 'Available templates',
  375:                               col2 => ''},
  376:                              {col1 => 'Validation (not official courses)',
  377:                               col2 => 'Value'},],
  378:                   print => \&print_quotas,
  379:                   modify => \&modify_quotas,
  380:                  },
  381:         'requestauthor' =>
  382:                  {text => 'Request Authoring Space',
  383:                   help => 'Domain_Configuration_Request_Author',
  384:                   header => [{col1 => 'User affiliation',
  385:                               col2 => 'Availability/Processing of requests',},
  386:                              {col1 => 'Setting',
  387:                               col2 => 'Value'}],
  388:                   print => \&print_quotas,
  389:                   modify => \&modify_quotas,
  390:                  },
  391:         'coursecategories' =>
  392:                   { text => 'Cataloging of courses/communities',
  393:                     help => 'Domain_Configuration_Cataloging_Courses',
  394:                     header => [{col1 => 'Catalog type/availability',
  395:                                 col2 => '',},
  396:                                {col1 => 'Category settings for standard catalog',
  397:                                 col2 => '',},
  398:                                {col1 => 'Categories',
  399:                                 col2 => '',
  400:                                }],
  401:                     print => \&print_coursecategories,
  402:                     modify => \&modify_coursecategories,
  403:                   },
  404:         'serverstatuses' =>
  405:                  {text   => 'Access to server status pages',
  406:                   help   => 'Domain_Configuration_Server_Status',
  407:                   header => [{col1 => 'Status Page',
  408:                               col2 => 'Other named users',
  409:                               col3 => 'Specific IPs',
  410:                             }],
  411:                   print => \&print_serverstatuses,
  412:                   modify => \&modify_serverstatuses,
  413:                  },
  414:         'coursedefaults' => 
  415:                  {text => 'Course/Community defaults',
  416:                   help => 'Domain_Configuration_Course_Defaults',
  417:                   header => [{col1 => 'Defaults which can be overridden in each course by a CC',
  418:                               col2 => 'Value',},
  419:                              {col1 => 'Defaults which can be overridden for each course by a DC',
  420:                               col2 => 'Value',},],
  421:                   print => \&print_coursedefaults,
  422:                   modify => \&modify_coursedefaults,
  423:                  },
  424:         'selfenrollment' => 
  425:                  {text   => 'Self-enrollment in Course/Community',
  426:                   help   => 'Domain_Configuration_Selfenrollment',
  427:                   header => [{col1 => 'Configuration Rights',
  428:                               col2 => 'Configured by Course Personnel or Domain Coordinator?'},
  429:                              {col1 => 'Defaults',
  430:                               col2 => 'Value'},
  431:                              {col1 => 'Self-enrollment validation (optional)',
  432:                               col2 => 'Value'},],
  433:                   print => \&print_selfenrollment,
  434:                   modify => \&modify_selfenrollment,
  435:                  },
  436:         'usersessions' =>
  437:                  {text  => 'User session hosting/offloading',
  438:                   help  => 'Domain_Configuration_User_Sessions',
  439:                   header => [{col1 => 'Domain server',
  440:                               col2 => 'Servers to offload sessions to when busy'},
  441:                              {col1 => 'Hosting of users from other domains',
  442:                               col2 => 'Rules'},
  443:                              {col1 => "Hosting domain's own users elsewhere",
  444:                               col2 => 'Rules'}],
  445:                   print => \&print_usersessions,
  446:                   modify => \&modify_usersessions,
  447:                  },
  448:          'loadbalancing' =>
  449:                  {text  => 'Dedicated Load Balancer(s)',
  450:                   help  => 'Domain_Configuration_Load_Balancing',
  451:                   header => [{col1 => 'Balancers',
  452:                               col2 => 'Default destinations',
  453:                               col3 => 'User affiliation',
  454:                               col4 => 'Overrides'},
  455:                             ],
  456:                   print => \&print_loadbalancing,
  457:                   modify => \&modify_loadbalancing,
  458:                  },
  459:     );
  460:     if (keys(%servers) > 1) {
  461:         $prefs{'login'}  = { text   => 'Log-in page options',
  462:                              help   => 'Domain_Configuration_Login_Page',
  463:                             header => [{col1 => 'Log-in Service',
  464:                                         col2 => 'Server Setting',},
  465:                                        {col1 => 'Log-in Page Items',
  466:                                         col2 => ''},
  467:                                        {col1 => 'Log-in Help',
  468:                                         col2 => 'Value'},
  469:                                        {col1 => 'Custom HTML in document head',
  470:                                         col2 => 'Value'}],
  471:                             print => \&print_login,
  472:                             modify => \&modify_login,
  473:                            };
  474:     }
  475: 
  476:     my @roles = ('student','coordinator','author','admin');
  477:     my @actions = &Apache::loncommon::get_env_multiple('form.actions');
  478:     &Apache::lonhtmlcommon::add_breadcrumb
  479:     ({href=>"javascript:changePage(document.$phase,'pickactions')",
  480:       text=>"Settings to display/modify"});
  481:     my $confname = $dom.'-domainconfig';
  482: 
  483:     if ($phase eq 'process') {
  484:         my $result = &Apache::lonconfigsettings::make_changes($r,$dom,$phase,$context,\@prefs_order,
  485:                                                               \%prefs,\%domconfig,$confname,\@roles);
  486:         if ((ref($result) eq 'HASH') && (keys(%{$result}))) {
  487:             $r->rflush();
  488:             &devalidate_remote_domconfs($dom,$result);
  489:         }
  490:     } elsif ($phase eq 'display') {
  491:         my $js = &recaptcha_js().
  492:                  &toggle_display_js();
  493:         if ((keys(%servers) > 1) || (keys(%existing) > 0)) {
  494:             my ($othertitle,$usertypes,$types) =
  495:                 &Apache::loncommon::sorted_inst_types($dom);
  496:             $js .= &lonbalance_targets_js($dom,$types,\%servers,
  497:                                           $domconfig{'loadbalancing'}).
  498:                    &new_spares_js().
  499:                    &common_domprefs_js().
  500:                    &Apache::loncommon::javascript_array_indexof();
  501:         }
  502:         if (grep(/^requestcourses$/,@actions)) {
  503:             my $javascript_validations;
  504:             my $coursebrowserjs=&Apache::loncommon::coursebrowser_javascript($env{'request.role.domain'}); 
  505:             $js .= <<END;
  506: <script type="text/javascript">
  507: $javascript_validations
  508: </script>
  509: $coursebrowserjs
  510: END
  511:         }
  512:         &Apache::lonconfigsettings::display_settings($r,$dom,$phase,$context,\@prefs_order,\%prefs,\%domconfig,$confname,$js);
  513:     } else {
  514: # check if domconfig user exists for the domain.
  515:         my $servadm = $r->dir_config('lonAdmEMail');
  516:         my ($configuserok,$author_ok,$switchserver) =
  517:             &config_check($dom,$confname,$servadm);
  518:         unless ($configuserok eq 'ok') {
  519:             &Apache::lonconfigsettings::print_header($r,$phase,$context);
  520:             $r->print(&mt('The domain configuration user "[_1]" has yet to be created.',
  521:                           $confname).
  522:                       '<br />'
  523:             );
  524:             if ($switchserver) {
  525:                 $r->print(&mt('Ordinarily, that domain configuration user is created when the ./UPDATE script is run to install LON-CAPA for the first time.').
  526:                           '<br />'.
  527:                           &mt('However, that does not apply when new domains are added to a multi-domain server, and ./UPDATE has not been run recently.').
  528:                           '<br />'.
  529:                           &mt('The "[_1]" user can be created automatically when a Domain Coordinator visits the web-based "Set domain configuration" screen, in a session hosted on the primary library server.',$confname).
  530:                           '<br />'.
  531:                           &mt('To do that now, use the following link: [_1]',$switchserver)
  532:                 );
  533:             } else {
  534:                 $r->print(&mt('To create that user from the command line run the ./UPDATE script found in the top level directory of the extracted LON-CAPA tarball.').
  535:                           '<br />'.
  536:                           &mt('Once that is done, you will be able to use the web-based "Set domain configuration" to configure the domain')
  537:                 );
  538:             }
  539:             $r->print(&Apache::loncommon::end_page());
  540:             return OK;
  541:         }
  542:         if (keys(%domconfig) == 0) {
  543:             my $primarylibserv = &Apache::lonnet::domain($dom,'primary');
  544:             my @ids=&Apache::lonnet::current_machine_ids();
  545:             if (!grep(/^\Q$primarylibserv\E$/,@ids)) {
  546:                 my %designhash = &Apache::loncommon::get_domainconf($dom);
  547:                 my @loginimages = ('img','logo','domlogo','login');
  548:                 my $custom_img_count = 0;
  549:                 foreach my $img (@loginimages) {
  550:                     if ($designhash{$dom.'.login.'.$img} ne '') {
  551:                         $custom_img_count ++;
  552:                     }
  553:                 }
  554:                 foreach my $role (@roles) {
  555:                     if ($designhash{$dom.'.'.$role.'.img'} ne '') {
  556:                         $custom_img_count ++;
  557:                     }
  558:                 }
  559:                 if ($custom_img_count > 0) {
  560:                     &Apache::lonconfigsettings::print_header($r,$phase,$context);
  561:                     my $switch_server = &check_switchserver($dom,$confname);
  562:                     $r->print(
  563:     &mt('Domain configuration settings have yet to be saved for this domain via the web-based domain preferences interface.').'<br />'.
  564:     &mt("While this remains so, you must switch to the domain's primary library server in order to update settings.").'<br /><br />'.
  565:     &mt("Thereafter, (with a Domain Coordinator role selected in the domain) you will be able to update settings when logged in to any server in the LON-CAPA network.").'<br />'.
  566:     &mt("However, you will still need to switch to the domain's primary library server to upload new images or logos.").'<br /><br />');
  567:                     if ($switch_server) {
  568:                         $r->print($switch_server.' '.&mt('to primary library server for domain: [_1]',$dom));
  569:                     }
  570:                     $r->print(&Apache::loncommon::end_page());
  571:                     return OK;
  572:                 }
  573:             }
  574:         }
  575:         &Apache::lonconfigsettings::display_choices($r,$phase,$context,\@prefs_order,\%prefs);
  576:     }
  577:     return OK;
  578: }
  579: 
  580: sub process_changes {
  581:     my ($r,$dom,$confname,$action,$roles,$values,$lastactref) = @_;
  582:     my %domconfig;
  583:     if (ref($values) eq 'HASH') {
  584:         %domconfig = %{$values};
  585:     }
  586:     my $output;
  587:     if ($action eq 'login') {
  588:         $output = &modify_login($r,$dom,$confname,$lastactref,%domconfig);
  589:     } elsif ($action eq 'rolecolors') {
  590:         $output = &modify_rolecolors($r,$dom,$confname,$roles,
  591:                                      $lastactref,%domconfig);
  592:     } elsif ($action eq 'quotas') {
  593:         $output = &modify_quotas($r,$dom,$action,$lastactref,%domconfig);
  594:     } elsif ($action eq 'autoenroll') {
  595:         $output = &modify_autoenroll($dom,$lastactref,%domconfig);
  596:     } elsif ($action eq 'autoupdate') {
  597:         $output = &modify_autoupdate($dom,%domconfig);
  598:     } elsif ($action eq 'autocreate') {
  599:         $output = &modify_autocreate($dom,%domconfig);
  600:     } elsif ($action eq 'directorysrch') {
  601:         $output = &modify_directorysrch($dom,%domconfig);
  602:     } elsif ($action eq 'usercreation') {
  603:         $output = &modify_usercreation($dom,%domconfig);
  604:     } elsif ($action eq 'selfcreation') {
  605:         $output = &modify_selfcreation($dom,%domconfig);
  606:     } elsif ($action eq 'usermodification') {
  607:         $output = &modify_usermodification($dom,%domconfig);
  608:     } elsif ($action eq 'contacts') {
  609:         $output = &modify_contacts($dom,$lastactref,%domconfig);
  610:     } elsif ($action eq 'defaults') {
  611:         $output = &modify_defaults($dom,$lastactref,%domconfig);
  612:     } elsif ($action eq 'scantron') {
  613:         $output = &modify_scantron($r,$dom,$confname,$lastactref,%domconfig);
  614:     } elsif ($action eq 'coursecategories') {
  615:         $output = &modify_coursecategories($dom,$lastactref,%domconfig);
  616:     } elsif ($action eq 'serverstatuses') {
  617:         $output = &modify_serverstatuses($dom,%domconfig);
  618:     } elsif ($action eq 'requestcourses') {
  619:         $output = &modify_quotas($r,$dom,$action,$lastactref,%domconfig);
  620:     } elsif ($action eq 'requestauthor') {
  621:         $output = &modify_quotas($r,$dom,$action,$lastactref,%domconfig);
  622:     } elsif ($action eq 'coursedefaults') {
  623:         $output = &modify_coursedefaults($dom,$lastactref,%domconfig);
  624:     } elsif ($action eq 'selfenrollment') {
  625:         $output = &modify_selfenrollment($dom,$lastactref,%domconfig)
  626:     } elsif ($action eq 'usersessions') {
  627:         $output = &modify_usersessions($dom,$lastactref,%domconfig);
  628:     } elsif ($action eq 'loadbalancing') {
  629:         $output = &modify_loadbalancing($dom,%domconfig);
  630:     }
  631:     return $output;
  632: }
  633: 
  634: sub print_config_box {
  635:     my ($r,$dom,$confname,$phase,$action,$item,$settings) = @_;
  636:     my $rowtotal = 0;
  637:     my $output;
  638:     if ($action eq 'coursecategories') {
  639:         $output = &coursecategories_javascript($settings);
  640:     } elsif ($action eq 'defaults') {
  641:         $output = &defaults_javascript($settings); 
  642:     }
  643:     $output .=
  644:          '<table class="LC_nested_outer">
  645:           <tr>
  646:            <th align="left" valign="middle"><span class="LC_nobreak">'.
  647:            &mt($item->{text}).'&nbsp;'.
  648:            &Apache::loncommon::help_open_topic($item->{'help'}).'</span></th>'."\n".
  649:           '</tr>';
  650:     $rowtotal ++;
  651:     my $numheaders = 1;
  652:     if (ref($item->{'header'}) eq 'ARRAY') {
  653:         $numheaders = scalar(@{$item->{'header'}});
  654:     }
  655:     if ($numheaders > 1) {
  656:         my $colspan = '';
  657:         my $rightcolspan = '';
  658:         if (($action eq 'rolecolors') || ($action eq 'defaults') ||
  659:             (($action eq 'login') && ($numheaders < 4))) {
  660:             $colspan = ' colspan="2"';
  661:         }
  662:         if ($action eq 'usersessions') {
  663:             $rightcolspan = ' colspan="3"'; 
  664:         }
  665:         $output .= '
  666:           <tr>
  667:            <td>
  668:             <table class="LC_nested">
  669:              <tr class="LC_info_row">
  670:               <td class="LC_left_item"'.$colspan.'>'.&mt($item->{'header'}->[0]->{'col1'}).'</td>
  671:               <td class="LC_right_item"'.$rightcolspan.'>'.&mt($item->{'header'}->[0]->{'col2'}).'</td>
  672:              </tr>';
  673:         $rowtotal ++;
  674:         if (($action eq 'autoupdate') || ($action eq 'usercreation') || ($action eq 'selfcreation') ||
  675:             ($action eq 'usermodification') || ($action eq 'defaults') || ($action eq 'coursedefaults') ||
  676:             ($action eq 'selfenrollment') || ($action eq 'usersessions')) {
  677:             $output .= $item->{'print'}->('top',$dom,$settings,\$rowtotal);
  678:         } elsif ($action eq 'coursecategories') {
  679:             $output .= $item->{'print'}->('top',$dom,$item,$settings,\$rowtotal);
  680:         } elsif ($action eq 'login') {
  681:             if ($numheaders == 4) {
  682:                 $colspan = ' colspan="2"';
  683:                 $output .= &print_login('service',$dom,$confname,$phase,$settings,\$rowtotal);
  684:             } else {
  685:                 $output .= &print_login('page',$dom,$confname,$phase,$settings,\$rowtotal);
  686:             }
  687:         } elsif (($action eq 'requestcourses') || ($action eq 'requestauthor')) {
  688:             $output .= &print_quotas($dom,$settings,\$rowtotal,$action);
  689:         } elsif ($action eq 'rolecolors') {
  690:             $output .= &print_rolecolors($phase,'student',$dom,$confname,$settings,\$rowtotal);
  691:         }
  692:         $output .= '
  693:            </table>
  694:           </td>
  695:          </tr>
  696:          <tr>
  697:            <td>
  698:             <table class="LC_nested">
  699:              <tr class="LC_info_row">
  700:               <td class="LC_left_item"'.$colspan.'>'.&mt($item->{'header'}->[1]->{'col1'}).'</td>
  701:               <td class="LC_right_item"'.$colspan.'>'.&mt($item->{'header'}->[1]->{'col2'}).'</td>
  702:              </tr>';
  703:             $rowtotal ++;
  704:         if (($action eq 'autoupdate') || ($action eq 'usercreation') ||
  705:             ($action eq 'selfcreation') || ($action eq 'selfenrollment') ||
  706:             ($action eq 'usersessions') || ($action eq 'coursecategories')) {
  707:             if ($action eq 'coursecategories') {
  708:                 $output .= &print_coursecategories('middle',$dom,$item,$settings,\$rowtotal);
  709:                 $colspan = ' colspan="2"';
  710:             } else {
  711:                 $output .= $item->{'print'}->('middle',$dom,$settings,\$rowtotal);
  712:             }
  713:             $output .= '
  714:            </table>
  715:           </td>
  716:          </tr>
  717:          <tr>
  718:            <td>
  719:             <table class="LC_nested">
  720:              <tr class="LC_info_row">
  721:               <td class="LC_left_item"'.$colspan.'>'.&mt($item->{'header'}->[2]->{'col1'}).'</td>
  722:               <td class="LC_right_item">'.&mt($item->{'header'}->[2]->{'col2'}).'</td>
  723:              </tr>'."\n";
  724:             if ($action eq 'coursecategories') {
  725:                 $output .= &print_coursecategories('bottom',$dom,$item,$settings,\$rowtotal);
  726:             } else {
  727:                 $output .= $item->{'print'}->('bottom',$dom,$settings,\$rowtotal);
  728:             }
  729:             $rowtotal ++;
  730:         } elsif (($action eq 'usermodification') || ($action eq 'coursedefaults') ||
  731:                   ($action eq 'defaults')) {
  732:             $output .= $item->{'print'}->('bottom',$dom,$settings,\$rowtotal);
  733:         } elsif ($action eq 'login') {
  734:             if ($numheaders == 4) {
  735:                 $output .= &print_login('page',$dom,$confname,$phase,$settings,\$rowtotal).'
  736:            </table>
  737:           </td>
  738:          </tr>
  739:          <tr>
  740:            <td>
  741:             <table class="LC_nested">
  742:              <tr class="LC_info_row">
  743:               <td class="LC_left_item"'.$colspan.'>'.&mt($item->{'header'}->[2]->{'col1'}).'</td>
  744:               <td class="LC_right_item"'.$colspan.'>'.&mt($item->{'header'}->[2]->{'col2'}).'</td></tr>'.
  745:                        &print_login('help',$dom,$confname,$phase,$settings,\$rowtotal);
  746:                 $rowtotal ++;
  747:             } else {
  748:                 $output .= &print_login('help',$dom,$confname,$phase,$settings,\$rowtotal);
  749:             }
  750:             $output .= '
  751:            </table>
  752:           </td>
  753:          </tr>
  754:          <tr>
  755:            <td>
  756:             <table class="LC_nested">
  757:              <tr class="LC_info_row">';
  758:             if ($numheaders == 4) {
  759:                 $output .= '
  760:               <td class="LC_left_item"'.$colspan.'>'.&mt($item->{'header'}->[3]->{'col1'}).'</td>
  761:               <td class="LC_right_item"'.$colspan.'>'.&mt($item->{'header'}->[3]->{'col2'}).'</td>
  762:              </tr>';
  763:             } else {
  764:                 $output .= '
  765:               <td class="LC_left_item"'.$colspan.'>'.&mt($item->{'header'}->[2]->{'col1'}).'</td>
  766:               <td class="LC_right_item"'.$colspan.'>'.&mt($item->{'header'}->[2]->{'col2'}).'</td>
  767:              </tr>';
  768:             }
  769:             $rowtotal ++;
  770:             $output .= &print_login('headtag',$dom,$confname,$phase,$settings,\$rowtotal);
  771:         } elsif ($action eq 'requestcourses') {
  772:             $output .= &print_requestmail($dom,$action,$settings,\$rowtotal);
  773:             $rowtotal ++;
  774:             $output .= &print_studentcode($settings,\$rowtotal).'
  775:            </table>
  776:           </td>
  777:          </tr>
  778:          <tr>
  779:            <td>
  780:             <table class="LC_nested">
  781:              <tr class="LC_info_row">
  782:               <td class="LC_left_item"'.$colspan.'>'.&mt($item->{'header'}->[2]->{'col1'}).'</td>
  783:               <td class="LC_right_item">'.&mt($item->{'header'}->[2]->{'col2'}).'</td> </tr>'.
  784:                        &textbookcourses_javascript($settings).
  785:                        &print_textbookcourses($dom,'textbooks',$settings,\$rowtotal).'
  786:             </table>
  787:            </td>
  788:           </tr>
  789:          <tr>
  790:            <td>
  791:             <table class="LC_nested">
  792:              <tr class="LC_info_row">
  793:               <td class="LC_left_item"'.$colspan.'>'.&mt($item->{'header'}->[3]->{'col1'}).'</td>
  794:               <td class="LC_right_item">'.&mt($item->{'header'}->[3]->{'col2'}).'</td> </tr>'.
  795:                        &print_textbookcourses($dom,'templates',$settings,\$rowtotal).'
  796:             </table>
  797:            </td>
  798:           </tr>
  799:           <tr>
  800:            <td>
  801:             <table class="LC_nested">
  802:              <tr class="LC_info_row">
  803:               <td class="LC_left_item"'.$colspan.' valign="top">'.&mt($item->{'header'}->[4]->{'col1'}).'</td>
  804:               <td class="LC_right_item" valign="top">'.&mt($item->{'header'}->[4]->{'col2'}).'</td>
  805:              </tr>'.
  806:             &print_validation_rows('requestcourses',$dom,$settings,\$rowtotal);
  807:         } elsif ($action eq 'requestauthor') {
  808:             $output .= &print_requestmail($dom,$action,$settings,\$rowtotal);
  809:             $rowtotal ++;
  810:         } elsif ($action eq 'rolecolors') {
  811:             $output .= &print_rolecolors($phase,'coordinator',$dom,$confname,$settings,\$rowtotal).'
  812:            </table>
  813:           </td>
  814:          </tr>
  815:          <tr>
  816:            <td>
  817:             <table class="LC_nested">
  818:              <tr class="LC_info_row">
  819:               <td class="LC_left_item"'.$colspan.' valign="top">'.
  820:                &mt($item->{'header'}->[2]->{'col1'}).'</td>
  821:               <td class="LC_right_item" valign="top">'.
  822:                &mt($item->{'header'}->[2]->{'col2'}).'</td>
  823:              </tr>'.
  824:             &print_rolecolors($phase,'author',$dom,$confname,$settings,\$rowtotal).'
  825:            </table>
  826:           </td>
  827:          </tr>
  828:          <tr>
  829:            <td>
  830:             <table class="LC_nested">
  831:              <tr class="LC_info_row">
  832:               <td class="LC_left_item"'.$colspan.'>'.&mt($item->{'header'}->[3]->{'col1'}).'</td>
  833:               <td class="LC_right_item">'.&mt($item->{'header'}->[3]->{'col2'}).'</td>
  834:              </tr>'.
  835:             &print_rolecolors($phase,'admin',$dom,$confname,$settings,\$rowtotal);
  836:             $rowtotal += 2;
  837:         }
  838:     } else {
  839:         $output .= '
  840:           <tr>
  841:            <td>
  842:             <table class="LC_nested">
  843:              <tr class="LC_info_row">';
  844:         if (($action eq 'login') || ($action eq 'directorysrch')) {
  845:             $output .= '  
  846:               <td class="LC_left_item" colspan="2">'.&mt($item->{'header'}->[0]->{'col1'}).'</td>';
  847:         } elsif ($action eq 'serverstatuses') {
  848:             $output .= '
  849:               <td class="LC_left_item" valign="top">'.&mt($item->{'header'}->[0]->{'col1'}).
  850:               '<br />('.&mt('Automatic access for Dom. Coords.').')</td>';
  851: 
  852:         } else {
  853:             $output .= '
  854:               <td class="LC_left_item" valign="top">'.&mt($item->{'header'}->[0]->{'col1'}).'</td>';
  855:         }
  856:         if (defined($item->{'header'}->[0]->{'col3'})) {
  857:             $output .= '<td class="LC_left_item" valign="top">'.
  858:                        &mt($item->{'header'}->[0]->{'col2'});
  859:             if ($action eq 'serverstatuses') {
  860:                 $output .= '<br />(<tt>'.&mt('user1:domain1,user2:domain2 etc.').'</tt>)';
  861:             } 
  862:         } else {
  863:             $output .= '<td class="LC_right_item" valign="top">'.
  864:                        &mt($item->{'header'}->[0]->{'col2'});
  865:         }
  866:         $output .= '</td>';
  867:         if ($item->{'header'}->[0]->{'col3'}) {
  868:             if (defined($item->{'header'}->[0]->{'col4'})) {
  869:                 $output .= '<td class="LC_left_item" valign="top">'.
  870:                             &mt($item->{'header'}->[0]->{'col3'});
  871:             } else {
  872:                 $output .= '<td class="LC_right_item" valign="top">'.
  873:                            &mt($item->{'header'}->[0]->{'col3'});
  874:             }
  875:             if ($action eq 'serverstatuses') {
  876:                 $output .= '<br />(<tt>'.&mt('IP1,IP2 etc.').'</tt>)';
  877:             }
  878:             $output .= '</td>';
  879:         }
  880:         if ($item->{'header'}->[0]->{'col4'}) {
  881:             $output .= '<td class="LC_right_item" valign="top">'.
  882:                        &mt($item->{'header'}->[0]->{'col4'});
  883:         }
  884:         $output .= '</tr>';
  885:         $rowtotal ++;
  886:         if ($action eq 'quotas') {
  887:             $output .= &print_quotas($dom,$settings,\$rowtotal,$action);
  888:         } elsif (($action eq 'autoenroll') || ($action eq 'autocreate') || ($action eq 'directorysrch') ||
  889:                  ($action eq 'contacts') || ($action eq 'serverstatuses') || ($action eq 'loadbalancing')) {
  890:             $output .= $item->{'print'}->($dom,$settings,\$rowtotal);
  891:         } elsif ($action eq 'scantron') {
  892:             $output .= &print_scantronformat($r,$dom,$confname,$settings,\$rowtotal);
  893:         } elsif ($action eq 'helpsettings') {
  894:             $output .= &print_helpsettings($dom,$confname,$settings,\$rowtotal);
  895:         }
  896:     }
  897:     $output .= '
  898:    </table>
  899:   </td>
  900:  </tr>
  901: </table><br />';
  902:     return ($output,$rowtotal);
  903: }
  904: 
  905: sub print_login {
  906:     my ($caller,$dom,$confname,$phase,$settings,$rowtotal) = @_;
  907:     my ($css_class,$datatable);
  908:     my %choices = &login_choices();
  909: 
  910:     if ($caller eq 'service') {
  911:         my %servers = &Apache::lonnet::internet_dom_servers($dom);
  912:         my $choice = $choices{'disallowlogin'};
  913:         $css_class = ' class="LC_odd_row"';
  914:         $datatable .= '<tr'.$css_class.'><td>'.$choice.'</td>'.
  915:                       '<td align="right"><table><tr><th>'.$choices{'hostid'}.'</th>'.
  916:                       '<th>'.$choices{'server'}.'</th>'.
  917:                       '<th>'.$choices{'serverpath'}.'</th>'.
  918:                       '<th>'.$choices{'custompath'}.'</th>'.
  919:                       '<th><span class="LC_nobreak">'.$choices{'exempt'}.'</span></th></tr>'."\n";
  920:         my %disallowed;
  921:         if (ref($settings) eq 'HASH') {
  922:             if (ref($settings->{'loginvia'}) eq 'HASH') {
  923:                %disallowed = %{$settings->{'loginvia'}};
  924:             }
  925:         }
  926:         foreach my $lonhost (sort(keys(%servers))) {
  927:             my $direct = 'selected="selected"';
  928:             if (ref($disallowed{$lonhost}) eq 'HASH') {
  929:                 if ($disallowed{$lonhost}{'server'} ne '') {
  930:                     $direct = '';
  931:                 }
  932:             }
  933:             $datatable .= '<tr><td>'.$servers{$lonhost}.'</td>'.
  934:                           '<td><select name="'.$lonhost.'_server">'.
  935:                           '<option value=""'.$direct.'>'.$choices{'directlogin'}.
  936:                           '</option>';
  937:             foreach my $hostid (sort(keys(%servers))) {
  938:                 next if ($servers{$hostid} eq $servers{$lonhost});
  939:                 my $selected = '';
  940:                 if (ref($disallowed{$lonhost}) eq 'HASH') {
  941:                     if ($hostid eq $disallowed{$lonhost}{'server'}) {
  942:                         $selected = 'selected="selected"';
  943:                     }
  944:                 }
  945:                 $datatable .= '<option value="'.$hostid.'"'.$selected.'>'.
  946:                               $servers{$hostid}.'</option>';
  947:             }
  948:             $datatable .= '</select></td>'.
  949:                           '<td><select name="'.$lonhost.'_serverpath">';
  950:             foreach my $path ('','/','/adm/login','/adm/roles','custom') {
  951:                 my $pathname = $path;
  952:                 if ($path eq 'custom') {
  953:                     $pathname = &mt('Custom Path').' ->';
  954:                 }
  955:                 my $selected = '';
  956:                 if (ref($disallowed{$lonhost}) eq 'HASH') {
  957:                     if ($path eq $disallowed{$lonhost}{'serverpath'}) {
  958:                         $selected = 'selected="selected"';
  959:                     }
  960:                 } elsif ($path eq '') {
  961:                     $selected = 'selected="selected"';
  962:                 }
  963:                 $datatable .= '<option value="'.$path.'"'.$selected.'>'.$pathname.'</option>';
  964:             }
  965:             $datatable .= '</select></td>';
  966:             my ($custom,$exempt);
  967:             if (ref($disallowed{$lonhost}) eq 'HASH') {
  968:                 $custom = $disallowed{$lonhost}{'custompath'};
  969:                 $exempt = $disallowed{$lonhost}{'exempt'};
  970:             }
  971:             $datatable .= '<td><input type="text" name="'.$lonhost.'_custompath" size="6" value="'.$custom.'" /></td>'.
  972:                           '<td><input type="text" name="'.$lonhost.'_exempt" size="8" value="'.$exempt.'" /></td>'.
  973:                           '</tr>';
  974:         }
  975:         $datatable .= '</table></td></tr>';
  976:         return $datatable;
  977:     } elsif ($caller eq 'page') {
  978:         my %defaultchecked = ( 
  979:                                'coursecatalog' => 'on',
  980:                                'helpdesk'      => 'on',
  981:                                'adminmail'     => 'off',
  982:                                'newuser'       => 'off',
  983:                              );
  984:         my @toggles = ('coursecatalog','adminmail','helpdesk','newuser');
  985:         my (%checkedon,%checkedoff);
  986:         foreach my $item (@toggles) {
  987:             if ($defaultchecked{$item} eq 'on') { 
  988:                 $checkedon{$item} = ' checked="checked" ';
  989:                 $checkedoff{$item} = ' ';
  990:             } elsif ($defaultchecked{$item} eq 'off') {
  991:                 $checkedoff{$item} = ' checked="checked" ';
  992:                 $checkedon{$item} = ' ';
  993:             }
  994:         }
  995:         my @images = ('img','logo','domlogo','login');
  996:         my @logintext = ('textcol','bgcol');
  997:         my @bgs = ('pgbg','mainbg','sidebg');
  998:         my @links = ('link','alink','vlink');
  999:         my %designhash = &Apache::loncommon::get_domainconf($dom);
 1000:         my %defaultdesign = %Apache::loncommon::defaultdesign;
 1001:         my (%is_custom,%designs);
 1002:         my %defaults = (
 1003:                        font => $defaultdesign{'login.font'},
 1004:                        );
 1005:         foreach my $item (@images) {
 1006:             $defaults{$item} = $defaultdesign{'login.'.$item};
 1007:             $defaults{'showlogo'}{$item} = 1;
 1008:         }
 1009:         foreach my $item (@bgs) {
 1010:             $defaults{'bgs'}{$item} = $defaultdesign{'login.'.$item};
 1011:         }
 1012:         foreach my $item (@logintext) {
 1013:             $defaults{'logintext'}{$item} = $defaultdesign{'login.'.$item};
 1014:         }
 1015:         foreach my $item (@links) {
 1016:             $defaults{'links'}{$item} = $defaultdesign{'login.'.$item};
 1017:         }
 1018:         if (ref($settings) eq 'HASH') {
 1019:             foreach my $item (@toggles) {
 1020:                 if ($settings->{$item} eq '1') {
 1021:                     $checkedon{$item} =  ' checked="checked" ';
 1022:                     $checkedoff{$item} = ' ';
 1023:                 } elsif ($settings->{$item} eq '0') {
 1024:                     $checkedoff{$item} =  ' checked="checked" ';
 1025:                     $checkedon{$item} = ' ';
 1026:                 }
 1027:             }
 1028:             foreach my $item (@images) {
 1029:                 if (defined($settings->{$item})) {
 1030:                     $designs{$item} = $settings->{$item};
 1031:                     $is_custom{$item} = 1;
 1032:                 }
 1033:                 if (defined($settings->{'showlogo'}{$item})) {
 1034:                     $designs{'showlogo'}{$item} = $settings->{'showlogo'}{$item};
 1035:                 }
 1036:             }
 1037:             foreach my $item (@logintext) {
 1038:                 if ($settings->{$item} ne '') {
 1039:                     $designs{'logintext'}{$item} = $settings->{$item};
 1040:                     $is_custom{$item} = 1;
 1041:                 }
 1042:             }
 1043:             if ($settings->{'font'} ne '') {
 1044:                 $designs{'font'} = $settings->{'font'};
 1045:                 $is_custom{'font'} = 1;
 1046:             }
 1047:             foreach my $item (@bgs) {
 1048:                 if ($settings->{$item} ne '') {
 1049:                     $designs{'bgs'}{$item} = $settings->{$item};
 1050:                     $is_custom{$item} = 1;
 1051:                 }
 1052:             }
 1053:             foreach my $item (@links) {
 1054:                 if ($settings->{$item} ne '') {
 1055:                     $designs{'links'}{$item} = $settings->{$item};
 1056:                     $is_custom{$item} = 1;
 1057:                 }
 1058:             }
 1059:         } else {
 1060:             if ($designhash{$dom.'.login.font'} ne '') {
 1061:                 $designs{'font'} = $designhash{$dom.'.login.font'};
 1062:                 $is_custom{'font'} = 1;
 1063:             }
 1064:             foreach my $item (@images) {
 1065:                 if ($designhash{$dom.'.login.'.$item} ne '') {
 1066:                     $designs{$item} = $designhash{$dom.'.login.'.$item};
 1067:                     $is_custom{$item} = 1;
 1068:                 }
 1069:             }
 1070:             foreach my $item (@bgs) {
 1071:                 if ($designhash{$dom.'.login.'.$item} ne '') {
 1072:                     $designs{'bgs'}{$item} = $designhash{$dom.'.login.'.$item};
 1073:                     $is_custom{$item} = 1;
 1074:                 }
 1075:             }
 1076:             foreach my $item (@links) {
 1077:                 if ($designhash{$dom.'.login.'.$item} ne '') {
 1078:                     $designs{'links'}{$item} = $designhash{$dom.'.login.'.$item};
 1079:                     $is_custom{$item} = 1;
 1080:                 }
 1081:             }
 1082:         }
 1083:         my %alt_text = &Apache::lonlocal::texthash  ( img => 'Log-in banner',
 1084:                                                       logo => 'Institution Logo',
 1085:                                                       domlogo => 'Domain Logo',
 1086:                                                       login => 'Login box');
 1087:         my $itemcount = 1;
 1088:         foreach my $item (@toggles) {
 1089:             $css_class = $itemcount%2?' class="LC_odd_row"':'';
 1090:             $datatable .=  
 1091:                 '<tr'.$css_class.'><td colspan="2">'.$choices{$item}.
 1092:                 '</td><td>'.
 1093:                 '<span class="LC_nobreak"><label><input type="radio" name="'.
 1094:                 $item.'"'.$checkedon{$item}.' value="1" />'.&mt('Yes').
 1095:                 '</label>&nbsp;<label><input type="radio" name="'.$item.'"'.
 1096:                 $checkedoff{$item}.' value="0" />'.&mt('No').'</label></span></td>'.
 1097:                 '</tr>';
 1098:             $itemcount ++;
 1099:         }
 1100:         $datatable .= &display_color_options($dom,$confname,$phase,'login',$itemcount,\%choices,\%is_custom,\%defaults,\%designs,\@images,\@bgs,\@links,\%alt_text,$rowtotal,\@logintext);
 1101:         $datatable .= '</tr></table></td></tr>';
 1102:     } elsif ($caller eq 'help') {
 1103:         my ($defaulturl,$defaulttype,%url,%type,%lt,%langchoices);
 1104:         my $switchserver = &check_switchserver($dom,$confname);
 1105:         my $itemcount = 1;
 1106:         $defaulturl = '/adm/loginproblems.html';
 1107:         $defaulttype = 'default';
 1108:         %lt = &Apache::lonlocal::texthash (
 1109:                      del     => 'Delete?',
 1110:                      rep     => 'Replace:',
 1111:                      upl     => 'Upload:',
 1112:                      default => 'Default',
 1113:                      custom  => 'Custom',
 1114:                                              );
 1115:         %langchoices = &Apache::lonlocal::texthash(&get_languages_hash());
 1116:         my @currlangs;
 1117:         if (ref($settings) eq 'HASH') {
 1118:             if (ref($settings->{'helpurl'}) eq 'HASH') {
 1119:                 foreach my $key (sort(keys(%{$settings->{'helpurl'}}))) {
 1120:                     next if ($settings->{'helpurl'}{$key} eq '');
 1121:                     $url{$key} = $settings->{'helpurl'}{$key}.'?inhibitmenu=yes';
 1122:                     $type{$key} = 'custom';
 1123:                     unless ($key eq 'nolang') {
 1124:                         push(@currlangs,$key);
 1125:                     }
 1126:                 }
 1127:             } elsif ($settings->{'helpurl'} ne '') {
 1128:                 $type{'nolang'} = 'custom';
 1129:                 $url{'nolang'} = $settings->{'helpurl'}.'?inhibitmenu=yes';
 1130:             }
 1131:         }
 1132:         foreach my $lang ('nolang',sort(@currlangs)) {
 1133:             $css_class = $itemcount%2 ? ' class="LC_odd_row"' : '';
 1134:             $datatable .= '<tr'.$css_class.'>';
 1135:             if ($url{$lang} eq '') {
 1136:                 $url{$lang} = $defaulturl;
 1137:             }
 1138:             if ($type{$lang} eq '') {
 1139:                 $type{$lang} = $defaulttype;
 1140:             }
 1141:             $datatable .= '<td colspan="2"><span class="LC_nobreak">';
 1142:             if ($lang eq 'nolang') {
 1143:                 $datatable .= &mt('Log-in help page if no specific language file: [_1]',
 1144:                                   &Apache::loncommon::modal_link($url{$lang},$lt{$type{$lang}},600,500));
 1145:             } else {
 1146:                 $datatable .= &mt('Log-in help page for language: [_1] is [_2]',
 1147:                                   $langchoices{$lang},
 1148:                                   &Apache::loncommon::modal_link($url{$lang},$lt{$type{$lang}},600,500));
 1149:             }
 1150:             $datatable .= '</span></td>'."\n".
 1151:                           '<td class="LC_left_item">';
 1152:             if ($type{$lang} eq 'custom') {
 1153:                 $datatable .= '<span class="LC_nobreak"><label>'.
 1154:                               '<input type="checkbox" name="loginhelpurl_del" value="'.$lang.'" />'.
 1155:                               $lt{'del'}.'</label>&nbsp;'.$lt{'rep'}.'</span>';
 1156:             } else {
 1157:                 $datatable .= $lt{'upl'};
 1158:             }
 1159:             $datatable .='<br />';
 1160:             if ($switchserver) {
 1161:                 $datatable .= &mt('Upload to library server: [_1]',$switchserver);
 1162:             } else {
 1163:                 $datatable .= '<input type="file" name="loginhelpurl_'.$lang.'" />';
 1164:             }
 1165:             $datatable .= '</td></tr>';
 1166:             $itemcount ++;
 1167:         }
 1168:         my @addlangs;
 1169:         foreach my $lang (sort(keys(%langchoices))) {
 1170:             next if ((grep(/^\Q$lang\E$/,@currlangs)) || ($lang eq 'x_chef'));
 1171:             push(@addlangs,$lang);
 1172:         }
 1173:         if (@addlangs > 0) {
 1174:             my %toadd;
 1175:             map { $toadd{$_} = $langchoices{$_} ; } @addlangs;
 1176:             $toadd{''} = &mt('Select');
 1177:             $css_class = $itemcount%2 ? ' class="LC_odd_row"' : '';
 1178:             $datatable .= '<tr'.$css_class.'><td class="LC_left_item" colspan="2">'.
 1179:                           &mt('Add log-in help page for a specific language:').'&nbsp;'.
 1180:                           &Apache::loncommon::select_form('','loginhelpurl_add_lang',\%toadd).
 1181:                           '</td><td class="LC_left_item">'.$lt{'upl'}.'<br />';
 1182:             if ($switchserver) {
 1183:                 $datatable .= &mt('Upload to library server: [_1]',$switchserver);
 1184:             } else {
 1185:                 $datatable .= '<input type="file" name="loginhelpurl_add_file" />';
 1186:             }
 1187:             $datatable .= '</td></tr>';
 1188:             $itemcount ++;
 1189:         }
 1190:         $datatable .= &captcha_choice('login',$settings,$itemcount);
 1191:     } elsif ($caller eq 'headtag') {
 1192:         my %domservers = &Apache::lonnet::get_servers($dom);
 1193:         my $choice = $choices{'headtag'};
 1194:         $css_class = ' class="LC_odd_row"';
 1195:         $datatable .= '<tr'.$css_class.'><td colspan="2">'.$choice.'</td>'.
 1196:                       '<td align="left"><table><tr><th>'.$choices{'hostid'}.'</th>'.
 1197:                       '<th>'.$choices{'current'}.'</th>'.
 1198:                       '<th>'.$choices{'action'}.'</th>'.
 1199:                       '<th>'.$choices{'exempt'}.'</th></tr>'."\n";
 1200:         my (%currurls,%currexempt);
 1201:         if (ref($settings) eq 'HASH') {
 1202:             if (ref($settings->{'headtag'}) eq 'HASH') {
 1203:                 foreach my $lonhost (keys(%{$settings->{'headtag'}})) {
 1204:                     if (ref($settings->{'headtag'}{$lonhost}) eq 'HASH') {
 1205:                         $currurls{$lonhost} = $settings->{'headtag'}{$lonhost}{'url'};
 1206:                         $currexempt{$lonhost} = $settings->{'headtag'}{$lonhost}{'exempt'};
 1207:                     }
 1208:                 }
 1209:             }
 1210:         }
 1211:         my %lt = &Apache::lonlocal::texthash(
 1212:                                                del  => 'Delete?',
 1213:                                                rep  => 'Replace:',
 1214:                                                upl  => 'Upload:',
 1215:                                                curr => 'View contents',
 1216:                                                none => 'None',
 1217:         );
 1218:         my $switchserver = &check_switchserver($dom,$confname);
 1219:         foreach my $lonhost (sort(keys(%domservers))) {
 1220:             my $exempt = &check_exempt_addresses($currexempt{$lonhost});
 1221:             $datatable .= '<tr><td>'.$domservers{$lonhost}.'</td>';
 1222:             if ($currurls{$lonhost}) {
 1223:                 $datatable .= '<td class="LC_right_item"><a href="'.
 1224:                               "javascript:void(open('$currurls{$lonhost}?inhibitmenu=yes','Custom_HeadTag',
 1225:                               'menubar=0,toolbar=1,scrollbars=1,width=600,height=500,resizable=yes'))".
 1226:                               '">'.$lt{'curr'}.'</a></td>'.
 1227:                               '<td><span class="LC_nobreak"><label>'.
 1228:                               '<input type="checkbox" name="loginheadtag_del" value="'.$lonhost.'" />'.
 1229:                               $lt{'del'}.'</label>&nbsp;'.$lt{'rep'}.'</span>';
 1230:             } else {
 1231:                 $datatable .= '<td class="LC_right_item">'.$lt{'none'}.'</td><td>'.$lt{'upl'};
 1232:             }
 1233:             $datatable .='<br />';
 1234:             if ($switchserver) {
 1235:                 $datatable .= &mt('Upload to library server: [_1]',$switchserver);
 1236:             } else {
 1237:                 $datatable .= '<input type="file" name="loginheadtag_'.$lonhost.'" />';
 1238:             }
 1239:             $datatable .= '</td><td><input type="textbox" name="loginheadtagexempt_'.$lonhost.'" value="'.$exempt.'" /></td></tr>';
 1240:         }
 1241:         $datatable .= '</table></td></tr>';
 1242:     }
 1243:     return $datatable;
 1244: }
 1245: 
 1246: sub login_choices {
 1247:     my %choices =
 1248:         &Apache::lonlocal::texthash (
 1249:             coursecatalog => 'Display Course/Community Catalog link?',
 1250:             adminmail     => "Display Administrator's E-mail Address?",
 1251:             helpdesk      => 'Display "Contact Helpdesk" link',
 1252:             disallowlogin => "Login page requests redirected",
 1253:             hostid        => "Server",
 1254:             server        => "Redirect to:",
 1255:             serverpath    => "Path",
 1256:             custompath    => "Custom", 
 1257:             exempt        => "Exempt IP(s)",
 1258:             directlogin   => "No redirect",
 1259:             newuser       => "Link to create a user account",
 1260:             img           => "Header",
 1261:             logo          => "Main Logo",
 1262:             domlogo       => "Domain Logo",
 1263:             login         => "Log-in Header", 
 1264:             textcol       => "Text color",
 1265:             bgcol         => "Box color",
 1266:             bgs           => "Background colors",
 1267:             links         => "Link colors",
 1268:             font          => "Font color",
 1269:             pgbg          => "Header",
 1270:             mainbg        => "Page",
 1271:             sidebg        => "Login box",
 1272:             link          => "Link",
 1273:             alink         => "Active link",
 1274:             vlink         => "Visited link",
 1275:             headtag       => "Custom markup",
 1276:             action        => "Action",
 1277:             current       => "Current",
 1278:         );
 1279:     return %choices;
 1280: }
 1281: 
 1282: sub print_rolecolors {
 1283:     my ($phase,$role,$dom,$confname,$settings,$rowtotal) = @_;
 1284:     my %choices = &color_font_choices();
 1285:     my @bgs = ('pgbg','tabbg','sidebg');
 1286:     my @links = ('link','alink','vlink');
 1287:     my @images = ('img');
 1288:     my %alt_text = &Apache::lonlocal::texthash(img => "Banner for $role role");
 1289:     my %designhash = &Apache::loncommon::get_domainconf($dom);
 1290:     my %defaultdesign = %Apache::loncommon::defaultdesign;
 1291:     my (%is_custom,%designs);
 1292:     my %defaults = &role_defaults($role,\@bgs,\@links,\@images);
 1293:     if (ref($settings) eq 'HASH') {
 1294:         if (ref($settings->{$role}) eq 'HASH') {
 1295:             if ($settings->{$role}->{'img'} ne '') {
 1296:                 $designs{'img'} = $settings->{$role}->{'img'};
 1297:                 $is_custom{'img'} = 1;
 1298:             }
 1299:             if ($settings->{$role}->{'font'} ne '') {
 1300:                 $designs{'font'} = $settings->{$role}->{'font'};
 1301:                 $is_custom{'font'} = 1;
 1302:             }
 1303:             if ($settings->{$role}->{'fontmenu'} ne '') {
 1304:                 $designs{'fontmenu'} = $settings->{$role}->{'fontmenu'};
 1305:                 $is_custom{'fontmenu'} = 1;
 1306:             }
 1307:             foreach my $item (@bgs) {
 1308:                 if ($settings->{$role}->{$item} ne '') {
 1309:                     $designs{'bgs'}{$item} = $settings->{$role}->{$item};
 1310:                     $is_custom{$item} = 1;
 1311:                 }
 1312:             }
 1313:             foreach my $item (@links) {
 1314:                 if ($settings->{$role}->{$item} ne '') {
 1315:                     $designs{'links'}{$item} = $settings->{$role}->{$item};
 1316:                     $is_custom{$item} = 1;
 1317:                 }
 1318:             }
 1319:         }
 1320:     } else {
 1321:         if ($designhash{$dom.'.'.$role.'.img'} ne '') {
 1322:             $designs{img} = $designhash{$dom.'.'.$role.'.img'};
 1323:             $is_custom{'img'} = 1;
 1324:         }
 1325:         if ($designhash{$dom.'.'.$role.'.fontmenu'} ne '') {
 1326:             $designs{fontmenu} = $designhash{$dom.'.'.$role.'.fontmenu'};
 1327:             $is_custom{'fontmenu'} = 1; 
 1328:         }
 1329:         if ($designhash{$dom.'.'.$role.'.font'} ne '') {
 1330:             $designs{font} = $designhash{$dom.'.'.$role.'.font'};
 1331:             $is_custom{'font'} = 1;
 1332:         }
 1333:         foreach my $item (@bgs) {
 1334:             if ($designhash{$dom.'.'.$role.'.'.$item} ne '') {
 1335:                 $designs{'bgs'}{$item} = $designhash{$dom.'.'.$role.'.'.$item};
 1336:                 $is_custom{$item} = 1;
 1337:             
 1338:             }
 1339:         }
 1340:         foreach my $item (@links) {
 1341:             if ($designhash{$dom.'.'.$role.'.'.$item} ne '') {
 1342:                 $designs{'links'}{$item} = $designhash{$dom.'.'.$role.'.'.$item};
 1343:                 $is_custom{$item} = 1;
 1344:             }
 1345:         }
 1346:     }
 1347:     my $itemcount = 1;
 1348:     my $datatable = &display_color_options($dom,$confname,$phase,$role,$itemcount,\%choices,\%is_custom,\%defaults,\%designs,\@images,\@bgs,\@links,\%alt_text,$rowtotal);
 1349:     $datatable .= '</tr></table></td></tr>';
 1350:     return $datatable;
 1351: }
 1352: 
 1353: sub role_defaults {
 1354:     my ($role,$bgs,$links,$images,$logintext) = @_;
 1355:     my %defaults;
 1356:     unless ((ref($bgs) eq 'ARRAY') && (ref($links) eq 'ARRAY') && (ref($images) eq 'ARRAY')) {
 1357:         return %defaults;
 1358:     }
 1359:     my %defaultdesign = %Apache::loncommon::defaultdesign;
 1360:     if ($role eq 'login') {
 1361:         %defaults = (
 1362:                        font => $defaultdesign{$role.'.font'},
 1363:                     );
 1364:         if (ref($logintext) eq 'ARRAY') {
 1365:             foreach my $item (@{$logintext}) {
 1366:                 $defaults{'logintext'}{$item} = $defaultdesign{$role.'.'.$item};
 1367:             }
 1368:         }
 1369:         foreach my $item (@{$images}) {
 1370:             $defaults{'showlogo'}{$item} = 1;
 1371:         }
 1372:     } else {
 1373:         %defaults = (
 1374:                        img => $defaultdesign{$role.'.img'},
 1375:                        font => $defaultdesign{$role.'.font'},
 1376:                        fontmenu => $defaultdesign{$role.'.fontmenu'},
 1377:                     );
 1378:     }
 1379:     foreach my $item (@{$bgs}) {
 1380:         $defaults{'bgs'}{$item} = $defaultdesign{$role.'.'.$item};
 1381:     }
 1382:     foreach my $item (@{$links}) {
 1383:         $defaults{'links'}{$item} = $defaultdesign{$role.'.'.$item};
 1384:     }
 1385:     foreach my $item (@{$images}) {
 1386:         $defaults{$item} = $defaultdesign{$role.'.'.$item};
 1387:     }
 1388:     return %defaults;
 1389: }
 1390: 
 1391: sub display_color_options {
 1392:     my ($dom,$confname,$phase,$role,$itemcount,$choices,$is_custom,$defaults,$designs,
 1393:         $images,$bgs,$links,$alt_text,$rowtotal,$logintext) = @_;
 1394:     my $londocroot = $Apache::lonnet::perlvar{'lonDocRoot'};
 1395:     my $css_class = $itemcount%2?' class="LC_odd_row"':'';
 1396:     my $datatable = '<tr'.$css_class.'>'.
 1397:         '<td>'.$choices->{'font'}.'</td>';
 1398:     if (!$is_custom->{'font'}) {
 1399:         $datatable .=  '<td>'.&mt('Default in use:').'&nbsp;<span id="css_default_'.$role.'_font" style="color: '.$defaults->{'font'}.';">'.$defaults->{'font'}.'</span></td>';
 1400:     } else {
 1401:         $datatable .= '<td>&nbsp;</td>';
 1402:     }
 1403:     my $current_color = $designs->{'font'} ? $designs->{'font'} : $defaults->{'font'};
 1404: 
 1405:     $datatable .= '<td><span class="LC_nobreak">'.
 1406:                   '<input type="text" class="colorchooser" size="10" name="'.$role.'_font"'.
 1407:                   ' value="'.$current_color.'" />&nbsp;'.
 1408:                   '&nbsp;</td></tr>';
 1409:     unless ($role eq 'login') { 
 1410:         $datatable .= '<tr'.$css_class.'>'.
 1411:                       '<td>'.$choices->{'fontmenu'}.'</td>';
 1412:         if (!$is_custom->{'fontmenu'}) {
 1413:             $datatable .=  '<td>'.&mt('Default in use:').'&nbsp;<span id="css_default_'.$role.'_font" style="color: '.$defaults->{'fontmenu'}.';">'.$defaults->{'fontmenu'}.'</span></td>';
 1414:         } else {
 1415:             $datatable .= '<td>&nbsp;</td>';
 1416:         }
 1417: 	$current_color = $designs->{'fontmenu'} ?
 1418: 	    $designs->{'fontmenu'} : $defaults->{'fontmenu'};
 1419:         $datatable .= '<td><span class="LC_nobreak">'.
 1420:                       '<input class="colorchooser" type="text" size="10" name="'
 1421: 		      .$role.'_fontmenu"'.
 1422:                       ' value="'.$current_color.'" />&nbsp;'.
 1423:                       '&nbsp;</td></tr>';
 1424:     }
 1425:     my $switchserver = &check_switchserver($dom,$confname);
 1426:     foreach my $img (@{$images}) {
 1427: 	$itemcount ++;
 1428:         $css_class = $itemcount%2?' class="LC_odd_row"':'';
 1429:         $datatable .= '<tr'.$css_class.'>'.
 1430:                       '<td>'.$choices->{$img};
 1431:         my ($imgfile,$img_import,$login_hdr_pick,$logincolors);
 1432:         if ($role eq 'login') {
 1433:             if ($img eq 'login') {
 1434:                 $login_hdr_pick =
 1435:                     &login_header_options($img,$role,$defaults,$is_custom,$choices);
 1436:                 $logincolors =
 1437:                     &login_text_colors($img,$role,$logintext,$phase,$choices,
 1438:                                        $designs,$defaults);
 1439:             } elsif ($img ne 'domlogo') {
 1440:                 $datatable.= &logo_display_options($img,$defaults,$designs);
 1441:             }
 1442:         }
 1443:         $datatable .= '</td>';
 1444:         if ($designs->{$img} ne '') {
 1445:             $imgfile = $designs->{$img};
 1446: 	    $img_import = ($imgfile =~ m{^/adm/});
 1447:         } else {
 1448:             $imgfile = $defaults->{$img};
 1449:         }
 1450:         if ($imgfile) {
 1451:             my ($showfile,$fullsize);
 1452:             if ($imgfile =~ m-^(/res/\Q$dom\E/\Q$confname\E/\Q$img\E)/([^/]+)$-) {
 1453:                 my $urldir = $1;
 1454:                 my $filename = $2;
 1455:                 my @info = &Apache::lonnet::stat_file($designs->{$img});
 1456:                 if (@info) {
 1457:                     my $thumbfile = 'tn-'.$filename;
 1458:                     my @thumb=&Apache::lonnet::stat_file($urldir.'/'.$thumbfile);
 1459:                     if (@thumb) {
 1460:                         $showfile = $urldir.'/'.$thumbfile;
 1461:                     } else {
 1462:                         $showfile = $imgfile;
 1463:                     }
 1464:                 } else {
 1465:                     $showfile = '';
 1466:                 }
 1467:             } elsif ($imgfile =~ m-^/(adm/[^/]+)/([^/]+)$-) {
 1468:                 $showfile = $imgfile;
 1469:                 my $imgdir = $1;
 1470:                 my $filename = $2;
 1471:                 if (-e "$londocroot/$imgdir/tn-".$filename) {
 1472:                     $showfile = "/$imgdir/tn-".$filename;
 1473:                 } else {
 1474:                     my $input = $londocroot.$imgfile;
 1475:                     my $output = "$londocroot/$imgdir/tn-".$filename;
 1476:                     if (!-e $output) {
 1477:                         my ($width,$height) = &thumb_dimensions();
 1478:                         my ($fullwidth,$fullheight) = &check_dimensions($input);
 1479:                         if ($fullwidth ne '' && $fullheight ne '') {
 1480:                             if ($fullwidth > $width && $fullheight > $height) { 
 1481:                                 my $size = $width.'x'.$height;
 1482:                                 system("convert -sample $size $input $output");
 1483:                                 $showfile = "/$imgdir/tn-".$filename;
 1484:                             }
 1485:                         }
 1486:                     }
 1487:                 }
 1488:             }
 1489:             if ($showfile) {
 1490:                 if ($showfile =~ m{^/(adm|res)/}) {
 1491:                     if ($showfile =~ m{^/res/}) {
 1492:                         my $local_showfile =
 1493:                             &Apache::lonnet::filelocation('',$showfile);
 1494:                         &Apache::lonnet::repcopy($local_showfile);
 1495:                     }
 1496:                     $showfile = &Apache::loncommon::lonhttpdurl($showfile);
 1497:                 }
 1498:                 if ($imgfile) {
 1499:                     if ($imgfile  =~ m{^/(adm|res)/}) {
 1500:                         if ($imgfile =~ m{^/res/}) {
 1501:                             my $local_imgfile =
 1502:                                 &Apache::lonnet::filelocation('',$imgfile);
 1503:                             &Apache::lonnet::repcopy($local_imgfile);
 1504:                         }
 1505:                         $fullsize = &Apache::loncommon::lonhttpdurl($imgfile);
 1506:                     } else {
 1507:                         $fullsize = $imgfile;
 1508:                     }
 1509:                 }
 1510:                 $datatable .= '<td>';
 1511:                 if ($img eq 'login') {
 1512:                     $datatable .= $login_hdr_pick;
 1513:                 } 
 1514:                 $datatable .= &image_changes($is_custom->{$img},$alt_text->{$img},$img_import,
 1515:                                              $showfile,$fullsize,$role,$img,$imgfile,$logincolors);
 1516:             } else {
 1517:                 $datatable .= '<td>&nbsp;</td><td class="LC_left_item">'.
 1518:                               &mt('Upload:').'<br />';
 1519:             }
 1520:         } else {
 1521:             $datatable .= '<td>&nbsp;</td><td class="LC_left_item">'.
 1522:                           &mt('Upload:').'<br />';
 1523:         }
 1524:         if ($switchserver) {
 1525:             $datatable .= &mt('Upload to library server: [_1]',$switchserver);
 1526:         } else {
 1527:             if ($img ne 'login') { # suppress file selection for Log-in header
 1528:                 $datatable .='&nbsp;<input type="file" name="'.$role.'_'.$img.'" />';
 1529:             }
 1530:         }
 1531:         $datatable .= '</td></tr>';
 1532:     }
 1533:     $itemcount ++;
 1534:     $css_class = $itemcount%2?' class="LC_odd_row"':'';
 1535:     $datatable .= '<tr'.$css_class.'>'.
 1536:                   '<td>'.$choices->{'bgs'}.'</td>';
 1537:     my $bgs_def;
 1538:     foreach my $item (@{$bgs}) {
 1539:         if (!$is_custom->{$item}) {
 1540:             $bgs_def .= '<td><span class="LC_nobreak">'.$choices->{$item}.'</span>&nbsp;<span id="css_default_'.$role.'_'.$item.'" style="background-color: '.$defaults->{'bgs'}{$item}.';">&nbsp;&nbsp;&nbsp;</span><br />'.$defaults->{'bgs'}{$item}.'</td>';
 1541:         }
 1542:     }
 1543:     if ($bgs_def) {
 1544:         $datatable .= '<td>'.&mt('Default(s) in use:').'<br /><table border="0"><tr>'.$bgs_def.'</tr></table></td>';
 1545:     } else {
 1546:         $datatable .= '<td>&nbsp;</td>';
 1547:     }
 1548:     $datatable .= '<td class="LC_right_item">'.
 1549:                   '<table border="0"><tr>';
 1550: 
 1551:     foreach my $item (@{$bgs}) {
 1552:         $datatable .= '<td align="center">'.$choices->{$item};
 1553: 	my $color = $designs->{'bgs'}{$item} ? $designs->{'bgs'}{$item} : $defaults->{'bgs'}{$item};
 1554:         if ($designs->{'bgs'}{$item}) {
 1555:             $datatable .= '&nbsp;';
 1556:         }
 1557:         $datatable .= '<br /><input type="text" class="colorchooser" size="8" name="'.$role.'_'.$item.'" value="'.$color.
 1558:                       '" onblur = "javascript:colchg_span('."'css_".$role.'_'.$item."'".',this);" /></td>';
 1559:     }
 1560:     $datatable .= '</tr></table></td></tr>';
 1561:     $itemcount ++;
 1562:     $css_class = $itemcount%2?' class="LC_odd_row"':'';
 1563:     $datatable .= '<tr'.$css_class.'>'.
 1564:                   '<td>'.$choices->{'links'}.'</td>';
 1565:     my $links_def;
 1566:     foreach my $item (@{$links}) {
 1567:         if (!$is_custom->{$item}) {
 1568:             $links_def .= '<td>'.$choices->{$item}.'<br /><span id="css_default_'.$role.'_'.$item.'" style="color: '.$defaults->{'links'}{$item}.';">'.$defaults->{'links'}{$item}.'</span></td>';
 1569:         }
 1570:     }
 1571:     if ($links_def) {
 1572:         $datatable .= '<td>'.&mt('Default(s) in use:').'<br /><table border="0"><tr>'.$links_def.'</tr></table></td>';
 1573:     } else {
 1574:         $datatable .= '<td>&nbsp;</td>';
 1575:     }
 1576:     $datatable .= '<td class="LC_right_item">'.
 1577:                   '<table border="0"><tr>';
 1578:     foreach my $item (@{$links}) {
 1579: 	my $color = $designs->{'links'}{$item} ? $designs->{'links'}{$item} : $defaults->{'links'}{$item};
 1580:         $datatable .= '<td align="center">'.$choices->{$item}."\n";
 1581:         if ($designs->{'links'}{$item}) {
 1582:             $datatable.='&nbsp;';
 1583:         }
 1584:         $datatable .= '<br /><input type="text" size="8" class="colorchooser" name="'.$role.'_'.$item.'" value="'.$color.
 1585:                       '" /></td>';
 1586:     }
 1587:     $$rowtotal += $itemcount;
 1588:     return $datatable;
 1589: }
 1590: 
 1591: sub logo_display_options {
 1592:     my ($img,$defaults,$designs) = @_;
 1593:     my $checkedon;
 1594:     if (ref($defaults) eq 'HASH') {
 1595:         if (ref($defaults->{'showlogo'}) eq 'HASH') {
 1596:             if ($defaults->{'showlogo'}{$img}) {
 1597:                 $checkedon = 'checked="checked" ';     
 1598:             }
 1599:         } 
 1600:     }
 1601:     if (ref($designs) eq 'HASH') {
 1602:         if (ref($designs->{'showlogo'}) eq 'HASH') {
 1603:             if (defined($designs->{'showlogo'}{$img})) {
 1604:                 if ($designs->{'showlogo'}{$img} == 0) {
 1605:                     $checkedon = '';
 1606:                 } elsif ($designs->{'showlogo'}{$img} == 1) {
 1607:                     $checkedon = 'checked="checked" ';
 1608:                 }
 1609:             }
 1610:         }
 1611:     }
 1612:     return '<br /><label>&nbsp;&nbsp;<input type="checkbox" name="'.
 1613:            'login_showlogo_'.$img.'" value="1" '.$checkedon.'/>'.
 1614:            &mt('show').'</label>'."\n";
 1615: }
 1616: 
 1617: sub login_header_options  {
 1618:     my ($img,$role,$defaults,$is_custom,$choices) = @_;
 1619:     my $output = '';
 1620:     if ((!$is_custom->{'textcol'}) || (!$is_custom->{'bgcol'})) {
 1621:         $output .= &mt('Text default(s):').'<br />';
 1622:         if (!$is_custom->{'textcol'}) {
 1623:             $output .= $choices->{'textcol'}.':&nbsp;'.$defaults->{'logintext'}{'textcol'}.
 1624:                        '&nbsp;&nbsp;&nbsp;';
 1625:         }
 1626:         if (!$is_custom->{'bgcol'}) {
 1627:             $output .= $choices->{'bgcol'}.':&nbsp;'.
 1628:                        '<span id="css_'.$role.'_font" style="background-color: '.
 1629:                        $defaults->{'logintext'}{'bgcol'}.';">&nbsp;&nbsp;&nbsp;</span>';
 1630:         }
 1631:         $output .= '<br />';
 1632:     }
 1633:     $output .='<br />';
 1634:     return $output;
 1635: }
 1636: 
 1637: sub login_text_colors {
 1638:     my ($img,$role,$logintext,$phase,$choices,$designs,$defaults) = @_;
 1639:     my $color_menu = '<table border="0"><tr>';
 1640:     foreach my $item (@{$logintext}) {
 1641:         $color_menu .= '<td align="center">'.$choices->{$item};
 1642:         my $color = $designs->{'logintext'}{$item} ? $designs->{'logintext'}{$item} : $defaults->{'logintext'}{$item};
 1643:         $color_menu .= '<br /><input type="text" class="colorchooser" size="8" name="'.$role.'_'.$item.'" value="'.$color.
 1644:                       '" onblur = "javascript:colchg_span('."'css_".$role.'_'.$item."'".',this);" /></td>';
 1645:     }
 1646:     $color_menu .= '</tr></table><br />';
 1647:     return $color_menu;
 1648: }
 1649: 
 1650: sub image_changes {
 1651:     my ($is_custom,$alt_text,$img_import,$showfile,$fullsize,$role,$img,$imgfile,$logincolors) = @_;
 1652:     my $output;
 1653:     if ($img eq 'login') {
 1654:             # suppress image for Log-in header
 1655:     } elsif (!$is_custom) {
 1656:         if ($img ne 'domlogo') {
 1657:             $output .= &mt('Default image:').'<br />';
 1658:         } else {
 1659:             $output .= &mt('Default in use:').'<br />';
 1660:         }
 1661:     }
 1662:     if ($img eq 'login') { # suppress image for Log-in header
 1663:         $output .= '<td>'.$logincolors;
 1664:     } else {
 1665:         if ($img_import) {
 1666:             $output .= '<input type="hidden" name="'.$role.'_import_'.$img.'" value="'.$imgfile.'" />';
 1667:         }
 1668:         $output .= '<a href="'.$fullsize.'" target="_blank"><img src="'.
 1669:                    $showfile.'" alt="'.$alt_text.'" border="0" /></a></td>';
 1670:         if ($is_custom) {
 1671:             $output .= '<td>'.$logincolors.'<span class="LC_nobreak"><label>'.
 1672:                        '<input type="checkbox" name="'.
 1673:                        $role.'_del_'.$img.'" value="1" />'.&mt('Delete?').
 1674:                        '</label>&nbsp;'.&mt('Replace:').'</span><br />';
 1675:         } else {
 1676:             $output .= '<td valign="middle">'.$logincolors.&mt('Upload:').'<br />';
 1677:         }
 1678:     }
 1679:     return $output;
 1680: }
 1681: 
 1682: sub print_quotas {
 1683:     my ($dom,$settings,$rowtotal,$action) = @_;
 1684:     my $context;
 1685:     if ($action eq 'quotas') {
 1686:         $context = 'tools';
 1687:     } else {
 1688:         $context = $action;
 1689:     }
 1690:     my ($datatable,$defaultquota,$authorquota,@usertools,@options,%validations);
 1691:     my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($dom);
 1692:     my $typecount = 0;
 1693:     my ($css_class,%titles);
 1694:     if ($context eq 'requestcourses') {
 1695:         @usertools = ('official','unofficial','community','textbook');
 1696:         @options =('norequest','approval','validate','autolimit');
 1697:         %validations = &Apache::lonnet::auto_courserequest_checks($dom);
 1698:         %titles = &courserequest_titles();
 1699:     } elsif ($context eq 'requestauthor') {
 1700:         @usertools = ('author');
 1701:         @options = ('norequest','approval','automatic');
 1702:         %titles = &authorrequest_titles();
 1703:     } else {
 1704:         @usertools = ('aboutme','blog','webdav','portfolio');
 1705:         %titles = &tool_titles();
 1706:     }
 1707:     if (ref($types) eq 'ARRAY') {
 1708:         foreach my $type (@{$types}) {
 1709:             my ($currdefquota,$currauthorquota);
 1710:             unless (($context eq 'requestcourses') ||
 1711:                     ($context eq 'requestauthor')) {
 1712:                 if (ref($settings) eq 'HASH') {
 1713:                     if (ref($settings->{defaultquota}) eq 'HASH') {
 1714:                         $currdefquota = $settings->{defaultquota}->{$type};
 1715:                     } else {
 1716:                         $currdefquota = $settings->{$type};
 1717:                     }
 1718:                     if (ref($settings->{authorquota}) eq 'HASH') {
 1719:                         $currauthorquota = $settings->{authorquota}->{$type};
 1720:                     }
 1721:                 }
 1722:             }
 1723:             if (defined($usertypes->{$type})) {
 1724:                 $typecount ++;
 1725:                 $css_class = $typecount%2?' class="LC_odd_row"':'';
 1726:                 $datatable .= '<tr'.$css_class.'>'.
 1727:                               '<td>'.$usertypes->{$type}.'</td>'.
 1728:                               '<td class="LC_left_item">';
 1729:                 if ($context eq 'requestcourses') {
 1730:                     $datatable .= '<table><tr>';
 1731:                 }
 1732:                 my %cell;  
 1733:                 foreach my $item (@usertools) {
 1734:                     if ($context eq 'requestcourses') {
 1735:                         my ($curroption,$currlimit);
 1736:                         if (ref($settings) eq 'HASH') {
 1737:                             if (ref($settings->{$item}) eq 'HASH') {
 1738:                                 $curroption = $settings->{$item}->{$type};
 1739:                                 if ($curroption =~ /^autolimit=(\d*)$/) {
 1740:                                     $currlimit = $1; 
 1741:                                 }
 1742:                             }
 1743:                         }
 1744:                         if (!$curroption) {
 1745:                             $curroption = 'norequest';
 1746:                         }
 1747:                         $datatable .= '<th>'.$titles{$item}.'</th>';
 1748:                         foreach my $option (@options) {
 1749:                             my $val = $option;
 1750:                             if ($option eq 'norequest') {
 1751:                                 $val = 0;  
 1752:                             }
 1753:                             if ($option eq 'validate') {
 1754:                                 my $canvalidate = 0;
 1755:                                 if (ref($validations{$item}) eq 'HASH') { 
 1756:                                     if ($validations{$item}{$type}) {
 1757:                                         $canvalidate = 1;
 1758:                                     }
 1759:                                 }
 1760:                                 next if (!$canvalidate);
 1761:                             }
 1762:                             my $checked = '';
 1763:                             if ($option eq $curroption) {
 1764:                                 $checked = ' checked="checked"';
 1765:                             } elsif ($option eq 'autolimit') {
 1766:                                 if ($curroption =~ /^autolimit/) {
 1767:                                     $checked = ' checked="checked"';
 1768:                                 }                       
 1769:                             } 
 1770:                             $cell{$item} .= '<span class="LC_nobreak"><label>'.
 1771:                                   '<input type="radio" name="crsreq_'.$item.
 1772:                                   '_'.$type.'" value="'.$val.'"'.$checked.' />'.
 1773:                                   $titles{$option}.'</label>';
 1774:                             if ($option eq 'autolimit') {
 1775:                                 $cell{$item} .= '&nbsp;<input type="text" name="crsreq_'.
 1776:                                                 $item.'_limit_'.$type.'" size="1" '.
 1777:                                                 'value="'.$currlimit.'" />';
 1778:                             }
 1779:                             $cell{$item} .= '</span> ';
 1780:                             if ($option eq 'autolimit') {
 1781:                                 $cell{$item} .= $titles{'unlimited'};
 1782:                             }
 1783:                         }
 1784:                     } elsif ($context eq 'requestauthor') {
 1785:                         my $curroption;
 1786:                         if (ref($settings) eq 'HASH') {
 1787:                             $curroption = $settings->{$type};
 1788:                         }
 1789:                         if (!$curroption) {
 1790:                             $curroption = 'norequest';
 1791:                         }
 1792:                         foreach my $option (@options) {
 1793:                             my $val = $option;
 1794:                             if ($option eq 'norequest') {
 1795:                                 $val = 0;
 1796:                             }
 1797:                             my $checked = '';
 1798:                             if ($option eq $curroption) {
 1799:                                 $checked = ' checked="checked"';
 1800:                             }
 1801:                             $datatable .= '<span class="LC_nobreak"><label>'.
 1802:                                   '<input type="radio" name="authorreq_'.$type.
 1803:                                   '" value="'.$val.'"'.$checked.' />'.
 1804:                                   $titles{$option}.'</label></span>&nbsp; ';
 1805:                         }
 1806:                     } else {
 1807:                         my $checked = 'checked="checked" ';
 1808:                         if (ref($settings) eq 'HASH') {
 1809:                             if (ref($settings->{$item}) eq 'HASH') {
 1810:                                 if ($settings->{$item}->{$type} == 0) {
 1811:                                     $checked = '';
 1812:                                 } elsif ($settings->{$item}->{$type} == 1) {
 1813:                                     $checked =  'checked="checked" ';
 1814:                                 }
 1815:                             }
 1816:                         }
 1817:                         $datatable .= '<span class="LC_nobreak"><label>'.
 1818:                                       '<input type="checkbox" name="'.$context.'_'.$item.
 1819:                                       '" value="'.$type.'" '.$checked.'/>'.$titles{$item}.
 1820:                                       '</label></span>&nbsp; ';
 1821:                     }
 1822:                 }
 1823:                 if ($context eq 'requestcourses') {
 1824:                     $datatable .= '</tr><tr>';
 1825:                     foreach my $item (@usertools) {
 1826:                         $datatable .= '<td style="vertical-align: top">'.$cell{$item}.'</td>';  
 1827:                     }
 1828:                     $datatable .= '</tr></table>';
 1829:                 }
 1830:                 $datatable .= '</td>';
 1831:                 unless (($context eq 'requestcourses') ||
 1832:                         ($context eq 'requestauthor')) {
 1833:                     $datatable .= 
 1834:                               '<td class="LC_right_item">'.
 1835:                               '<span class="LC_nobreak">'.&mt('Portfolio').':&nbsp;'.
 1836:                               '<input type="text" name="quota_'.$type.
 1837:                               '" value="'.$currdefquota.
 1838:                               '" size="5" /></span>'.('&nbsp;' x 2).
 1839:                               '<span class="LC_nobreak">'.&mt('Authoring').':&nbsp;'.
 1840:                               '<input type="text" name="authorquota_'.$type.
 1841:                               '" value="'.$currauthorquota.
 1842:                               '" size="5" /></span></td>';
 1843:                 }
 1844:                 $datatable .= '</tr>';
 1845:             }
 1846:         }
 1847:     }
 1848:     unless (($context eq 'requestcourses') || ($context eq 'requestauthor')) {
 1849:         $defaultquota = '20';
 1850:         $authorquota = '500';
 1851:         if (ref($settings) eq 'HASH') {
 1852:             if (ref($settings->{'defaultquota'}) eq 'HASH') {
 1853:                 $defaultquota = $settings->{'defaultquota'}->{'default'};
 1854:             } elsif (defined($settings->{'default'})) {
 1855:                 $defaultquota = $settings->{'default'};
 1856:             }
 1857:             if (ref($settings->{'authorquota'}) eq 'HASH') {
 1858:                 $authorquota = $settings->{'authorquota'}->{'default'};
 1859:             }
 1860:         }
 1861:     }
 1862:     $typecount ++;
 1863:     $css_class = $typecount%2?' class="LC_odd_row"':'';
 1864:     $datatable .= '<tr'.$css_class.'>'.
 1865:                   '<td>'.$othertitle.'</td>'.
 1866:                   '<td class="LC_left_item">';
 1867:     if ($context eq 'requestcourses') {
 1868:         $datatable .= '<table><tr>';
 1869:     }
 1870:     my %defcell;
 1871:     foreach my $item (@usertools) {
 1872:         if ($context eq 'requestcourses') {
 1873:             my ($curroption,$currlimit);
 1874:             if (ref($settings) eq 'HASH') {
 1875:                 if (ref($settings->{$item}) eq 'HASH') {
 1876:                     $curroption = $settings->{$item}->{'default'};
 1877:                     if ($curroption =~ /^autolimit=(\d*)$/) {
 1878:                         $currlimit = $1;
 1879:                     }
 1880:                 }
 1881:             }
 1882:             if (!$curroption) {
 1883:                 $curroption = 'norequest';
 1884:             }
 1885:             $datatable .= '<th>'.$titles{$item}.'</th>';
 1886:             foreach my $option (@options) {
 1887:                 my $val = $option;
 1888:                 if ($option eq 'norequest') {
 1889:                     $val = 0;
 1890:                 }
 1891:                 if ($option eq 'validate') {
 1892:                     my $canvalidate = 0;
 1893:                     if (ref($validations{$item}) eq 'HASH') {
 1894:                         if ($validations{$item}{'default'}) {
 1895:                             $canvalidate = 1;
 1896:                         }
 1897:                     }
 1898:                     next if (!$canvalidate);
 1899:                 }
 1900:                 my $checked = '';
 1901:                 if ($option eq $curroption) {
 1902:                     $checked = ' checked="checked"';
 1903:                 } elsif ($option eq 'autolimit') {
 1904:                     if ($curroption =~ /^autolimit/) {
 1905:                         $checked = ' checked="checked"';
 1906:                     }
 1907:                 }
 1908:                 $defcell{$item} .= '<span class="LC_nobreak"><label>'.
 1909:                                   '<input type="radio" name="crsreq_'.$item.
 1910:                                   '_default" value="'.$val.'"'.$checked.' />'.
 1911:                                   $titles{$option}.'</label>';
 1912:                 if ($option eq 'autolimit') {
 1913:                     $defcell{$item} .= '&nbsp;<input type="text" name="crsreq_'.
 1914:                                        $item.'_limit_default" size="1" '.
 1915:                                        'value="'.$currlimit.'" />';
 1916:                 }
 1917:                 $defcell{$item} .= '</span> ';
 1918:                 if ($option eq 'autolimit') {
 1919:                     $defcell{$item} .= $titles{'unlimited'};
 1920:                 }
 1921:             }
 1922:         } elsif ($context eq 'requestauthor') {
 1923:             my $curroption;
 1924:             if (ref($settings) eq 'HASH') {
 1925:                 $curroption = $settings->{'default'};
 1926:             }
 1927:             if (!$curroption) {
 1928:                 $curroption = 'norequest';
 1929:             }
 1930:             foreach my $option (@options) {
 1931:                 my $val = $option;
 1932:                 if ($option eq 'norequest') {
 1933:                     $val = 0;
 1934:                 }
 1935:                 my $checked = '';
 1936:                 if ($option eq $curroption) {
 1937:                     $checked = ' checked="checked"';
 1938:                 }
 1939:                 $datatable .= '<span class="LC_nobreak"><label>'.
 1940:                               '<input type="radio" name="authorreq_default"'.
 1941:                               ' value="'.$val.'"'.$checked.' />'.
 1942:                               $titles{$option}.'</label></span>&nbsp; ';
 1943:             }
 1944:         } else {
 1945:             my $checked = 'checked="checked" ';
 1946:             if (ref($settings) eq 'HASH') {
 1947:                 if (ref($settings->{$item}) eq 'HASH') {
 1948:                     if ($settings->{$item}->{'default'} == 0) {
 1949:                         $checked = '';
 1950:                     } elsif ($settings->{$item}->{'default'} == 1) {
 1951:                         $checked = 'checked="checked" ';
 1952:                     }
 1953:                 }
 1954:             }
 1955:             $datatable .= '<span class="LC_nobreak"><label>'.
 1956:                           '<input type="checkbox" name="'.$context.'_'.$item.
 1957:                           '" value="default" '.$checked.'/>'.$titles{$item}.
 1958:                           '</label></span>&nbsp; ';
 1959:         }
 1960:     }
 1961:     if ($context eq 'requestcourses') {
 1962:         $datatable .= '</tr><tr>';
 1963:         foreach my $item (@usertools) {
 1964:             $datatable .= '<td style="vertical-align: top">'.$defcell{$item}.'</td>';
 1965:         }
 1966:         $datatable .= '</tr></table>';
 1967:     }
 1968:     $datatable .= '</td>';
 1969:     unless (($context eq 'requestcourses') || ($context eq 'requestauthor')) {
 1970:         $datatable .= '<td class="LC_right_item">'.
 1971:                       '<span class="LC_nobreak">'.&mt('Portfolio').':&nbsp;'.
 1972:                       '<input type="text" name="defaultquota" value="'.
 1973:                       $defaultquota.'" size="5" /></span>'.('&nbsp;' x2).
 1974:                       '<span class="LC_nobreak">'.&mt('Authoring').':&nbsp;'.
 1975:                       '<input type="text" name="authorquota" value="'.
 1976:                       $authorquota.'" size="5" /></span></td>';
 1977:     }
 1978:     $datatable .= '</tr>';
 1979:     $typecount ++;
 1980:     $css_class = $typecount%2?' class="LC_odd_row"':'';
 1981:     $datatable .= '<tr'.$css_class.'>'.
 1982:                   '<td>'.&mt('LON-CAPA Advanced Users').'<br />';
 1983:     if ($context eq 'requestcourses') {
 1984:         $datatable .= &mt('(overrides affiliation, if set)').
 1985:                       '</td>'.
 1986:                       '<td class="LC_left_item">'.
 1987:                       '<table><tr>';
 1988:     } else {
 1989:         $datatable .= &mt('(overrides affiliation, if checked)').
 1990:                       '</td>'.
 1991:                       '<td class="LC_left_item" colspan="2">'.
 1992:                       '<br />';
 1993:     }
 1994:     my %advcell;
 1995:     foreach my $item (@usertools) {
 1996:         if ($context eq 'requestcourses') {
 1997:             my ($curroption,$currlimit);
 1998:             if (ref($settings) eq 'HASH') {
 1999:                 if (ref($settings->{$item}) eq 'HASH') {
 2000:                     $curroption = $settings->{$item}->{'_LC_adv'};
 2001:                     if ($curroption =~ /^autolimit=(\d*)$/) {
 2002:                         $currlimit = $1;
 2003:                     }
 2004:                 }
 2005:             }
 2006:             $datatable .= '<th>'.$titles{$item}.'</th>';
 2007:             my $checked = '';
 2008:             if ($curroption eq '') {
 2009:                 $checked = ' checked="checked"';
 2010:             }
 2011:             $advcell{$item} .= '<span class="LC_nobreak"><label>'.
 2012:                                '<input type="radio" name="crsreq_'.$item.
 2013:                                '__LC_adv" value=""'.$checked.' />'.
 2014:                                &mt('No override set').'</label></span>&nbsp; ';
 2015:             foreach my $option (@options) {
 2016:                 my $val = $option;
 2017:                 if ($option eq 'norequest') {
 2018:                     $val = 0;
 2019:                 }
 2020:                 if ($option eq 'validate') {
 2021:                     my $canvalidate = 0;
 2022:                     if (ref($validations{$item}) eq 'HASH') {
 2023:                         if ($validations{$item}{'_LC_adv'}) {
 2024:                             $canvalidate = 1;
 2025:                         }
 2026:                     }
 2027:                     next if (!$canvalidate);
 2028:                 }
 2029:                 my $checked = '';
 2030:                 if ($val eq $curroption) {
 2031:                     $checked = ' checked="checked"';
 2032:                 } elsif ($option eq 'autolimit') {
 2033:                     if ($curroption =~ /^autolimit/) {
 2034:                         $checked = ' checked="checked"';
 2035:                     }
 2036:                 }
 2037:                 $advcell{$item} .= '<span class="LC_nobreak"><label>'.
 2038:                                   '<input type="radio" name="crsreq_'.$item.
 2039:                                   '__LC_adv" value="'.$val.'"'.$checked.' />'.
 2040:                                   $titles{$option}.'</label>';
 2041:                 if ($option eq 'autolimit') {
 2042:                     $advcell{$item} .= '&nbsp;<input type="text" name="crsreq_'.
 2043:                                        $item.'_limit__LC_adv" size="1" '.
 2044:                                        'value="'.$currlimit.'" />';
 2045:                 }
 2046:                 $advcell{$item} .= '</span> ';
 2047:                 if ($option eq 'autolimit') {
 2048:                     $advcell{$item} .= $titles{'unlimited'};
 2049:                 }
 2050:             }
 2051:         } elsif ($context eq 'requestauthor') {
 2052:             my $curroption;
 2053:             if (ref($settings) eq 'HASH') {
 2054:                 $curroption = $settings->{'_LC_adv'};
 2055:             }
 2056:             my $checked = '';
 2057:             if ($curroption eq '') {
 2058:                 $checked = ' checked="checked"';
 2059:             }
 2060:             $datatable .= '<span class="LC_nobreak"><label>'.
 2061:                           '<input type="radio" name="authorreq__LC_adv"'.
 2062:                           ' value=""'.$checked.' />'.
 2063:                           &mt('No override set').'</label></span>&nbsp; ';
 2064:             foreach my $option (@options) {
 2065:                 my $val = $option;
 2066:                 if ($option eq 'norequest') {
 2067:                     $val = 0;
 2068:                 }
 2069:                 my $checked = '';
 2070:                 if ($val eq $curroption) {
 2071:                     $checked = ' checked="checked"';
 2072:                 }
 2073:                 $datatable .= '<span class="LC_nobreak"><label>'.
 2074:                               '<input type="radio" name="authorreq__LC_adv"'.
 2075:                               ' value="'.$val.'"'.$checked.' />'.
 2076:                               $titles{$option}.'</label></span>&nbsp; ';
 2077:             }
 2078:         } else {
 2079:             my $checked = 'checked="checked" ';
 2080:             if (ref($settings) eq 'HASH') {
 2081:                 if (ref($settings->{$item}) eq 'HASH') {
 2082:                     if ($settings->{$item}->{'_LC_adv'} == 0) {
 2083:                         $checked = '';
 2084:                     } elsif ($settings->{$item}->{'_LC_adv'} == 1) {
 2085:                         $checked = 'checked="checked" ';
 2086:                     }
 2087:                 }
 2088:             }
 2089:             $datatable .= '<span class="LC_nobreak"><label>'.
 2090:                           '<input type="checkbox" name="'.$context.'_'.$item.
 2091:                           '" value="_LC_adv" '.$checked.'/>'.$titles{$item}.
 2092:                           '</label></span>&nbsp; ';
 2093:         }
 2094:     }
 2095:     if ($context eq 'requestcourses') {
 2096:         $datatable .= '</tr><tr>';
 2097:         foreach my $item (@usertools) {
 2098:             $datatable .= '<td style="vertical-align: top">'.$advcell{$item}.'</td>';
 2099:         }
 2100:         $datatable .= '</tr></table>';
 2101:     }
 2102:     $datatable .= '</td></tr>';
 2103:     $$rowtotal += $typecount;
 2104:     return $datatable;
 2105: }
 2106: 
 2107: sub print_requestmail {
 2108:     my ($dom,$action,$settings,$rowtotal) = @_;
 2109:     my ($now,$datatable,%currapp);
 2110:     $now = time;
 2111:     if (ref($settings) eq 'HASH') {
 2112:         if (ref($settings->{'notify'}) eq 'HASH') {
 2113:             if ($settings->{'notify'}{'approval'} ne '') {
 2114:                 map {$currapp{$_}=1;} split(/,/,$settings->{'notify'}{'approval'});
 2115:             }
 2116:         }
 2117:     }
 2118:     my $numinrow = 2;
 2119:     my $css_class;
 2120:     $css_class = ($$rowtotal%2? ' class="LC_odd_row"':'');
 2121:     my $text;
 2122:     if ($action eq 'requestcourses') {
 2123:         $text = &mt('Receive notification of course requests requiring approval');
 2124:     } elsif ($action eq 'requestauthor') {
 2125:         $text = &mt('Receive notification of Authoring Space requests requiring approval');
 2126:     } else {
 2127:        $text = &mt('Receive notification of queued requests for self-created user accounts requiring approval');
 2128:     }
 2129:     $datatable = '<tr'.$css_class.'>'.
 2130:                  ' <td>'.$text.'</td>'.
 2131:                  ' <td class="LC_left_item">';
 2132:     my ($numdc,$table,$rows) = &active_dc_picker($dom,$numinrow,'checkbox',
 2133:                                                  $action.'notifyapproval',%currapp);
 2134:     if ($numdc > 0) {
 2135:         $datatable .= $table;
 2136:     } else {
 2137:         $datatable .= &mt('There are no active Domain Coordinators');
 2138:     }
 2139:     $datatable .='</td></tr>';
 2140:     return $datatable;
 2141: }
 2142: 
 2143: sub print_studentcode {
 2144:     my ($settings,$rowtotal) = @_;
 2145:     my $rownum = 0; 
 2146:     my ($output,%current);
 2147:     my @crstypes = ('official','unofficial','community','textbook');
 2148:     if (ref($settings) eq 'HASH') {
 2149:         if (ref($settings->{'uniquecode'}) eq 'HASH') {
 2150:             foreach my $type (@crstypes) {
 2151:                 $current{$type} = $settings->{'uniquecode'}{$type};
 2152:             }
 2153:         }
 2154:     }
 2155:     $output .= '<tr>'.
 2156:                '<td class="LC_left_item">'.&mt('Generate unique six character code as course identifier?').'</td>'.
 2157:                '<td class="LC_left_item">';
 2158:     foreach my $type (@crstypes) {
 2159:         my $check = ' ';
 2160:         if ($current{$type}) {
 2161:             $check = ' checked="checked" ';
 2162:         }
 2163:         $output .= '<span class="LC_nobreak"><label>'.
 2164:                    '<input type="checkbox" name="uniquecode" value="'.$type.'"'.$check.'/>'.
 2165:                    &mt($type).'</label></span>'.('&nbsp;'x2).' ';
 2166:     }
 2167:     $output .= '</td></tr>';
 2168:     $$rowtotal ++;
 2169:     return $output;
 2170: }
 2171: 
 2172: sub print_textbookcourses {
 2173:     my ($dom,$type,$settings,$rowtotal) = @_;
 2174:     my $rownum = 0;
 2175:     my $css_class;
 2176:     my $itemcount = 1;
 2177:     my $maxnum = 0;
 2178:     my $bookshash;
 2179:     if (ref($settings) eq 'HASH') {
 2180:         $bookshash = $settings->{$type};
 2181:     }
 2182:     my %ordered;
 2183:     if (ref($bookshash) eq 'HASH') {
 2184:         foreach my $item (keys(%{$bookshash})) {
 2185:             if (ref($bookshash->{$item}) eq 'HASH') {
 2186:                 my $num = $bookshash->{$item}{'order'};
 2187:                 $ordered{$num} = $item;
 2188:             }
 2189:         }
 2190:     }
 2191:     my $confname = $dom.'-domainconfig';
 2192:     my $switchserver = &check_switchserver($dom,$confname);
 2193:     my $maxnum = scalar(keys(%ordered));
 2194:     my $datatable;
 2195:     if (keys(%ordered)) {
 2196:         my @items = sort { $a <=> $b } keys(%ordered);
 2197:         for (my $i=0; $i<@items; $i++) {
 2198:             $css_class = $itemcount%2?' class="LC_odd_row"':'';
 2199:             my $key = $ordered{$items[$i]};
 2200:             my %coursehash=&Apache::lonnet::coursedescription($key);
 2201:             my $coursetitle = $coursehash{'description'};
 2202:             my ($subject,$title,$author,$publisher,$image,$imgsrc,$cdom,$cnum);
 2203:             if (ref($bookshash->{$key}) eq 'HASH') {
 2204:                 $subject = $bookshash->{$key}->{'subject'};
 2205:                 $title = $bookshash->{$key}->{'title'};
 2206:                 if ($type eq 'textbooks') {
 2207:                     $publisher = $bookshash->{$key}->{'publisher'};
 2208:                     $author = $bookshash->{$key}->{'author'};
 2209:                     $image = $bookshash->{$key}->{'image'};
 2210:                     if ($image ne '') {
 2211:                         my ($path,$imagefile) = ($image =~ m{^(.+)/([^/]+)$});
 2212:                         my $imagethumb = "$path/tn-".$imagefile;
 2213:                         $imgsrc = '<img src="'.$imagethumb.'" alt="'.&mt('Textbook image').'" />';
 2214:                     }
 2215:                 }
 2216:             }
 2217:             my $chgstr = ' onchange="javascript:reorderBooks(this.form,'."'$type".'_'."$key','$type'".');"';
 2218:             $datatable .= '<tr '.$css_class.'><td><span class="LC_nobreak">'
 2219:                          .'<select name="'.$type.'_'.$key.'"'.$chgstr.'>';
 2220:             for (my $k=0; $k<=$maxnum; $k++) {
 2221:                 my $vpos = $k+1;
 2222:                 my $selstr;
 2223:                 if ($k == $i) {
 2224:                     $selstr = ' selected="selected" ';
 2225:                 }
 2226:                 $datatable .= '<option value="'.$k.'"'.$selstr.'>'.$vpos.'</option>';
 2227:             }
 2228:             $datatable .= '</select>'.('&nbsp;'x2).
 2229:                 '<label><input type="checkbox" name="'.$type.'_del" value="'.$key.'" />'.
 2230:                 &mt('Delete?').'</label></span></td>'.
 2231:                 '<td colspan="2">'.
 2232:                 '<span class="LC_nobreak">'.&mt('Subject:').'<input type="text" size="15" name="'.$type.'_subject_'.$i.'" value="'.$subject.'" /></span> '.
 2233:                 ('&nbsp;'x2).
 2234:                 '<span class="LC_nobreak">'.&mt('Title:').'<input type="text" size="30" name="'.$type.'_title_'.$i.'" value="'.$title.'" /></span> ';
 2235:             if ($type eq 'textbooks') {
 2236:                 $datatable .= ('&nbsp;'x2).
 2237:                               '<span class="LC_nobreak">'.&mt('Publisher:').'<input type="text" size="10" name="'.$type.'_publisher_'.$i.'" value="'.$publisher.'" /></span> '.
 2238:                               ('&nbsp;'x2).
 2239:                               '<span class="LC_nobreak">'.&mt('Author(s):').'<input type="text" size="25" name="'.$type.'_author_'.$i.'" value="'.$author.'" /></span> '.
 2240:                               ('&nbsp;'x2).
 2241:                               '<span class="LC_nobreak">'.&mt('Thumbnail:');
 2242:                 if ($image) {
 2243:                     $datatable .= '<span class="LC_nobreak">'.
 2244:                                   $imgsrc.
 2245:                                   '<label><input type="checkbox" name="'.$type.'_image_del"'.
 2246:                                   ' value="'.$key.'" />'.&mt('Delete?').'</label></span> '.
 2247:                                   '<span class="LC_nobreak">&nbsp;'.&mt('Replace:').'&nbsp;';
 2248:                 }
 2249:                 if ($switchserver) {
 2250:                     $datatable .= &mt('Upload to library server: [_1]',$switchserver);
 2251:                 } else {
 2252:                     $datatable .= '<input type="file" name="'.$type.'_image_'.$i.'" value="" />';
 2253:                 }
 2254:             }
 2255:             $datatable .= '<input type="hidden" name="'.$type.'_id_'.$i.'" value="'.$type.'_'.$key.'" /></span> '.
 2256:                           '<span class="LC_nobreak">'.&mt('LON-CAPA course:').'&nbsp;'.
 2257:                           $coursetitle.'</span></td></tr>'."\n";
 2258:             $itemcount ++;
 2259:         }
 2260:     }
 2261:     $css_class = $itemcount%2?' class="LC_odd_row"':'';
 2262:     my $chgstr = ' onchange="javascript:reorderBooks(this.form,'."'$type"."_addbook_pos','$type'".');"';
 2263:     $datatable .= '<tr '.$css_class.'><td><span class="LC_nobreak">'."\n".
 2264:                   '<input type="hidden" name="'.$type.'_maxnum" value="'.$maxnum.'" />'."\n".
 2265:                   '<select name="'.$type.'_addbook_pos"'.$chgstr.'>';
 2266:     for (my $k=0; $k<$maxnum+1; $k++) {
 2267:         my $vpos = $k+1;
 2268:         my $selstr;
 2269:         if ($k == $maxnum) {
 2270:             $selstr = ' selected="selected" ';
 2271:         }
 2272:         $datatable .= '<option value="'.$k.'"'.$selstr.'>'.$vpos.'</option>';
 2273:     }
 2274:     $datatable .= '</select>&nbsp;'."\n".
 2275:                   '<input type="checkbox" name="'.$type.'_addbook" value="1" />'.&mt('Add').'</td>'."\n".
 2276:                   '<td colspan="2">'.
 2277:                   '<span class="LC_nobreak">'.&mt('Subject:').'<input type="text" size="15" name="'.$type.'_addbook_subject" value="" /></span> '."\n".
 2278:                   ('&nbsp;'x2).
 2279:                   '<span class="LC_nobreak">'.&mt('Title:').'<input type="text" size="30" name="'.$type.'_addbook_title" value="" /></span> '."\n".
 2280:                   ('&nbsp;'x2);
 2281:     if ($type eq 'textbooks') {
 2282:         $datatable .= '<span class="LC_nobreak">'.&mt('Publisher:').'<input type="text" size="10" name="'.$type.'_addbook_publisher" value="" /></span> '."\n".
 2283:                       ('&nbsp;'x2).
 2284:                       '<span class="LC_nobreak">'.&mt('Author(s):').'<input type="text" size="25" name="'.$type.'_addbook_author" value="" /></span> '."\n".
 2285:                       ('&nbsp;'x2).
 2286:                       '<span class="LC_nobreak">'.&mt('Image:').'&nbsp;';
 2287:         if ($switchserver) {
 2288:             $datatable .= &mt('Upload to library server: [_1]',$switchserver);
 2289:         } else {
 2290:             $datatable .= '<input type="file" name="'.$type.'_addbook_image" value="" />';
 2291:         }
 2292:     }
 2293:     $datatable .= '</span>'."\n".
 2294:                   '<span class="LC_nobreak">'.&mt('LON-CAPA course:').'&nbsp;'.
 2295:                   &Apache::loncommon::select_dom_form($env{'request.role.domain'},$type.'_addbook_cdom').
 2296:                   '<input type="text" size="25" name="'.$type.'_addbook_cnum" value="" />'.
 2297:                   &Apache::loncommon::selectcourse_link
 2298:                       ('display',$type.'_addbook_cnum',$type.'_addbook_cdom',undef,undef,undef,'Course');
 2299:                   '</span></td>'."\n".
 2300:                   '</tr>'."\n";
 2301:     $itemcount ++;
 2302:     return $datatable;
 2303: }
 2304: 
 2305: sub textbookcourses_javascript {
 2306:     my ($settings) = @_;
 2307:     return unless(ref($settings) eq 'HASH');
 2308:     my (%ordered,%total,%jstext);
 2309:     foreach my $type ('textbooks','templates') {
 2310:         $total{$type} = 0;
 2311:         if (ref($settings->{$type}) eq 'HASH') {
 2312:             foreach my $item (keys(%{$settings->{$type}})) {
 2313:                 if (ref($settings->{$type}->{$item}) eq 'HASH') {
 2314:                     my $num = $settings->{$type}->{$item}{'order'};
 2315:                     $ordered{$type}{$num} = $item;
 2316:                 }
 2317:             }
 2318:             $total{$type} = scalar(keys(%{$settings->{$type}}));
 2319:         }
 2320:         my @jsarray = ();
 2321:         foreach my $item (sort {$a <=> $b } (keys(%{$ordered{$type}}))) {
 2322:             push(@jsarray,$ordered{$type}{$item});
 2323:         }
 2324:         $jstext{$type} = '    var '.$type.' = Array('."'".join("','",@jsarray)."'".');'."\n";
 2325:     }
 2326:     return <<"ENDSCRIPT";
 2327: <script type="text/javascript">
 2328: // <![CDATA[
 2329: function reorderBooks(form,item,caller) {
 2330:     var changedVal;
 2331: $jstext{'textbooks'};
 2332: $jstext{'templates'};
 2333:     var newpos;
 2334:     var maxh;
 2335:     if (caller == 'textbooks') {  
 2336:         newpos = 'textbooks_addbook_pos';
 2337:         maxh = 1 + $total{'textbooks'};
 2338:     } else {
 2339:         newpos = 'templates_addbook_pos';
 2340:         maxh = 1 + $total{'templates'};
 2341:     }
 2342:     var current = new Array;
 2343:     var newitemVal = form.elements[newpos].options[form.elements[newpos].selectedIndex].value;
 2344:     if (item == newpos) {
 2345:         changedVal = newitemVal;
 2346:     } else {
 2347:         changedVal = form.elements[item].options[form.elements[item].selectedIndex].value;
 2348:         current[newitemVal] = newpos;
 2349:     }
 2350:     if (caller == 'textbooks') {
 2351:         for (var i=0; i<textbooks.length; i++) {
 2352:             var elementName = 'textbooks_'+textbooks[i];
 2353:             if (elementName != item) {
 2354:                 if (form.elements[elementName]) {
 2355:                     var currVal = form.elements[elementName].options[form.elements[elementName].selectedIndex].value;
 2356:                     current[currVal] = elementName;
 2357:                 }
 2358:             }
 2359:         }
 2360:     }
 2361:     if (caller == 'templates') {
 2362:         for (var i=0; i<templates.length; i++) {
 2363:             var elementName = 'templates_'+templates[i];
 2364:             if (elementName != item) {
 2365:                 if (form.elements[elementName]) {
 2366:                     var currVal = form.elements[elementName].options[form.elements[elementName].selectedIndex].value;
 2367:                     current[currVal] = elementName;
 2368:                 }
 2369:             }
 2370:         }
 2371:     }
 2372:     var oldVal;
 2373:     for (var j=0; j<maxh; j++) {
 2374:         if (current[j] == undefined) {
 2375:             oldVal = j;
 2376:         }
 2377:     }
 2378:     if (oldVal < changedVal) {
 2379:         for (var k=oldVal+1; k<=changedVal ; k++) {
 2380:            var elementName = current[k];
 2381:            form.elements[elementName].selectedIndex = form.elements[elementName].selectedIndex - 1;
 2382:         }
 2383:     } else {
 2384:         for (var k=changedVal; k<oldVal; k++) {
 2385:             var elementName = current[k];
 2386:             form.elements[elementName].selectedIndex = form.elements[elementName].selectedIndex + 1;
 2387:         }
 2388:     }
 2389:     return;
 2390: }
 2391: 
 2392: // ]]>
 2393: </script>
 2394: 
 2395: ENDSCRIPT
 2396: }
 2397: 
 2398: sub print_autoenroll {
 2399:     my ($dom,$settings,$rowtotal) = @_;
 2400:     my $autorun = &Apache::lonnet::auto_run(undef,$dom),
 2401:     my ($defdom,$runon,$runoff,$coownerson,$coownersoff);
 2402:     if (ref($settings) eq 'HASH') {
 2403:         if (exists($settings->{'run'})) {
 2404:             if ($settings->{'run'} eq '0') {
 2405:                 $runoff = ' checked="checked" ';
 2406:                 $runon = ' ';
 2407:             } else {
 2408:                 $runon = ' checked="checked" ';
 2409:                 $runoff = ' ';
 2410:             }
 2411:         } else {
 2412:             if ($autorun) {
 2413:                 $runon = ' checked="checked" ';
 2414:                 $runoff = ' ';
 2415:             } else {
 2416:                 $runoff = ' checked="checked" ';
 2417:                 $runon = ' ';
 2418:             }
 2419:         }
 2420:         if (exists($settings->{'co-owners'})) {
 2421:             if ($settings->{'co-owners'} eq '0') {
 2422:                 $coownersoff = ' checked="checked" ';
 2423:                 $coownerson = ' ';
 2424:             } else {
 2425:                 $coownerson = ' checked="checked" ';
 2426:                 $coownersoff = ' ';
 2427:             }
 2428:         } else {
 2429:             $coownersoff = ' checked="checked" ';
 2430:             $coownerson = ' ';
 2431:         }
 2432:         if (exists($settings->{'sender_domain'})) {
 2433:             $defdom = $settings->{'sender_domain'};
 2434:         }
 2435:     } else {
 2436:         if ($autorun) {
 2437:             $runon = ' checked="checked" ';
 2438:             $runoff = ' ';
 2439:         } else {
 2440:             $runoff = ' checked="checked" ';
 2441:             $runon = ' ';
 2442:         }
 2443:     }
 2444:     my $domform = &Apache::loncommon::select_dom_form($defdom,'sender_domain',1);
 2445:     my $notif_sender;
 2446:     if (ref($settings) eq 'HASH') {
 2447:         $notif_sender = $settings->{'sender_uname'};
 2448:     }
 2449:     my $datatable='<tr class="LC_odd_row">'.
 2450:                   '<td>'.&mt('Auto-enrollment active?').'</td>'.
 2451:                   '<td class="LC_right_item"><span class="LC_nobreak"><label>'.
 2452:                   '<input type="radio" name="autoenroll_run"'.
 2453:                   $runon.' value="1" />'.&mt('Yes').'</label>&nbsp;'.
 2454:                   '<label><input type="radio" name="autoenroll_run"'.
 2455:                   $runoff.' value="0" />'.&mt('No').'</label></span></td>'.
 2456:                   '</tr><tr>'.
 2457:                   '<td>'.&mt('Notification messages - sender').
 2458:                   '</td><td class="LC_right_item"><span class="LC_nobreak">'.
 2459:                   &mt('username').':&nbsp;'.
 2460:                   '<input type="text" name="sender_uname" value="'.
 2461:                   $notif_sender.'" size="10" />&nbsp;&nbsp;'.&mt('domain').
 2462:                   ':&nbsp;'.$domform.'</span></td></tr>'.
 2463:                   '<tr class="LC_odd_row">'.
 2464:                   '<td>'.&mt('Automatically assign co-ownership').'</td>'.
 2465:                   '<td class="LC_right_item"><span class="LC_nobreak"><label>'.
 2466:                   '<input type="radio" name="autoassign_coowners"'.
 2467:                   $coownerson.' value="1" />'.&mt('Yes').'</label>&nbsp;'.
 2468:                   '<label><input type="radio" name="autoassign_coowners"'.
 2469:                   $coownersoff.' value="0" />'.&mt('No').'</label></span></td>'.
 2470:                   '</tr>';
 2471:     $$rowtotal += 3;
 2472:     return $datatable;
 2473: }
 2474: 
 2475: sub print_autoupdate {
 2476:     my ($position,$dom,$settings,$rowtotal) = @_;
 2477:     my $datatable;
 2478:     if ($position eq 'top') {
 2479:         my $updateon = ' ';
 2480:         my $updateoff = ' checked="checked" ';
 2481:         my $classlistson = ' ';
 2482:         my $classlistsoff = ' checked="checked" ';
 2483:         if (ref($settings) eq 'HASH') {
 2484:             if ($settings->{'run'} eq '1') {
 2485:                 $updateon = $updateoff;
 2486:                 $updateoff = ' ';
 2487:             }
 2488:             if ($settings->{'classlists'} eq '1') {
 2489:                 $classlistson = $classlistsoff;
 2490:                 $classlistsoff = ' ';
 2491:             }
 2492:         }
 2493:         my %title = (
 2494:                    run => 'Auto-update active?',
 2495:                    classlists => 'Update information in classlists?',
 2496:                     );
 2497:         $datatable = '<tr class="LC_odd_row">'. 
 2498:                   '<td>'.&mt($title{'run'}).'</td>'.
 2499:                   '<td class="LC_right_item"><span class="LC_nobreak"><label>'.
 2500:                   '<input type="radio" name="autoupdate_run"'.
 2501:                   $updateon.' value="1" />'.&mt('Yes').'</label>&nbsp;'.
 2502:                   '<label><input type="radio" name="autoupdate_run"'.
 2503:                   $updateoff.'value="0" />'.&mt('No').'</label></span></td>'.
 2504:                   '</tr><tr>'.
 2505:                   '<td>'.&mt($title{'classlists'}).'</td>'.
 2506:                   '<td class="LC_right_item"><span class="LC_nobreak">'.
 2507:                   '<label><input type="radio" name="classlists"'.
 2508:                   $classlistson.' value="1" />'.&mt('Yes').'</label>&nbsp;'.
 2509:                   '<label><input type="radio" name="classlists"'.
 2510:                   $classlistsoff.'value="0" />'.&mt('No').'</label></span></td>'.
 2511:                   '</tr>';
 2512:         $$rowtotal += 2;
 2513:     } elsif ($position eq 'middle') {
 2514:         my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($dom);
 2515:         my $numinrow = 3;
 2516:         my $locknamesettings;
 2517:         $datatable .= &insttypes_row($settings,$types,$usertypes,
 2518:                                      $dom,$numinrow,$othertitle,
 2519:                                     'lockablenames');
 2520:         $$rowtotal ++;
 2521:     } else {
 2522:         my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($dom);
 2523:         my @fields = ('lastname','firstname','middlename','generation',
 2524:                       'permanentemail','id');
 2525:         my %fieldtitles = &Apache::loncommon::personal_data_fieldtitles();
 2526:         my $numrows = 0;
 2527:         if (ref($types) eq 'ARRAY') {
 2528:             if (@{$types} > 0) {
 2529:                 $datatable = 
 2530:                     &usertype_update_row($settings,$usertypes,\%fieldtitles,
 2531:                                          \@fields,$types,\$numrows);
 2532:                     $$rowtotal += @{$types}; 
 2533:             }
 2534:         }
 2535:         $datatable .= 
 2536:             &usertype_update_row($settings,{'default' => $othertitle},
 2537:                                  \%fieldtitles,\@fields,['default'],
 2538:                                  \$numrows);
 2539:         $$rowtotal ++;     
 2540:     }
 2541:     return $datatable;
 2542: }
 2543: 
 2544: sub print_autocreate {
 2545:     my ($dom,$settings,$rowtotal) = @_;
 2546:     my (%createon,%createoff,%currhash);
 2547:     my @types = ('xml','req');
 2548:     if (ref($settings) eq 'HASH') {
 2549:         foreach my $item (@types) {
 2550:             $createoff{$item} = ' checked="checked" ';
 2551:             $createon{$item} = ' ';
 2552:             if (exists($settings->{$item})) {
 2553:                 if ($settings->{$item}) {
 2554:                     $createon{$item} = ' checked="checked" ';
 2555:                     $createoff{$item} = ' ';
 2556:                 }
 2557:             }
 2558:         }
 2559:         if ($settings->{'xmldc'} ne '') {
 2560:             $currhash{$settings->{'xmldc'}} = 1;
 2561:         }
 2562:     } else {
 2563:         foreach my $item (@types) {
 2564:             $createoff{$item} = ' checked="checked" ';
 2565:             $createon{$item} = ' ';
 2566:         }
 2567:     }
 2568:     $$rowtotal += 2;
 2569:     my $numinrow = 2;
 2570:     my $datatable='<tr class="LC_odd_row">'.
 2571:                   '<td>'.&mt('Create pending official courses from XML files').'</td>'.
 2572:                   '<td class="LC_right_item"><span class="LC_nobreak"><label>'.
 2573:                   '<input type="radio" name="autocreate_xml"'.
 2574:                   $createon{'xml'}.' value="1" />'.&mt('Yes').'</label>&nbsp;'.
 2575:                   '<label><input type="radio" name="autocreate_xml"'.
 2576:                   $createoff{'xml'}.' value="0" />'.&mt('No').'</label></span>'.
 2577:                   '</td></tr><tr>'.
 2578:                   '<td>'.&mt('Create pending requests for official courses (if validated)').'</td>'.
 2579:                   '<td class="LC_right_item"><span class="LC_nobreak"><label>'.
 2580:                   '<input type="radio" name="autocreate_req"'.
 2581:                   $createon{'req'}.' value="1" />'.&mt('Yes').'</label>&nbsp;'.
 2582:                   '<label><input type="radio" name="autocreate_req"'.
 2583:                   $createoff{'req'}.' value="0" />'.&mt('No').'</label></span>';
 2584:     my ($numdc,$dctable,$rows) = &active_dc_picker($dom,$numinrow,'radio',
 2585:                                                    'autocreate_xmldc',%currhash);
 2586:     $datatable .= '</td></tr><tr class="LC_odd_row"><td>';
 2587:     if ($numdc > 1) {
 2588:         $datatable .= &mt('Course creation processed as: (choose Dom. Coord.)').
 2589:                       '</td><td class="LC_left_item">';
 2590:     } else {
 2591:         $datatable .= &mt('Course creation processed as:').
 2592:                       '</td><td class="LC_right_item">';
 2593:     }
 2594:     $datatable .= $dctable.'</td></tr>';
 2595:     $$rowtotal += $rows;
 2596:     return $datatable;
 2597: }
 2598: 
 2599: sub print_directorysrch {
 2600:     my ($dom,$settings,$rowtotal) = @_;
 2601:     my $srchon = ' ';
 2602:     my $srchoff = ' checked="checked" ';
 2603:     my ($exacton,$containson,$beginson);
 2604:     my $localon = ' ';
 2605:     my $localoff = ' checked="checked" ';
 2606:     if (ref($settings) eq 'HASH') {
 2607:         if ($settings->{'available'} eq '1') {
 2608:             $srchon = $srchoff;
 2609:             $srchoff = ' ';
 2610:         }
 2611:         if ($settings->{'localonly'} eq '1') {
 2612:             $localon = $localoff;
 2613:             $localoff = ' ';
 2614:         }
 2615:         if (ref($settings->{'searchtypes'}) eq 'ARRAY') {
 2616:             foreach my $type (@{$settings->{'searchtypes'}}) {
 2617:                 if ($type eq 'exact') {
 2618:                     $exacton = ' checked="checked" ';
 2619:                 } elsif ($type eq 'contains') {
 2620:                     $containson = ' checked="checked" ';
 2621:                 } elsif ($type eq 'begins') {
 2622:                     $beginson = ' checked="checked" ';
 2623:                 }
 2624:             }
 2625:         } else {
 2626:             if ($settings->{'searchtypes'} eq 'exact') {
 2627:                 $exacton = ' checked="checked" ';
 2628:             } elsif ($settings->{'searchtypes'} eq 'contains') {
 2629:                 $containson = ' checked="checked" ';
 2630:             } elsif ($settings->{'searchtypes'} eq 'specify') {
 2631:                 $exacton = ' checked="checked" ';
 2632:                 $containson = ' checked="checked" ';
 2633:             }
 2634:         }
 2635:     }
 2636:     my ($searchtitles,$titleorder) = &sorted_searchtitles();
 2637:     my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($dom);
 2638: 
 2639:     my $numinrow = 4;
 2640:     my $cansrchrow = 0;
 2641:     my $datatable='<tr class="LC_odd_row">'.
 2642:                   '<td colspan="2"><span class ="LC_nobreak">'.&mt('Directory search available?').'</span></td>'.
 2643:                   '<td class="LC_right_item"><span class="LC_nobreak"><label>'.
 2644:                   '<input type="radio" name="dirsrch_available"'.
 2645:                   $srchon.' value="1" />'.&mt('Yes').'</label>&nbsp;'.
 2646:                   '<label><input type="radio" name="dirsrch_available"'.
 2647:                   $srchoff.' value="0" />'.&mt('No').'</label></span></td>'.
 2648:                   '</tr><tr>'.
 2649:                   '<td colspan="2"><span class ="LC_nobreak">'.&mt('Other domains can search?').'</span></td>'.
 2650:                   '<td class="LC_right_item"><span class="LC_nobreak"><label>'.
 2651:                   '<input type="radio" name="dirsrch_localonly"'.
 2652:                   $localoff.' value="0" />'.&mt('Yes').'</label>&nbsp;'.
 2653:                   '<label><input type="radio" name="dirsrch_localonly"'.
 2654:                   $localon.' value="1" />'.&mt('No').'</label></span></td>'.
 2655:                   '</tr>';
 2656:     $$rowtotal += 2;
 2657:     if (ref($usertypes) eq 'HASH') {
 2658:         if (keys(%{$usertypes}) > 0) {
 2659:             $datatable .= &insttypes_row($settings,$types,$usertypes,$dom,
 2660:                                          $numinrow,$othertitle,'cansearch');
 2661:             $cansrchrow = 1;
 2662:         }
 2663:     }
 2664:     if ($cansrchrow) {
 2665:         $$rowtotal ++;
 2666:         $datatable .= '<tr>';
 2667:     } else {
 2668:         $datatable .= '<tr class="LC_odd_row">';
 2669:     }
 2670:     $datatable .= '<td><span class ="LC_nobreak">'.&mt('Supported search methods').
 2671:                   '</span></td><td class="LC_left_item" colspan="2"><table><tr>';
 2672:     foreach my $title (@{$titleorder}) {
 2673:         if (defined($searchtitles->{$title})) {
 2674:             my $check = ' ';
 2675:             if (ref($settings) eq 'HASH') {
 2676:                 if (ref($settings->{'searchby'}) eq 'ARRAY') {
 2677:                     if (grep(/^\Q$title\E$/,@{$settings->{'searchby'}})) {
 2678:                         $check = ' checked="checked" ';
 2679:                     }
 2680:                 }
 2681:             }
 2682:             $datatable .= '<td class="LC_left_item">'.
 2683:                           '<span class="LC_nobreak"><label>'.
 2684:                           '<input type="checkbox" name="searchby" '.
 2685:                           'value="'.$title.'"'.$check.'/>'.
 2686:                           $searchtitles->{$title}.'</label></span></td>';
 2687:         }
 2688:     }
 2689:     $datatable .= '</tr></table></td></tr>';
 2690:     $$rowtotal ++;
 2691:     if ($cansrchrow) {
 2692:         $datatable .= '<tr class="LC_odd_row">';
 2693:     } else {
 2694:         $datatable .= '<tr>';
 2695:     }
 2696:     $datatable .= '<td><span class ="LC_nobreak">'.&mt('Search latitude').'</span></td>'.   
 2697:                   '<td class="LC_left_item" colspan="2">'.
 2698:                   '<span class="LC_nobreak"><label>'.
 2699:                   '<input type="checkbox" name="searchtypes" '.
 2700:                   $exacton.' value="exact" />'.&mt('Exact match').
 2701:                   '</label>&nbsp;'.
 2702:                   '<label><input type="checkbox" name="searchtypes" '.
 2703:                   $beginson.' value="begins" />'.&mt('Begins with').
 2704:                   '</label>&nbsp;'.
 2705:                   '<label><input type="checkbox" name="searchtypes" '.
 2706:                   $containson.' value="contains" />'.&mt('Contains').
 2707:                   '</label></span></td></tr>';
 2708:     $$rowtotal ++;
 2709:     return $datatable;
 2710: }
 2711: 
 2712: sub print_contacts {
 2713:     my ($dom,$settings,$rowtotal) = @_;
 2714:     my $datatable;
 2715:     my @contacts = ('adminemail','supportemail');
 2716:     my (%checked,%to,%otheremails,%bccemails);
 2717:     my @mailings = ('errormail','packagesmail','lonstatusmail','helpdeskmail',
 2718:                     'requestsmail','updatesmail','idconflictsmail');
 2719:     foreach my $type (@mailings) {
 2720:         $otheremails{$type} = '';
 2721:     }
 2722:     $bccemails{'helpdeskmail'} = '';
 2723:     if (ref($settings) eq 'HASH') {
 2724:         foreach my $item (@contacts) {
 2725:             if (exists($settings->{$item})) {
 2726:                 $to{$item} = $settings->{$item};
 2727:             }
 2728:         }
 2729:         foreach my $type (@mailings) {
 2730:             if (exists($settings->{$type})) {
 2731:                 if (ref($settings->{$type}) eq 'HASH') {
 2732:                     foreach my $item (@contacts) {
 2733:                         if ($settings->{$type}{$item}) {
 2734:                             $checked{$type}{$item} = ' checked="checked" ';
 2735:                         }
 2736:                     }
 2737:                     $otheremails{$type} = $settings->{$type}{'others'};
 2738:                     if ($type eq 'helpdeskmail') {
 2739:                         $bccemails{$type} = $settings->{$type}{'bcc'};
 2740:                     }
 2741:                 }
 2742:             } elsif ($type eq 'lonstatusmail') {
 2743:                 $checked{'lonstatusmail'}{'adminemail'} = ' checked="checked" ';
 2744:             }
 2745:         }
 2746:     } else {
 2747:         $to{'supportemail'} = $Apache::lonnet::perlvar{'lonSupportEMail'};
 2748:         $to{'adminemail'} = $Apache::lonnet::perlvar{'lonAdmEMail'};
 2749:         $checked{'errormail'}{'adminemail'} = ' checked="checked" ';
 2750:         $checked{'packagesmail'}{'adminemail'} = ' checked="checked" ';
 2751:         $checked{'helpdeskmail'}{'supportemail'} = ' checked="checked" ';
 2752:         $checked{'lonstatusmail'}{'adminemail'} = ' checked="checked" '; 
 2753:         $checked{'requestsmail'}{'adminemail'} = ' checked="checked" ';
 2754:         $checked{'updatesmail'}{'adminemail'} = ' checked="checked" ';
 2755:         $checked{'idconflictsmail'}{'adminemail'} = ' checked="checked" ';
 2756:     }
 2757:     my ($titles,$short_titles) = &contact_titles();
 2758:     my $rownum = 0;
 2759:     my $css_class;
 2760:     foreach my $item (@contacts) {
 2761:         $css_class = $rownum%2?' class="LC_odd_row"':'';
 2762:         $datatable .= '<tr'.$css_class.'>'. 
 2763:                   '<td><span class="LC_nobreak">'.$titles->{$item}.
 2764:                   '</span></td><td class="LC_right_item">'.
 2765:                   '<input type="text" name="'.$item.'" value="'.
 2766:                   $to{$item}.'" /></td></tr>';
 2767:         $rownum ++;
 2768:     }
 2769:     foreach my $type (@mailings) {
 2770:         $css_class = $rownum%2?' class="LC_odd_row"':'';
 2771:         $datatable .= '<tr'.$css_class.'>'.
 2772:                       '<td><span class="LC_nobreak">'.
 2773:                       $titles->{$type}.': </span></td>'.
 2774:                       '<td class="LC_left_item">'.
 2775:                       '<span class="LC_nobreak">';
 2776:         foreach my $item (@contacts) {
 2777:             $datatable .= '<label>'.
 2778:                           '<input type="checkbox" name="'.$type.'"'.
 2779:                           $checked{$type}{$item}.
 2780:                           ' value="'.$item.'" />'.$short_titles->{$item}.
 2781:                           '</label>&nbsp;';
 2782:         }
 2783:         $datatable .= '</span><br />'.&mt('Others').':&nbsp;&nbsp;'.
 2784:                       '<input type="text" name="'.$type.'_others" '.
 2785:                       'value="'.$otheremails{$type}.'"  />';
 2786:         if ($type eq 'helpdeskmail') {
 2787:             $datatable .= '<br />'.&mt('Bcc:').('&nbsp;'x6).
 2788:                           '<input type="text" name="'.$type.'_bcc" '.
 2789:                           'value="'.$bccemails{$type}.'"  />';
 2790:         }
 2791:         $datatable .= '</td></tr>'."\n";
 2792:         $rownum ++;
 2793:     }
 2794:     my %choices;
 2795:     $choices{'reporterrors'} = &mt('E-mail error reports to [_1]',
 2796:                                    &Apache::loncommon::modal_link('http://loncapa.org/core.html',
 2797:                                    &mt('LON-CAPA core group - MSU'),600,500));
 2798:     $choices{'reportupdates'} = &mt('E-mail record of completed LON-CAPA updates to [_1]',
 2799:                                     &Apache::loncommon::modal_link('http://loncapa.org/core.html',
 2800:                                     &mt('LON-CAPA core group - MSU'),600,500));
 2801:     my @toggles = ('reporterrors','reportupdates');
 2802:     my %defaultchecked = ('reporterrors'  => 'on',
 2803:                           'reportupdates' => 'on');
 2804:     (my $reports,$rownum) = &radiobutton_prefs($settings,\@toggles,\%defaultchecked,
 2805:                                                \%choices,$rownum);
 2806:     $datatable .= $reports;
 2807:     $$rowtotal += $rownum;
 2808:     return $datatable;
 2809: }
 2810: 
 2811: sub print_helpsettings {
 2812:     my ($dom,$confname,$settings,$rowtotal) = @_;
 2813:     my ($datatable,$itemcount);
 2814:     $itemcount = 1;
 2815:     my (%choices,%defaultchecked,@toggles);
 2816:     $choices{'submitbugs'} = &mt('Display link to: [_1]?',
 2817:                                  &Apache::loncommon::modal_link('http://bugs.loncapa.org',
 2818:                                  &mt('LON-CAPA bug tracker'),600,500));
 2819:     %defaultchecked = ('submitbugs' => 'on');
 2820:     @toggles = ('submitbugs',);
 2821: 
 2822:     ($datatable,$itemcount) = &radiobutton_prefs($settings,\@toggles,\%defaultchecked,
 2823:                                                  \%choices,$itemcount);
 2824:     return $datatable;
 2825: }
 2826: 
 2827: sub radiobutton_prefs {
 2828:     my ($settings,$toggles,$defaultchecked,$choices,$itemcount,$onclick,
 2829:         $additional,$align) = @_;
 2830:     return unless ((ref($toggles) eq 'ARRAY') && (ref($defaultchecked) eq 'HASH') &&
 2831:                    (ref($choices) eq 'HASH'));
 2832: 
 2833:     my (%checkedon,%checkedoff,$datatable,$css_class);
 2834: 
 2835:     foreach my $item (@{$toggles}) {
 2836:         if ($defaultchecked->{$item} eq 'on') {
 2837:             $checkedon{$item} = ' checked="checked" ';
 2838:             $checkedoff{$item} = ' ';
 2839:         } elsif ($defaultchecked->{$item} eq 'off') {
 2840:             $checkedoff{$item} = ' checked="checked" ';
 2841:             $checkedon{$item} = ' ';
 2842:         }
 2843:     }
 2844:     if (ref($settings) eq 'HASH') {
 2845:         foreach my $item (@{$toggles}) {
 2846:             if ($settings->{$item} eq '1') {
 2847:                 $checkedon{$item} =  ' checked="checked" ';
 2848:                 $checkedoff{$item} = ' ';
 2849:             } elsif ($settings->{$item} eq '0') {
 2850:                 $checkedoff{$item} =  ' checked="checked" ';
 2851:                 $checkedon{$item} = ' ';
 2852:             }
 2853:         }
 2854:     }
 2855:     if ($onclick) {
 2856:         $onclick = ' onclick="'.$onclick.'"';
 2857:     }
 2858:     foreach my $item (@{$toggles}) {
 2859:         $css_class = $itemcount%2?' class="LC_odd_row"':'';
 2860:         $datatable .=
 2861:             '<tr'.$css_class.'><td valign="top">'.
 2862:             '<span class="LC_nobreak">'.$choices->{$item}.
 2863:             '</span></td>';
 2864:         if ($align eq 'left') {
 2865:             $datatable .= '<td class="LC_left_item">';
 2866:         } else {
 2867:             $datatable .= '<td class="LC_right_item">';
 2868:         }
 2869:         $datatable .=
 2870:             '<span class="LC_nobreak">'.
 2871:             '<label><input type="radio" name="'.
 2872:             $item.'" '.$checkedon{$item}.' value="1"'.$onclick.' />'.&mt('Yes').
 2873:             '</label>&nbsp;<label><input type="radio" name="'.$item.'" '.
 2874:             $checkedoff{$item}.' value="0"'.$onclick.' />'.&mt('No').'</label>'.
 2875:             '</span>'.$additional.
 2876:             '</td>'.
 2877:             '</tr>';
 2878:         $itemcount ++;
 2879:     }
 2880:     return ($datatable,$itemcount);
 2881: }
 2882: 
 2883: sub print_coursedefaults {
 2884:     my ($position,$dom,$settings,$rowtotal) = @_;
 2885:     my ($css_class,$datatable,%checkedon,%checkedoff,%defaultchecked,@toggles);
 2886:     my $itemcount = 1;
 2887:     my %choices =  &Apache::lonlocal::texthash (
 2888:         uploadquota          => 'Default quota for files uploaded directly to course/community using Course Editor (MB)',
 2889:         anonsurvey_threshold => 'Responder count needed before showing submissions for anonymous surveys',
 2890:         coursecredits        => 'Credits can be specified for courses',
 2891:         uselcmath            => 'Math preview uses LON-CAPA previewer (javascript) in place of DragMath (Java)',
 2892:         usejsme              => 'Molecule editor uses JSME (HTML5) in place of JME (Java)',
 2893:         postsubmit           => 'Disable submit button/keypress following student submission',
 2894:         canclone             => "People who may clone a course (besides course's owner and coordinators)",
 2895:     );
 2896:     my %staticdefaults = (
 2897:                            anonsurvey_threshold => 10,
 2898:                            uploadquota          => 500,
 2899:                            postsubmit           => 60,
 2900:                          );
 2901:     if ($position eq 'top') {
 2902:         %defaultchecked = (
 2903:                             'uselcmath'       => 'on',
 2904:                             'usejsme'         => 'on',
 2905:                             'canclone'        => 'none',
 2906:                           );
 2907:         @toggles = ('uselcmath','usejsme');
 2908:         ($datatable,$itemcount) = &radiobutton_prefs($settings,\@toggles,\%defaultchecked,
 2909:                                                      \%choices,$itemcount);
 2910:         $css_class = $itemcount%2?' class="LC_odd_row"':'';
 2911:         $datatable .=
 2912:             '<tr'.$css_class.'><td valign="top">'.
 2913:             '<span class="LC_nobreak">'.$choices{'canclone'}.
 2914:             '</span></td><td class="LC_left_item">';
 2915:         my $currcanclone = 'none';
 2916:         my $onclick;
 2917:         my @cloneoptions = ('none','domain');
 2918:         my %clonetitles = (
 2919:                              none     => 'No additional course requesters',
 2920:                              domain   => "Any course requester in course's domain",
 2921:                              instcode => 'Course requests for official courses ...',
 2922:                           );
 2923:         my (%codedefaults,@code_order,@posscodes);
 2924:         if (&Apache::lonnet::auto_instcode_defaults($dom,\%codedefaults,
 2925:                                                     \@code_order) eq 'ok') {
 2926:             if (@code_order > 0) {
 2927:                 push(@cloneoptions,'instcode');
 2928:                 $onclick = ' onclick="toggleDisplay(this.form,'."'cloneinstcode'".');"';
 2929:             }
 2930:         }
 2931:         if (ref($settings) eq 'HASH') {
 2932:             if ($settings->{'canclone'}) {
 2933:                 if (ref($settings->{'canclone'}) eq 'HASH') {
 2934:                     if (ref($settings->{'canclone'}{'instcode'}) eq 'ARRAY') {
 2935:                         if (@code_order > 0) {
 2936:                             $currcanclone = 'instcode';
 2937:                             @posscodes = @{$settings->{'canclone'}{'instcode'}};
 2938:                         }
 2939:                     }
 2940:                 } elsif ($settings->{'canclone'} eq 'domain') {
 2941:                     $currcanclone = $settings->{'canclone'};
 2942:                 }
 2943:             }
 2944:         }
 2945:         foreach my $option (@cloneoptions) {
 2946:             my ($checked,$additional);
 2947:             if ($currcanclone eq $option) {
 2948:                 $checked = ' checked="checked"';
 2949:             }
 2950:             if ($option eq 'instcode') {
 2951:                 if (@code_order) {
 2952:                     my $show = 'none';
 2953:                     if ($checked) {
 2954:                         $show = 'block';
 2955:                     }
 2956:                     $additional = '<div id="cloneinstcode" style="display:'.$show.'" />'.
 2957:                                   &mt('Institutional codes for new and cloned course have identical:').
 2958:                                   '<br />';
 2959:                     foreach my $item (@code_order) {
 2960:                         my $codechk;
 2961:                         if ($checked) {
 2962:                             if (grep(/^\Q$item\E$/,@posscodes)) {
 2963:                                 $codechk = ' checked="checked"';
 2964:                             }
 2965:                         }
 2966:                         $additional .= '<label>'.
 2967:                                        '<input type="checkbox" name="clonecode" value="'.$item.'"'.$codechk.' />'.
 2968:                                        $item.'</label>';
 2969:                     }
 2970:                     $additional .= ('&nbsp;'x2).'('.&mt('check as many as needed').')</div>';
 2971:                 }
 2972:             }
 2973:             $datatable .=
 2974:                 '<span class="LC_nobreak"><label><input type="radio" name="canclone"'.$checked.
 2975:                 ' value="'.$option.'"'.$onclick.' />'.$clonetitles{$option}.
 2976:                 '</label>&nbsp;'.$additional.'</span><br />';
 2977:         }
 2978:         $datatable .= '</td>'.
 2979:                       '</tr>';
 2980:         $itemcount ++;
 2981:     } else {
 2982:         $css_class = $itemcount%2 ? ' class="LC_odd_row"' : '';
 2983:         my ($currdefresponder,%defcredits,%curruploadquota,%deftimeout);
 2984:         my $currusecredits = 0;
 2985:         my $postsubmitclient = 1;
 2986:         my @types = ('official','unofficial','community','textbook');
 2987:         if (ref($settings) eq 'HASH') {
 2988:             $currdefresponder = $settings->{'anonsurvey_threshold'};
 2989:             if (ref($settings->{'uploadquota'}) eq 'HASH') {
 2990:                 foreach my $type (keys(%{$settings->{'uploadquota'}})) {
 2991:                     $curruploadquota{$type} = $settings->{'uploadquota'}{$type};
 2992:                 }
 2993:             }
 2994:             if (ref($settings->{'coursecredits'}) eq 'HASH') {
 2995:                 foreach my $type (@types) {
 2996:                     next if ($type eq 'community');
 2997:                     $defcredits{$type} = $settings->{'coursecredits'}->{$type};
 2998:                     if ($defcredits{$type} ne '') {
 2999:                         $currusecredits = 1;
 3000:                     }
 3001:                 }
 3002:             }
 3003:             if (ref($settings->{'postsubmit'}) eq 'HASH') {
 3004:                 if ($settings->{'postsubmit'}->{'client'} eq 'off') {
 3005:                     $postsubmitclient = 0;
 3006:                     foreach my $type (@types) {
 3007:                         $deftimeout{$type} = $staticdefaults{'postsubmit'};
 3008:                     }
 3009:                 } else {
 3010:                     foreach my $type (@types) {
 3011:                         if (ref($settings->{'postsubmit'}->{'timeout'}) eq 'HASH') {
 3012:                             if ($settings->{'postsubmit'}->{'timeout'}->{$type} =~ /^\d+$/) {
 3013:                                 $deftimeout{$type} = $settings->{'postsubmit'}->{'timeout'}->{$type};
 3014:                             } else {
 3015:                                 $deftimeout{$type} = $staticdefaults{'postsubmit'};
 3016:                             }
 3017:                         } else {
 3018:                             $deftimeout{$type} = $staticdefaults{'postsubmit'};
 3019:                         }
 3020:                     }
 3021:                 }
 3022:             } else {
 3023:                 foreach my $type (@types) {
 3024:                     $deftimeout{$type} = $staticdefaults{'postsubmit'};
 3025:                 }
 3026:             }
 3027:         } else {
 3028:             foreach my $type (@types) {
 3029:                 $deftimeout{$type} = $staticdefaults{'postsubmit'};
 3030:             }
 3031:         }
 3032:         if (!$currdefresponder) {
 3033:             $currdefresponder = $staticdefaults{'anonsurvey_threshold'};
 3034:         } elsif ($currdefresponder < 1) {
 3035:             $currdefresponder = 1;
 3036:         }
 3037:         foreach my $type (@types) {
 3038:             if ($curruploadquota{$type} eq '') {
 3039:                 $curruploadquota{$type} = $staticdefaults{'uploadquota'};
 3040:             }
 3041:         }
 3042:         $datatable .=
 3043:                 '<tr'.$css_class.'><td><span class="LC_nobreak">'.
 3044:                 $choices{'anonsurvey_threshold'}.
 3045:                 '</span></td>'.
 3046:                 '<td class="LC_right_item"><span class="LC_nobreak">'.
 3047:                 '<input type="text" name="anonsurvey_threshold"'.
 3048:                 ' value="'.$currdefresponder.'" size="5" /></span>'.
 3049:                 '</td></tr>'."\n";
 3050:         $itemcount ++;
 3051:         $css_class = $itemcount%2 ? ' class="LC_odd_row"' : '';
 3052:         $datatable .= '<tr'.$css_class.'><td><span class="LC_nobreak">'.
 3053:                       $choices{'uploadquota'}.
 3054:                       '</span></td>'.
 3055:                       '<td align="right" class="LC_right_item">'.
 3056:                       '<table><tr>';
 3057:         foreach my $type (@types) {
 3058:             $datatable .= '<td align="center">'.&mt($type).'<br />'.
 3059:                            '<input type="text" name="uploadquota_'.$type.'"'.
 3060:                            ' value="'.$curruploadquota{$type}.'" size="5" /></td>';
 3061:         }
 3062:         $datatable .= '</tr></table></td></tr>'."\n";
 3063:         $itemcount ++;
 3064:         my $onclick = "toggleDisplay(this.form,'credits');";
 3065:         my $display = 'none';
 3066:         if ($currusecredits) {
 3067:             $display = 'block';
 3068:         }
 3069:         my $additional = '<div id="credits" style="display: '.$display.'">'.
 3070:                          '<i>'.&mt('Default credits').'</i><br /><table><tr>';
 3071:         foreach my $type (@types) {
 3072:             next if ($type eq 'community');
 3073:             $additional .= '<td align="center">'.&mt($type).'<br />'.
 3074:                            '<input type="text" name="'.$type.'_credits"'.
 3075:                            ' value="'.$defcredits{$type}.'" size="3" /></td>';
 3076:         }
 3077:         $additional .= '</tr></table></div>'."\n";
 3078:         %defaultchecked = ('coursecredits' => 'off');
 3079:         @toggles = ('coursecredits');
 3080:         my $current = {
 3081:                         'coursecredits' => $currusecredits,
 3082:                       };
 3083:         (my $table,$itemcount) =
 3084:             &radiobutton_prefs($current,\@toggles,\%defaultchecked,
 3085:                                \%choices,$itemcount,$onclick,$additional,'left');
 3086:         $datatable .= $table;
 3087:         $onclick = "toggleDisplay(this.form,'studentsubmission');";
 3088:         my $display = 'none';
 3089:         if ($postsubmitclient) {
 3090:             $display = 'block';
 3091:         }
 3092:         $additional = '<div id="studentsubmission" style="display: '.$display.'">'.
 3093:                       &mt('Number of seconds submit is disabled').'<br />'.
 3094:                       '<i>'.&mt('Enter 0 to remain disabled until page reload.').'</i><br />'.
 3095:                       '<table><tr>';
 3096:         foreach my $type (@types) {
 3097:             $additional .= '<td align="center">'.&mt($type).'<br />'.
 3098:                            '<input type="text" name="'.$type.'_timeout" value="'.
 3099:                            $deftimeout{$type}.'" size="5" /></td>';
 3100:         }
 3101:         $additional .= '</tr></table></div>'."\n";
 3102:         %defaultchecked = ('postsubmit' => 'on');
 3103:         @toggles = ('postsubmit');
 3104:         my $current = {
 3105:                         'postsubmit' => $postsubmitclient,
 3106:                       };
 3107:         ($table,$itemcount) =
 3108:             &radiobutton_prefs($current,\@toggles,\%defaultchecked,
 3109:                                \%choices,$itemcount,$onclick,$additional,'left');
 3110:         $datatable .= $table;
 3111:     }
 3112:     $$rowtotal += $itemcount;
 3113:     return $datatable;
 3114: }
 3115: 
 3116: sub print_selfenrollment {
 3117:     my ($position,$dom,$settings,$rowtotal) = @_;
 3118:     my ($css_class,$datatable);
 3119:     my $itemcount = 1;
 3120:     my @types = ('official','unofficial','community','textbook');
 3121:     if (($position eq 'top') || ($position eq 'middle')) {
 3122:         my ($rowsref,$titlesref) = &Apache::lonuserutils::get_selfenroll_titles();
 3123:         my %descs = &Apache::lonuserutils::selfenroll_default_descs();
 3124:         my @rows;
 3125:         my $key;
 3126:         if ($position eq 'top') {
 3127:             $key = 'admin'; 
 3128:             if (ref($rowsref) eq 'ARRAY') {
 3129:                 @rows = @{$rowsref};
 3130:             }
 3131:         } elsif ($position eq 'middle') {
 3132:             $key = 'default';
 3133:             @rows = ('types','registered','approval','limit');
 3134:         }
 3135:         foreach my $row (@rows) {
 3136:             if (defined($titlesref->{$row})) {
 3137:                 $itemcount ++;
 3138:                 $css_class = $itemcount%2?' class="LC_odd_row"':'';
 3139:                 $datatable .= '<tr'.$css_class.'>'.
 3140:                               '<td>'.$titlesref->{$row}.'</td>'.
 3141:                               '<td class="LC_left_item">'.
 3142:                               '<table><tr>';
 3143:                 my (%current,%currentcap);
 3144:                 if (ref($settings) eq 'HASH') {
 3145:                     if (ref($settings->{$key}) eq 'HASH') {
 3146:                         foreach my $type (@types) {
 3147:                             if (ref($settings->{$key}->{$type}) eq 'HASH') {
 3148:                                 $current{$type} = $settings->{$key}->{$type}->{$row};
 3149:                             }
 3150:                             if (($row eq 'limit') && ($key eq 'default')) {
 3151:                                 if (ref($settings->{$key}->{$type}) eq 'HASH') {
 3152:                                     $currentcap{$type} = $settings->{$key}->{$type}->{'cap'};
 3153:                                 }
 3154:                             }
 3155:                         }
 3156:                     }
 3157:                 }
 3158:                 my %roles = (
 3159:                              '0' => &Apache::lonnet::plaintext('dc'),
 3160:                             ); 
 3161:             
 3162:                 foreach my $type (@types) {
 3163:                     unless (($row eq 'registered') && ($key eq 'default')) {
 3164:                         $datatable .= '<th>'.&mt($type).'</th>';
 3165:                     }
 3166:                 }
 3167:                 unless (($row eq 'registered') && ($key eq 'default')) {
 3168:                     $datatable .= '</tr><tr>';
 3169:                 }
 3170:                 foreach my $type (@types) {
 3171:                     if ($type eq 'community') {
 3172:                         $roles{'1'} = &mt('Community personnel');
 3173:                     } else {
 3174:                         $roles{'1'} = &mt('Course personnel');
 3175:                     }
 3176:                     $datatable .= '<td style="vertical-align: top">';
 3177:                     if ($position eq 'top') {
 3178:                         my %checked;
 3179:                         if ($current{$type} eq '0') {
 3180:                             $checked{'0'} = ' checked="checked"';
 3181:                         } else {
 3182:                             $checked{'1'} = ' checked="checked"';
 3183:                         }
 3184:                         foreach my $role ('1','0') {
 3185:                             $datatable .= '<span class="LC_nobreak"><label>'.
 3186:                                           '<input type="radio" name="selfenrolladmin_'.$row.'_'.$type.'" '.
 3187:                                           'value="'.$role.'"'.$checked{$role}.' />'.
 3188:                                           $roles{$role}.'</label></span> ';
 3189:                         }
 3190:                     } else {
 3191:                         if ($row eq 'types') {
 3192:                             my %checked;
 3193:                             if ($current{$type} =~ /^(all|dom)$/) {
 3194:                                 $checked{$1} = ' checked="checked"';
 3195:                             } else {
 3196:                                 $checked{''} = ' checked="checked"';
 3197:                             }
 3198:                             foreach my $val ('','dom','all') {
 3199:                                 $datatable .= '<span class="LC_nobreak"><label>'.
 3200:                                               '<input type ="radio" name="selfenrolldefault_'.$row.'_'.$type.'" '.
 3201:                                               'value="'.$val.'"'.$checked{$val}.' />'.$descs{$row}{$val}.'</label></span> ';
 3202:                             }
 3203:                         } elsif ($row eq 'registered') {
 3204:                             my %checked;
 3205:                             if ($current{$type} eq '1') {
 3206:                                 $checked{'1'} = ' checked="checked"';
 3207:                             } else {
 3208:                                 $checked{'0'} = ' checked="checked"';
 3209:                             }
 3210:                             foreach my $val ('0','1') {
 3211:                                 $datatable .= '<span class="LC_nobreak"><label>'.
 3212:                                               '<input type ="radio" name="selfenrolldefault_'.$row.'_'.$type.'" '.
 3213:                                               'value="'.$val.'"'.$checked{$val}.' />'.$descs{$row}{$val}.'</label></span> ';
 3214:                             }
 3215:                         } elsif ($row eq 'approval') {
 3216:                             my %checked;
 3217:                             if ($current{$type} =~ /^([12])$/) {
 3218:                                 $checked{$1} = ' checked="checked"';
 3219:                             } else {
 3220:                                 $checked{'0'} = ' checked="checked"';
 3221:                             }
 3222:                             for my $val (0..2) {
 3223:                                 $datatable .= '<span class="LC_nobreak"><label>'.
 3224:                                               '<input type="radio" name="selfenrolldefault_'.$row.'_'.$type.'" '.
 3225:                                               'value="'.$val.'"'.$checked{$val}.' />'.$descs{$row}{$val}.'</label></span> ';
 3226:                             }
 3227:                         } elsif ($row eq 'limit') {
 3228:                             my %checked;
 3229:                             if ($current{$type} =~ /^(allstudents|selfenrolled)$/) {
 3230:                                 $checked{$1} = ' checked="checked"';
 3231:                             } else {
 3232:                                 $checked{'none'} = ' checked="checked"';
 3233:                             }
 3234:                             my $cap;
 3235:                             if ($currentcap{$type} =~ /^\d+$/) {
 3236:                                 $cap = $currentcap{$type};
 3237:                             }
 3238:                             foreach my $val ('none','allstudents','selfenrolled') {
 3239:                                 $datatable .= '<span class="LC_nobreak"><label>'.
 3240:                                               '<input type="radio" name="selfenrolldefault_'.$row.'_'.$type.'" '.
 3241:                                               'value="'.$val.'"'.$checked{$val}.' />'.$descs{$row}{$val}.'</label></span> ';
 3242:                             }
 3243:                             $datatable .= '<br />'.
 3244:                                           '<span class="LC_nobreak">'.&mt('Maximum allowed: ').
 3245:                                           '<input type="text" name="selfenrolldefault_cap_'.$type.'" size = "5" value="'.$cap.'" />'.
 3246:                                           '</span>'; 
 3247:                         }
 3248:                     }
 3249:                     $datatable .= '</td>';
 3250:                 }
 3251:                 $datatable .= '</tr>';
 3252:             }
 3253:             $datatable .= '</table></td></tr>';
 3254:         }
 3255:     } elsif ($position eq 'bottom') {
 3256:         $datatable .= &print_validation_rows('selfenroll',$dom,$settings,\$itemcount);
 3257:     }
 3258:     $$rowtotal += $itemcount;
 3259:     return $datatable;
 3260: }
 3261: 
 3262: sub print_validation_rows {
 3263:     my ($caller,$dom,$settings,$rowtotal) = @_;
 3264:     my ($itemsref,$namesref,$fieldsref);
 3265:     if ($caller eq 'selfenroll') { 
 3266:         ($itemsref,$namesref,$fieldsref) = &Apache::lonuserutils::selfenroll_validation_types();
 3267:     } elsif ($caller eq 'requestcourses') {
 3268:         ($itemsref,$namesref,$fieldsref) = &Apache::loncoursequeueadmin::requestcourses_validation_types();
 3269:     }
 3270:     my %currvalidation;
 3271:     if (ref($settings) eq 'HASH') {
 3272:         if (ref($settings->{'validation'}) eq 'HASH') {
 3273:             %currvalidation = %{$settings->{'validation'}};
 3274:         }
 3275:     }
 3276:     my $datatable;
 3277:     my $itemcount = 0;
 3278:     foreach my $item (@{$itemsref}) {
 3279:         my $css_class = $itemcount%2 ? ' class="LC_odd_row"' : '';
 3280:         $datatable .= '<tr'.$css_class.'><td><span class="LC_nobreak">'.
 3281:                       $namesref->{$item}.
 3282:                       '</span></td>'.
 3283:                       '<td class="LC_left_item">';
 3284:         if (($item eq 'url') || ($item eq 'button')) {
 3285:             $datatable .= '<span class="LC_nobreak">'.
 3286:                           '<input type="text" name="'.$caller.'_validation_'.$item.'"'.
 3287:                           ' value="'.$currvalidation{$item}.'" size="50" /></span>';
 3288:         } elsif ($item eq 'fields') {
 3289:             my @currfields;
 3290:             if (ref($currvalidation{$item}) eq 'ARRAY') {
 3291:                 @currfields = @{$currvalidation{$item}};
 3292:             }
 3293:             foreach my $field (@{$fieldsref}) {
 3294:                 my $check = '';
 3295:                 if (grep(/^\Q$field\E$/,@currfields)) {
 3296:                     $check = ' checked="checked"';
 3297:                 }
 3298:                 $datatable .= '<span class="LC_nobreak"><label>'.
 3299:                               '<input type="checkbox" name="'.$caller.'_validation_fields"'.
 3300:                               ' value="'.$field.'"'.$check.' />'.$field.
 3301:                               '</label></span> ';
 3302:             }
 3303:         } elsif ($item eq 'markup') {
 3304:             $datatable .= '<textarea name="'.$caller.'_validation_markup" cols="50" rows="5" wrap="soft">'.
 3305:                            $currvalidation{$item}.
 3306:                               '</textarea>';
 3307:         }
 3308:         $datatable .= '</td></tr>'."\n";
 3309:         if (ref($rowtotal)) {
 3310:             $itemcount ++;
 3311:         }
 3312:     }
 3313:     if ($caller eq 'requestcourses') {
 3314:         my %currhash;
 3315:         if (ref($settings) eq 'HASH') {
 3316:             if (ref($settings->{'validation'}) eq 'HASH') {
 3317:                 if ($settings->{'validation'}{'dc'} ne '') {
 3318:                     $currhash{$settings->{'validation'}{'dc'}} = 1;
 3319:                 }
 3320:             }
 3321:         }
 3322:         my $numinrow = 2;
 3323:         my ($numdc,$dctable,$rows) = &active_dc_picker($dom,$numinrow,'radio',
 3324:                                                        'validationdc',%currhash);
 3325:         my $css_class = $itemcount%2 ? ' class="LC_odd_row"' : '';
 3326:         $datatable .= '</td></tr><tr'.$css_class.'><td>';
 3327:         if ($numdc > 1) {
 3328:             $datatable .= &mt('Course creation processed as: (choose Dom. Coord.)');
 3329:         } else {
 3330:             $datatable .=  &mt('Course creation processed as: ');
 3331:         }
 3332:         $datatable .= '</td><td class="LC_left_item">'.$dctable.'</td></tr>';
 3333:         $itemcount ++;
 3334:     }
 3335:     if (ref($rowtotal)) {
 3336:         $$rowtotal += $itemcount;
 3337:     }
 3338:     return $datatable;
 3339: }
 3340: 
 3341: sub print_usersessions {
 3342:     my ($position,$dom,$settings,$rowtotal) = @_;
 3343:     my ($css_class,$datatable,%checked,%choices);
 3344:     my (%by_ip,%by_location,@intdoms);
 3345:     &build_location_hashes(\@intdoms,\%by_ip,\%by_location);
 3346: 
 3347:     my @alldoms = &Apache::lonnet::all_domains();
 3348:     my %serverhomes = %Apache::lonnet::serverhomeIDs;
 3349:     my %servers = &Apache::lonnet::internet_dom_servers($dom);
 3350:     my %altids = &id_for_thisdom(%servers);
 3351:     my $itemcount = 1;
 3352:     if ($position eq 'top') {
 3353:         if (keys(%serverhomes) > 1) {
 3354:             my %spareid = &current_offloads_to($dom,$settings,\%servers);
 3355:             my $curroffloadnow;
 3356:             if (ref($settings) eq 'HASH') {
 3357:                 if (ref($settings->{'offloadnow'}) eq 'HASH') {
 3358:                     $curroffloadnow = $settings->{'offloadnow'};
 3359:                 }
 3360:             }
 3361:             $datatable .= &spares_row($dom,\%servers,\%spareid,\%serverhomes,\%altids,$curroffloadnow,$rowtotal);
 3362:         } else {
 3363:             $datatable .= '<tr'.$css_class.'><td colspan="2">'.
 3364:                           &mt('Nothing to set here, as the cluster to which this domain belongs only contains one server.');
 3365:         }
 3366:     } else {
 3367:         if (keys(%by_location) == 0) {
 3368:             $datatable .= '<tr'.$css_class.'><td colspan="2">'.
 3369:                           &mt('Nothing to set here, as the cluster to which this domain belongs only contains one institution.');
 3370:         } else {
 3371:             my %lt = &usersession_titles();
 3372:             my $numinrow = 5;
 3373:             my $prefix;
 3374:             my @types;
 3375:             if ($position eq 'bottom') {
 3376:                 $prefix = 'remote';
 3377:                 @types = ('version','excludedomain','includedomain');
 3378:             } else {
 3379:                 $prefix = 'hosted';
 3380:                 @types = ('excludedomain','includedomain');
 3381:             }
 3382:             my (%current,%checkedon,%checkedoff);
 3383:             my @lcversions = &Apache::lonnet::all_loncaparevs();
 3384:             my @locations = sort(keys(%by_location));
 3385:             foreach my $type (@types) {
 3386:                 $checkedon{$type} = '';
 3387:                 $checkedoff{$type} = ' checked="checked"';
 3388:             }
 3389:             if (ref($settings) eq 'HASH') {
 3390:                 if (ref($settings->{$prefix}) eq 'HASH') {
 3391:                     foreach my $key (keys(%{$settings->{$prefix}})) {
 3392:                         $current{$key} = $settings->{$prefix}{$key};
 3393:                         if ($key eq 'version') {
 3394:                             if ($current{$key} ne '') {
 3395:                                 $checkedon{$key} = ' checked="checked"';
 3396:                                 $checkedoff{$key} = '';
 3397:                             }
 3398:                         } elsif (ref($current{$key}) eq 'ARRAY') {
 3399:                             $checkedon{$key} = ' checked="checked"';
 3400:                             $checkedoff{$key} = '';
 3401:                         }
 3402:                     }
 3403:                 }
 3404:             }
 3405:             foreach my $type (@types) {
 3406:                 next if ($type ne 'version' && !@locations);
 3407:                 $css_class = $itemcount%2 ? ' class="LC_odd_row"' : '';
 3408:                 $datatable .= '<tr'.$css_class.'>
 3409:                                <td><span class="LC_nobreak">'.$lt{$type}.'</span><br />
 3410:                                <span class="LC_nobreak">&nbsp;
 3411:                                <label><input type="radio" name="'.$prefix.'_'.$type.'_inuse" '.$checkedoff{$type}.' value="0" />'.&mt('Not in use').'</label>&nbsp;
 3412:                                <label><input type="radio" name="'.$prefix.'_'.$type.'_inuse" '.$checkedon{$type}.' value="1" />'.&mt('In use').'</label></span></td><td>';
 3413:                 if ($type eq 'version') {
 3414:                     my $selector = '<select name="'.$prefix.'_version">';
 3415:                     foreach my $version (@lcversions) {
 3416:                         my $selected = '';
 3417:                         if ($current{'version'} eq $version) {
 3418:                             $selected = ' selected="selected"';
 3419:                         }
 3420:                         $selector .= ' <option value="'.$version.'"'.
 3421:                                      $selected.'>'.$version.'</option>';
 3422:                     }
 3423:                     $selector .= '</select> ';
 3424:                     $datatable .= &mt('remote server must be version: [_1] or later',$selector);
 3425:                 } else {
 3426:                     $datatable.= '<div><input type="button" value="'.&mt('check all').'" '.
 3427:                                  'onclick="javascript:checkAll(document.display.'.$prefix.'_'.$type.')"'.
 3428:                                  ' />'.('&nbsp;'x2).
 3429:                                  '<input type="button" value="'.&mt('uncheck all').'" '.
 3430:                                  'onclick="javascript:uncheckAll(document.display.'.$prefix.'_'.$type.')" />'.
 3431:                                  "\n".
 3432:                                  '</div><div><table>';
 3433:                     my $rem;
 3434:                     for (my $i=0; $i<@locations; $i++) {
 3435:                         my ($showloc,$value,$checkedtype);
 3436:                         if (ref($by_location{$locations[$i]}) eq 'ARRAY') {
 3437:                             my $ip = $by_location{$locations[$i]}->[0];
 3438:                             if (ref($by_ip{$ip}) eq 'ARRAY') {
 3439:                                  $value = join(':',@{$by_ip{$ip}});
 3440:                                 $showloc = join(', ',@{$by_ip{$ip}});
 3441:                                 if (ref($current{$type}) eq 'ARRAY') {
 3442:                                     foreach my $loc (@{$by_ip{$ip}}) {  
 3443:                                         if (grep(/^\Q$loc\E$/,@{$current{$type}})) {
 3444:                                             $checkedtype = ' checked="checked"';
 3445:                                             last;
 3446:                                         }
 3447:                                     }
 3448:                                 }
 3449:                             }
 3450:                         }
 3451:                         $rem = $i%($numinrow);
 3452:                         if ($rem == 0) {
 3453:                             if ($i > 0) {
 3454:                                 $datatable .= '</tr>';
 3455:                             }
 3456:                             $datatable .= '<tr>';
 3457:                         }
 3458:                         $datatable .= '<td class="LC_left_item">'.
 3459:                                       '<span class="LC_nobreak"><label>'.
 3460:                                       '<input type="checkbox" name="'.$prefix.'_'.$type.
 3461:                                       '" value="'.$value.'"'.$checkedtype.' />'.$showloc.
 3462:                                       '</label></span></td>';
 3463:                     }
 3464:                     $rem = @locations%($numinrow);
 3465:                     my $colsleft = $numinrow - $rem;
 3466:                     if ($colsleft > 1 ) {
 3467:                         $datatable .= '<td colspan="'.$colsleft.'" class="LC_left_item">'.
 3468:                                       '&nbsp;</td>';
 3469:                     } elsif ($colsleft == 1) {
 3470:                         $datatable .= '<td class="LC_left_item">&nbsp;</td>';
 3471:                     }
 3472:                     $datatable .= '</tr></table>';
 3473:                 }
 3474:                 $datatable .= '</td></tr>';
 3475:                 $itemcount ++;
 3476:             }
 3477:         }
 3478:     }
 3479:     $$rowtotal += $itemcount;
 3480:     return $datatable;
 3481: }
 3482: 
 3483: sub build_location_hashes {
 3484:     my ($intdoms,$by_ip,$by_location) = @_;
 3485:     return unless((ref($intdoms) eq 'ARRAY') && (ref($by_ip) eq 'HASH') &&
 3486:                   (ref($by_location) eq 'HASH')); 
 3487:     my %iphost = &Apache::lonnet::get_iphost();
 3488:     my $primary_id = &Apache::lonnet::domain($env{'request.role.domain'},'primary');
 3489:     my $primary_ip = &Apache::lonnet::get_host_ip($primary_id);
 3490:     if (ref($iphost{$primary_ip}) eq 'ARRAY') {
 3491:         foreach my $id (@{$iphost{$primary_ip}}) {
 3492:             my $intdom = &Apache::lonnet::internet_dom($id);
 3493:             unless(grep(/^\Q$intdom\E$/,@{$intdoms})) {
 3494:                 push(@{$intdoms},$intdom);
 3495:             }
 3496:         }
 3497:     }
 3498:     foreach my $ip (keys(%iphost)) {
 3499:         if (ref($iphost{$ip}) eq 'ARRAY') {
 3500:             foreach my $id (@{$iphost{$ip}}) {
 3501:                 my $location = &Apache::lonnet::internet_dom($id);
 3502:                 if ($location) {
 3503:                     next if (grep(/^\Q$location\E$/,@{$intdoms}));
 3504:                     if (ref($by_ip->{$ip}) eq 'ARRAY') {
 3505:                         unless(grep(/^\Q$location\E$/,@{$by_ip->{$ip}})) {
 3506:                             push(@{$by_ip->{$ip}},$location);
 3507:                         }
 3508:                     } else {
 3509:                         $by_ip->{$ip} = [$location];
 3510:                     }
 3511:                 }
 3512:             }
 3513:         }
 3514:     }
 3515:     foreach my $ip (sort(keys(%{$by_ip}))) {
 3516:         if (ref($by_ip->{$ip}) eq 'ARRAY') {
 3517:             @{$by_ip->{$ip}} = sort(@{$by_ip->{$ip}});
 3518:             my $first = $by_ip->{$ip}->[0];
 3519:             if (ref($by_location->{$first}) eq 'ARRAY') {
 3520:                 unless (grep(/^\Q$ip\E$/,@{$by_location->{$first}})) {
 3521:                     push(@{$by_location->{$first}},$ip);
 3522:                 }
 3523:             } else {
 3524:                 $by_location->{$first} = [$ip];
 3525:             }
 3526:         }
 3527:     }
 3528:     return;
 3529: }
 3530: 
 3531: sub current_offloads_to {
 3532:     my ($dom,$settings,$servers) = @_;
 3533:     my (%spareid,%otherdomconfigs);
 3534:     if (ref($servers) eq 'HASH') {
 3535:         foreach my $lonhost (sort(keys(%{$servers}))) {
 3536:             my $gotspares;
 3537:             if (ref($settings) eq 'HASH') {
 3538:                 if (ref($settings->{'spares'}) eq 'HASH') {
 3539:                     if (ref($settings->{'spares'}{$lonhost}) eq 'HASH') {
 3540:                         $spareid{$lonhost}{'primary'} = $settings->{'spares'}{$lonhost}{'primary'};
 3541:                         $spareid{$lonhost}{'default'} = $settings->{'spares'}{$lonhost}{'default'};
 3542:                         $gotspares = 1;
 3543:                     }
 3544:                 }
 3545:             }
 3546:             unless ($gotspares) {
 3547:                 my $gotspares;
 3548:                 my $serverhomeID =
 3549:                     &Apache::lonnet::get_server_homeID($servers->{$lonhost});
 3550:                 my $serverhomedom =
 3551:                     &Apache::lonnet::host_domain($serverhomeID);
 3552:                 if ($serverhomedom ne $dom) {
 3553:                     if (ref($otherdomconfigs{$serverhomedom} eq 'HASH')) {
 3554:                         if (ref($otherdomconfigs{$serverhomedom}{'usersessions'}) eq 'HASH') {
 3555:                             if (ref($otherdomconfigs{$serverhomedom}{'usersessions'}{'spares'}) eq 'HASH') {
 3556:                                 $spareid{$lonhost}{'primary'} = $otherdomconfigs{$serverhomedom}{'usersessions'}{'spares'}{'primary'};
 3557:                                 $spareid{$lonhost}{'default'} = $otherdomconfigs{$serverhomedom}{'usersessions'}{'spares'}{'default'};
 3558:                                 $gotspares = 1;
 3559:                             }
 3560:                         }
 3561:                     } else {
 3562:                         $otherdomconfigs{$serverhomedom} =
 3563:                             &Apache::lonnet::get_dom('configuration',['usersessions'],$serverhomedom);
 3564:                         if (ref($otherdomconfigs{$serverhomedom}) eq 'HASH') {
 3565:                             if (ref($otherdomconfigs{$serverhomedom}{'usersessions'}) eq 'HASH') {
 3566:                                 if (ref($otherdomconfigs{$serverhomedom}{'usersessions'}{'spares'}) eq 'HASH') {
 3567:                                     if (ref($otherdomconfigs{$serverhomedom}{'usersessions'}{'spares'}{$lonhost}) eq 'HASH') {
 3568:                                         $spareid{$lonhost}{'primary'} = $otherdomconfigs{$serverhomedom}{'usersessions'}{'spares'}{'primary'};
 3569:                                         $spareid{$lonhost}{'default'} = $otherdomconfigs{$serverhomedom}{'usersessions'}{'spares'}{'default'};
 3570:                                         $gotspares = 1;
 3571:                                     }
 3572:                                 }
 3573:                             }
 3574:                         }
 3575:                     }
 3576:                 }
 3577:             }
 3578:             unless ($gotspares) {
 3579:                 if ($lonhost eq $Apache::lonnet::perlvar{'lonHostID'}) {
 3580:                     $spareid{$lonhost}{'primary'} = $Apache::lonnet::spareid{'primary'};
 3581:                     $spareid{$lonhost}{'default'} = $Apache::lonnet::spareid{'default'};
 3582:                } else {
 3583:                     my $server_hostname = &Apache::lonnet::hostname($lonhost);
 3584:                     my $server_homeID = &Apache::lonnet::get_server_homeID($server_hostname);
 3585:                     if ($server_homeID eq $Apache::lonnet::perlvar{'lonHostID'}) {
 3586:                         $spareid{$lonhost}{'primary'} = $Apache::lonnet::spareid{'primary'};
 3587:                         $spareid{$lonhost}{'default'} = $Apache::lonnet::spareid{'default'};
 3588:                     } else {
 3589:                         my %what = (
 3590:                              spareid => 1,
 3591:                         );
 3592:                         my ($result,$returnhash) = 
 3593:                             &Apache::lonnet::get_remote_globals($lonhost,\%what);
 3594:                         if ($result eq 'ok') { 
 3595:                             if (ref($returnhash) eq 'HASH') {
 3596:                                 if (ref($returnhash->{'spareid'}) eq 'HASH') {
 3597:                                     $spareid{$lonhost}{'primary'} = $returnhash->{'spareid'}->{'primary'};
 3598:                                     $spareid{$lonhost}{'default'} = $returnhash->{'spareid'}->{'default'};
 3599:                                 }
 3600:                             }
 3601:                         }
 3602:                     }
 3603:                 }
 3604:             }
 3605:         }
 3606:     }
 3607:     return %spareid;
 3608: }
 3609: 
 3610: sub spares_row {
 3611:     my ($dom,$servers,$spareid,$serverhomes,$altids,$curroffloadnow,$rowtotal) = @_;
 3612:     my $css_class;
 3613:     my $numinrow = 4;
 3614:     my $itemcount = 1;
 3615:     my $datatable;
 3616:     my %typetitles = &sparestype_titles();
 3617:     if ((ref($servers) eq 'HASH') && (ref($spareid) eq 'HASH') && (ref($altids) eq 'HASH')) {
 3618:         foreach my $server (sort(keys(%{$servers}))) {
 3619:             my $serverhome = &Apache::lonnet::get_server_homeID($servers->{$server});
 3620:             my ($othercontrol,$serverdom);
 3621:             if ($serverhome ne $server) {
 3622:                 $serverdom = &Apache::lonnet::host_domain($serverhome);
 3623:                 $othercontrol = &mt('Session offloading controlled by domain: [_1]','<b>'.$serverdom.'</b>');
 3624:             } else {
 3625:                 $serverdom = &Apache::lonnet::host_domain($server);
 3626:                 if ($serverdom ne $dom) {
 3627:                     $othercontrol = &mt('Session offloading controlled by domain: [_1]','<b>'.$serverdom.'</b>');
 3628:                 }
 3629:             }
 3630:             next unless (ref($spareid->{$server}) eq 'HASH');
 3631:             my $checkednow;
 3632:             if (ref($curroffloadnow) eq 'HASH') {
 3633:                 if ($curroffloadnow->{$server}) {
 3634:                     $checkednow = ' checked="checked"';
 3635:                 }
 3636:             }
 3637:             $css_class = $itemcount%2 ? ' class="LC_odd_row"' : '';
 3638:             $datatable .= '<tr'.$css_class.'>
 3639:                            <td rowspan="2">
 3640:                             <span class="LC_nobreak">'.
 3641:                           &mt('[_1] when busy, offloads to:'
 3642:                               ,'<b>'.$server.'</b>').'</span><br />'.
 3643:                           '<span class="LC_nobreak">'."\n".
 3644:                           '<label><input type="checkbox" name="offloadnow" value="'.$server.'"'.$checkednow.' />'.
 3645:                           '&nbsp;'.&mt('Switch active users on next access').'</label></span>'.
 3646:                           "\n";
 3647:             my (%current,%canselect);
 3648:             my @choices = 
 3649:                 &possible_newspares($server,$spareid->{$server},$serverhomes,$altids);
 3650:             foreach my $type ('primary','default') {
 3651:                 if (ref($spareid->{$server}) eq 'HASH') {
 3652:                     if (ref($spareid->{$server}{$type}) eq 'ARRAY') {
 3653:                         my @spares = @{$spareid->{$server}{$type}};
 3654:                         if (@spares > 0) {
 3655:                             if ($othercontrol) {
 3656:                                 $current{$type} = join(', ',@spares);
 3657:                             } else {
 3658:                                 $current{$type} .= '<table>';
 3659:                                 my $numspares = scalar(@spares);
 3660:                                 for (my $i=0;  $i<@spares; $i++) {
 3661:                                     my $rem = $i%($numinrow);
 3662:                                     if ($rem == 0) {
 3663:                                         if ($i > 0) {
 3664:                                             $current{$type} .= '</tr>';
 3665:                                         }
 3666:                                         $current{$type} .= '<tr>';
 3667:                                     }
 3668:                                     $current{$type} .= '<td><label><input type="checkbox" name="spare_'.$type.'_'.$server.'" id="spare_'.$type.'_'.$server.'_'.$i.'" checked="checked" value="'.$spareid->{$server}{$type}[$i].'" onclick="updateNewSpares(this.form,'."'$server'".');" />&nbsp;'.
 3669:                                                        $spareid->{$server}{$type}[$i].
 3670:                                                        '</label></td>'."\n";
 3671:                                 }
 3672:                                 my $rem = @spares%($numinrow);
 3673:                                 my $colsleft = $numinrow - $rem;
 3674:                                 if ($colsleft > 1 ) {
 3675:                                     $current{$type} .= '<td colspan="'.$colsleft.
 3676:                                                        '" class="LC_left_item">'.
 3677:                                                        '&nbsp;</td>';
 3678:                                 } elsif ($colsleft == 1) {
 3679:                                     $current{$type} .= '<td class="LC_left_item">&nbsp;</td>'."\n";
 3680:                                 }
 3681:                                 $current{$type} .= '</tr></table>';
 3682:                             }
 3683:                         }
 3684:                     }
 3685:                     if ($current{$type} eq '') {
 3686:                         $current{$type} = &mt('None specified');
 3687:                     }
 3688:                     if ($othercontrol) {
 3689:                         if ($type eq 'primary') {
 3690:                             $canselect{$type} = $othercontrol;
 3691:                         }
 3692:                     } else {
 3693:                         $canselect{$type} = 
 3694:                             &mt('Add new [_1]'.$type.'[_2]:','<i>','</i>').'&nbsp;'.
 3695:                             '<select name="newspare_'.$type.'_'.$server.'" '.
 3696:                             'id="newspare_'.$type.'_'.$server.'" onchange="checkNewSpares('."'$server','$type'".');">'."\n".
 3697:                             '<option value="" selected ="selected">'.&mt('Select').'</option>'."\n";
 3698:                         if (@choices > 0) {
 3699:                             foreach my $lonhost (@choices) {
 3700:                                 $canselect{$type} .= '<option value="'.$lonhost.'">'.$lonhost.'</option>'."\n";
 3701:                             }
 3702:                         }
 3703:                         $canselect{$type} .= '</select>'."\n";
 3704:                     }
 3705:                 } else {
 3706:                     $current{$type} = &mt('Could not be determined');
 3707:                     if ($type eq 'primary') {
 3708:                         $canselect{$type} =  $othercontrol;
 3709:                     }
 3710:                 }
 3711:                 if ($type eq 'default') {
 3712:                     $datatable .= '<tr'.$css_class.'>';
 3713:                 }
 3714:                 $datatable .= '<td><i>'.$typetitles{$type}.'</i></td>'."\n".
 3715:                               '<td>'.$current{$type}.'</td>'."\n".
 3716:                               '<td>'.$canselect{$type}.'</td></tr>'."\n";
 3717:             }
 3718:             $itemcount ++;
 3719:         }
 3720:     }
 3721:     $$rowtotal += $itemcount;
 3722:     return $datatable;
 3723: }
 3724: 
 3725: sub possible_newspares {
 3726:     my ($server,$currspares,$serverhomes,$altids) = @_;
 3727:     my $serverhostname = &Apache::lonnet::hostname($server);
 3728:     my %excluded;
 3729:     if ($serverhostname ne '') {
 3730:         %excluded = (
 3731:                        $serverhostname => 1,
 3732:                     );
 3733:     }
 3734:     if (ref($currspares) eq 'HASH') {
 3735:         foreach my $type (keys(%{$currspares})) {
 3736:             if (ref($currspares->{$type}) eq 'ARRAY') {
 3737:                 if (@{$currspares->{$type}} > 0) {
 3738:                     foreach my $curr (@{$currspares->{$type}}) {
 3739:                         my $hostname = &Apache::lonnet::hostname($curr);
 3740:                         $excluded{$hostname} = 1;
 3741:                     }
 3742:                 }
 3743:             }
 3744:         }
 3745:     }
 3746:     my @choices;
 3747:     if ((ref($serverhomes) eq 'HASH') && (ref($altids) eq 'HASH')) {
 3748:         if (keys(%{$serverhomes}) > 1) {
 3749:             foreach my $name (sort(keys(%{$serverhomes}))) {
 3750:                 unless ($excluded{$name}) {
 3751:                     if (exists($altids->{$serverhomes->{$name}})) {
 3752:                         push(@choices,$altids->{$serverhomes->{$name}});
 3753:                     } else {
 3754:                         push(@choices,$serverhomes->{$name});
 3755:                     }
 3756:                 }
 3757:             }
 3758:         }
 3759:     }
 3760:     return sort(@choices);
 3761: }
 3762: 
 3763: sub print_loadbalancing {
 3764:     my ($dom,$settings,$rowtotal) = @_;
 3765:     my $primary_id = &Apache::lonnet::domain($dom,'primary');
 3766:     my $intdom = &Apache::lonnet::internet_dom($primary_id);
 3767:     my $numinrow = 1;
 3768:     my $datatable;
 3769:     my %servers = &Apache::lonnet::internet_dom_servers($dom);
 3770:     my (%currbalancer,%currtargets,%currrules,%existing);
 3771:     if (ref($settings) eq 'HASH') {
 3772:         %existing = %{$settings};
 3773:     }
 3774:     if ((keys(%servers) > 1) || (keys(%existing) > 0)) {
 3775:         &get_loadbalancers_config(\%servers,\%existing,\%currbalancer,
 3776:                                   \%currtargets,\%currrules);
 3777:     } else {
 3778:         return;
 3779:     }
 3780:     my ($othertitle,$usertypes,$types) =
 3781:         &Apache::loncommon::sorted_inst_types($dom);
 3782:     my $rownum = 8;
 3783:     if (ref($types) eq 'ARRAY') {
 3784:         $rownum += scalar(@{$types});
 3785:     }
 3786:     my @css_class = ('LC_odd_row','LC_even_row');
 3787:     my $balnum = 0;
 3788:     my $islast;
 3789:     my (@toshow,$disabledtext);
 3790:     if (keys(%currbalancer) > 0) {
 3791:         @toshow = sort(keys(%currbalancer));
 3792:         if (scalar(@toshow) < scalar(keys(%servers)) + 1) {
 3793:             push(@toshow,'');
 3794:         }
 3795:     } else {
 3796:         @toshow = ('');
 3797:         $disabledtext = &mt('No existing load balancer');
 3798:     }
 3799:     foreach my $lonhost (@toshow) {
 3800:         if ($balnum == scalar(@toshow)-1) {
 3801:             $islast = 1;
 3802:         } else {
 3803:             $islast = 0;
 3804:         }
 3805:         my $cssidx = $balnum%2;
 3806:         my $targets_div_style = 'display: none';
 3807:         my $disabled_div_style = 'display: block';
 3808:         my $homedom_div_style = 'display: none';
 3809:         $datatable .= '<tr class="'.$css_class[$cssidx].'">'.
 3810:                       '<td rowspan="'.$rownum.'" valign="top">'.
 3811:                       '<p>';
 3812:         if ($lonhost eq '') {
 3813:             $datatable .= '<span class="LC_nobreak">';
 3814:             if (keys(%currbalancer) > 0) {
 3815:                 $datatable .= &mt('Add balancer:');
 3816:             } else {
 3817:                 $datatable .= &mt('Enable balancer:');
 3818:             }
 3819:             $datatable .= '&nbsp;'.
 3820:                           '<select name="loadbalancing_lonhost_'.$balnum.'"'.
 3821:                           ' id="loadbalancing_lonhost_'.$balnum.'"'.
 3822:                           ' onchange="toggleTargets('."'$balnum'".');">'."\n".
 3823:                           '<option value="" selected="selected">'.&mt('None').
 3824:                           '</option>'."\n";
 3825:             foreach my $server (sort(keys(%servers))) {
 3826:                 next if ($currbalancer{$server});
 3827:                 $datatable .= '<option value="'.$server.'">'.$server.'</option>'."\n";
 3828:             }
 3829:             $datatable .=
 3830:                 '</select>'."\n".
 3831:                 '<input type="hidden" name="loadbalancing_prevlonhost_'.$balnum.'" id="loadbalancing_prevlonhost_'.$balnum.'" value="" />&nbsp;</span>'."\n";
 3832:         } else {
 3833:             $datatable .= '<i>'.$lonhost.'</i><br /><span class="LC_nobreak">'.
 3834:                           '<label><input type="checkbox" name="loadbalancing_delete" value="'.$balnum.'" id="loadbalancing_delete_'.$balnum.'" onclick="javascript:balancerDeleteChange('."'$balnum'".');" />&nbsp;'.
 3835:                            &mt('Stop balancing').'</label>'.
 3836:                            '<input type="hidden" name="loadbalancing_lonhost_'.$balnum.'" value="'.$lonhost.'" id="loadbalancing_lonhost_'.$balnum.'" /></span>';
 3837:             $targets_div_style = 'display: block';
 3838:             $disabled_div_style = 'display: none';
 3839:             if ($dom eq &Apache::lonnet::host_domain($lonhost)) {
 3840:                 $homedom_div_style = 'display: block';
 3841:             }
 3842:         }
 3843:         $datatable .= '</p></td><td rowspan="'.$rownum.'" valign="top">'.
 3844:                   '<div id="loadbalancing_disabled_'.$balnum.'" style="'.
 3845:                   $disabled_div_style.'">'.$disabledtext.'</div>'."\n".
 3846:                   '<div id="loadbalancing_targets_'.$balnum.'" style="'.$targets_div_style.'">'.&mt('Offloads to:').'<br />';
 3847:         my ($numspares,@spares) = &count_servers($lonhost,%servers);
 3848:         my @sparestypes = ('primary','default');
 3849:         my %typetitles = &sparestype_titles();
 3850:         foreach my $sparetype (@sparestypes) {
 3851:             my $targettable;
 3852:             for (my $i=0; $i<$numspares; $i++) {
 3853:                 my $checked;
 3854:                 if (ref($currtargets{$lonhost}) eq 'HASH') {
 3855:                     if (ref($currtargets{$lonhost}{$sparetype}) eq 'ARRAY') {
 3856:                         if (grep(/^\Q$spares[$i]\E$/,@{$currtargets{$lonhost}{$sparetype}})) {
 3857:                             $checked = ' checked="checked"';
 3858:                         }
 3859:                     }
 3860:                 }
 3861:                 my ($chkboxval,$disabled);
 3862:                 if (($lonhost ne '') && (exists($servers{$lonhost}))) {
 3863:                     $chkboxval = $spares[$i];
 3864:                 }
 3865:                 if (exists($currbalancer{$spares[$i]})) {
 3866:                     $disabled = ' disabled="disabled"';
 3867:                 }
 3868:                 $targettable .=
 3869:                     '<td><span class="LC_nobreak"><label>'.
 3870:                     '<input type="checkbox" name="loadbalancing_target_'.$balnum.'_'.$sparetype.'"'.
 3871:                     $checked.$disabled.' value="'.$chkboxval.'" id="loadbalancing_target_'.$balnum.'_'.$sparetype.'_'.$i.'" onclick="checkOffloads('."this,'$balnum','$sparetype'".');" /><span id="loadbalancing_targettxt_'.$balnum.'_'.$sparetype.'_'.$i.'">&nbsp;'.$chkboxval.
 3872:                     '</span></label></span></td>';
 3873:                 my $rem = $i%($numinrow);
 3874:                 if ($rem == 0) {
 3875:                     if (($i > 0) && ($i < $numspares-1)) {
 3876:                         $targettable .= '</tr>';
 3877:                     }
 3878:                     if ($i < $numspares-1) {
 3879:                         $targettable .= '<tr>';
 3880:                     }
 3881:                 }
 3882:             }
 3883:             if ($targettable ne '') {
 3884:                 my $rem = $numspares%($numinrow);
 3885:                 my $colsleft = $numinrow - $rem;
 3886:                 if ($colsleft > 1 ) {
 3887:                     $targettable .= '<td colspan="'.$colsleft.'" class="LC_left_item">'.
 3888:                                     '&nbsp;</td>';
 3889:                 } elsif ($colsleft == 1) {
 3890:                     $targettable .= '<td class="LC_left_item">&nbsp;</td>';
 3891:                 }
 3892:                 $datatable .=  '<i>'.$typetitles{$sparetype}.'</i><br />'.
 3893:                                '<table><tr>'.$targettable.'</tr></table><br />';
 3894:             }
 3895:         }
 3896:         $datatable .= '</div></td></tr>'.
 3897:                       &loadbalancing_rules($dom,$intdom,$currrules{$lonhost},
 3898:                                            $othertitle,$usertypes,$types,\%servers,
 3899:                                            \%currbalancer,$lonhost,
 3900:                                            $targets_div_style,$homedom_div_style,
 3901:                                            $css_class[$cssidx],$balnum,$islast);
 3902:         $$rowtotal += $rownum;
 3903:         $balnum ++;
 3904:     }
 3905:     $datatable .= '<input type="hidden" name="loadbalancing_total" id="loadbalancing_total" value="'.$balnum.'" />';
 3906:     return $datatable;
 3907: }
 3908: 
 3909: sub get_loadbalancers_config {
 3910:     my ($servers,$existing,$currbalancer,$currtargets,$currrules) = @_;
 3911:     return unless ((ref($servers) eq 'HASH') &&
 3912:                    (ref($existing) eq 'HASH') && (ref($currbalancer) eq 'HASH') &&
 3913:                    (ref($currtargets) eq 'HASH') && (ref($currrules) eq 'HASH'));
 3914:     if (keys(%{$existing}) > 0) {
 3915:         my $oldlonhost;
 3916:         foreach my $key (sort(keys(%{$existing}))) {
 3917:             if ($key eq 'lonhost') {
 3918:                 $oldlonhost = $existing->{'lonhost'};
 3919:                 $currbalancer->{$oldlonhost} = 1;
 3920:             } elsif ($key eq 'targets') {
 3921:                 if ($oldlonhost) {
 3922:                     $currtargets->{$oldlonhost} = $existing->{'targets'};
 3923:                 }
 3924:             } elsif ($key eq 'rules') {
 3925:                 if ($oldlonhost) {
 3926:                     $currrules->{$oldlonhost} = $existing->{'rules'};
 3927:                 }
 3928:             } elsif (ref($existing->{$key}) eq 'HASH') {
 3929:                 $currbalancer->{$key} = 1;
 3930:                 $currtargets->{$key} = $existing->{$key}{'targets'};
 3931:                 $currrules->{$key} = $existing->{$key}{'rules'};
 3932:             }
 3933:         }
 3934:     } else {
 3935:         my ($balancerref,$targetsref) =
 3936:                 &Apache::lonnet::get_lonbalancer_config($servers);
 3937:         if ((ref($balancerref) eq 'HASH') && (ref($targetsref) eq 'HASH')) {
 3938:             foreach my $server (sort(keys(%{$balancerref}))) {
 3939:                 $currbalancer->{$server} = 1;
 3940:                 $currtargets->{$server} = $targetsref->{$server};
 3941:             }
 3942:         }
 3943:     }
 3944:     return;
 3945: }
 3946: 
 3947: sub loadbalancing_rules {
 3948:     my ($dom,$intdom,$currrules,$othertitle,$usertypes,$types,$servers,
 3949:         $currbalancer,$lonhost,$targets_div_style,$homedom_div_style,
 3950:         $css_class,$balnum,$islast) = @_;
 3951:     my $output;
 3952:     my $num = 0;
 3953:     my ($alltypes,$othertypes,$titles) =
 3954:         &loadbalancing_titles($dom,$intdom,$usertypes,$types);
 3955:     if ((ref($alltypes) eq 'ARRAY') && (ref($titles) eq 'HASH'))  {
 3956:         foreach my $type (@{$alltypes}) {
 3957:             $num ++;
 3958:             my $current;
 3959:             if (ref($currrules) eq 'HASH') {
 3960:                 $current = $currrules->{$type};
 3961:             }
 3962:             if (($type eq '_LC_external') || ($type eq '_LC_internetdom')) {
 3963:                 if ($dom ne &Apache::lonnet::host_domain($lonhost)) {
 3964:                     $current = '';
 3965:                 }
 3966:             }
 3967:             $output .= &loadbalance_rule_row($type,$titles->{$type},$current,
 3968:                                              $servers,$currbalancer,$lonhost,$dom,
 3969:                                              $targets_div_style,$homedom_div_style,
 3970:                                              $css_class,$balnum,$num,$islast);
 3971:         }
 3972:     }
 3973:     return $output;
 3974: }
 3975: 
 3976: sub loadbalancing_titles {
 3977:     my ($dom,$intdom,$usertypes,$types) = @_;
 3978:     my %othertypes = (
 3979:            '_LC_adv'         => &mt('Advanced users from [_1]',$dom),
 3980:            '_LC_author'      => &mt('Users from [_1] with author role',$dom),
 3981:            '_LC_internetdom' => &mt('Users not from [_1], but from [_2]',$dom,$intdom),
 3982:            '_LC_external'    => &mt('Users not from [_1]',$intdom),
 3983:            '_LC_ipchangesso' => &mt('SSO users from [_1], with IP mismatch',$dom),
 3984:            '_LC_ipchange'    => &mt('Non-SSO users with IP mismatch'),
 3985:                      );
 3986:     my @alltypes = ('_LC_adv','_LC_author','_LC_internetdom','_LC_external','_LC_ipchangesso','_LC_ipchange');
 3987:     if (ref($types) eq 'ARRAY') {
 3988:         unshift(@alltypes,@{$types},'default');
 3989:     }
 3990:     my %titles;
 3991:     foreach my $type (@alltypes) {
 3992:         if ($type =~ /^_LC_/) {
 3993:             $titles{$type} = $othertypes{$type};
 3994:         } elsif ($type eq 'default') {
 3995:             $titles{$type} = &mt('All users from [_1]',$dom);
 3996:             if (ref($types) eq 'ARRAY') {
 3997:                 if (@{$types} > 0) {
 3998:                     $titles{$type} = &mt('Other users from [_1]',$dom);
 3999:                 }
 4000:             }
 4001:         } elsif (ref($usertypes) eq 'HASH') {
 4002:             $titles{$type} = $usertypes->{$type};
 4003:         }
 4004:     }
 4005:     return (\@alltypes,\%othertypes,\%titles);
 4006: }
 4007: 
 4008: sub loadbalance_rule_row {
 4009:     my ($type,$title,$current,$servers,$currbalancer,$lonhost,$dom,
 4010:         $targets_div_style,$homedom_div_style,$css_class,$balnum,$num,$islast) = @_;
 4011:     my @rulenames;
 4012:     my %ruletitles = &offloadtype_text();
 4013:     if (($type eq '_LC_ipchangesso') || ($type eq '_LC_ipchange')) {
 4014:         @rulenames = ('balancer','offloadedto','specific');
 4015:     } else {
 4016:         @rulenames = ('default','homeserver');
 4017:         if ($type eq '_LC_external') {
 4018:             push(@rulenames,'externalbalancer');
 4019:         } else {
 4020:             push(@rulenames,'specific');
 4021:         }
 4022:         push(@rulenames,'none');
 4023:     }
 4024:     my $style = $targets_div_style;
 4025:     if (($type eq '_LC_external') || ($type eq '_LC_internetdom')) {
 4026:         $style = $homedom_div_style;
 4027:     }
 4028:     my $space;
 4029:     if ($islast && $num == 1) {
 4030:         $space = '<div display="inline-block">&nbsp;</div>';
 4031:     }
 4032:     my $output =
 4033:         '<tr class="'.$css_class.'" id="balanceruletr_'.$balnum.'_'.$num.'"><td valign="top">'.$space.
 4034:         '<div id="balanceruletitle_'.$balnum.'_'.$type.'" style="'.$style.'">'.$title.'</div></td>'."\n".
 4035:         '<td valaign="top">'.$space.
 4036:         '<div id="balancerule_'.$balnum.'_'.$type.'" style="'.$style.'">'."\n";
 4037:     for (my $i=0; $i<@rulenames; $i++) {
 4038:         my $rule = $rulenames[$i];
 4039:         my ($checked,$extra);
 4040:         if ($rulenames[$i] eq 'default') {
 4041:             $rule = '';
 4042:         }
 4043:         if ($rulenames[$i] eq 'specific') {
 4044:             if (ref($servers) eq 'HASH') {
 4045:                 my $default;
 4046:                 if (($current ne '') && (exists($servers->{$current}))) {
 4047:                     $checked = ' checked="checked"';
 4048:                 }
 4049:                 unless ($checked) {
 4050:                     $default = ' selected="selected"';
 4051:                 }
 4052:                 $extra =
 4053:                     ':&nbsp;<select name="loadbalancing_singleserver_'.$balnum.'_'.$type.
 4054:                     '" id="loadbalancing_singleserver_'.$balnum.'_'.$type.
 4055:                     '" onchange="singleServerToggle('."'$balnum','$type'".')">'."\n".
 4056:                     '<option value=""'.$default.'></option>'."\n";
 4057:                 foreach my $server (sort(keys(%{$servers}))) {
 4058:                     if (ref($currbalancer) eq 'HASH') {
 4059:                         next if (exists($currbalancer->{$server}));
 4060:                     }
 4061:                     my $selected;
 4062:                     if ($server eq $current) {
 4063:                         $selected = ' selected="selected"';
 4064:                     }
 4065:                     $extra .= '<option value="'.$server.'"'.$selected.'>'.$server.'</option>';
 4066:                 }
 4067:                 $extra .= '</select>';
 4068:             }
 4069:         } elsif ($rule eq $current) {
 4070:             $checked = ' checked="checked"';
 4071:         }
 4072:         $output .= '<span class="LC_nobreak"><label>'.
 4073:                    '<input type="radio" name="loadbalancing_rules_'.$balnum.'_'.$type.
 4074:                    '" id="loadbalancing_rules_'.$balnum.'_'.$type.'_'.$i.'" value="'.
 4075:                    $rule.'" onclick="balanceruleChange('."this.form,'$balnum','$type'".
 4076:                    ')"'.$checked.' />&nbsp;';
 4077:         if (($rulenames[$i] eq 'specific') && ($type =~ /^_LC_ipchange/)) {
 4078:             $output .= $ruletitles{'particular'};
 4079:         } else {
 4080:             $output .= $ruletitles{$rulenames[$i]};
 4081:         }
 4082:         $output .= '</label>'.$extra.'</span><br />'."\n";
 4083:     }
 4084:     $output .= '</div></td></tr>'."\n";
 4085:     return $output;
 4086: }
 4087: 
 4088: sub offloadtype_text {
 4089:     my %ruletitles = &Apache::lonlocal::texthash (
 4090:            'default'          => 'Offloads to default destinations',
 4091:            'homeserver'       => "Offloads to user's home server",
 4092:            'externalbalancer' => "Offloads to Load Balancer in user's domain",
 4093:            'specific'         => 'Offloads to specific server',
 4094:            'none'             => 'No offload',
 4095:            'balancer'         => 'Session hosted on Load Balancer, after re-authentication',
 4096:            'offloadedto'      => 'Session hosted on offload server, after re-authentication',
 4097:            'particular'       => 'Session hosted (after re-auth) on server:',
 4098:     );
 4099:     return %ruletitles;
 4100: }
 4101: 
 4102: sub sparestype_titles {
 4103:     my %typestitles = &Apache::lonlocal::texthash (
 4104:                           'primary' => 'primary',
 4105:                           'default' => 'default',
 4106:                       );
 4107:     return %typestitles;
 4108: }
 4109: 
 4110: sub contact_titles {
 4111:     my %titles = &Apache::lonlocal::texthash (
 4112:                    'supportemail' => 'Support E-mail address',
 4113:                    'adminemail'   => 'Default Server Admin E-mail address',
 4114:                    'errormail'    => 'Error reports to be e-mailed to',
 4115:                    'packagesmail' => 'Package update alerts to be e-mailed to',
 4116:                    'helpdeskmail' => 'Helpdesk requests to be e-mailed to',
 4117:                    'lonstatusmail' => 'E-mail from nightly status check (warnings/errors)',
 4118:                    'requestsmail' => 'E-mail from course requests requiring approval',
 4119:                    'updatesmail'  => 'E-mail from nightly check of LON-CAPA module integrity/updates',
 4120:                    'idconflictsmail' => 'E-mail from bi-nightly check for multiple users sharing same student/employee ID',
 4121:                  );
 4122:     my %short_titles = &Apache::lonlocal::texthash (
 4123:                            adminemail   => 'Admin E-mail address',
 4124:                            supportemail => 'Support E-mail',
 4125:                        );   
 4126:     return (\%titles,\%short_titles);
 4127: }
 4128: 
 4129: sub tool_titles {
 4130:     my %titles = &Apache::lonlocal::texthash (
 4131:                      aboutme    => 'Personal web page',
 4132:                      blog       => 'Blog',
 4133:                      webdav     => 'WebDAV',
 4134:                      portfolio  => 'Portfolio',
 4135:                      official   => 'Official courses (with institutional codes)',
 4136:                      unofficial => 'Unofficial courses',
 4137:                      community  => 'Communities',
 4138:                      textbook   => 'Textbook courses',
 4139:                  );
 4140:     return %titles;
 4141: }
 4142: 
 4143: sub courserequest_titles {
 4144:     my %titles = &Apache::lonlocal::texthash (
 4145:                                    official   => 'Official',
 4146:                                    unofficial => 'Unofficial',
 4147:                                    community  => 'Communities',
 4148:                                    textbook   => 'Textbook',
 4149:                                    norequest  => 'Not allowed',
 4150:                                    approval   => 'Approval by Dom. Coord.',
 4151:                                    validate   => 'With validation',
 4152:                                    autolimit  => 'Numerical limit',
 4153:                                    unlimited  => '(blank for unlimited)',
 4154:                  );
 4155:     return %titles;
 4156: }
 4157: 
 4158: sub authorrequest_titles {
 4159:     my %titles = &Apache::lonlocal::texthash (
 4160:                                    norequest  => 'Not allowed',
 4161:                                    approval   => 'Approval by Dom. Coord.',
 4162:                                    automatic  => 'Automatic approval',
 4163:                  );
 4164:     return %titles;
 4165: }
 4166: 
 4167: sub courserequest_conditions {
 4168:     my %conditions = &Apache::lonlocal::texthash (
 4169:        approval    => '(Processing of request subject to approval by Domain Coordinator).',
 4170:        validate   => '(Processing of request subject to institutional validation).',
 4171:                  );
 4172:     return %conditions;
 4173: }
 4174: 
 4175: 
 4176: sub print_usercreation {
 4177:     my ($position,$dom,$settings,$rowtotal) = @_;
 4178:     my $numinrow = 4;
 4179:     my $datatable;
 4180:     if ($position eq 'top') {
 4181:         $$rowtotal ++;
 4182:         my $rowcount = 0;
 4183:         my ($rules,$ruleorder) = &Apache::lonnet::inst_userrules($dom,'username');
 4184:         if (ref($rules) eq 'HASH') {
 4185:             if (keys(%{$rules}) > 0) {
 4186:                 $datatable .= &user_formats_row('username',$settings,$rules,
 4187:                                                 $ruleorder,$numinrow,$rowcount);
 4188:                 $$rowtotal ++;
 4189:                 $rowcount ++;
 4190:             }
 4191:         }
 4192:         my ($idrules,$idruleorder) = &Apache::lonnet::inst_userrules($dom,'id');
 4193:         if (ref($idrules) eq 'HASH') {
 4194:             if (keys(%{$idrules}) > 0) {
 4195:                 $datatable .= &user_formats_row('id',$settings,$idrules,
 4196:                                                 $idruleorder,$numinrow,$rowcount);
 4197:                 $$rowtotal ++;
 4198:                 $rowcount ++;
 4199:             }
 4200:         }
 4201:         if ($rowcount == 0) {
 4202:             $datatable .= '<tr><td colspan="2">'.&mt('No format rules have been defined for usernames or IDs in this domain.').'</td></tr>';  
 4203:             $$rowtotal ++;
 4204:             $rowcount ++;
 4205:         }
 4206:     } elsif ($position eq 'middle') {
 4207:         my @creators = ('author','course','requestcrs');
 4208:         my ($rules,$ruleorder) =
 4209:             &Apache::lonnet::inst_userrules($dom,'username');
 4210:         my %lt = &usercreation_types();
 4211:         my %checked;
 4212:         if (ref($settings) eq 'HASH') {
 4213:             if (ref($settings->{'cancreate'}) eq 'HASH') {
 4214:                 foreach my $item (@creators) {
 4215:                     $checked{$item} = $settings->{'cancreate'}{$item};
 4216:                 }
 4217:             } elsif (ref($settings->{'cancreate'}) eq 'ARRAY') {
 4218:                 foreach my $item (@creators) {
 4219:                     if (grep(/^\Q$item\E$/,@{$settings->{'cancreate'}})) {
 4220:                         $checked{$item} = 'none';
 4221:                     }
 4222:                 }
 4223:             }
 4224:         }
 4225:         my $rownum = 0;
 4226:         foreach my $item (@creators) {
 4227:             $rownum ++;
 4228:             if ($checked{$item} eq '') {
 4229:                 $checked{$item} = 'any';
 4230:             }
 4231:             my $css_class;
 4232:             if ($rownum%2) {
 4233:                 $css_class = '';
 4234:             } else {
 4235:                 $css_class = ' class="LC_odd_row" ';
 4236:             }
 4237:             $datatable .= '<tr'.$css_class.'>'.
 4238:                          '<td><span class="LC_nobreak">'.$lt{$item}.
 4239:                          '</span></td><td align="right">';
 4240:             my @options = ('any');
 4241:             if (ref($rules) eq 'HASH') {
 4242:                 if (keys(%{$rules}) > 0) {
 4243:                     push(@options,('official','unofficial'));
 4244:                 }
 4245:             }
 4246:             push(@options,'none');
 4247:             foreach my $option (@options) {
 4248:                 my $type = 'radio';
 4249:                 my $check = ' ';
 4250:                 if ($checked{$item} eq $option) {
 4251:                     $check = ' checked="checked" ';
 4252:                 } 
 4253:                 $datatable .= '<span class="LC_nobreak"><label>'.
 4254:                               '<input type="'.$type.'" name="can_createuser_'.
 4255:                               $item.'" value="'.$option.'"'.$check.'/>&nbsp;'.
 4256:                               $lt{$option}.'</label>&nbsp;&nbsp;</span>';
 4257:             }
 4258:             $datatable .= '</td></tr>';
 4259:         }
 4260:     } else {
 4261:         my @contexts = ('author','course','domain');
 4262:         my @authtypes = ('int','krb4','krb5','loc');
 4263:         my %checked;
 4264:         if (ref($settings) eq 'HASH') {
 4265:             if (ref($settings->{'authtypes'}) eq 'HASH') {
 4266:                 foreach my $item (@contexts) {
 4267:                     if (ref($settings->{'authtypes'}{$item}) eq 'HASH') {
 4268:                         foreach my $auth (@authtypes) {
 4269:                             if ($settings->{'authtypes'}{$item}{$auth}) {
 4270:                                 $checked{$item}{$auth} = ' checked="checked" ';
 4271:                             }
 4272:                         }
 4273:                     }
 4274:                 }
 4275:             }
 4276:         } else {
 4277:             foreach my $item (@contexts) {
 4278:                 foreach my $auth (@authtypes) {
 4279:                     $checked{$item}{$auth} = ' checked="checked" ';
 4280:                 }
 4281:             }
 4282:         }
 4283:         my %title = &context_names();
 4284:         my %authname = &authtype_names();
 4285:         my $rownum = 0;
 4286:         my $css_class; 
 4287:         foreach my $item (@contexts) {
 4288:             if ($rownum%2) {
 4289:                 $css_class = '';
 4290:             } else {
 4291:                 $css_class = ' class="LC_odd_row" ';
 4292:             }
 4293:             $datatable .=   '<tr'.$css_class.'>'.
 4294:                             '<td>'.$title{$item}.
 4295:                             '</td><td class="LC_left_item">'.
 4296:                             '<span class="LC_nobreak">';
 4297:             foreach my $auth (@authtypes) {
 4298:                 $datatable .= '<label>'. 
 4299:                               '<input type="checkbox" name="'.$item.'_auth" '.
 4300:                               $checked{$item}{$auth}.' value="'.$auth.'" />'.
 4301:                               $authname{$auth}.'</label>&nbsp;';
 4302:             }
 4303:             $datatable .= '</span></td></tr>';
 4304:             $rownum ++;
 4305:         }
 4306:         $$rowtotal += $rownum;
 4307:     }
 4308:     return $datatable;
 4309: }
 4310: 
 4311: sub print_selfcreation {
 4312:     my ($position,$dom,$settings,$rowtotal) = @_;
 4313:     my (@selfcreate,$createsettings,$processing,$datatable);
 4314:     if (ref($settings) eq 'HASH') {
 4315:         if (ref($settings->{'cancreate'}) eq 'HASH') {
 4316:             $createsettings = $settings->{'cancreate'};
 4317:             if (ref($createsettings) eq 'HASH') {
 4318:                 if (ref($createsettings->{'selfcreate'}) eq 'ARRAY') {
 4319:                     @selfcreate = @{$createsettings->{'selfcreate'}};
 4320:                 } elsif ($createsettings->{'selfcreate'} ne '') {
 4321:                     if ($settings->{'cancreate'}{'selfcreate'} eq 'any') {
 4322:                         @selfcreate = ('email','login','sso');
 4323:                     } elsif ($createsettings->{'selfcreate'} ne 'none') {
 4324:                         @selfcreate = ($createsettings->{'selfcreate'});
 4325:                     }
 4326:                 }
 4327:                 if (ref($createsettings->{'selfcreateprocessing'}) eq 'HASH') {
 4328:                     $processing = $createsettings->{'selfcreateprocessing'};
 4329:                 }
 4330:             }
 4331:         }
 4332:     }
 4333:     my %radiohash;
 4334:     my $numinrow = 4;
 4335:     map { $radiohash{'cancreate_'.$_} = 1; } @selfcreate;
 4336:     if ($position eq 'top') {
 4337:         my %choices = &Apache::lonlocal::texthash (
 4338:                                                       cancreate_login      => 'Institutional Login',
 4339:                                                       cancreate_sso        => 'Institutional Single Sign On',
 4340:                                                   );
 4341:         my @toggles = sort(keys(%choices));
 4342:         my %defaultchecked = (
 4343:                                'cancreate_login' => 'off',
 4344:                                'cancreate_sso'   => 'off',
 4345:                              );
 4346:         my ($onclick,$itemcount);
 4347:         ($datatable,$itemcount) = &radiobutton_prefs(\%radiohash,\@toggles,\%defaultchecked,
 4348:                                                      \%choices,$itemcount,$onclick);
 4349:         $$rowtotal += $itemcount;
 4350:         
 4351:         my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($dom);
 4352: 
 4353:         if (ref($usertypes) eq 'HASH') {
 4354:             if (keys(%{$usertypes}) > 0) {
 4355:                 $datatable .= &insttypes_row($createsettings,$types,$usertypes,
 4356:                                              $dom,$numinrow,$othertitle,
 4357:                                              'statustocreate',$$rowtotal);
 4358:                 $$rowtotal ++;
 4359:             }
 4360:         }
 4361:         my @fields = ('lastname','firstname','middlename','permanentemail','id','inststatus');
 4362:         my %fieldtitles = &Apache::loncommon::personal_data_fieldtitles();
 4363:         $fieldtitles{'inststatus'} = &mt('Institutional status');
 4364:         my $rem;
 4365:         my $numperrow = 2;
 4366:         my $css_class = $$rowtotal%2?' class="LC_odd_row"':'';
 4367:         $datatable .= '<tr'.$css_class.'>'.
 4368:                      '<td class="LC_left_item">'.&mt('Mapping of Shibboleth environment variable names to user data fields (SSO auth)').'</td>'.
 4369:                      '<td class="LC_left_item">'."\n".
 4370:                      '<table><tr><td>'."\n";
 4371:         for (my $i=0; $i<@fields; $i++) {
 4372:             $rem = $i%($numperrow);
 4373:             if ($rem == 0) {
 4374:                 if ($i > 0) {
 4375:                     $datatable .= '</tr>';
 4376:                 }
 4377:                 $datatable .= '<tr>';
 4378:             }
 4379:             my $currval;
 4380:             if (ref($createsettings) eq 'HASH') {
 4381:                 if (ref($createsettings->{'shibenv'}) eq 'HASH') {
 4382:                     $currval = $createsettings->{'shibenv'}{$fields[$i]};
 4383:                 }
 4384:             }
 4385:             $datatable .= '<td class="LC_left_item">'.
 4386:                           '<span class="LC_nobreak">'.
 4387:                           '<input type="text" name="shibenv_'.$fields[$i].'" '.
 4388:                           'value="'.$currval.'" size="10" />&nbsp;'.
 4389:                           $fieldtitles{$fields[$i]}.'</span></td>';
 4390:         }
 4391:         my $colsleft = $numperrow - $rem;
 4392:         if ($colsleft > 1 ) {
 4393:             $datatable .= '<td colspan="'.$colsleft.'" class="LC_left_item">'.
 4394:                          '&nbsp;</td>';
 4395:         } elsif ($colsleft == 1) {
 4396:             $datatable .= '<td class="LC_left_item">&nbsp;</td>';
 4397:         }
 4398:         $datatable .= '</tr></table></td></tr>';
 4399:         $$rowtotal ++;
 4400:     } elsif ($position eq 'middle') {
 4401:         my %domconf = &Apache::lonnet::get_dom('configuration',['usermodification'],$dom);
 4402:         my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($dom);
 4403:         $usertypes->{'default'} = $othertitle;
 4404:         if (ref($types) eq 'ARRAY') {
 4405:             push(@{$types},'default');
 4406:             $usertypes->{'default'} = $othertitle;
 4407:             foreach my $status (@{$types}) {
 4408:                 $datatable .= &modifiable_userdata_row('selfcreate',$status,$domconf{'usermodification'},
 4409:                                                        $numinrow,$$rowtotal,$usertypes);
 4410:                 $$rowtotal ++;
 4411:             }
 4412:         }
 4413:     } else {
 4414:         my %choices = &Apache::lonlocal::texthash (
 4415:                                                       cancreate_email => 'E-mail address as username',
 4416:                                                   );
 4417:         my @toggles = sort(keys(%choices));
 4418:         my %defaultchecked = (
 4419:                                'cancreate_email' => 'off',
 4420:                              );
 4421:         my $itemcount = 0;
 4422:         my $display = 'none';
 4423:         if (grep(/^\Qemail\E$/,@selfcreate)) {
 4424:             $display = 'block';
 4425:         }
 4426:         my $onclick = "toggleDisplay(this.form,'emailoptions');";
 4427:         my $additional = '<div id="emailoptions" style="display: '.$display.'">';
 4428:         my %domdefaults = &Apache::lonnet::get_domain_defaults($dom);
 4429:         my $usertypes = {};
 4430:         my $order = [];
 4431:         if ((ref($domdefaults{'inststatustypes'}) eq 'HASH') && (ref($domdefaults{'inststatusguest'}) eq 'ARRAY')) {
 4432:             $usertypes = $domdefaults{'inststatustypes'};
 4433:             $order = $domdefaults{'inststatusguest'};
 4434:         }
 4435:         if (ref($order) eq 'ARRAY') {
 4436:             push(@{$order},'default');
 4437:             if (@{$order} > 1) {
 4438:                 $usertypes->{'default'} = &mt('Other users');
 4439:                 $additional .= '<table><tr>';
 4440:                 foreach my $status (@{$order}) {
 4441:                     $additional .= '<th>'.$usertypes->{$status}.'</th>';
 4442:                 }
 4443:                 $additional .= '</tr><tr>';
 4444:                 foreach my $status (@{$order}) {
 4445:                     $additional .= '<td>'.&email_as_username($rowtotal,$processing,$status).'</td>';
 4446:                 }
 4447:                 $additional .= '</tr></table>';
 4448:             } else {
 4449:                 $usertypes->{'default'} = &mt('All users');
 4450:                 $additional .= &email_as_username($rowtotal,$processing);
 4451:             }
 4452:         }
 4453:         $additional .= '</div>'."\n";
 4454: 
 4455:         ($datatable,$itemcount) = &radiobutton_prefs(\%radiohash,\@toggles,\%defaultchecked,
 4456:                                                      \%choices,$$rowtotal,$onclick,$additional);
 4457:         $$rowtotal ++;
 4458:         $datatable .= &print_requestmail($dom,'selfcreation',$createsettings,$rowtotal);
 4459:         $$rowtotal ++;
 4460:         my ($infofields,$infotitles) = &Apache::loncommon::emailusername_info();
 4461:         $numinrow = 1;
 4462:         if (ref($order) eq 'ARRAY') {
 4463:             foreach my $status (@{$order}) {
 4464:                 $datatable .= &modifiable_userdata_row('cancreate','emailusername_'.$status,$settings,
 4465:                                                        $numinrow,$$rowtotal,$usertypes,$infofields,$infotitles);
 4466:                 $$rowtotal ++;
 4467:             }
 4468:         }
 4469:         my ($emailrules,$emailruleorder) =
 4470:             &Apache::lonnet::inst_userrules($dom,'email');
 4471:         if (ref($emailrules) eq 'HASH') {
 4472:             if (keys(%{$emailrules}) > 0) {
 4473:                 $datatable .= &user_formats_row('email',$settings,$emailrules,
 4474:                                                 $emailruleorder,$numinrow,$$rowtotal);
 4475:                 $$rowtotal ++;
 4476:             }
 4477:         }
 4478:         $datatable .= &captcha_choice('cancreate',$createsettings,$$rowtotal);
 4479:     }
 4480:     return $datatable;
 4481: }
 4482: 
 4483: sub email_as_username {
 4484:     my ($rowtotal,$processing,$type) = @_;
 4485:     my %choices =
 4486:         &Apache::lonlocal::texthash (
 4487:                                       automatic => 'Automatic approval',
 4488:                                       approval  => 'Queued for approval',
 4489:                                     );
 4490:     my $output;
 4491:     foreach my $option ('automatic','approval') {
 4492:         my $checked;
 4493:         if (ref($processing) eq 'HASH') {
 4494:             if ($type eq '') {   
 4495:                 if (!exists($processing->{'default'})) {
 4496:                     if ($option eq 'automatic') {
 4497:                         $checked = ' checked="checked"';
 4498:                     }
 4499:                 } else {
 4500:                     if ($processing->{'default'} eq $option) {
 4501:                         $checked = ' checked="checked"';
 4502:                     }
 4503:                 }
 4504:             } else {
 4505:                 if (!exists($processing->{$type})) {
 4506:                     if ($option eq 'automatic') {
 4507:                         $checked = ' checked="checked"';
 4508:                     }
 4509:                 } else {
 4510:                     if ($processing->{$type} eq $option) {
 4511:                         $checked = ' checked="checked"';
 4512:                     }
 4513:                 }
 4514:             }
 4515:         } elsif ($option eq 'automatic') {
 4516:             $checked = ' checked="checked"'; 
 4517:         }
 4518:         my $name = 'cancreate_emailprocess';
 4519:         if (($type ne '') && ($type ne 'default')) {
 4520:             $name .= '_'.$type;
 4521:         }
 4522:         $output .= '<span class="LC_nobreak"><label>'.
 4523:                    '<input type="radio" name="'.$name.'"'.
 4524:                    $checked.' value="'.$option.'" />'.
 4525:                    $choices{$option}.'</label></span>';
 4526:         if ($type eq '') {
 4527:             $output .= '&nbsp;';
 4528:         } else {
 4529:             $output .= '<br />';
 4530:         }
 4531:     }
 4532:     $$rowtotal ++;
 4533:     return $output;
 4534: }
 4535: 
 4536: sub captcha_choice {
 4537:     my ($context,$settings,$itemcount) = @_;
 4538:     my ($keyentry,$currpub,$currpriv,%checked,$rowname,$pubtext,$privtext);
 4539:     my %lt = &captcha_phrases();
 4540:     $keyentry = 'hidden';
 4541:     if ($context eq 'cancreate') {
 4542:         $rowname = &mt('CAPTCHA validation');
 4543:     } elsif ($context eq 'login') {
 4544:         $rowname =  &mt('"Contact helpdesk" CAPTCHA validation');
 4545:     }
 4546:     if (ref($settings) eq 'HASH') {
 4547:         if ($settings->{'captcha'}) {
 4548:             $checked{$settings->{'captcha'}} = ' checked="checked"';
 4549:         } else {
 4550:             $checked{'original'} = ' checked="checked"';
 4551:         }
 4552:         if ($settings->{'captcha'} eq 'recaptcha') {
 4553:             $pubtext = $lt{'pub'};
 4554:             $privtext = $lt{'priv'};
 4555:             $keyentry = 'text';
 4556:         }
 4557:         if (ref($settings->{'recaptchakeys'}) eq 'HASH') {
 4558:             $currpub = $settings->{'recaptchakeys'}{'public'};
 4559:             $currpriv = $settings->{'recaptchakeys'}{'private'};
 4560:         }
 4561:     } else {
 4562:         $checked{'original'} = ' checked="checked"';
 4563:     }
 4564:     my $css_class = $itemcount%2?' class="LC_odd_row"':'';
 4565:     my $output = '<tr'.$css_class.'>'.
 4566:                  '<td class="LC_left_item">'.$rowname.'</td><td class="LC_left_item" colspan="2">'."\n".
 4567:                  '<table><tr><td>'."\n";
 4568:     foreach my $option ('original','recaptcha','notused') {
 4569:         $output .= '<span class="LC_nobreak"><label><input type="radio" name="'.$context.'_captcha" value="'.
 4570:                    $option.'" '.$checked{$option}.' onchange="javascript:updateCaptcha('."this,'$context'".');" />'.
 4571:                    $lt{$option}.'</label></span>';
 4572:         unless ($option eq 'notused') {
 4573:             $output .= ('&nbsp;'x2)."\n";
 4574:         }
 4575:     }
 4576: #
 4577: # Note: If reCAPTCHA is to be used for LON-CAPA servers in a domain, a domain coordinator should visit:
 4578: # https://www.google.com/recaptcha and generate a Public and Private key. For domains with multiple
 4579: # servers a single key pair will be used for all servers, so the internet domain (e.g., yourcollege.edu)
 4580: # specified for use with the key should be broad enough to accommodate all servers in the LON-CAPA domain.
 4581: #
 4582:     $output .= '</td></tr>'."\n".
 4583:                '<tr><td>'."\n".
 4584:                '<span class="LC_nobreak"><span id="'.$context.'_recaptchapubtxt">'.$pubtext.'</span>&nbsp;'."\n".
 4585:                '<input type="'.$keyentry.'" id="'.$context.'_recaptchapub" name="'.$context.'_recaptchapub" value="'.
 4586:                $currpub.'" size="40" /></span><br />'."\n".
 4587:                '<span class="LC_nobreak"><span id="'.$context.'_recaptchaprivtxt">'.$privtext.'</span>&nbsp;'."\n".
 4588:                '<input type="'.$keyentry.'" id="'.$context.'_recaptchapriv" name="'.$context.'_recaptchapriv" value="'.
 4589:                $currpriv.'" size="40" /></span></td></tr></table>'."\n".
 4590:                '</td></tr>';
 4591:     return $output;
 4592: }
 4593: 
 4594: sub user_formats_row {
 4595:     my ($type,$settings,$rules,$ruleorder,$numinrow,$rowcount) = @_;
 4596:     my $output;
 4597:     my %text = (
 4598:                    'username' => 'new usernames',
 4599:                    'id'       => 'IDs',
 4600:                    'email'    => 'self-created accounts (e-mail)',
 4601:                );
 4602:     my $css_class = $rowcount%2?' class="LC_odd_row"':'';
 4603:     $output = '<tr '.$css_class.'>'.
 4604:               '<td><span class="LC_nobreak">';
 4605:     if ($type eq 'email') {
 4606:         $output .= &mt("Formats disallowed for $text{$type}: ");
 4607:     } else {
 4608:         $output .= &mt("Format rules to check for $text{$type}: ");
 4609:     }
 4610:     $output .= '</span></td>'.
 4611:                '<td class="LC_left_item" colspan="2"><table>';
 4612:     my $rem;
 4613:     if (ref($ruleorder) eq 'ARRAY') {
 4614:         for (my $i=0; $i<@{$ruleorder}; $i++) {
 4615:             if (ref($rules->{$ruleorder->[$i]}) eq 'HASH') {
 4616:                 my $rem = $i%($numinrow);
 4617:                 if ($rem == 0) {
 4618:                     if ($i > 0) {
 4619:                         $output .= '</tr>';
 4620:                     }
 4621:                     $output .= '<tr>';
 4622:                 }
 4623:                 my $check = ' ';
 4624:                 if (ref($settings) eq 'HASH') {
 4625:                     if (ref($settings->{$type.'_rule'}) eq 'ARRAY') {
 4626:                         if (grep(/^\Q$ruleorder->[$i]\E$/,@{$settings->{$type.'_rule'}})) {
 4627:                             $check = ' checked="checked" ';
 4628:                         }
 4629:                     }
 4630:                 }
 4631:                 $output .= '<td class="LC_left_item">'.
 4632:                            '<span class="LC_nobreak"><label>'.
 4633:                            '<input type="checkbox" name="'.$type.'_rule" '.
 4634:                            'value="'.$ruleorder->[$i].'"'.$check.'/>'.
 4635:                            $rules->{$ruleorder->[$i]}{'name'}.'</label></span></td>';
 4636:             }
 4637:         }
 4638:         $rem = @{$ruleorder}%($numinrow);
 4639:     }
 4640:     my $colsleft = $numinrow - $rem;
 4641:     if ($colsleft > 1 ) {
 4642:         $output .= '<td colspan="'.$colsleft.'" class="LC_left_item">'.
 4643:                    '&nbsp;</td>';
 4644:     } elsif ($colsleft == 1) {
 4645:         $output .= '<td class="LC_left_item">&nbsp;</td>';
 4646:     }
 4647:     $output .= '</tr></table></td></tr>';
 4648:     return $output;
 4649: }
 4650: 
 4651: sub usercreation_types {
 4652:     my %lt = &Apache::lonlocal::texthash (
 4653:                     author     => 'When adding a co-author',
 4654:                     course     => 'When adding a user to a course',
 4655:                     requestcrs => 'When requesting a course',
 4656:                     any        => 'Any',
 4657:                     official   => 'Institutional only ',
 4658:                     unofficial => 'Non-institutional only',
 4659:                     none       => 'None',
 4660:     );
 4661:     return %lt;
 4662: }
 4663: 
 4664: sub selfcreation_types {
 4665:     my %lt = &Apache::lonlocal::texthash (
 4666:                     selfcreate => 'User creates own account',
 4667:                     any        => 'Any',
 4668:                     official   => 'Institutional only ',
 4669:                     unofficial => 'Non-institutional only',
 4670:                     email      => 'E-mail address',
 4671:                     login      => 'Institutional Login',
 4672:                     sso        => 'SSO',
 4673:              );
 4674: }
 4675: 
 4676: sub authtype_names {
 4677:     my %lt = &Apache::lonlocal::texthash(
 4678:                       int    => 'Internal',
 4679:                       krb4   => 'Kerberos 4',
 4680:                       krb5   => 'Kerberos 5',
 4681:                       loc    => 'Local',
 4682:                   );
 4683:     return %lt;
 4684: }
 4685: 
 4686: sub context_names {
 4687:     my %context_title = &Apache::lonlocal::texthash(
 4688:        author => 'Creating users when an Author',
 4689:        course => 'Creating users when in a course',
 4690:        domain => 'Creating users when a Domain Coordinator',
 4691:     );
 4692:     return %context_title;
 4693: }
 4694: 
 4695: sub print_usermodification {
 4696:     my ($position,$dom,$settings,$rowtotal) = @_;
 4697:     my $numinrow = 4;
 4698:     my ($context,$datatable,$rowcount);
 4699:     if ($position eq 'top') {
 4700:         $rowcount = 0;
 4701:         $context = 'author'; 
 4702:         foreach my $role ('ca','aa') {
 4703:             $datatable .= &modifiable_userdata_row($context,$role,$settings,
 4704:                                                    $numinrow,$rowcount);
 4705:             $$rowtotal ++;
 4706:             $rowcount ++;
 4707:         }
 4708:     } elsif ($position eq 'bottom') {
 4709:         $context = 'course';
 4710:         $rowcount = 0;
 4711:         foreach my $role ('st','ep','ta','in','cr') {
 4712:             $datatable .= &modifiable_userdata_row($context,$role,$settings,
 4713:                                                    $numinrow,$rowcount);
 4714:             $$rowtotal ++;
 4715:             $rowcount ++;
 4716:         }
 4717:     }
 4718:     return $datatable;
 4719: }
 4720: 
 4721: sub print_defaults {
 4722:     my ($position,$dom,$settings,$rowtotal) = @_;
 4723:     my $rownum = 0;
 4724:     my ($datatable,$css_class);
 4725:     if ($position eq 'top') {
 4726:         my @items = ('auth_def','auth_arg_def','lang_def','timezone_def',
 4727:                      'datelocale_def','portal_def');
 4728:         my %defaults;
 4729:         if (ref($settings) eq 'HASH') {
 4730:             %defaults = %{$settings};
 4731:         } else {
 4732:             my %domdefaults = &Apache::lonnet::get_domain_defaults($dom,1);
 4733:             foreach my $item (@items) {
 4734:                 $defaults{$item} = $domdefaults{$item};
 4735:             }
 4736:         }
 4737:         my $titles = &defaults_titles($dom);
 4738:         foreach my $item (@items) {
 4739:             if ($rownum%2) {
 4740:                 $css_class = '';
 4741:             } else {
 4742:                 $css_class = ' class="LC_odd_row" ';
 4743:             }
 4744:             $datatable .= '<tr'.$css_class.'>'.
 4745:                           '<td><span class="LC_nobreak">'.$titles->{$item}.
 4746:                           '</span></td><td class="LC_right_item" colspan="3">';
 4747:             if ($item eq 'auth_def') {
 4748:                 my @authtypes = ('internal','krb4','krb5','localauth');
 4749:                 my %shortauth = (
 4750:                                  internal => 'int',
 4751:                                  krb4 => 'krb4',
 4752:                                  krb5 => 'krb5',
 4753:                                  localauth  => 'loc'
 4754:                                 );
 4755:                 my %authnames = &authtype_names();
 4756:                 foreach my $auth (@authtypes) {
 4757:                     my $checked = ' ';
 4758:                     if ($defaults{$item} eq $auth) {
 4759:                         $checked = ' checked="checked" ';
 4760:                     }
 4761:                     $datatable .= '<label><input type="radio" name="'.$item.
 4762:                                   '" value="'.$auth.'"'.$checked.'/>'.
 4763:                                   $authnames{$shortauth{$auth}}.'</label>&nbsp;&nbsp;';
 4764:                 }
 4765:             } elsif ($item eq 'timezone_def') {
 4766:                 my $includeempty = 1;
 4767:                 $datatable .= &Apache::loncommon::select_timezone($item,$defaults{$item},undef,$includeempty);
 4768:             } elsif ($item eq 'datelocale_def') {
 4769:                 my $includeempty = 1;
 4770:                 $datatable .= &Apache::loncommon::select_datelocale($item,$defaults{$item},undef,$includeempty);
 4771:             } elsif ($item eq 'lang_def') {
 4772:                 my $includeempty = 1;
 4773:                 $datatable .= &Apache::loncommon::select_language($item,$defaults{$item},$includeempty);
 4774:             } else {
 4775:                 my $size;
 4776:                 if ($item eq 'portal_def') {
 4777:                     $size = ' size="25"';
 4778:                 }
 4779:                 $datatable .= '<input type="text" name="'.$item.'" value="'.
 4780:                               $defaults{$item}.'"'.$size.' />';
 4781:             }
 4782:             $datatable .= '</td></tr>';
 4783:             $rownum ++;
 4784:         }
 4785:     } else {
 4786:         my (%defaults);
 4787:         if (ref($settings) eq 'HASH') {
 4788:             if ((ref($settings->{'inststatusorder'}) eq 'ARRAY') && (ref($settings->{'inststatustypes'}) eq 'HASH') &&
 4789:                 (ref($settings->{'inststatusguest'}) eq 'ARRAY')) {
 4790:                 my $maxnum = @{$settings->{'inststatusorder'}};
 4791:                 for (my $i=0; $i<$maxnum; $i++) {
 4792:                     $css_class = $rownum%2?' class="LC_odd_row"':'';
 4793:                     my $item = $settings->{'inststatusorder'}->[$i];
 4794:                     my $title = $settings->{'inststatustypes'}->{$item};
 4795:                     my $guestok;
 4796:                     if (grep(/^\Q$item\E$/,@{$settings->{'inststatusguest'}})) {
 4797:                         $guestok = 1;
 4798:                     }
 4799:                     my $chgstr = ' onchange="javascript:reorderTypes(this.form,'."'$item'".');"';
 4800:                     $datatable .= '<tr'.$css_class.'>'.
 4801:                                   '<td><span class="LC_nobreak">'.
 4802:                                   '<select name="inststatus_pos_'.$item.'"'.$chgstr.'>';
 4803:                     for (my $k=0; $k<=$maxnum; $k++) {
 4804:                         my $vpos = $k+1;
 4805:                         my $selstr;
 4806:                         if ($k == $i) {
 4807:                             $selstr = ' selected="selected" ';
 4808:                         }
 4809:                         $datatable .= '<option value="'.$k.'"'.$selstr.'>'.$vpos.'</option>';
 4810:                     }
 4811:                     my ($checkedon,$checkedoff);
 4812:                     $checkedoff = ' checked="checked"';
 4813:                     if ($guestok) {
 4814:                         $checkedon = $checkedoff;
 4815:                         $checkedoff = ''; 
 4816:                     }
 4817:                     $datatable .= '</select>&nbsp;'.&mt('Internal ID:').'&nbsp;<b>'.$item.'</b>&nbsp;'.
 4818:                                   '<input type="checkbox" name="inststatus_delete" value="'.$item.'" />'.
 4819:                                   &mt('delete').'</span></td>'.
 4820:                                   '<td class="LC_left_item"><span class="LC_nobreak">'.&mt('Name displayed:').
 4821:                                   '<input type="text" size="20" name="inststatus_title_'.$item.'" value="'.$title.'" />'.
 4822:                                   '</span></td>'.
 4823:                                   '<td class="LC_right_item"><span class="LC_nobreak">'.
 4824:                                   '<label><input type="radio" value="1" name="inststatus_guest_'.$item.'"'.$checkedon.' />'.
 4825:                                   &mt('Yes').'</label>'.('&nbsp;'x2).
 4826:                                   '<label><input type="radio" value="0" name="inststatus_guest_'.$item.'"'.$checkedoff.' />'.
 4827:                                   &mt('No').'</label></span></td></tr>';
 4828:                 }
 4829:                 $css_class = $rownum%2?' class="LC_odd_row"':'';
 4830:                 my $chgstr = ' onchange="javascript:reorderTypes(this.form,'."'addinststatus_pos'".');"';
 4831:                 $datatable .= '<tr '.$css_class.'>'.
 4832:                               '<td><span class="LC_nobreak"><select name="addinststatus_pos"'.$chgstr.'>';
 4833:                 for (my $k=0; $k<=$maxnum; $k++) {
 4834:                     my $vpos = $k+1;
 4835:                     my $selstr;
 4836:                     if ($k == $maxnum) {
 4837:                         $selstr = ' selected="selected" ';
 4838:                     }
 4839:                     $datatable .= '<option value="'.$k.'"'.$selstr.'>'.$vpos.'</option>';
 4840:                 }
 4841:                 $datatable .= '</select>&nbsp;'.&mt('Internal ID:').
 4842:                               '<input type="text" size="10" name="addinststatus" value="" />'.
 4843:                               '&nbsp;'.&mt('(new)').
 4844:                               '</span></td><td class="LC_left_item"><span class="LC_nobreak">'.
 4845:                               &mt('Name displayed:').
 4846:                               '<input type="text" size="20" name="addinststatus_title" value="" /></span></td>'.
 4847:                               '<td class="LC_right_item"><span class="LC_nobreak">'.
 4848:                               '<label><input type="radio" value="1" name="addinststatus_guest" />'.
 4849:                               &mt('Yes').'</label>'.('&nbsp;'x2).
 4850:                               '<label><input type="radio" value="0" name="addinststatus_guest" />'.
 4851:                               &mt('No').'</label></span></td></tr>';
 4852:                               '</tr>'."\n";
 4853:                 $rownum ++;
 4854:             }
 4855:         }
 4856:     }
 4857:     $$rowtotal += $rownum;
 4858:     return $datatable;
 4859: }
 4860: 
 4861: sub get_languages_hash {
 4862:     my %langchoices;
 4863:     foreach my $id (&Apache::loncommon::languageids()) {
 4864:         my $code = &Apache::loncommon::supportedlanguagecode($id);
 4865:         if ($code ne '') {
 4866:             $langchoices{$code} =  &Apache::loncommon::plainlanguagedescription($id);
 4867:         }
 4868:     }
 4869:     return %langchoices;
 4870: }
 4871: 
 4872: sub defaults_titles {
 4873:     my ($dom) = @_;
 4874:     my %titles = &Apache::lonlocal::texthash (
 4875:                    'auth_def'      => 'Default authentication type',
 4876:                    'auth_arg_def'  => 'Default authentication argument',
 4877:                    'lang_def'      => 'Default language',
 4878:                    'timezone_def'  => 'Default timezone',
 4879:                    'datelocale_def' => 'Default locale for dates',
 4880:                    'portal_def'     => 'Portal/Default URL',
 4881:                  );
 4882:     if ($dom) {
 4883:         my $uprimary_id = &Apache::lonnet::domain($dom,'primary');
 4884:         my $uint_dom = &Apache::lonnet::internet_dom($uprimary_id);
 4885:         my $protocol = $Apache::lonnet::protocol{$uprimary_id};
 4886:         $protocol = 'http' if ($protocol ne 'https');
 4887:         if ($uint_dom) {
 4888:             $titles{'portal_def'} .= ' '.&mt('(for example: [_1])',$protocol.'://loncapa.'.
 4889:                                          $uint_dom);
 4890:         }
 4891:     }
 4892:     return (\%titles);
 4893: }
 4894: 
 4895: sub print_scantronformat {
 4896:     my ($r,$dom,$confname,$settings,$rowtotal) = @_;
 4897:     my $itemcount = 1;
 4898:     my ($datatable,$css_class,$scantronurl,$is_custom,%error,%scantronurls,
 4899:         %confhash);
 4900:     my $switchserver = &check_switchserver($dom,$confname);
 4901:     my %lt = &Apache::lonlocal::texthash (
 4902:                 default => 'Default bubblesheet format file error',
 4903:                 custom  => 'Custom bubblesheet format file error',
 4904:              );
 4905:     my %scantronfiles = (
 4906:         default => 'default.tab',
 4907:         custom => 'custom.tab',
 4908:     );
 4909:     foreach my $key (keys(%scantronfiles)) {
 4910:         $scantronurls{$key} = '/res/'.$dom.'/'.$confname.'/scantron/'
 4911:                               .$scantronfiles{$key};
 4912:     }
 4913:     my @defaultinfo = &Apache::lonnet::stat_file($scantronurls{'default'});
 4914:     if ((!@defaultinfo) || ($defaultinfo[0] eq 'no_such_dir')) {
 4915:         if (!$switchserver) {
 4916:             my $servadm = $r->dir_config('lonAdmEMail');
 4917:             my ($configuserok,$author_ok) = &config_check($dom,$confname,$servadm);
 4918:             if ($configuserok eq 'ok') {
 4919:                 if ($author_ok eq 'ok') {
 4920:                     my %legacyfile = (
 4921:  default => $Apache::lonnet::perlvar{'lonTabDir'}.'/default_scantronformat.tab', 
 4922:  custom  => $Apache::lonnet::perlvar{'lonTabDir'}.'/scantronformat.tab', 
 4923:                     );
 4924:                     my %md5chk;
 4925:                     foreach my $type (keys(%legacyfile)) {
 4926:                         ($md5chk{$type}) = split(/ /,`md5sum $legacyfile{$type}`);
 4927:                         chomp($md5chk{$type});
 4928:                     }
 4929:                     if ($md5chk{'default'} ne $md5chk{'custom'}) {
 4930:                         foreach my $type (keys(%legacyfile)) {
 4931:                             ($scantronurls{$type},my $error) = 
 4932:                                 &legacy_scantronformat($r,$dom,$confname,
 4933:                                                  $type,$legacyfile{$type},
 4934:                                                  $scantronurls{$type},
 4935:                                                  $scantronfiles{$type});
 4936:                             if ($error ne '') {
 4937:                                 $error{$type} = $error;
 4938:                             }
 4939:                         }
 4940:                         if (keys(%error) == 0) {
 4941:                             $is_custom = 1;
 4942:                             $confhash{'scantron'}{'scantronformat'} = 
 4943:                                 $scantronurls{'custom'};
 4944:                             my $putresult = 
 4945:                                 &Apache::lonnet::put_dom('configuration',
 4946:                                                          \%confhash,$dom);
 4947:                             if ($putresult ne 'ok') {
 4948:                                 $error{'custom'} = 
 4949:                                     '<span class="LC_error">'.
 4950:                                     &mt('An error occurred updating the domain configuration: [_1]',$putresult).'</span>';
 4951:                             }
 4952:                         }
 4953:                     } else {
 4954:                         ($scantronurls{'default'},my $error) =
 4955:                             &legacy_scantronformat($r,$dom,$confname,
 4956:                                           'default',$legacyfile{'default'},
 4957:                                           $scantronurls{'default'},
 4958:                                           $scantronfiles{'default'});
 4959:                         if ($error eq '') {
 4960:                             $confhash{'scantron'}{'scantronformat'} = ''; 
 4961:                             my $putresult =
 4962:                                 &Apache::lonnet::put_dom('configuration',
 4963:                                                          \%confhash,$dom);
 4964:                             if ($putresult ne 'ok') {
 4965:                                 $error{'default'} =
 4966:                                     '<span class="LC_error">'.
 4967:                                     &mt('An error occurred updating the domain configuration: [_1]',$putresult).'</span>';
 4968:                             }
 4969:                         } else {
 4970:                             $error{'default'} = $error;
 4971:                         }
 4972:                     }
 4973:                 }
 4974:             }
 4975:         } else {
 4976:             $error{'default'} = &mt("Unable to copy default bubblesheet formatfile to domain's RES space: [_1]",$switchserver);
 4977:         }
 4978:     }
 4979:     if (ref($settings) eq 'HASH') {
 4980:         if ($settings->{'scantronformat'} eq "/res/$dom/$confname/scantron/custom.tab") {
 4981:             my @info = &Apache::lonnet::stat_file($settings->{'scantronformat'});
 4982:             if ((!@info) || ($info[0] eq 'no_such_dir')) {
 4983:                 $scantronurl = '';
 4984:             } else {
 4985:                 $scantronurl = $settings->{'scantronformat'};
 4986:             }
 4987:             $is_custom = 1;
 4988:         } else {
 4989:             $scantronurl = $scantronurls{'default'};
 4990:         }
 4991:     } else {
 4992:         if ($is_custom) {
 4993:             $scantronurl = $scantronurls{'custom'};
 4994:         } else {
 4995:             $scantronurl = $scantronurls{'default'};
 4996:         }
 4997:     }
 4998:     $css_class = $itemcount%2?' class="LC_odd_row"':'';
 4999:     $datatable .= '<tr'.$css_class.'>';
 5000:     if (!$is_custom) {
 5001:         $datatable .= '<td>'.&mt('Default in use:').'<br />'.
 5002:                       '<span class="LC_nobreak">';
 5003:         if ($scantronurl) {
 5004:             $datatable .= &Apache::loncommon::modal_link($scantronurl,&mt('Default bubblesheet format file'),600,500,
 5005:                                                          undef,undef,undef,undef,'background-color:#ffffff');
 5006:         } else {
 5007:             $datatable = &mt('File unavailable for display');
 5008:         }
 5009:         $datatable .= '</span></td>';
 5010:         if (keys(%error) == 0) { 
 5011:             $datatable .= '<td valign="bottom">';
 5012:             if (!$switchserver) {
 5013:                 $datatable .= &mt('Upload:').'<br />';
 5014:             }
 5015:         } else {
 5016:             my $errorstr;
 5017:             foreach my $key (sort(keys(%error))) {
 5018:                 $errorstr .= $lt{$key}.': '.$error{$key}.'<br />';
 5019:             }
 5020:             $datatable .= '<td>'.$errorstr;
 5021:         }
 5022:     } else {
 5023:         if (keys(%error) > 0) {
 5024:             my $errorstr;
 5025:             foreach my $key (sort(keys(%error))) {
 5026:                 $errorstr .= $lt{$key}.': '.$error{$key}.'<br />';
 5027:             } 
 5028:             $datatable .= '<td>'.$errorstr.'</td><td>&nbsp;';
 5029:         } elsif ($scantronurl) {
 5030:             my $link =  &Apache::loncommon::modal_link($scantronurl,&mt('Custom bubblesheet format file'),600,500,
 5031:                                                        undef,undef,undef,undef,'background-color:#ffffff');
 5032:             $datatable .= '<td><span class="LC_nobreak">'.
 5033:                           $link.
 5034:                           '<label><input type="checkbox" name="scantronformat_del"'.
 5035:                           ' value="1" />'.&mt('Delete?').'</label></span></td>'.
 5036:                           '<td><span class="LC_nobreak">&nbsp;'.
 5037:                           &mt('Replace:').'</span><br />';
 5038:         }
 5039:     }
 5040:     if (keys(%error) == 0) {
 5041:         if ($switchserver) {
 5042:             $datatable .= &mt('Upload to library server: [_1]',$switchserver);
 5043:         } else {
 5044:             $datatable .='<span class="LC_nobreak">&nbsp;'.
 5045:                          '<input type="file" name="scantronformat" /></span>';
 5046:         }
 5047:     }
 5048:     $datatable .= '</td></tr>';
 5049:     $$rowtotal ++;
 5050:     return $datatable;
 5051: }
 5052: 
 5053: sub legacy_scantronformat {
 5054:     my ($r,$dom,$confname,$file,$legacyfile,$newurl,$newfile) = @_;
 5055:     my ($url,$error);
 5056:     my @statinfo = &Apache::lonnet::stat_file($newurl);
 5057:     if ((!@statinfo) || ($statinfo[0] eq 'no_such_dir')) {
 5058:         (my $result,$url) =
 5059:             &publishlogo($r,'copy',$legacyfile,$dom,$confname,'scantron',
 5060:                          '','',$newfile);
 5061:         if ($result ne 'ok') {
 5062:             $error = &mt("An error occurred publishing the [_1] bubblesheet format file in RES space. Error was: [_2].",$newfile,$result);
 5063:         }
 5064:     }
 5065:     return ($url,$error);
 5066: }
 5067: 
 5068: sub print_coursecategories {
 5069:     my ($position,$dom,$hdritem,$settings,$rowtotal) = @_;
 5070:     my $datatable;
 5071:     if ($position eq 'top') {
 5072:         my (%checked);
 5073:         my @catitems = ('unauth','auth');
 5074:         my @cattypes = ('std','domonly','codesrch','none');
 5075:         $checked{'unauth'} = 'std';
 5076:         $checked{'auth'} = 'std';
 5077:         if (ref($settings) eq 'HASH') {
 5078:             foreach my $type (@cattypes) {
 5079:                 if ($type eq $settings->{'unauth'}) {
 5080:                     $checked{'unauth'} = $type;
 5081:                 }
 5082:                 if ($type eq $settings->{'auth'}) {
 5083:                     $checked{'auth'} = $type;
 5084:                 }
 5085:             }
 5086:         }
 5087:         my %lt = &Apache::lonlocal::texthash (
 5088:                                                unauth   => 'Catalog type for unauthenticated users',
 5089:                                                auth     => 'Catalog type for authenticated users',
 5090:                                                none     => 'No catalog',
 5091:                                                std      => 'Standard catalog',
 5092:                                                domonly  => 'Domain-only catalog',
 5093:                                                codesrch => "Code search form",
 5094:                                              );
 5095:        my $itemcount = 0;
 5096:        foreach my $item (@catitems) {
 5097:            my $css_class = $itemcount%2? ' class="LC_odd_row"':'';
 5098:            $datatable .= '<tr '.$css_class.'>'.
 5099:                          '<td>'.$lt{$item}.'</td>'.
 5100:                          '<td class="LC_right_item"><span class="LC_nobreak">';
 5101:            foreach my $type (@cattypes) {
 5102:                my $ischecked;
 5103:                if ($checked{$item} eq $type) {
 5104:                    $ischecked=' checked="checked"';
 5105:                }
 5106:                $datatable .= '<label>'.
 5107:                              '<input type="radio" name="coursecat_'.$item.'" value="'.$type.'"'.$ischecked.
 5108:                              ' />'.$lt{$type}.'</label>&nbsp;';
 5109:            }
 5110:            $datatable .= '</td></tr>';
 5111:            $itemcount ++;
 5112:         }
 5113:         $$rowtotal += $itemcount;
 5114:     } elsif ($position eq 'middle') {
 5115:         my $toggle_cats_crs = ' ';
 5116:         my $toggle_cats_dom = ' checked="checked" ';
 5117:         my $can_cat_crs = ' ';
 5118:         my $can_cat_dom = ' checked="checked" ';
 5119:         my $toggle_catscomm_comm = ' ';
 5120:         my $toggle_catscomm_dom = ' checked="checked" ';
 5121:         my $can_catcomm_comm = ' ';
 5122:         my $can_catcomm_dom = ' checked="checked" ';
 5123: 
 5124:         if (ref($settings) eq 'HASH') {
 5125:             if ($settings->{'togglecats'} eq 'crs') {
 5126:                 $toggle_cats_crs = $toggle_cats_dom;
 5127:                 $toggle_cats_dom = ' ';
 5128:             }
 5129:             if ($settings->{'categorize'} eq 'crs') {
 5130:                 $can_cat_crs = $can_cat_dom;
 5131:                 $can_cat_dom = ' ';
 5132:             }
 5133:             if ($settings->{'togglecatscomm'} eq 'comm') {
 5134:                 $toggle_catscomm_comm = $toggle_catscomm_dom;
 5135:                 $toggle_catscomm_dom = ' ';
 5136:             }
 5137:             if ($settings->{'categorizecomm'} eq 'comm') {
 5138:                 $can_catcomm_comm = $can_catcomm_dom;
 5139:                 $can_catcomm_dom = ' ';
 5140:             }
 5141:         }
 5142:         my %title = &Apache::lonlocal::texthash (
 5143:                      togglecats     => 'Show/Hide a course in catalog',
 5144:                      togglecatscomm => 'Show/Hide a community in catalog',
 5145:                      categorize     => 'Assign a category to a course',
 5146:                      categorizecomm => 'Assign a category to a community',
 5147:                     );
 5148:         my %level = &Apache::lonlocal::texthash (
 5149:                      dom  => 'Set in Domain',
 5150:                      crs  => 'Set in Course',
 5151:                      comm => 'Set in Community',
 5152:                     );
 5153:         $datatable = '<tr class="LC_odd_row">'.
 5154:                   '<td>'.$title{'togglecats'}.'</td>'.
 5155:                   '<td class="LC_right_item"><span class="LC_nobreak"><label>'.
 5156:                   '<input type="radio" name="togglecats"'.
 5157:                   $toggle_cats_dom.' value="dom" />'.$level{'dom'}.'</label>&nbsp;'.
 5158:                   '<label><input type="radio" name="togglecats"'.
 5159:                   $toggle_cats_crs.' value="crs" />'.$level{'crs'}.'</label></span></td>'.
 5160:                   '</tr><tr>'.
 5161:                   '<td>'.$title{'categorize'}.'</td>'.
 5162:                   '<td class="LC_right_item"><span class="LC_nobreak">'.
 5163:                   '<label><input type="radio" name="categorize"'.
 5164:                   $can_cat_dom.' value="dom" />'.$level{'dom'}.'</label>&nbsp;'.
 5165:                   '<label><input type="radio" name="categorize"'.
 5166:                   $can_cat_crs.'value="crs" />'.$level{'crs'}.'</label></span></td>'.
 5167:                   '</tr><tr class="LC_odd_row">'.
 5168:                   '<td>'.$title{'togglecatscomm'}.'</td>'.
 5169:                   '<td class="LC_right_item"><span class="LC_nobreak"><label>'.
 5170:                   '<input type="radio" name="togglecatscomm"'.
 5171:                   $toggle_catscomm_dom.' value="dom" />'.$level{'dom'}.'</label>&nbsp;'.
 5172:                   '<label><input type="radio" name="togglecatscomm"'.
 5173:                   $toggle_catscomm_comm.' value="comm" />'.$level{'comm'}.'</label></span></td>'.
 5174:                   '</tr><tr>'.
 5175:                   '<td>'.$title{'categorizecomm'}.'</td>'.
 5176:                   '<td class="LC_right_item"><span class="LC_nobreak">'.
 5177:                   '<label><input type="radio" name="categorizecomm"'.
 5178:                   $can_catcomm_dom.' value="dom" />'.$level{'dom'}.'</label>&nbsp;'.
 5179:                   '<label><input type="radio" name="categorizecomm"'.
 5180:                   $can_catcomm_comm.'value="comm" />'.$level{'comm'}.'</label></span></td>'.
 5181:                   '</tr>';
 5182:         $$rowtotal += 4;
 5183:     } else {
 5184:         my $css_class;
 5185:         my $itemcount = 1;
 5186:         my $cathash; 
 5187:         if (ref($settings) eq 'HASH') {
 5188:             $cathash = $settings->{'cats'};
 5189:         }
 5190:         if (ref($cathash) eq 'HASH') {
 5191:             my (@cats,@trails,%allitems,%idx,@jsarray);
 5192:             &Apache::loncommon::extract_categories($cathash,\@cats,\@trails,
 5193:                                                    \%allitems,\%idx,\@jsarray);
 5194:             my $maxdepth = scalar(@cats);
 5195:             my $colattrib = '';
 5196:             if ($maxdepth > 2) {
 5197:                 $colattrib = ' colspan="2" ';
 5198:             }
 5199:             my @path;
 5200:             if (@cats > 0) {
 5201:                 if (ref($cats[0]) eq 'ARRAY') {
 5202:                     my $numtop = @{$cats[0]};
 5203:                     my $maxnum = $numtop;
 5204:                     my %default_names = (
 5205:                           instcode    => &mt('Official courses'),
 5206:                           communities => &mt('Communities'),
 5207:                     );
 5208: 
 5209:                     if ((!grep(/^instcode$/,@{$cats[0]})) || 
 5210:                         ($cathash->{'instcode::0'} eq '') ||
 5211:                         (!grep(/^communities$/,@{$cats[0]})) || 
 5212:                         ($cathash->{'communities::0'} eq '')) {
 5213:                         $maxnum ++;
 5214:                     }
 5215:                     my $lastidx;
 5216:                     for (my $i=0; $i<$numtop; $i++) {
 5217:                         my $parent = $cats[0][$i];
 5218:                         $css_class = $itemcount%2?' class="LC_odd_row"':'';
 5219:                         my $item = &escape($parent).'::0';
 5220:                         my $chgstr = ' onchange="javascript:reorderCats(this.form,'."'','$item','$idx{$item}'".');"';
 5221:                         $lastidx = $idx{$item};
 5222:                         $datatable .= '<tr '.$css_class.'><td><span class="LC_nobreak">'
 5223:                                       .'<select name="'.$item.'"'.$chgstr.'>';
 5224:                         for (my $k=0; $k<=$maxnum; $k++) {
 5225:                             my $vpos = $k+1;
 5226:                             my $selstr;
 5227:                             if ($k == $i) {
 5228:                                 $selstr = ' selected="selected" ';
 5229:                             }
 5230:                             $datatable .= '<option value="'.$k.'"'.$selstr.'>'.$vpos.'</option>';
 5231:                         }
 5232:                         $datatable .= '</select></span></td><td>';
 5233:                         if ($parent eq 'instcode' || $parent eq 'communities') {
 5234:                             $datatable .=  '<span class="LC_nobreak">'
 5235:                                            .$default_names{$parent}.'</span>';
 5236:                             if ($parent eq 'instcode') {
 5237:                                 $datatable .= '<br /><span class="LC_nobreak">('
 5238:                                               .&mt('with institutional codes')
 5239:                                               .')</span></td><td'.$colattrib.'>';
 5240:                             } else {
 5241:                                 $datatable .= '<table><tr><td>';
 5242:                             }
 5243:                             $datatable .= '<span class="LC_nobreak">'
 5244:                                           .'<label><input type="radio" name="'
 5245:                                           .$parent.'" value="1" checked="checked" />'
 5246:                                           .&mt('Display').'</label>';
 5247:                             if ($parent eq 'instcode') {
 5248:                                 $datatable .= '&nbsp;';
 5249:                             } else {
 5250:                                 $datatable .= '</span></td></tr><tr><td>'
 5251:                                               .'<span class="LC_nobreak">';
 5252:                             }
 5253:                             $datatable .= '<label><input type="radio" name="'
 5254:                                           .$parent.'" value="0" />'
 5255:                                           .&mt('Do not display').'</label></span>';
 5256:                             if ($parent eq 'communities') {
 5257:                                 $datatable .= '</td></tr></table>';
 5258:                             }
 5259:                             $datatable .= '</td>';
 5260:                         } else {
 5261:                             $datatable .= $parent
 5262:                                           .'&nbsp;<span class="LC_nobreak"><label>'
 5263:                                           .'<input type="checkbox" name="deletecategory" '
 5264:                                           .'value="'.$item.'" />'.&mt('Delete').'</label></span></td>';
 5265:                         }
 5266:                         my $depth = 1;
 5267:                         push(@path,$parent);
 5268:                         $datatable .= &build_category_rows($itemcount,\@cats,$depth,$parent,\@path,\%idx);
 5269:                         pop(@path);
 5270:                         $datatable .= '</tr><tr><td colspan="'.$maxdepth.'" class="LC_row_separator"></td></tr>';
 5271:                         $itemcount ++;
 5272:                     }
 5273:                     $css_class = $itemcount%2?' class="LC_odd_row"':'';
 5274:                     my $chgstr = ' onchange="javascript:reorderCats(this.form,'."'','addcategory_pos','$lastidx'".');"';
 5275:                     $datatable .= '<tr '.$css_class.'><td><span class="LC_nobreak"><select name="addcategory_pos"'.$chgstr.'>';
 5276:                     for (my $k=0; $k<=$maxnum; $k++) {
 5277:                         my $vpos = $k+1;
 5278:                         my $selstr;
 5279:                         if ($k == $numtop) {
 5280:                             $selstr = ' selected="selected" ';
 5281:                         }
 5282:                         $datatable .= '<option value="'.$k.'"'.$selstr.'>'.$vpos.'</option>';
 5283:                     }
 5284:                     $datatable .= '</select></span></td><td colspan="2">'.&mt('Add category:').'&nbsp;'
 5285:                                   .'<input type="text" size="20" name="addcategory_name" value="" /></td>'
 5286:                                   .'</tr>'."\n";
 5287:                     $itemcount ++;
 5288:                     foreach my $default ('instcode','communities') {
 5289:                         if ((!grep(/^\Q$default\E$/,@{$cats[0]})) || ($cathash->{$default.'::0'} eq '')) {
 5290:                             $css_class = $itemcount%2?' class="LC_odd_row"':'';
 5291:                             my $chgstr = ' onchange="javascript:reorderCats(this.form,'."'','$default"."_pos','$lastidx'".');"';
 5292:                             $datatable .= '<tr><td colspan="'.$maxdepth.'" class="LC_row_separator"></td></tr><tr '.$css_class.'><td>'.
 5293:                                           '<span class="LC_nobreak"><select name="'.$default.'_pos"'.$chgstr.'>';
 5294:                             for (my $k=0; $k<=$maxnum; $k++) {
 5295:                                 my $vpos = $k+1;
 5296:                                 my $selstr;
 5297:                                 if ($k == $maxnum) {
 5298:                                     $selstr = ' selected="selected" ';
 5299:                                 }
 5300:                                 $datatable .= '<option value="'.$k.'"'.$selstr.'>'.$vpos.'</option>';
 5301:                             }
 5302:                             $datatable .= '</select></span></td>'.
 5303:                                           '<td><span class="LC_nobreak">'.
 5304:                                           $default_names{$default}.'</span>';
 5305:                             if ($default eq 'instcode') {
 5306:                                 $datatable .= '<br /><span class="LC_nobreak">(' 
 5307:                                               .&mt('with institutional codes').')</span>';
 5308:                             }
 5309:                             $datatable .= '</td>'
 5310:                                           .'<td><span class="LC_nobreak"><label><input type="radio" name="'.$default.'" value="1" />'
 5311:                                           .&mt('Display').'</label>&nbsp;'
 5312:                                           .'<label><input type="radio" name="'.$default.'" value="0" checked="checked"/>'
 5313:                                           .&mt('Do not display').'</label></span></td></tr>';
 5314:                         }
 5315:                     }
 5316:                 }
 5317:             } else {
 5318:                 $datatable .= &initialize_categories($itemcount);
 5319:             }
 5320:         } else {
 5321:             $datatable .= '<td class="LC_right_item">'.$hdritem->{'header'}->[1]->{'col2'}.'</td>'
 5322:                           .&initialize_categories($itemcount);
 5323:         }
 5324:         $$rowtotal += $itemcount;
 5325:     }
 5326:     return $datatable;
 5327: }
 5328: 
 5329: sub print_serverstatuses {
 5330:     my ($dom,$settings,$rowtotal) = @_;
 5331:     my $datatable;
 5332:     my @pages = &serverstatus_pages();
 5333:     my (%namedaccess,%machineaccess);
 5334:     foreach my $type (@pages) {
 5335:         $namedaccess{$type} = '';
 5336:         $machineaccess{$type}= '';
 5337:     }
 5338:     if (ref($settings) eq 'HASH') {
 5339:         foreach my $type (@pages) {
 5340:             if (exists($settings->{$type})) {
 5341:                 if (ref($settings->{$type}) eq 'HASH') {
 5342:                     foreach my $key (keys(%{$settings->{$type}})) {
 5343:                         if ($key eq 'namedusers') {
 5344:                             $namedaccess{$type} = $settings->{$type}->{$key};
 5345:                         } elsif ($key eq 'machines') {
 5346:                             $machineaccess{$type} = $settings->{$type}->{$key};
 5347:                         }
 5348:                     }
 5349:                 }
 5350:             }
 5351:         }
 5352:     }
 5353:     my $titles= &LONCAPA::lonauthcgi::serverstatus_titles();
 5354:     my $rownum = 0;
 5355:     my $css_class;
 5356:     foreach my $type (@pages) {
 5357:         $rownum ++;
 5358:         $css_class = $rownum%2?' class="LC_odd_row"':'';
 5359:         $datatable .= '<tr'.$css_class.'>'.
 5360:                       '<td><span class="LC_nobreak">'.
 5361:                       $titles->{$type}.'</span></td>'.
 5362:                       '<td class="LC_left_item">'.
 5363:                       '<input type="text" name="'.$type.'_namedusers" '.
 5364:                       'value="'.$namedaccess{$type}.'" size="30" /></td>'.
 5365:                       '<td class="LC_right_item">'.
 5366:                       '<span class="LC_nobreak">'.
 5367:                       '<input type="text" name="'.$type.'_machines" '.
 5368:                       'value="'.$machineaccess{$type}.'" size="10" />'.
 5369:                       '</td></tr>'."\n";
 5370:     }
 5371:     $$rowtotal += $rownum;
 5372:     return $datatable;
 5373: }
 5374: 
 5375: sub serverstatus_pages {
 5376:     return ('userstatus','lonstatus','loncron','server-status','codeversions',
 5377:             'checksums','clusterstatus','metadata_keywords','metadata_harvest',
 5378:             'takeoffline','takeonline','showenv','toggledebug','ping','domconf',
 5379:             'uniquecodes','diskusage','coursecatalog');
 5380: }
 5381: 
 5382: sub defaults_javascript {
 5383:     my ($settings) = @_;
 5384:     return unless (ref($settings) eq 'HASH');
 5385:     if ((ref($settings->{'inststatusorder'}) eq 'ARRAY') && (ref($settings->{'inststatustypes'}) eq 'HASH')) {
 5386:         my $maxnum = scalar(@{$settings->{'inststatusorder'}});
 5387:         if ($maxnum eq '') {
 5388:             $maxnum = 0;
 5389:         }
 5390:         $maxnum ++;
 5391:         my $jstext = '    var inststatuses = Array('."'".join("','",@{$settings->{'inststatusorder'}})."'".');';  
 5392:         return <<"ENDSCRIPT";
 5393: <script type="text/javascript">
 5394: // <![CDATA[
 5395: function reorderTypes(form,caller) {
 5396:     var changedVal;
 5397: $jstext 
 5398:     var newpos = 'addinststatus_pos';
 5399:     var current = new Array;
 5400:     var maxh = $maxnum;
 5401:     var newitemVal = form.elements[newpos].options[form.elements[newpos].selectedIndex].value;
 5402:     var oldVal;
 5403:     if (caller == newpos) {
 5404:         changedVal = newitemVal;
 5405:     } else {
 5406:         var curritem = 'inststatus_pos_'+caller;
 5407:         changedVal = form.elements[curritem].options[form.elements[curritem].selectedIndex].value;
 5408:         current[newitemVal] = newpos;
 5409:     }
 5410:     for (var i=0; i<inststatuses.length; i++) {
 5411:         if (inststatuses[i] != caller) {
 5412:             var elementName = 'inststatus_pos_'+inststatuses[i];
 5413:             if (form.elements[elementName]) {
 5414:                 var currVal = form.elements[elementName].options[form.elements[elementName].selectedIndex].value;
 5415:                 current[currVal] = elementName;
 5416:             }
 5417:         }
 5418:     }
 5419:     for (var j=0; j<maxh; j++) {
 5420:         if (current[j] == undefined) {
 5421:             oldVal = j;
 5422:         }
 5423:     }
 5424:     if (oldVal < changedVal) {
 5425:         for (var k=oldVal+1; k<=changedVal ; k++) {
 5426:            var elementName = current[k];
 5427:            form.elements[elementName].selectedIndex = form.elements[elementName].selectedIndex - 1;
 5428:         }
 5429:     } else {
 5430:         for (var k=changedVal; k<oldVal; k++) {
 5431:             var elementName = current[k];
 5432:             form.elements[elementName].selectedIndex = form.elements[elementName].selectedIndex + 1;
 5433:         }
 5434:     }
 5435:     return;
 5436: }
 5437: 
 5438: // ]]>
 5439: </script>
 5440: 
 5441: ENDSCRIPT
 5442:     }
 5443: }
 5444: 
 5445: sub coursecategories_javascript {
 5446:     my ($settings) = @_;
 5447:     my ($output,$jstext,$cathash);
 5448:     if (ref($settings) eq 'HASH') {
 5449:         $cathash = $settings->{'cats'};
 5450:     }
 5451:     if (ref($cathash) eq 'HASH') {
 5452:         my (@cats,@jsarray,%idx);
 5453:         &Apache::loncommon::gather_categories($cathash,\@cats,\%idx,\@jsarray);
 5454:         if (@jsarray > 0) {
 5455:             $jstext = '    var categories = Array('.scalar(@jsarray).');'."\n";
 5456:             for (my $i=0; $i<@jsarray; $i++) {
 5457:                 if (ref($jsarray[$i]) eq 'ARRAY') {
 5458:                     my $catstr = join('","',@{$jsarray[$i]});
 5459:                     $jstext .= '    categories['.$i.'] = Array("'.$catstr.'");'."\n";
 5460:                 }
 5461:             }
 5462:         }
 5463:     } else {
 5464:         $jstext  = '    var categories = Array(1);'."\n".
 5465:                    '    categories[0] = Array("instcode_pos");'."\n"; 
 5466:     }
 5467:     my $instcode_reserved = &mt('The name: [_1] is a reserved category.','"instcode"');
 5468:     my $communities_reserved = &mt('The name: [_1] is a reserved category.','"communities"');
 5469:     my $choose_again = '\\n'.&mt('Please use a different name for the new top level category.'); 
 5470:     $output = <<"ENDSCRIPT";
 5471: <script type="text/javascript">
 5472: // <![CDATA[
 5473: function reorderCats(form,parent,item,idx) {
 5474:     var changedVal;
 5475: $jstext
 5476:     var newpos = 'addcategory_pos';
 5477:     if (parent == '') {
 5478:         var has_instcode = 0;
 5479:         var maxtop = categories[idx].length;
 5480:         for (var j=0; j<maxtop; j++) {
 5481:             if (categories[idx][j] == 'instcode::0') {
 5482:                 has_instcode == 1;
 5483:             }
 5484:         }
 5485:         if (has_instcode == 0) {
 5486:             categories[idx][maxtop] = 'instcode_pos';
 5487:         }
 5488:     } else {
 5489:         newpos += '_'+parent;
 5490:     }
 5491:     var maxh = 1 + categories[idx].length;
 5492:     var current = new Array;
 5493:     var newitemVal = form.elements[newpos].options[form.elements[newpos].selectedIndex].value;
 5494:     if (item == newpos) {
 5495:         changedVal = newitemVal;
 5496:     } else {
 5497:         changedVal = form.elements[item].options[form.elements[item].selectedIndex].value;
 5498:         current[newitemVal] = newpos;
 5499:     }
 5500:     for (var i=0; i<categories[idx].length; i++) {
 5501:         var elementName = categories[idx][i];
 5502:         if (elementName != item) {
 5503:             if (form.elements[elementName]) {
 5504:                 var currVal = form.elements[elementName].options[form.elements[elementName].selectedIndex].value;
 5505:                 current[currVal] = elementName;
 5506:             }
 5507:         }
 5508:     }
 5509:     var oldVal;
 5510:     for (var j=0; j<maxh; j++) {
 5511:         if (current[j] == undefined) {
 5512:             oldVal = j;
 5513:         }
 5514:     }
 5515:     if (oldVal < changedVal) {
 5516:         for (var k=oldVal+1; k<=changedVal ; k++) {
 5517:            var elementName = current[k];
 5518:            form.elements[elementName].selectedIndex = form.elements[elementName].selectedIndex - 1;
 5519:         }
 5520:     } else {
 5521:         for (var k=changedVal; k<oldVal; k++) {
 5522:             var elementName = current[k];
 5523:             form.elements[elementName].selectedIndex = form.elements[elementName].selectedIndex + 1;
 5524:         }
 5525:     }
 5526:     return;
 5527: }
 5528: 
 5529: function categoryCheck(form) {
 5530:     if (form.elements['addcategory_name'].value == 'instcode') {
 5531:         alert('$instcode_reserved\\n$choose_again');
 5532:         return false;
 5533:     }
 5534:     if (form.elements['addcategory_name'].value == 'communities') {
 5535:         alert('$communities_reserved\\n$choose_again');
 5536:         return false;
 5537:     }
 5538:     return true;
 5539: }
 5540: 
 5541: // ]]>
 5542: </script>
 5543: 
 5544: ENDSCRIPT
 5545:     return $output;
 5546: }
 5547: 
 5548: sub initialize_categories {
 5549:     my ($itemcount) = @_;
 5550:     my ($datatable,$css_class,$chgstr);
 5551:     my %default_names = (
 5552:                       instcode    => 'Official courses (with institutional codes)',
 5553:                       communities => 'Communities',
 5554:                         );
 5555:     my $select0 = ' selected="selected"';
 5556:     my $select1 = '';
 5557:     foreach my $default ('instcode','communities') {
 5558:         $css_class = $itemcount%2?' class="LC_odd_row"':'';
 5559:         $chgstr = ' onchange="javascript:reorderCats(this.form,'."'',$default"."_pos','0'".');"';
 5560:         if ($default eq 'communities') {
 5561:             $select1 = $select0;
 5562:             $select0 = '';
 5563:         }
 5564:         $datatable .= '<tr '.$css_class.'><td><span class="LC_nobreak">'
 5565:                      .'<select name="'.$default.'_pos">'
 5566:                      .'<option value="0"'.$select0.'>1</option>'
 5567:                      .'<option value="1"'.$select1.'>2</option>'
 5568:                      .'<option value="2">3</option></select>&nbsp;'
 5569:                      .$default_names{$default}
 5570:                      .'</span></td><td><span class="LC_nobreak">'
 5571:                      .'<label><input type="radio" name="'.$default.'" value="1" checked="checked" />'
 5572:                      .&mt('Display').'</label>&nbsp;<label>'
 5573:                      .'<input type="radio" name="'.$default.'" value="0" />'.&mt('Do not display')
 5574:                  .'</label></span></td></tr>';
 5575:         $itemcount ++;
 5576:     }
 5577:     $css_class = $itemcount%2?' class="LC_odd_row"':'';
 5578:     $chgstr = ' onchange="javascript:reorderCats(this.form,'."'','addcategory_pos','0'".');"';
 5579:     $datatable .= '<tr '.$css_class.'><td><span class="LC_nobreak">'
 5580:                   .'<select name="addcategory_pos"'.$chgstr.'>'
 5581:                   .'<option value="0">1</option>'
 5582:                   .'<option value="1">2</option>'
 5583:                   .'<option value="2" selected="selected">3</option></select>&nbsp;'
 5584:                   .&mt('Add category').'</td><td>'.&mt('Name:')
 5585:                   .'&nbsp;<input type="text" size="20" name="addcategory_name" value="" /></td></tr>';
 5586:     return $datatable;
 5587: }
 5588: 
 5589: sub build_category_rows {
 5590:     my ($itemcount,$cats,$depth,$parent,$path,$idx) = @_;
 5591:     my ($text,$name,$item,$chgstr);
 5592:     if (ref($cats) eq 'ARRAY') {
 5593:         my $maxdepth = scalar(@{$cats});
 5594:         if (ref($cats->[$depth]) eq 'HASH') {
 5595:             if (ref($cats->[$depth]{$parent}) eq 'ARRAY') {
 5596:                 my $numchildren = @{$cats->[$depth]{$parent}};
 5597:                 my $css_class = $itemcount%2?' class="LC_odd_row"':'';
 5598:                 $text .= '<td><table class="LC_data_table">';
 5599:                 my ($idxnum,$parent_name,$parent_item);
 5600:                 my $higher = $depth - 1;
 5601:                 if ($higher == 0) {
 5602:                     $parent_name = &escape($parent).'::'.$higher;
 5603:                 } else {
 5604:                     if (ref($path) eq 'ARRAY') {
 5605:                         $parent_name = &escape($parent).':'.&escape($path->[-2]).':'.$higher;
 5606:                     }
 5607:                 }
 5608:                 $parent_item = 'addcategory_pos_'.$parent_name;
 5609:                 for (my $j=0; $j<=$numchildren; $j++) {
 5610:                     if ($j < $numchildren) {
 5611:                         $name = $cats->[$depth]{$parent}[$j];
 5612:                         $item = &escape($name).':'.&escape($parent).':'.$depth;
 5613:                         $idxnum = $idx->{$item};
 5614:                     } else {
 5615:                         $name = $parent_name;
 5616:                         $item = $parent_item;
 5617:                     }
 5618:                     $chgstr = ' onchange="javascript:reorderCats(this.form,'."'$parent_name','$item','$idxnum'".');"';
 5619:                     $text .= '<tr '.$css_class.'><td><span class="LC_nobreak"><select name="'.$item.'"'.$chgstr.'>';
 5620:                     for (my $i=0; $i<=$numchildren; $i++) {
 5621:                         my $vpos = $i+1;
 5622:                         my $selstr;
 5623:                         if ($j == $i) {
 5624:                             $selstr = ' selected="selected" ';
 5625:                         }
 5626:                         $text .= '<option value="'.$i.'"'.$selstr.'>'.$vpos.'</option>';
 5627:                     }
 5628:                     $text .= '</select>&nbsp;';
 5629:                     if ($j < $numchildren) {
 5630:                         my $deeper = $depth+1;
 5631:                         $text .= $name.'&nbsp;'
 5632:                                  .'<label><input type="checkbox" name="deletecategory" value="'
 5633:                                  .$item.'" />'.&mt('Delete').'</label></span></td><td>';
 5634:                         if(ref($path) eq 'ARRAY') {
 5635:                             push(@{$path},$name);
 5636:                             $text .= &build_category_rows($itemcount,$cats,$deeper,$name,$path,$idx);
 5637:                             pop(@{$path});
 5638:                         }
 5639:                     } else {
 5640:                         $text .= &mt('Add subcategory:').'&nbsp;</span><input type="textbox" size="20" name="addcategory_name_';
 5641:                         if ($j == $numchildren) {
 5642:                             $text .= $name;
 5643:                         } else {
 5644:                             $text .= $item;
 5645:                         }
 5646:                         $text .= '" value="" />';
 5647:                     }
 5648:                     $text .= '</td></tr>';
 5649:                 }
 5650:                 $text .= '</table></td>';
 5651:             } else {
 5652:                 my $higher = $depth-1;
 5653:                 if ($higher == 0) {
 5654:                     $name = &escape($parent).'::'.$higher;
 5655:                 } else {
 5656:                     if (ref($path) eq 'ARRAY') {
 5657:                         $name = &escape($parent).':'.&escape($path->[-2]).':'.$higher;
 5658:                     }
 5659:                 }
 5660:                 my $colspan;
 5661:                 if ($parent ne 'instcode') {
 5662:                     $colspan = $maxdepth - $depth - 1;
 5663:                     $text .= '<td colspan="'.$colspan.'">'.&mt('Add subcategory:').'<input type="textbox" size="20" name="subcat_'.$name.'" value="" /></td>';
 5664:                 }
 5665:             }
 5666:         }
 5667:     }
 5668:     return $text;
 5669: }
 5670: 
 5671: sub modifiable_userdata_row {
 5672:     my ($context,$item,$settings,$numinrow,$rowcount,$usertypes,$fieldsref,$titlesref) = @_;
 5673:     my ($role,$rolename,$statustype);
 5674:     $role = $item;
 5675:     if ($context eq 'cancreate') {
 5676:         if ($item =~ /^emailusername_(.+)$/) {
 5677:             $statustype = $1;
 5678:             $role = 'emailusername';
 5679:             if (ref($usertypes) eq 'HASH') {
 5680:                 if ($usertypes->{$statustype}) {
 5681:                     $rolename = &mt('Data provided by [_1]',$usertypes->{$statustype});
 5682:                 } else {
 5683:                     $rolename = &mt('Data provided by user');
 5684:                 }
 5685:             }
 5686:         }
 5687:     } elsif ($context eq 'selfcreate') {
 5688:         if (ref($usertypes) eq 'HASH') {
 5689:             $rolename = $usertypes->{$role};
 5690:         } else {
 5691:             $rolename = $role;
 5692:         }
 5693:     } else {
 5694:         if ($role eq 'cr') {
 5695:             $rolename = &mt('Custom role');
 5696:         } else {
 5697:             $rolename = &Apache::lonnet::plaintext($role);
 5698:         }
 5699:     }
 5700:     my (@fields,%fieldtitles);
 5701:     if (ref($fieldsref) eq 'ARRAY') {
 5702:         @fields = @{$fieldsref};
 5703:     } else {
 5704:         @fields = ('lastname','firstname','middlename','generation',
 5705:                    'permanentemail','id');
 5706:     }
 5707:     if ((ref($titlesref) eq 'HASH')) {
 5708:         %fieldtitles = %{$titlesref};
 5709:     } else {
 5710:         %fieldtitles = &Apache::loncommon::personal_data_fieldtitles();
 5711:     }
 5712:     my $output;
 5713:     my $css_class = $rowcount%2?' class="LC_odd_row"':'';
 5714:     $output = '<tr '.$css_class.'>'.
 5715:               '<td><span class="LC_nobreak">'.$rolename.'</span></td>'.
 5716:               '<td class="LC_left_item" colspan="2"><table>';
 5717:     my $rem;
 5718:     my %checks;
 5719:     if (ref($settings) eq 'HASH') {
 5720:         if (ref($settings->{$context}) eq 'HASH') {
 5721:             if (ref($settings->{$context}->{$role}) eq 'HASH') {
 5722:                 my $hashref = $settings->{$context}->{$role};
 5723:                 if ($role eq 'emailusername') {
 5724:                     if ($statustype) {
 5725:                         if (ref($settings->{$context}->{$role}->{$statustype}) eq 'HASH') {
 5726:                             $hashref = $settings->{$context}->{$role}->{$statustype};
 5727:                             if (ref($hashref) eq 'HASH') { 
 5728:                                 foreach my $field (@fields) {
 5729:                                     if ($hashref->{$field}) {
 5730:                                         $checks{$field} = $hashref->{$field};
 5731:                                     }
 5732:                                 }
 5733:                             }
 5734:                         }
 5735:                     }
 5736:                 } else {
 5737:                     if (ref($hashref) eq 'HASH') {
 5738:                         foreach my $field (@fields) {
 5739:                             if ($hashref->{$field}) {
 5740:                                 $checks{$field} = ' checked="checked" ';
 5741:                             }
 5742:                         }
 5743:                     }
 5744:                 }
 5745:             }
 5746:         }
 5747:     }
 5748:      
 5749:     for (my $i=0; $i<@fields; $i++) {
 5750:         my $rem = $i%($numinrow);
 5751:         if ($rem == 0) {
 5752:             if ($i > 0) {
 5753:                 $output .= '</tr>';
 5754:             }
 5755:             $output .= '<tr>';
 5756:         }
 5757:         my $check = ' ';
 5758:         unless ($role eq 'emailusername') {
 5759:             if (exists($checks{$fields[$i]})) {
 5760:                 $check = $checks{$fields[$i]}
 5761:             } else {
 5762:                 if ($role eq 'st') {
 5763:                     if (ref($settings) ne 'HASH') {
 5764:                         $check = ' checked="checked" '; 
 5765:                     }
 5766:                 }
 5767:             }
 5768:         }
 5769:         $output .= '<td class="LC_left_item">'.
 5770:                    '<span class="LC_nobreak">';
 5771:         if ($role eq 'emailusername') {
 5772:             unless ($checks{$fields[$i]} =~ /^(required|optional)$/) {
 5773:                 $checks{$fields[$i]} = 'omit';
 5774:             }
 5775:             foreach my $option ('required','optional','omit') {
 5776:                 my $checked='';
 5777:                 if ($checks{$fields[$i]} eq $option) {
 5778:                     $checked='checked="checked" ';
 5779:                 }
 5780:                 $output .= '<label>'.
 5781:                            '<input type="radio" name="canmodify_'.$item.'_'.$fields[$i].'" value="'.$option.'" '.$checked.'/>'.
 5782:                            &mt($option).'</label>'.('&nbsp;' x2);
 5783:             }
 5784:             $output .= '<i>'.$fieldtitles{$fields[$i]}.'</i>';
 5785:         } else {
 5786:             $output .= '<label>'.
 5787:                        '<input type="checkbox" name="canmodify_'.$role.'" '.
 5788:                        'value="'.$fields[$i].'"'.$check.'/>'.$fieldtitles{$fields[$i]}.
 5789:                        '</label>';
 5790:         }
 5791:         $output .= '</span></td>';
 5792:         $rem = @fields%($numinrow);
 5793:     }
 5794:     my $colsleft = $numinrow - $rem;
 5795:     if ($colsleft > 1 ) {
 5796:         $output .= '<td colspan="'.$colsleft.'" class="LC_left_item">'.
 5797:                    '&nbsp;</td>';
 5798:     } elsif ($colsleft == 1) {
 5799:         $output .= '<td class="LC_left_item">&nbsp;</td>';
 5800:     }
 5801:     $output .= '</tr></table></td></tr>';
 5802:     return $output;
 5803: }
 5804: 
 5805: sub insttypes_row {
 5806:     my ($settings,$types,$usertypes,$dom,$numinrow,$othertitle,$context,$rownum) = @_;
 5807:     my %lt = &Apache::lonlocal::texthash (
 5808:                       cansearch => 'Users allowed to search',
 5809:                       statustocreate => 'Institutional affiliation(s) able to create own account (login/SSO)',
 5810:                       lockablenames => 'User preference to lock name',
 5811:              );
 5812:     my $showdom;
 5813:     if ($context eq 'cansearch') {
 5814:         $showdom = ' ('.$dom.')';
 5815:     }
 5816:     my $class = 'LC_left_item';
 5817:     if ($context eq 'statustocreate') {
 5818:         $class = 'LC_right_item';
 5819:     }
 5820:     my $css_class = ' class="LC_odd_row"';
 5821:     if ($rownum ne '') { 
 5822:         $css_class = ($rownum%2? ' class="LC_odd_row"':'');
 5823:     }
 5824:     my $output = '<tr'.$css_class.'>'.
 5825:                  '<td>'.$lt{$context}.$showdom.
 5826:                  '</td><td class="'.$class.'" colspan="2"><table>';
 5827:     my $rem;
 5828:     if (ref($types) eq 'ARRAY') {
 5829:         for (my $i=0; $i<@{$types}; $i++) {
 5830:             if (defined($usertypes->{$types->[$i]})) {
 5831:                 my $rem = $i%($numinrow);
 5832:                 if ($rem == 0) {
 5833:                     if ($i > 0) {
 5834:                         $output .= '</tr>';
 5835:                     }
 5836:                     $output .= '<tr>';
 5837:                 }
 5838:                 my $check = ' ';
 5839:                 if (ref($settings) eq 'HASH') {
 5840:                     if (ref($settings->{$context}) eq 'ARRAY') {
 5841:                         if (grep(/^\Q$types->[$i]\E$/,@{$settings->{$context}})) {
 5842:                             $check = ' checked="checked" ';
 5843:                         }
 5844:                     } elsif ($context eq 'statustocreate') {
 5845:                         $check = ' checked="checked" ';
 5846:                     }
 5847:                 }
 5848:                 $output .= '<td class="LC_left_item">'.
 5849:                            '<span class="LC_nobreak"><label>'.
 5850:                            '<input type="checkbox" name="'.$context.'" '.
 5851:                            'value="'.$types->[$i].'"'.$check.'/>'.
 5852:                            $usertypes->{$types->[$i]}.'</label></span></td>';
 5853:             }
 5854:         }
 5855:         $rem = @{$types}%($numinrow);
 5856:     }
 5857:     my $colsleft = $numinrow - $rem;
 5858:     if (($rem == 0) && (@{$types} > 0)) {
 5859:         $output .= '<tr>';
 5860:     }
 5861:     if ($colsleft > 1) {
 5862:         $output .= '<td colspan="'.$colsleft.'" class="LC_left_item">';
 5863:     } else {
 5864:         $output .= '<td class="LC_left_item">';
 5865:     }
 5866:     my $defcheck = ' ';
 5867:     if (ref($settings) eq 'HASH') {  
 5868:         if (ref($settings->{$context}) eq 'ARRAY') {
 5869:             if (grep(/^default$/,@{$settings->{$context}})) {
 5870:                 $defcheck = ' checked="checked" ';
 5871:             }
 5872:         } elsif ($context eq 'statustocreate') {
 5873:             $defcheck = ' checked="checked" ';
 5874:         }
 5875:     }
 5876:     $output .= '<span class="LC_nobreak"><label>'.
 5877:                '<input type="checkbox" name="'.$context.'" '.
 5878:                'value="default"'.$defcheck.'/>'.
 5879:                $othertitle.'</label></span></td>'.
 5880:                '</tr></table></td></tr>';
 5881:     return $output;
 5882: }
 5883: 
 5884: sub sorted_searchtitles {
 5885:     my %searchtitles = &Apache::lonlocal::texthash(
 5886:                          'uname' => 'username',
 5887:                          'lastname' => 'last name',
 5888:                          'lastfirst' => 'last name, first name',
 5889:                      );
 5890:     my @titleorder = ('uname','lastname','lastfirst');
 5891:     return (\%searchtitles,\@titleorder);
 5892: }
 5893: 
 5894: sub sorted_searchtypes {
 5895:     my %srchtypes_desc = (
 5896:                            exact    => 'is exact match',
 5897:                            contains => 'contains ..',
 5898:                            begins   => 'begins with ..',
 5899:                          );
 5900:     my @srchtypeorder = ('exact','begins','contains');
 5901:     return (\%srchtypes_desc,\@srchtypeorder);
 5902: }
 5903: 
 5904: sub usertype_update_row {
 5905:     my ($settings,$usertypes,$fieldtitles,$fields,$types,$rownums) = @_;
 5906:     my $datatable;
 5907:     my $numinrow = 4;
 5908:     foreach my $type (@{$types}) {
 5909:         if (defined($usertypes->{$type})) {
 5910:             $$rownums ++;
 5911:             my $css_class = $$rownums%2?' class="LC_odd_row"':'';
 5912:             $datatable .= '<tr'.$css_class.'><td>'.$usertypes->{$type}.
 5913:                           '</td><td class="LC_left_item"><table>';
 5914:             for (my $i=0; $i<@{$fields}; $i++) {
 5915:                 my $rem = $i%($numinrow);
 5916:                 if ($rem == 0) {
 5917:                     if ($i > 0) {
 5918:                         $datatable .= '</tr>';
 5919:                     }
 5920:                     $datatable .= '<tr>';
 5921:                 }
 5922:                 my $check = ' ';
 5923:                 if (ref($settings) eq 'HASH') {
 5924:                     if (ref($settings->{'fields'}) eq 'HASH') {
 5925:                         if (ref($settings->{'fields'}{$type}) eq 'ARRAY') {
 5926:                             if (grep(/^\Q$fields->[$i]\E$/,@{$settings->{'fields'}{$type}})) {
 5927:                                 $check = ' checked="checked" ';
 5928:                             }
 5929:                         }
 5930:                     }
 5931:                 }
 5932: 
 5933:                 if ($i == @{$fields}-1) {
 5934:                     my $colsleft = $numinrow - $rem;
 5935:                     if ($colsleft > 1) {
 5936:                         $datatable .= '<td colspan="'.$colsleft.'">';
 5937:                     } else {
 5938:                         $datatable .= '<td>';
 5939:                     }
 5940:                 } else {
 5941:                     $datatable .= '<td>';
 5942:                 }
 5943:                 $datatable .= '<span class="LC_nobreak"><label>'.
 5944:                               '<input type="checkbox" name="updateable_'.$type.
 5945:                               '_'.$fields->[$i].'" value="1"'.$check.'/>'.
 5946:                               $fieldtitles->{$fields->[$i]}.'</label></span></td>';
 5947:             }
 5948:             $datatable .= '</tr></table></td></tr>';
 5949:         }
 5950:     }
 5951:     return $datatable;
 5952: }
 5953: 
 5954: sub modify_login {
 5955:     my ($r,$dom,$confname,$lastactref,%domconfig) = @_;
 5956:     my ($resulttext,$errors,$colchgtext,%changes,%colchanges,%newfile,%newurl,
 5957:         %curr_loginvia,%loginhash,@currlangs,@newlangs,$addedfile,%title,@offon);
 5958:     %title = ( coursecatalog => 'Display course catalog',
 5959:                adminmail => 'Display administrator E-mail address',
 5960:                helpdesk  => 'Display "Contact Helpdesk" link',
 5961:                newuser => 'Link for visitors to create a user account',
 5962:                loginheader => 'Log-in box header');
 5963:     @offon = ('off','on');
 5964:     if (ref($domconfig{login}) eq 'HASH') {
 5965:         if (ref($domconfig{login}{loginvia}) eq 'HASH') {
 5966:             foreach my $lonhost (keys(%{$domconfig{login}{loginvia}})) {
 5967:                 $curr_loginvia{$lonhost} = $domconfig{login}{loginvia}{$lonhost};
 5968:             }
 5969:         }
 5970:     }
 5971:     ($errors,%colchanges) = &modify_colors($r,$dom,$confname,['login'],
 5972:                                            \%domconfig,\%loginhash);
 5973:     my @toggles = ('coursecatalog','adminmail','helpdesk','newuser');
 5974:     foreach my $item (@toggles) {
 5975:         $loginhash{login}{$item} = $env{'form.'.$item};
 5976:     }
 5977:     $loginhash{login}{loginheader} = $env{'form.loginheader'};
 5978:     if (ref($colchanges{'login'}) eq 'HASH') {  
 5979:         $colchgtext = &display_colorchgs($dom,\%colchanges,['login'],
 5980:                                          \%loginhash);
 5981:     }
 5982: 
 5983:     my %servers = &Apache::lonnet::internet_dom_servers($dom);
 5984:     my %domservers = &Apache::lonnet::get_servers($dom);
 5985:     my @loginvia_attribs = ('serverpath','custompath','exempt');
 5986:     if (keys(%servers) > 1) {
 5987:         foreach my $lonhost (keys(%servers)) {
 5988:             next if ($env{'form.'.$lonhost.'_server'} eq $lonhost);
 5989:             if (ref($curr_loginvia{$lonhost}) eq 'HASH') {
 5990:                 if ($env{'form.'.$lonhost.'_server'} eq $curr_loginvia{$lonhost}{'server'}) {
 5991:                     $loginhash{login}{loginvia}{$lonhost}{'server'} = $curr_loginvia{$lonhost}{'server'};
 5992:                 } elsif ($curr_loginvia{$lonhost}{'server'} ne '') {
 5993:                     if (defined($servers{$env{'form.'.$lonhost.'_server'}})) {
 5994:                         $loginhash{login}{loginvia}{$lonhost}{'server'} = $env{'form.'.$lonhost.'_server'};
 5995:                         $changes{'loginvia'}{$lonhost} = 1;
 5996:                     } else {
 5997:                         $loginhash{login}{loginvia}{$lonhost}{'server'} = '';
 5998:                         $changes{'loginvia'}{$lonhost} = 1;
 5999:                     }
 6000:                 } else {
 6001:                     if (defined($servers{$env{'form.'.$lonhost.'_server'}})) {
 6002:                         $loginhash{login}{loginvia}{$lonhost}{'server'} = $env{'form.'.$lonhost.'_server'};
 6003:                         $changes{'loginvia'}{$lonhost} = 1;
 6004:                     }
 6005:                 }
 6006:                 if ($loginhash{login}{loginvia}{$lonhost}{'server'} eq '') {
 6007:                     foreach my $item (@loginvia_attribs) {
 6008:                         $loginhash{login}{loginvia}{$lonhost}{$item} = '';
 6009:                     }
 6010:                 } else {
 6011:                     foreach my $item (@loginvia_attribs) {
 6012:                         my $new = $env{'form.'.$lonhost.'_'.$item};
 6013:                         if (($item eq 'serverpath') && ($new eq 'custom')) {
 6014:                             $env{'form.'.$lonhost.'_custompath'} =~ s/\s+//g;
 6015:                             if ($env{'form.'.$lonhost.'_custompath'} eq '') {
 6016:                                 $new = '/';
 6017:                             }
 6018:                         }
 6019:                         if (($item eq 'custompath') && 
 6020:                             ($env{'form.'.$lonhost.'_serverpath'} ne 'custom')) {
 6021:                             $new = '';
 6022:                         }
 6023:                         if ($new ne $curr_loginvia{$lonhost}{$item}) {
 6024:                             $changes{'loginvia'}{$lonhost} = 1;
 6025:                         }
 6026:                         if ($item eq 'exempt') {
 6027:                             $new = &check_exempt_addresses($new);
 6028:                         }
 6029:                         $loginhash{login}{loginvia}{$lonhost}{$item} = $new;
 6030:                     }
 6031:                 }
 6032:             } else {
 6033:                 if (defined($servers{$env{'form.'.$lonhost.'_server'}})) {
 6034:                     $loginhash{login}{loginvia}{$lonhost}{'server'} = $env{'form.'.$lonhost.'_server'};
 6035:                     $changes{'loginvia'}{$lonhost} = 1;
 6036:                     foreach my $item (@loginvia_attribs) {
 6037:                         my $new = $env{'form.'.$lonhost.'_'.$item};
 6038:                         if (($item eq 'serverpath') && ($new eq 'custom')) {
 6039:                             if ($env{'form.'.$lonhost.'_custompath'} eq '') {
 6040:                                 $new = '/';
 6041:                             }
 6042:                         }
 6043:                         if (($item eq 'custompath') && 
 6044:                             ($env{'form.'.$lonhost.'_serverpath'} ne 'custom')) {
 6045:                             $new = '';
 6046:                         }
 6047:                         $loginhash{login}{loginvia}{$lonhost}{$item} = $new;
 6048:                     }
 6049:                 }
 6050:             }
 6051:         }
 6052:     }
 6053: 
 6054:     my $servadm = $r->dir_config('lonAdmEMail');
 6055:     my %langchoices = &Apache::lonlocal::texthash(&get_languages_hash());
 6056:     if (ref($domconfig{'login'}) eq 'HASH') {
 6057:         if (ref($domconfig{'login'}{'helpurl'}) eq 'HASH') {
 6058:             foreach my $lang (sort(keys(%{$domconfig{'login'}{'helpurl'}}))) {
 6059:                 if ($lang eq 'nolang') {
 6060:                     push(@currlangs,$lang);
 6061:                 } elsif (defined($langchoices{$lang})) {
 6062:                     push(@currlangs,$lang);
 6063:                 } else {
 6064:                     next;
 6065:                 }
 6066:             }
 6067:         }
 6068:     }
 6069:     my @delurls = &Apache::loncommon::get_env_multiple('form.loginhelpurl_del');
 6070:     if (@currlangs > 0) {
 6071:         foreach my $lang (@currlangs) {
 6072:             if (grep(/^\Q$lang\E$/,@delurls)) {
 6073:                 $changes{'helpurl'}{$lang} = 1;
 6074:             } elsif ($env{'form.loginhelpurl_'.$lang.'.filename'}) {
 6075:                 $changes{'helpurl'}{$lang} = 1;
 6076:                 $newfile{$lang} = $env{'form.loginhelpurl_'.$lang.'.filename'};
 6077:                 push(@newlangs,$lang);
 6078:             } else {
 6079:                 $loginhash{'login'}{'helpurl'}{$lang} = $domconfig{'login'}{'helpurl'}{$lang};
 6080:             }
 6081:         }
 6082:     }
 6083:     unless (grep(/^nolang$/,@currlangs)) {
 6084:         if ($env{'form.loginhelpurl_nolang.filename'}) {
 6085:             $changes{'helpurl'}{'nolang'} = 1;
 6086:             $newfile{'nolang'} = $env{'form.loginhelpurl_nolang.filename'};
 6087:             push(@newlangs,'nolang');
 6088:         }
 6089:     }
 6090:     if ($env{'form.loginhelpurl_add_lang'}) {
 6091:         if ((defined($langchoices{$env{'form.loginhelpurl_add_lang'}})) &&
 6092:             ($env{'form.loginhelpurl_add_file.filename'})) {
 6093:             $newfile{$env{'form.loginhelpurl_add_lang'}} = $env{'form.loginhelpurl_add_file.filename'};
 6094:             $addedfile = $env{'form.loginhelpurl_add_lang'};
 6095:         }
 6096:     }
 6097:     if ((@newlangs > 0) || ($addedfile)) {
 6098:         my $error;
 6099:         my ($configuserok,$author_ok,$switchserver) = &config_check($dom,$confname,$servadm);
 6100:         if ($configuserok eq 'ok') {
 6101:             if ($switchserver) {
 6102:                 $error = &mt("Upload of custom help file is not permitted to this server: [_1]",$switchserver);
 6103:             } elsif ($author_ok eq 'ok') {
 6104:                 my @allnew = @newlangs;
 6105:                 if ($addedfile ne '') {
 6106:                     push(@allnew,$addedfile);
 6107:                 }
 6108:                 foreach my $lang (@allnew) {
 6109:                     my $formelem = 'loginhelpurl_'.$lang;
 6110:                     if ($lang eq $env{'form.loginhelpurl_add_lang'}) {
 6111:                         $formelem = 'loginhelpurl_add_file';
 6112:                     }
 6113:                     (my $result,$newurl{$lang}) = &publishlogo($r,'upload',$formelem,$dom,$confname,
 6114:                                                                "help/$lang",'','',$newfile{$lang});
 6115:                     if ($result eq 'ok') {
 6116:                         $loginhash{'login'}{'helpurl'}{$lang} = $newurl{$lang};
 6117:                         $changes{'helpurl'}{$lang} = 1;
 6118:                     } else {
 6119:                         my $puberror = &mt("Upload of [_1] failed because an error occurred publishing the file in RES space. Error was: [_2].",$newfile{$lang},$result);
 6120:                         $errors .= '<li><span class="LC_error">'.$puberror.'</span></li>';
 6121:                         if ((grep(/^\Q$lang\E$/,@currlangs)) &&
 6122:                             (!grep(/^\Q$lang\E$/,@delurls))) {
 6123: 
 6124:                             $loginhash{'login'}{'helpurl'}{$lang} = $domconfig{'login'}{'helpurl'}{$lang};
 6125:                         }
 6126:                     }
 6127:                 }
 6128:             } else {
 6129:                 $error = &mt("Upload of custom log-in help file(s) failed because an author role could not be assigned to a Domain Configuration user ([_1]) in domain: [_2].  Error was: [_3].",$confname,$dom,$author_ok);
 6130:             }
 6131:         } else {
 6132:             $error = &mt("Upload of custom log-in help file(s) failed because a Domain Configuration user ([_1]) could not be created in domain: [_2].  Error was: [_3].",$confname,$dom,$configuserok);
 6133:         }
 6134:         if ($error) {
 6135:             &Apache::lonnet::logthis($error);
 6136:             $errors .= '<li><span class="LC_error">'.$error.'</span></li>';
 6137:         }
 6138:     }
 6139: 
 6140:     my (%currheadtagurls,%currexempt,@newhosts,%newheadtagurls,%possexempt);
 6141:     if (ref($domconfig{'login'}) eq 'HASH') {
 6142:         if (ref($domconfig{'login'}{'headtag'}) eq 'HASH') {
 6143:             foreach my $lonhost (keys(%{$domconfig{'login'}{'headtag'}})) {
 6144:                 if ($domservers{$lonhost}) {
 6145:                     if (ref($domconfig{'login'}{'headtag'}{$lonhost}) eq 'HASH') {
 6146:                         $currheadtagurls{$lonhost} = $domconfig{'login'}{'headtag'}{$lonhost}{'url'};
 6147:                         $currexempt{$lonhost} = $domconfig{'login'}{'headtagexempt'}{$lonhost}{'exempt'}
 6148:                     }
 6149:                 }
 6150:             }
 6151:         }
 6152:     }
 6153:     my @delheadtagurls = &Apache::loncommon::get_env_multiple('form.loginheadtag_del');
 6154:     foreach my $lonhost (sort(keys(%domservers))) {
 6155:         if (grep(/^\Q$lonhost\E$/,@delheadtagurls)) {
 6156:             $changes{'headtag'}{$lonhost} = 1;
 6157:         } else {
 6158:             if ($env{'form.loginheadtagexempt_'.$lonhost}) {
 6159:                 $possexempt{$lonhost} = &check_exempt_addresses($env{'form.loginheadtagexempt_'.$lonhost});
 6160:             }
 6161:             if ($env{'form.loginheadtag_'.$lonhost.'.filename'}) {
 6162:                 push(@newhosts,$lonhost);
 6163:             } elsif ($currheadtagurls{$lonhost}) {
 6164:                 $loginhash{'login'}{'headtag'}{$lonhost}{'url'} = $currheadtagurls{$lonhost};
 6165:                 if ($currexempt{$lonhost}) {
 6166:                     if ((!exists($possexempt{$lonhost})) || ($possexempt{$lonhost} ne $currexempt{$lonhost})) {
 6167:                         $changes{'headtag'}{$lonhost} = 1;
 6168:                     }
 6169:                 } elsif ($possexempt{$lonhost}) {
 6170:                     $changes{'headtag'}{$lonhost} = 1;
 6171:                 }
 6172:                 if ($possexempt{$lonhost}) {
 6173:                     $loginhash{'login'}{'headtag'}{$lonhost}{'exempt'} = $possexempt{$lonhost};
 6174:                 }
 6175:             }
 6176:         }
 6177:     }
 6178:     if (@newhosts) {
 6179:         my $error;
 6180:         my ($configuserok,$author_ok,$switchserver) = &config_check($dom,$confname,$servadm);
 6181:         if ($configuserok eq 'ok') {
 6182:             if ($switchserver) {
 6183:                 $error = &mt("Upload of custom markup is not permitted to this server: [_1]",$switchserver);
 6184:             } elsif ($author_ok eq 'ok') {
 6185:                 foreach my $lonhost (@newhosts) {
 6186:                     my $formelem = 'loginheadtag_'.$lonhost;
 6187:                     (my $result,$newheadtagurls{$lonhost}) = &publishlogo($r,'upload',$formelem,$dom,$confname,
 6188:                                                                           "login/headtag/$lonhost",'','',
 6189:                                                                           $env{'form.loginheadtag_'.$lonhost.'.filename'});
 6190:                     if ($result eq 'ok') {
 6191:                         $loginhash{'login'}{'headtag'}{$lonhost}{'url'} = $newheadtagurls{$lonhost};
 6192:                         $changes{'headtag'}{$lonhost} = 1;
 6193:                         if ($possexempt{$lonhost}) {
 6194:                             $loginhash{'login'}{'headtag'}{$lonhost}{'exempt'} = $possexempt{$lonhost};
 6195:                         }
 6196:                     } else {
 6197:                         my $puberror = &mt("Upload of [_1] failed because an error occurred publishing the file in RES space. Error was: [_2].",
 6198:                                            $newheadtagurls{$lonhost},$result);
 6199:                         $errors .= '<li><span class="LC_error">'.$puberror.'</span></li>';
 6200:                         if ((grep(/^\Q$lonhost\E$/,keys(%currheadtagurls))) &&
 6201:                             (!grep(/^\Q$lonhost\E$/,@delheadtagurls))) {
 6202:                             $loginhash{'login'}{'headtag'}{$lonhost} = $currheadtagurls{$lonhost};
 6203:                         }
 6204:                     }
 6205:                 }
 6206:             } else {
 6207:                 $error = &mt("Upload of custom markup file(s) failed because an author role could not be assigned to a Domain Configuration user ([_1]) in domain: [_2].  Error was: [_3].",$confname,$dom,$author_ok);
 6208:             }
 6209:         } else {
 6210:             $error = &mt("Upload of custom markup file(s) failed because a Domain Configuration user ([_1]) could not be created in domain: [_2].  Error was: [_3].",$confname,$dom,$configuserok);
 6211:         }
 6212:         if ($error) {
 6213:             &Apache::lonnet::logthis($error);
 6214:             $errors .= '<li><span class="LC_error">'.$error.'</span></li>';
 6215:         }
 6216:     }
 6217: 
 6218:     &process_captcha('login',\%changes,$loginhash{'login'},$domconfig{'login'});
 6219: 
 6220:     my $defaulthelpfile = '/adm/loginproblems.html';
 6221:     my $defaulttext = &mt('Default in use');
 6222: 
 6223:     my $putresult = &Apache::lonnet::put_dom('configuration',\%loginhash,
 6224:                                              $dom);
 6225:     if ($putresult eq 'ok') {
 6226:         my @toggles = ('coursecatalog','adminmail','helpdesk','newuser');
 6227:         my %defaultchecked = (
 6228:                     'coursecatalog' => 'on',
 6229:                     'helpdesk'      => 'on',
 6230:                     'adminmail'     => 'off',
 6231:                     'newuser'       => 'off',
 6232:         );
 6233:         if (ref($domconfig{'login'}) eq 'HASH') {
 6234:             foreach my $item (@toggles) {
 6235:                 if ($defaultchecked{$item} eq 'on') { 
 6236:                     if (($domconfig{'login'}{$item} eq '0') &&
 6237:                         ($env{'form.'.$item} eq '1')) {
 6238:                         $changes{$item} = 1;
 6239:                     } elsif (($domconfig{'login'}{$item} eq '' ||
 6240:                               $domconfig{'login'}{$item} eq '1') &&
 6241:                              ($env{'form.'.$item} eq '0')) {
 6242:                         $changes{$item} = 1;
 6243:                     }
 6244:                 } elsif ($defaultchecked{$item} eq 'off') {
 6245:                     if (($domconfig{'login'}{$item} eq '1') &&
 6246:                         ($env{'form.'.$item} eq '0')) {
 6247:                         $changes{$item} = 1;
 6248:                     } elsif (($domconfig{'login'}{$item} eq '' ||
 6249:                               $domconfig{'login'}{$item} eq '0') &&
 6250:                              ($env{'form.'.$item} eq '1')) {
 6251:                         $changes{$item} = 1;
 6252:                     }
 6253:                 }
 6254:             }
 6255:         }
 6256:         if (keys(%changes) > 0 || $colchgtext) {
 6257:             &Apache::loncommon::devalidate_domconfig_cache($dom);
 6258:             if (ref($lastactref) eq 'HASH') {
 6259:                 $lastactref->{'domainconfig'} = 1;
 6260:             }
 6261:             $resulttext = &mt('Changes made:').'<ul>';
 6262:             foreach my $item (sort(keys(%changes))) {
 6263:                 if ($item eq 'loginvia') {
 6264:                     if (ref($changes{$item}) eq 'HASH') {
 6265:                         $resulttext .= '<li>'.&mt('Log-in page availability:').'<ul>';
 6266:                         foreach my $lonhost (sort(keys(%{$changes{$item}}))) {
 6267:                             if (defined($servers{$loginhash{login}{loginvia}{$lonhost}{'server'}})) {
 6268:                                 if (ref($loginhash{login}{loginvia}{$lonhost}) eq 'HASH') {
 6269:                                     my $protocol = $Apache::lonnet::protocol{$env{'form.'.$lonhost.'_server'}};
 6270:                                     $protocol = 'http' if ($protocol ne 'https');
 6271:                                     my $target = $protocol.'://'.$servers{$env{'form.'.$lonhost.'_server'}};
 6272: 
 6273:                                     if ($loginhash{login}{loginvia}{$lonhost}{'serverpath'} eq 'custom') {
 6274:                                         $target .= $loginhash{login}{loginvia}{$lonhost}{'custompath'};
 6275:                                     } else {
 6276:                                         $target .= $loginhash{login}{loginvia}{$lonhost}{'serverpath'}; 
 6277:                                     }
 6278:                                     $resulttext .= '<li>'.&mt('Server: [_1] log-in page redirects to [_2].',$servers{$lonhost},'<a href="'.$target.'">'.$target.'</a>');
 6279:                                     if ($loginhash{login}{loginvia}{$lonhost}{'exempt'} ne '') {
 6280:                                         $resulttext .= '&nbsp;'.&mt('No redirection for clients from following IPs:').'&nbsp;'.$loginhash{login}{loginvia}{$lonhost}{'exempt'};
 6281:                                     }
 6282:                                     $resulttext .= '</li>';
 6283:                                 } else {
 6284:                                     $resulttext .= '<li>'.&mt('Server: [_1] has standard log-in page.',$lonhost).'</li>';
 6285:                                 }
 6286:                             } else {
 6287:                                 $resulttext .= '<li>'.&mt('Server: [_1] has standard log-in page.',$servers{$lonhost}).'</li>';
 6288:                             }
 6289:                         }
 6290:                         $resulttext .= '</ul></li>';
 6291:                     }
 6292:                 } elsif ($item eq 'helpurl') {
 6293:                     if (ref($changes{$item}) eq 'HASH') {
 6294:                         foreach my $lang (sort(keys(%{$changes{$item}}))) {
 6295:                             if (grep(/^\Q$lang\E$/,@delurls)) {
 6296:                                 my ($chg,$link);
 6297:                                 $link = &Apache::loncommon::modal_link($defaulthelpfile,$defaulttext,600,500);
 6298:                                 if ($lang eq 'nolang') {
 6299:                                     $chg = &mt('custom log-in help file removed for no preferred language; [_1]',$link);
 6300:                                 } else {
 6301:                                     $chg = &mt('custom log-in help file removed for specific language: [_1]; [_2]',$langchoices{$lang},$link);
 6302:                                 }
 6303:                                 $resulttext .= '<li>'.$chg.'</li>';
 6304:                             } else {
 6305:                                 my $chg;
 6306:                                 if ($lang eq 'nolang') {
 6307:                                     $chg = &mt('custom log-in help file for no preferred language');
 6308:                                 } else {
 6309:                                     $chg = &mt('custom log-in help file for specific language: [_1]',$langchoices{$lang});
 6310:                                 }
 6311:                                 $resulttext .= '<li>'.&Apache::loncommon::modal_link(
 6312:                                                       $loginhash{'login'}{'helpurl'}{$lang}.
 6313:                                                       '?inhibitmenu=yes',$chg,600,500).
 6314:                                                '</li>';
 6315:                             }
 6316:                         }
 6317:                     }
 6318:                 } elsif ($item eq 'headtag') {
 6319:                     if (ref($changes{$item}) eq 'HASH') {
 6320:                         foreach my $lonhost (sort(keys(%{$changes{$item}}))) {
 6321:                             if (grep(/^\Q$lonhost\E$/,@delheadtagurls)) {
 6322:                                 $resulttext .= '<li>'.&mt('custom markup file removed for [_1]',$domservers{$lonhost}).'</li>';
 6323:                             } elsif (ref($loginhash{'login'}{'headtag'}{$lonhost}) eq 'HASH') {
 6324:                                 $resulttext .= '<li><a href="'.
 6325:                                                "javascript:void(open('$loginhash{'login'}{'headtag'}{$lonhost}{'url'}?inhibitmenu=yes','Custom_HeadTag',
 6326:                                                'menubar=0,toolbar=1,scrollbars=1,width=600,height=500,resizable=yes'))".
 6327:                                                '">'.&mt('custom markup').'</a> '.&mt('(for [_1])',$servers{$lonhost}).' ';
 6328:                                 if ($possexempt{$lonhost}) {
 6329:                                     $resulttext .= &mt('not included for client IP(s): [_1]',$possexempt{$lonhost});
 6330:                                 } else {
 6331:                                     $resulttext .= &mt('included for any client IP');
 6332:                                 }
 6333:                                 $resulttext .= '</li>';
 6334:                             }
 6335:                         }
 6336:                     }
 6337:                 } elsif ($item eq 'captcha') {
 6338:                     if (ref($loginhash{'login'}) eq 'HASH') {
 6339:                         my $chgtxt;
 6340:                         if ($loginhash{'login'}{$item} eq 'notused') {
 6341:                             $chgtxt .= &mt('No CAPTCHA validation in use for helpdesk form.');
 6342:                         } else {
 6343:                             my %captchas = &captcha_phrases();
 6344:                             if ($captchas{$loginhash{'login'}{$item}}) {
 6345:                                 $chgtxt .= &mt("Validation for helpdesk form set to $captchas{$loginhash{'login'}{$item}}.");
 6346:                             } else {
 6347:                                 $chgtxt .= &mt('Validation for helpdesk form set to unknown type.');
 6348:                             }
 6349:                         }
 6350:                         $resulttext .= '<li>'.$chgtxt.'</li>';
 6351:                     }
 6352:                 } elsif ($item eq 'recaptchakeys') {
 6353:                     if (ref($loginhash{'login'}) eq 'HASH') {
 6354:                         my ($privkey,$pubkey);
 6355:                         if (ref($loginhash{'login'}{$item}) eq 'HASH') {
 6356:                             $pubkey = $loginhash{'login'}{$item}{'public'};
 6357:                             $privkey = $loginhash{'login'}{$item}{'private'};
 6358:                         }
 6359:                         my $chgtxt .= &mt('ReCAPTCHA keys changes').'<ul>';
 6360:                         if (!$pubkey) {
 6361:                             $chgtxt .= '<li>'.&mt('Public key deleted').'</li>';
 6362:                         } else {
 6363:                             $chgtxt .= '<li>'.&mt('Public key set to [_1]',$pubkey).'</li>';
 6364:                         }
 6365:                         if (!$privkey) {
 6366:                             $chgtxt .= '<li>'.&mt('Private key deleted').'</li>';
 6367:                         } else {
 6368:                             $chgtxt .= '<li>'.&mt('Private key set to [_1]',$privkey).'</li>';
 6369:                         }
 6370:                         $chgtxt .= '</ul>';
 6371:                         $resulttext .= '<li>'.$chgtxt.'</li>';
 6372:                     }
 6373:                 } else {
 6374:                     $resulttext .= '<li>'.&mt("$title{$item} set to $offon[$env{'form.'.$item}]").'</li>';
 6375:                 }
 6376:             }
 6377:             $resulttext .= $colchgtext.'</ul>';
 6378:         } else {
 6379:             $resulttext = &mt('No changes made to log-in page settings');
 6380:         }
 6381:     } else {
 6382:         $resulttext = '<span class="LC_error">'.
 6383: 	    &mt('An error occurred: [_1]',$putresult).'</span>';
 6384:     }
 6385:     if ($errors) {
 6386:         $resulttext .= '<br />'.&mt('The following errors occurred: ').'<ul>'.
 6387:                        $errors.'</ul>';
 6388:     }
 6389:     return $resulttext;
 6390: }
 6391: 
 6392: sub check_exempt_addresses {
 6393:     my ($iplist) = @_;
 6394:     $iplist =~ s/^\s+//;
 6395:     $iplist =~ s/\s+$//;
 6396:     my @poss_ips = split(/\s*[,:]\s*/,$iplist);
 6397:     my (@okips,$new);
 6398:     foreach my $ip (@poss_ips) {
 6399:         if ($ip =~ /^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/) {
 6400:             if (($1 <= 255) && ($2 <= 255) && ($3 <= 255) && ($4 <= 255)) {
 6401:                 push(@okips,$ip);
 6402:             }
 6403:         }
 6404:     }
 6405:     if (@okips > 0) {
 6406:         $new = join(',',@okips);
 6407:     } else {
 6408:         $new = '';
 6409:     }
 6410:     return $new;
 6411: }
 6412: 
 6413: sub color_font_choices {
 6414:     my %choices =
 6415:         &Apache::lonlocal::texthash (
 6416:             img => "Header",
 6417:             bgs => "Background colors",
 6418:             links => "Link colors",
 6419:             images => "Images",
 6420:             font => "Font color",
 6421:             fontmenu => "Font menu",
 6422:             pgbg => "Page",
 6423:             tabbg => "Header",
 6424:             sidebg => "Border",
 6425:             link => "Link",
 6426:             alink => "Active link",
 6427:             vlink => "Visited link",
 6428:         );
 6429:     return %choices;
 6430: }
 6431: 
 6432: sub modify_rolecolors {
 6433:     my ($r,$dom,$confname,$roles,$lastactref,%domconfig) = @_;
 6434:     my ($resulttext,%rolehash);
 6435:     $rolehash{'rolecolors'} = {};
 6436:     if (ref($domconfig{'rolecolors'}) ne 'HASH') {
 6437:         if ($domconfig{'rolecolors'} eq '') {
 6438:             $domconfig{'rolecolors'} = {};
 6439:         }
 6440:     }
 6441:     my ($errors,%changes) = &modify_colors($r,$dom,$confname,$roles,
 6442:                          $domconfig{'rolecolors'},$rolehash{'rolecolors'});
 6443:     my $putresult = &Apache::lonnet::put_dom('configuration',\%rolehash,
 6444:                                              $dom);
 6445:     if ($putresult eq 'ok') {
 6446:         if (keys(%changes) > 0) {
 6447:             &Apache::loncommon::devalidate_domconfig_cache($dom);
 6448:             if (ref($lastactref) eq 'HASH') {
 6449:                 $lastactref->{'domainconfig'} = 1;
 6450:             }
 6451:             $resulttext = &display_colorchgs($dom,\%changes,$roles,
 6452:                                              $rolehash{'rolecolors'});
 6453:         } else {
 6454:             $resulttext = &mt('No changes made to default color schemes');
 6455:         }
 6456:     } else {
 6457:         $resulttext = '<span class="LC_error">'.
 6458: 	    &mt('An error occurred: [_1]',$putresult).'</span>';
 6459:     }
 6460:     if ($errors) {
 6461:         $resulttext .= &mt('The following errors occurred: ').'<ul>'.
 6462:                        $errors.'</ul>';
 6463:     }
 6464:     return $resulttext;
 6465: }
 6466: 
 6467: sub modify_colors {
 6468:     my ($r,$dom,$confname,$roles,$domconfig,$confhash) = @_;
 6469:     my (%changes,%choices);
 6470:     my @bgs;
 6471:     my @links = ('link','alink','vlink');
 6472:     my @logintext;
 6473:     my @images;
 6474:     my $servadm = $r->dir_config('lonAdmEMail');
 6475:     my $errors;
 6476:     my %defaults;
 6477:     foreach my $role (@{$roles}) {
 6478:         if ($role eq 'login') {
 6479:             %choices = &login_choices();
 6480:             @logintext = ('textcol','bgcol');
 6481:         } else {
 6482:             %choices = &color_font_choices();
 6483:         }
 6484:         if ($role eq 'login') {
 6485:             @images = ('img','logo','domlogo','login');
 6486:             @bgs = ('pgbg','mainbg','sidebg');
 6487:         } else {
 6488:             @images = ('img');
 6489:             @bgs = ('pgbg','tabbg','sidebg');
 6490:         }
 6491:         my %defaults = &role_defaults($role,\@bgs,\@links,\@images,\@logintext);
 6492:         unless ($env{'form.'.$role.'_font'} eq $defaults{'font'}) {
 6493:             $confhash->{$role}{'font'} = $env{'form.'.$role.'_font'};
 6494:         }
 6495:         if ($role eq 'login') {
 6496:             foreach my $item (@logintext) {
 6497:                 $env{'form.'.$role.'_'.$item} = lc($env{'form.'.$role.'_'.$item});
 6498:                 if ($env{'form.'.$role.'_'.$item} =~ /^\w+/) {
 6499:                     $env{'form.'.$role.'_'.$item} = '#'.$env{'form.'.$role.'_'.$item};
 6500:                 }
 6501:                 unless ($env{'form.'.$role.'_'.$item} eq lc($defaults{'logintext'}{$item})) {
 6502:                     $confhash->{$role}{$item} = $env{'form.'.$role.'_'.$item};
 6503:                 }
 6504:             }
 6505:         } else {
 6506:             $env{'form.'.$role.'_fontmenu'} = lc($env{'form.'.$role.'_fontmenu'});
 6507:             if ($env{'form.'.$role.'_fontmenu'} =~ /^\w+/) {
 6508:                 $env{'form.'.$role.'_fontmenu'} = '#'.$env{'form.'.$role.'_fontmenu'};
 6509:             }
 6510:             unless($env{'form.'.$role.'_fontmenu'} eq lc($defaults{'fontmenu'})) {
 6511:                 $confhash->{$role}{'fontmenu'} = $env{'form.'.$role.'_fontmenu'};
 6512:             }
 6513:         }
 6514:         foreach my $item (@bgs) {
 6515:             $env{'form.'.$role.'_'.$item} = lc($env{'form.'.$role.'_'.$item});
 6516:             if ($env{'form.'.$role.'_'.$item} =~ /^\w+/) {
 6517:                 $env{'form.'.$role.'_'.$item} = '#'.$env{'form.'.$role.'_'.$item};
 6518:             }
 6519:             unless ($env{'form.'.$role.'_'.$item} eq lc($defaults{'bgs'}{$item})) {
 6520:                 $confhash->{$role}{$item} = $env{'form.'.$role.'_'.$item};
 6521:             }
 6522:         }
 6523:         foreach my $item (@links) {
 6524:             $env{'form.'.$role.'_'.$item} = lc($env{'form.'.$role.'_'.$item});
 6525:             if ($env{'form.'.$role.'_'.$item} =~ /^\w+/) {
 6526:                 $env{'form.'.$role.'_'.$item} = '#'.$env{'form.'.$role.'_'.$item};
 6527:             }
 6528:             unless ($env{'form.'.$role.'_'.$item} eq lc($defaults{'links'}{$item})) {
 6529:                 $confhash->{$role}{$item} = $env{'form.'.$role.'_'.$item};
 6530:             }
 6531:         }
 6532:         my ($configuserok,$author_ok,$switchserver) = 
 6533:             &config_check($dom,$confname,$servadm);
 6534:         my ($width,$height) = &thumb_dimensions();
 6535:         if (ref($domconfig->{$role}) ne 'HASH') {
 6536:             $domconfig->{$role} = {};
 6537:         }
 6538:         foreach my $img (@images) {
 6539:             if (($role eq 'login') && (($img eq 'img') || ($img eq 'logo'))) {  
 6540:                 if (defined($env{'form.login_showlogo_'.$img})) {
 6541:                     $confhash->{$role}{'showlogo'}{$img} = 1;
 6542:                 } else { 
 6543:                     $confhash->{$role}{'showlogo'}{$img} = 0;
 6544:                 }
 6545:             } 
 6546: 	    if ( ! $env{'form.'.$role.'_'.$img.'.filename'} 
 6547: 		 && !defined($domconfig->{$role}{$img})
 6548: 		 && !$env{'form.'.$role.'_del_'.$img}
 6549: 		 && $env{'form.'.$role.'_import_'.$img}) {
 6550: 		# import the old configured image from the .tab setting
 6551: 		# if they haven't provided a new one 
 6552: 		$domconfig->{$role}{$img} = 
 6553: 		    $env{'form.'.$role.'_import_'.$img};
 6554: 	    }
 6555:             if ($env{'form.'.$role.'_'.$img.'.filename'} ne '') {
 6556:                 my $error;
 6557:                 if ($configuserok eq 'ok') {
 6558:                     if ($switchserver) {
 6559:                         $error = &mt("Upload of [_1] image for $role page(s) is not permitted to this server: [_2]",$choices{$img},$switchserver);
 6560:                     } else {
 6561:                         if ($author_ok eq 'ok') {
 6562:                             my ($result,$logourl) = 
 6563:                                 &publishlogo($r,'upload',$role.'_'.$img,
 6564:                                            $dom,$confname,$img,$width,$height);
 6565:                             if ($result eq 'ok') {
 6566:                                 $confhash->{$role}{$img} = $logourl;
 6567:                                 $changes{$role}{'images'}{$img} = 1;
 6568:                             } else {
 6569:                                 $error = &mt("Upload of [_1] image for $role page(s) failed because an error occurred publishing the file in RES space. Error was: [_2].",$choices{img},$result);
 6570:                             }
 6571:                         } else {
 6572:                             $error = &mt("Upload of [_1] image for $role page(s) failed because an author role could not be assigned to a Domain Configuration user ([_2]) in domain: [_3].  Error was: [_4].",$choices{$img},$confname,$dom,$author_ok);
 6573:                         }
 6574:                     }
 6575:                 } else {
 6576:                     $error = &mt("Upload of [_1] image for $role page(s) failed because a Domain Configuration user ([_2]) could not be created in domain: [_3].  Error was: [_4].",$choices{$img},$confname,$dom,$configuserok);
 6577:                 }
 6578:                 if ($error) {
 6579:                     &Apache::lonnet::logthis($error);
 6580:                     $errors .= '<li><span class="LC_error">'.$error.'</span></li>';
 6581:                 }
 6582:             } elsif ($domconfig->{$role}{$img} ne '') {
 6583:                 if ($domconfig->{$role}{$img} !~ m-^(/res/\Q$dom\E/\Q$confname\E/\Q$img\E)/([^/]+)$-) {
 6584:                     my $error;
 6585:                     if ($configuserok eq 'ok') {
 6586: # is confname an author?
 6587:                         if ($switchserver eq '') {
 6588:                             if ($author_ok eq 'ok') {
 6589:                                 my ($result,$logourl) = 
 6590:                                &publishlogo($r,'copy',$domconfig->{$role}{$img},
 6591:                                             $dom,$confname,$img,$width,$height);
 6592:                                 if ($result eq 'ok') {
 6593:                                     $confhash->{$role}{$img} = $logourl;
 6594: 				    $changes{$role}{'images'}{$img} = 1;
 6595:                                 }
 6596:                             }
 6597:                         }
 6598:                     }
 6599:                 }
 6600:             }
 6601:         }
 6602:         if (ref($domconfig) eq 'HASH') {
 6603:             if (ref($domconfig->{$role}) eq 'HASH') {
 6604:                 foreach my $img (@images) {
 6605:                     if ($domconfig->{$role}{$img} ne '') {
 6606:                         if ($env{'form.'.$role.'_del_'.$img}) {
 6607:                             $confhash->{$role}{$img} = '';
 6608:                             $changes{$role}{'images'}{$img} = 1;
 6609:                         } else {
 6610:                             if ($confhash->{$role}{$img} eq '') {
 6611:                                 $confhash->{$role}{$img} = $domconfig->{$role}{$img};
 6612:                             }
 6613:                         }
 6614:                     } else {
 6615:                         if ($env{'form.'.$role.'_del_'.$img}) {
 6616:                             $confhash->{$role}{$img} = '';
 6617:                             $changes{$role}{'images'}{$img} = 1;
 6618:                         } 
 6619:                     }
 6620:                     if (($role eq 'login') && (($img eq 'logo') || ($img eq 'img'))) {
 6621:                         if (ref($domconfig->{'login'}{'showlogo'}) eq 'HASH') {
 6622:                             if ($confhash->{$role}{'showlogo'}{$img} ne 
 6623:                                 $domconfig->{$role}{'showlogo'}{$img}) {
 6624:                                 $changes{$role}{'showlogo'}{$img} = 1; 
 6625:                             }
 6626:                         } else {
 6627:                             if ($confhash->{$role}{'showlogo'}{$img} == 0) {
 6628:                                 $changes{$role}{'showlogo'}{$img} = 1;
 6629:                             }
 6630:                         }
 6631:                     }
 6632:                 }
 6633:                 if ($domconfig->{$role}{'font'} ne '') {
 6634:                     if ($confhash->{$role}{'font'} ne $domconfig->{$role}{'font'}) {
 6635:                         $changes{$role}{'font'} = 1;
 6636:                     }
 6637:                 } else {
 6638:                     if ($confhash->{$role}{'font'}) {
 6639:                         $changes{$role}{'font'} = 1;
 6640:                     }
 6641:                 }
 6642:                 if ($role ne 'login') {
 6643:                     if ($domconfig->{$role}{'fontmenu'} ne '') {
 6644:                         if ($confhash->{$role}{'fontmenu'} ne $domconfig->{$role}{'fontmenu'}) {
 6645:                             $changes{$role}{'fontmenu'} = 1;
 6646:                         }
 6647:                     } else {
 6648:                         if ($confhash->{$role}{'fontmenu'}) {
 6649:                             $changes{$role}{'fontmenu'} = 1;
 6650:                         }
 6651:                     }
 6652:                 }
 6653:                 foreach my $item (@bgs) {
 6654:                     if ($domconfig->{$role}{$item} ne '') {
 6655:                         if ($confhash->{$role}{$item} ne $domconfig->{$role}{$item}) {
 6656:                             $changes{$role}{'bgs'}{$item} = 1;
 6657:                         } 
 6658:                     } else {
 6659:                         if ($confhash->{$role}{$item}) {
 6660:                             $changes{$role}{'bgs'}{$item} = 1;
 6661:                         }
 6662:                     }
 6663:                 }
 6664:                 foreach my $item (@links) {
 6665:                     if ($domconfig->{$role}{$item} ne '') {
 6666:                         if ($confhash->{$role}{$item} ne $domconfig->{$role}{$item}) {
 6667:                             $changes{$role}{'links'}{$item} = 1;
 6668:                         }
 6669:                     } else {
 6670:                         if ($confhash->{$role}{$item}) {
 6671:                             $changes{$role}{'links'}{$item} = 1;
 6672:                         }
 6673:                     }
 6674:                 }
 6675:                 foreach my $item (@logintext) {
 6676:                     if ($domconfig->{$role}{$item} ne '') {
 6677:                         if ($confhash->{$role}{$item} ne $domconfig->{$role}{$item}) {
 6678:                             $changes{$role}{'logintext'}{$item} = 1;
 6679:                         }
 6680:                     } else {
 6681:                         if ($confhash->{$role}{$item}) {
 6682:                             $changes{$role}{'logintext'}{$item} = 1;
 6683:                         }
 6684:                     }
 6685:                 }
 6686:             } else {
 6687:                 &default_change_checker($role,\@images,\@links,\@bgs,
 6688:                                         \@logintext,$confhash,\%changes); 
 6689:             }
 6690:         } else {
 6691:             &default_change_checker($role,\@images,\@links,\@bgs,
 6692:                                     \@logintext,$confhash,\%changes); 
 6693:         }
 6694:     }
 6695:     return ($errors,%changes);
 6696: }
 6697: 
 6698: sub config_check {
 6699:     my ($dom,$confname,$servadm) = @_;
 6700:     my ($configuserok,$author_ok,$switchserver,%currroles);
 6701:     my $uhome = &Apache::lonnet::homeserver($confname,$dom,1);
 6702:     ($configuserok,%currroles) = &check_configuser($uhome,$dom,
 6703:                                                    $confname,$servadm);
 6704:     if ($configuserok eq 'ok') {
 6705:         $switchserver = &check_switchserver($dom,$confname);
 6706:         if ($switchserver eq '') {
 6707:             $author_ok = &check_authorstatus($dom,$confname,%currroles);
 6708:         }
 6709:     }
 6710:     return ($configuserok,$author_ok,$switchserver);
 6711: }
 6712: 
 6713: sub default_change_checker {
 6714:     my ($role,$images,$links,$bgs,$logintext,$confhash,$changes) = @_;
 6715:     foreach my $item (@{$links}) {
 6716:         if ($confhash->{$role}{$item}) {
 6717:             $changes->{$role}{'links'}{$item} = 1;
 6718:         }
 6719:     }
 6720:     foreach my $item (@{$bgs}) {
 6721:         if ($confhash->{$role}{$item}) {
 6722:             $changes->{$role}{'bgs'}{$item} = 1;
 6723:         }
 6724:     }
 6725:     foreach my $item (@{$logintext}) {
 6726:         if ($confhash->{$role}{$item}) {
 6727:             $changes->{$role}{'logintext'}{$item} = 1;
 6728:         }
 6729:     }
 6730:     foreach my $img (@{$images}) {
 6731:         if ($env{'form.'.$role.'_del_'.$img}) {
 6732:             $confhash->{$role}{$img} = '';
 6733:             $changes->{$role}{'images'}{$img} = 1;
 6734:         }
 6735:         if ($role eq 'login') {
 6736:             if ($confhash->{$role}{'showlogo'}{$img} == 0) {
 6737:                 $changes->{$role}{'showlogo'}{$img} = 1;
 6738:             }
 6739:         }
 6740:     }
 6741:     if ($confhash->{$role}{'font'}) {
 6742:         $changes->{$role}{'font'} = 1;
 6743:     }
 6744: }
 6745: 
 6746: sub display_colorchgs {
 6747:     my ($dom,$changes,$roles,$confhash) = @_;
 6748:     my (%choices,$resulttext);
 6749:     if (!grep(/^login$/,@{$roles})) {
 6750:         $resulttext = &mt('Changes made:').'<br />';
 6751:     }
 6752:     foreach my $role (@{$roles}) {
 6753:         if ($role eq 'login') {
 6754:             %choices = &login_choices();
 6755:         } else {
 6756:             %choices = &color_font_choices();
 6757:         }
 6758:         if (ref($changes->{$role}) eq 'HASH') {
 6759:             if ($role ne 'login') {
 6760:                 $resulttext .= '<h4>'.&mt($role).'</h4>';
 6761:             }
 6762:             foreach my $key (sort(keys(%{$changes->{$role}}))) {
 6763:                 if ($role ne 'login') {
 6764:                     $resulttext .= '<ul>';
 6765:                 }
 6766:                 if (ref($changes->{$role}{$key}) eq 'HASH') {
 6767:                     if ($role ne 'login') {
 6768:                         $resulttext .= '<li>'.&mt($choices{$key}).':<ul>';
 6769:                     }
 6770:                     foreach my $item (sort(keys(%{$changes->{$role}{$key}}))) {
 6771:                         if (($role eq 'login') && ($key eq 'showlogo')) {
 6772:                             if ($confhash->{$role}{$key}{$item}) {
 6773:                                 $resulttext .= '<li>'.&mt("$choices{$item} set to be displayed").'</li>';
 6774:                             } else {
 6775:                                 $resulttext .= '<li>'.&mt("$choices{$item} set to not be displayed").'</li>';
 6776:                             }
 6777:                         } elsif ($confhash->{$role}{$item} eq '') {
 6778:                             $resulttext .= '<li>'.&mt("$choices{$item} set to default").'</li>';
 6779:                         } else {
 6780:                             my $newitem = $confhash->{$role}{$item};
 6781:                             if ($key eq 'images') {
 6782:                                 $newitem = '<img src="'.$confhash->{$role}{$item}.'" alt="'.$choices{$item}.'" valign="bottom" />';
 6783:                             }
 6784:                             $resulttext .= '<li>'.&mt("$choices{$item} set to [_1]",$newitem).'</li>';
 6785:                         }
 6786:                     }
 6787:                     if ($role ne 'login') {
 6788:                         $resulttext .= '</ul></li>';
 6789:                     }
 6790:                 } else {
 6791:                     if ($confhash->{$role}{$key} eq '') {
 6792:                         $resulttext .= '<li>'.&mt("$choices{$key} set to default").'</li>';
 6793:                     } else {
 6794:                         $resulttext .= '<li>'.&mt("$choices{$key} set to [_1]",$confhash->{$role}{$key}).'</li>';
 6795:                     }
 6796:                 }
 6797:                 if ($role ne 'login') {
 6798:                     $resulttext .= '</ul>';
 6799:                 }
 6800:             }
 6801:         }
 6802:     }
 6803:     return $resulttext;
 6804: }
 6805: 
 6806: sub thumb_dimensions {
 6807:     return ('200','50');
 6808: }
 6809: 
 6810: sub check_dimensions {
 6811:     my ($inputfile) = @_;
 6812:     my ($fullwidth,$fullheight);
 6813:     if ($inputfile =~ m|^[/\w.\-]+$|) {
 6814:         if (open(PIPE,"identify $inputfile 2>&1 |")) {
 6815:             my $imageinfo = <PIPE>;
 6816:             if (!close(PIPE)) {
 6817:                 &Apache::lonnet::logthis("Failed to close PIPE opened to retrieve image information for $inputfile");
 6818:             }
 6819:             chomp($imageinfo);
 6820:             my ($fullsize) = 
 6821:                 ($imageinfo =~ /^\Q$inputfile\E\s+\w+\s+(\d+x\d+)/);
 6822:             if ($fullsize) {
 6823:                 ($fullwidth,$fullheight) = split(/x/,$fullsize);
 6824:             }
 6825:         }
 6826:     }
 6827:     return ($fullwidth,$fullheight);
 6828: }
 6829: 
 6830: sub check_configuser {
 6831:     my ($uhome,$dom,$confname,$servadm) = @_;
 6832:     my ($configuserok,%currroles);
 6833:     if ($uhome eq 'no_host') {
 6834:         srand( time() ^ ($$ + ($$ << 15))  ); # Seed rand.
 6835:         my $configpass = &LONCAPA::Enrollment::create_password();
 6836:         $configuserok = 
 6837:             &Apache::lonnet::modifyuser($dom,$confname,'','internal',
 6838:                              $configpass,'','','','','',undef,$servadm);
 6839:     } else {
 6840:         $configuserok = 'ok';
 6841:         %currroles = 
 6842:             &Apache::lonnet::get_my_roles($confname,$dom,'userroles');
 6843:     }
 6844:     return ($configuserok,%currroles);
 6845: }
 6846: 
 6847: sub check_authorstatus {
 6848:     my ($dom,$confname,%currroles) = @_;
 6849:     my $author_ok;
 6850:     if (!$currroles{':'.$dom.':au'}) {
 6851:         my $start = time;
 6852:         my $end = 0;
 6853:         $author_ok = 
 6854:             &Apache::lonnet::assignrole($dom,$confname,'/'.$dom.'/',
 6855:                                         'au',$end,$start,'','','domconfig');
 6856:     } else {
 6857:         $author_ok = 'ok';
 6858:     }
 6859:     return $author_ok;
 6860: }
 6861: 
 6862: sub publishlogo {
 6863:     my ($r,$action,$formname,$dom,$confname,$subdir,$thumbwidth,$thumbheight,$savefileas) = @_;
 6864:     my ($output,$fname,$logourl);
 6865:     if ($action eq 'upload') {
 6866:         $fname=$env{'form.'.$formname.'.filename'};
 6867:         chop($env{'form.'.$formname});
 6868:     } else {
 6869:         ($fname) = ($formname =~ /([^\/]+)$/);
 6870:     }
 6871:     if ($savefileas ne '') {
 6872:         $fname = $savefileas;
 6873:     }
 6874:     $fname=&Apache::lonnet::clean_filename($fname);
 6875: # See if there is anything left
 6876:     unless ($fname) { return ('error: no uploaded file'); }
 6877:     $fname="$subdir/$fname";
 6878:     my $docroot=$r->dir_config('lonDocRoot');
 6879:     my $filepath="$docroot/priv";
 6880:     my $relpath = "$dom/$confname";
 6881:     my ($fnamepath,$file,$fetchthumb);
 6882:     $file=$fname;
 6883:     if ($fname=~m|/|) {
 6884:         ($fnamepath,$file) = ($fname =~ m|^(.*)/([^/]+)$|);
 6885:     }
 6886:     my @parts=split(/\//,"$filepath/$relpath/$fnamepath");
 6887:     my $count;
 6888:     for ($count=5;$count<=$#parts;$count++) {
 6889:         $filepath.="/$parts[$count]";
 6890:         if ((-e $filepath)!=1) {
 6891:             mkdir($filepath,02770);
 6892:         }
 6893:     }
 6894:     # Check for bad extension and disallow upload
 6895:     if ($file=~/\.(\w+)$/ &&
 6896:         (&Apache::loncommon::fileembstyle($1) eq 'hdn')) {
 6897:         $output = 
 6898:             &mt('Invalid file extension ([_1]) - reserved for internal use.',$1); 
 6899:     } elsif ($file=~/\.(\w+)$/ &&
 6900:         !defined(&Apache::loncommon::fileembstyle($1))) {
 6901:         $output = &mt('Unrecognized file extension ([_1]) - rename the file with a proper extension and re-upload.',$1);
 6902:     } elsif ($file=~/\.(\d+)\.(\w+)$/) {
 6903:         $output = &mt('Filename not allowed - rename the file to remove the number immediately before the file extension([_1]) and re-upload.',$2);
 6904:     } elsif (-d "$filepath/$file") {
 6905:         $output = &mt('Filename is a directory name - rename the file and re-upload');
 6906:     } else {
 6907:         my $source = $filepath.'/'.$file;
 6908:         my $logfile;
 6909:         if (!open($logfile,">>$source".'.log')) {
 6910:             return (&mt('No write permission to Authoring Space'));
 6911:         }
 6912:         print $logfile
 6913: "\n================= Publish ".localtime()." ================\n".
 6914: $env{'user.name'}.':'.$env{'user.domain'}."\n";
 6915: # Save the file
 6916:         if (!open(FH,'>'.$source)) {
 6917:             &Apache::lonnet::logthis('Failed to create '.$source);
 6918:             return (&mt('Failed to create file'));
 6919:         }
 6920:         if ($action eq 'upload') {
 6921:             if (!print FH ($env{'form.'.$formname})) {
 6922:                 &Apache::lonnet::logthis('Failed to write to '.$source);
 6923:                 return (&mt('Failed to write file'));
 6924:             }
 6925:         } else {
 6926:             my $original = &Apache::lonnet::filelocation('',$formname);
 6927:             if(!copy($original,$source)) {
 6928:                 &Apache::lonnet::logthis('Failed to copy '.$original.' to '.$source);
 6929:                 return (&mt('Failed to write file'));
 6930:             }
 6931:         }
 6932:         close(FH);
 6933:         chmod(0660, $source); # Permissions to rw-rw---.
 6934: 
 6935:         my $targetdir=$docroot.'/res/'.$dom.'/'.$confname .'/'.$fnamepath;
 6936:         my $copyfile=$targetdir.'/'.$file;
 6937: 
 6938:         my @parts=split(/\//,$targetdir);
 6939:         my $path="/$parts[1]/$parts[2]/$parts[3]/$parts[4]";
 6940:         for (my $count=5;$count<=$#parts;$count++) {
 6941:             $path.="/$parts[$count]";
 6942:             if (!-e $path) {
 6943:                 print $logfile "\nCreating directory ".$path;
 6944:                 mkdir($path,02770);
 6945:             }
 6946:         }
 6947:         my $versionresult;
 6948:         if (-e $copyfile) {
 6949:             $versionresult = &logo_versioning($targetdir,$file,$logfile);
 6950:         } else {
 6951:             $versionresult = 'ok';
 6952:         }
 6953:         if ($versionresult eq 'ok') {
 6954:             if (copy($source,$copyfile)) {
 6955:                 print $logfile "\nCopied original source to ".$copyfile."\n";
 6956:                 $output = 'ok';
 6957:                 $logourl = '/res/'.$dom.'/'.$confname.'/'.$fname;
 6958:                 push(@{$modified_urls},[$copyfile,$source]);
 6959:                 my $metaoutput = 
 6960:                     &write_metadata($dom,$confname,$formname,$targetdir,$file,$logfile);
 6961:                 unless ($registered_cleanup) {
 6962:                     my $handlers = $r->get_handlers('PerlCleanupHandler');
 6963:                     $r->set_handlers('PerlCleanupHandler' => [\&notifysubscribed,@{$handlers}]);
 6964:                     $registered_cleanup=1;
 6965:                 }
 6966:             } else {
 6967:                 print $logfile "\nUnable to write ".$copyfile.':'.$!."\n";
 6968:                 $output = &mt('Failed to copy file to RES space').", $!";
 6969:             }
 6970:             if (($thumbwidth =~ /^\d+$/) && ($thumbheight =~ /^\d+$/)) {
 6971:                 my $inputfile = $filepath.'/'.$file;
 6972:                 my $outfile = $filepath.'/'.'tn-'.$file;
 6973:                 my ($fullwidth,$fullheight) = &check_dimensions($inputfile);
 6974:                 if ($fullwidth ne '' && $fullheight ne '') { 
 6975:                     if ($fullwidth > $thumbwidth && $fullheight > $thumbheight) {
 6976:                         my $thumbsize = $thumbwidth.'x'.$thumbheight;
 6977:                         system("convert -sample $thumbsize $inputfile $outfile");
 6978:                         chmod(0660, $filepath.'/tn-'.$file);
 6979:                         if (-e $outfile) {
 6980:                             my $copyfile=$targetdir.'/tn-'.$file;
 6981:                             if (copy($outfile,$copyfile)) {
 6982:                                 print $logfile "\nCopied source to ".$copyfile."\n";
 6983:                                 my $thumb_metaoutput = 
 6984:                                     &write_metadata($dom,$confname,$formname,
 6985:                                                     $targetdir,'tn-'.$file,$logfile);
 6986:                                 push(@{$modified_urls},[$copyfile,$outfile]);
 6987:                                 unless ($registered_cleanup) {
 6988:                                     my $handlers = $r->get_handlers('PerlCleanupHandler');
 6989:                                     $r->set_handlers('PerlCleanupHandler' => [\&notifysubscribed,@{$handlers}]);
 6990:                                     $registered_cleanup=1;
 6991:                                 }
 6992:                             } else {
 6993:                                 print $logfile "\nUnable to write ".$copyfile.
 6994:                                                ':'.$!."\n";
 6995:                             }
 6996:                         }
 6997:                     }
 6998:                 }
 6999:             }
 7000:         } else {
 7001:             $output = $versionresult;
 7002:         }
 7003:     }
 7004:     return ($output,$logourl);
 7005: }
 7006: 
 7007: sub logo_versioning {
 7008:     my ($targetdir,$file,$logfile) = @_;
 7009:     my $target = $targetdir.'/'.$file;
 7010:     my ($maxversion,$fn,$extn,$output);
 7011:     $maxversion = 0;
 7012:     if ($file =~ /^(.+)\.(\w+)$/) {
 7013:         $fn=$1;
 7014:         $extn=$2;
 7015:     }
 7016:     opendir(DIR,$targetdir);
 7017:     while (my $filename=readdir(DIR)) {
 7018:         if ($filename=~/\Q$fn\E\.(\d+)\.\Q$extn\E$/) {
 7019:             $maxversion=($1>$maxversion)?$1:$maxversion;
 7020:         }
 7021:     }
 7022:     $maxversion++;
 7023:     print $logfile "\nCreating old version ".$maxversion."\n";
 7024:     my $copyfile=$targetdir.'/'.$fn.'.'.$maxversion.'.'.$extn;
 7025:     if (copy($target,$copyfile)) {
 7026:         print $logfile "Copied old target to ".$copyfile."\n";
 7027:         $copyfile=$copyfile.'.meta';
 7028:         if (copy($target.'.meta',$copyfile)) {
 7029:             print $logfile "Copied old target metadata to ".$copyfile."\n";
 7030:             $output = 'ok';
 7031:         } else {
 7032:             print $logfile "Unable to write metadata ".$copyfile.':'.$!."\n";
 7033:             $output = &mt('Failed to copy old meta').", $!, ";
 7034:         }
 7035:     } else {
 7036:         print $logfile "Unable to write ".$copyfile.':'.$!."\n";
 7037:         $output = &mt('Failed to copy old target').", $!, ";
 7038:     }
 7039:     return $output;
 7040: }
 7041: 
 7042: sub write_metadata {
 7043:     my ($dom,$confname,$formname,$targetdir,$file,$logfile) = @_;
 7044:     my (%metadatafields,%metadatakeys,$output);
 7045:     $metadatafields{'title'}=$formname;
 7046:     $metadatafields{'creationdate'}=time;
 7047:     $metadatafields{'lastrevisiondate'}=time;
 7048:     $metadatafields{'copyright'}='public';
 7049:     $metadatafields{'modifyinguser'}=$env{'user.name'}.':'.
 7050:                                          $env{'user.domain'};
 7051:     $metadatafields{'authorspace'}=$confname.':'.$dom;
 7052:     $metadatafields{'domain'}=$dom;
 7053:     {
 7054:         print $logfile "\nWrite metadata file for ".$targetdir.'/'.$file;
 7055:         my $mfh;
 7056:         if (open($mfh,'>'.$targetdir.'/'.$file.'.meta')) {
 7057:             foreach (sort(keys(%metadatafields))) {
 7058:                 unless ($_=~/\./) {
 7059:                     my $unikey=$_;
 7060:                     $unikey=~/^([A-Za-z]+)/;
 7061:                     my $tag=$1;
 7062:                     $tag=~tr/A-Z/a-z/;
 7063:                     print $mfh "\n\<$tag";
 7064:                     foreach (split(/\,/,$metadatakeys{$unikey})) {
 7065:                         my $value=$metadatafields{$unikey.'.'.$_};
 7066:                         $value=~s/\"/\'\'/g;
 7067:                         print $mfh ' '.$_.'="'.$value.'"';
 7068:                     }
 7069:                     print $mfh '>'.
 7070:                         &HTML::Entities::encode($metadatafields{$unikey},'<>&"')
 7071:                             .'</'.$tag.'>';
 7072:                 }
 7073:             }
 7074:             $output = 'ok';
 7075:             print $logfile "\nWrote metadata";
 7076:             close($mfh);
 7077:         } else {
 7078:             print $logfile "\nFailed to open metadata file";
 7079:             $output = &mt('Could not write metadata');
 7080:         }
 7081:     }
 7082:     return $output;
 7083: }
 7084: 
 7085: sub notifysubscribed {
 7086:     foreach my $targetsource (@{$modified_urls}){
 7087:         next unless (ref($targetsource) eq 'ARRAY');
 7088:         my ($target,$source)=@{$targetsource};
 7089:         if ($source ne '') {
 7090:             if (open(my $logfh,'>>'.$source.'.log')) {
 7091:                 print $logfh "\nCleanup phase: Notifications\n";
 7092:                 my @subscribed=&subscribed_hosts($target);
 7093:                 foreach my $subhost (@subscribed) {
 7094:                     print $logfh "\nNotifying host ".$subhost.':';
 7095:                     my $reply=&Apache::lonnet::critical('update:'.$target,$subhost);
 7096:                     print $logfh $reply;
 7097:                 }
 7098:                 my @subscribedmeta=&subscribed_hosts("$target.meta");
 7099:                 foreach my $subhost (@subscribedmeta) {
 7100:                     print $logfh "\nNotifying host for metadata only ".$subhost.':';
 7101:                     my $reply=&Apache::lonnet::critical('update:'.$target.'.meta',
 7102:                                                         $subhost);
 7103:                     print $logfh $reply;
 7104:                 }
 7105:                 print $logfh "\n============ Done ============\n";
 7106:                 close($logfh);
 7107:             }
 7108:         }
 7109:     }
 7110:     return OK;
 7111: }
 7112: 
 7113: sub subscribed_hosts {
 7114:     my ($target) = @_;
 7115:     my @subscribed;
 7116:     if (open(my $fh,"<$target.subscription")) {
 7117:         while (my $subline=<$fh>) {
 7118:             if ($subline =~ /^($match_lonid):/) {
 7119:                 my $host = $1;
 7120:                 if ($host ne $Apache::lonnet::perlvar{'lonHostID'}) {
 7121:                     unless (grep(/^\Q$host\E$/,@subscribed)) {
 7122:                         push(@subscribed,$host);
 7123:                     }
 7124:                 }
 7125:             }
 7126:         }
 7127:     }
 7128:     return @subscribed;
 7129: }
 7130: 
 7131: sub check_switchserver {
 7132:     my ($dom,$confname) = @_;
 7133:     my ($allowed,$switchserver);
 7134:     my $home = &Apache::lonnet::homeserver($confname,$dom);
 7135:     if ($home eq 'no_host') {
 7136:         $home = &Apache::lonnet::domain($dom,'primary');
 7137:     }
 7138:     my @ids=&Apache::lonnet::current_machine_ids();
 7139:     foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
 7140:     if (!$allowed) {
 7141: 	$switchserver='<a href="/adm/switchserver?otherserver='.$home.'&amp;role=dc./'.$dom.'/&amp;destinationurl=/adm/domainprefs">'.&mt('Switch Server').'</a>';
 7142:     }
 7143:     return $switchserver;
 7144: }
 7145: 
 7146: sub modify_quotas {
 7147:     my ($r,$dom,$action,$lastactref,%domconfig) = @_;
 7148:     my ($context,@usertools,@options,%validations,%titles,%confhash,%toolshash,
 7149:         %limithash,$toolregexp,%conditions,$resulttext,%changes,$confname,$configuserok,
 7150:         $author_ok,$switchserver,$errors,$validationitemsref,$validationnamesref,
 7151:         $validationfieldsref);
 7152:     if ($action eq 'quotas') {
 7153:         $context = 'tools'; 
 7154:     } else {
 7155:         $context = $action;
 7156:     }
 7157:     if ($context eq 'requestcourses') {
 7158:         @usertools = ('official','unofficial','community','textbook');
 7159:         @options =('norequest','approval','validate','autolimit');
 7160:         %validations = &Apache::lonnet::auto_courserequest_checks($dom);
 7161:         %titles = &courserequest_titles();
 7162:         $toolregexp = join('|',@usertools);
 7163:         %conditions = &courserequest_conditions();
 7164:         $confname = $dom.'-domainconfig';
 7165:         my $servadm = $r->dir_config('lonAdmEMail');
 7166:         ($configuserok,$author_ok,$switchserver) = &config_check($dom,$confname,$servadm);
 7167:         ($validationitemsref,$validationnamesref,$validationfieldsref) = 
 7168:             &Apache::loncoursequeueadmin::requestcourses_validation_types();
 7169:     } elsif ($context eq 'requestauthor') {
 7170:         @usertools = ('author');
 7171:         %titles = &authorrequest_titles();
 7172:     } else {
 7173:         @usertools = ('aboutme','blog','webdav','portfolio');
 7174:         %titles = &tool_titles();
 7175:     }
 7176:     my %domdefaults = &Apache::lonnet::get_domain_defaults($dom,1);
 7177:     my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($dom);
 7178:     foreach my $key (keys(%env)) {
 7179:         if ($context eq 'requestcourses') {
 7180:             if ($key =~ /^form\.crsreq_($toolregexp)_(.+)$/) {
 7181:                 my $item = $1;
 7182:                 my $type = $2;
 7183:                 if ($type =~ /^limit_(.+)/) {
 7184:                     $limithash{$item}{$1} = $env{$key};
 7185:                 } else {
 7186:                     $confhash{$item}{$type} = $env{$key};
 7187:                 }
 7188:             }
 7189:         } elsif ($context eq 'requestauthor') {
 7190:             if ($key =~ /^\Qform.authorreq_\E(.+)$/) {
 7191:                 $confhash{$1} = $env{$key};
 7192:             }
 7193:         } else {
 7194:             if ($key =~ /^form\.quota_(.+)$/) {
 7195:                 $confhash{'defaultquota'}{$1} = $env{$key};
 7196:             } elsif ($key =~ /^form\.authorquota_(.+)$/) {
 7197:                 $confhash{'authorquota'}{$1} = $env{$key};
 7198:             } elsif ($key =~ /^form\.\Q$context\E_(.+)$/) {
 7199:                 @{$toolshash{$1}} = &Apache::loncommon::get_env_multiple($key);
 7200:             }
 7201:         }
 7202:     }
 7203:     if (($context eq 'requestcourses') || ($context eq 'requestauthor')) {
 7204:         my @approvalnotify = &Apache::loncommon::get_env_multiple('form.'.$context.'notifyapproval');
 7205:         @approvalnotify = sort(@approvalnotify);
 7206:         $confhash{'notify'}{'approval'} = join(',',@approvalnotify);
 7207:         my @crstypes = ('official','unofficial','community','textbook');
 7208:         my @hasuniquecode = &Apache::loncommon::get_env_multiple('form.uniquecode');
 7209:         foreach my $type (@hasuniquecode) {
 7210:             if (grep(/^\Q$type\E$/,@crstypes)) {
 7211:                 $confhash{'uniquecode'}{$type} = 1;
 7212:             }
 7213:         }
 7214:         my (%newbook,%allpos);
 7215:         if ($context eq 'requestcourses') {
 7216:             foreach my $type ('textbooks','templates') {
 7217:                 @{$allpos{$type}} = (); 
 7218:                 my $invalid;
 7219:                 if ($type eq 'textbooks') {
 7220:                     $invalid = &mt('Invalid LON-CAPA course for textbook');
 7221:                 } else {
 7222:                     $invalid = &mt('Invalid LON-CAPA course for template');
 7223:                 }
 7224:                 if ($env{'form.'.$type.'_addbook'}) {
 7225:                     if (($env{'form.'.$type.'_addbook_cnum'} =~ /^$match_courseid$/) &&
 7226:                         ($env{'form.'.$type.'_addbook_cdom'} =~ /^$match_domain$/)) {
 7227:                         if (&Apache::lonnet::homeserver($env{'form.'.$type.'_addbook_cnum'},
 7228:                                                         $env{'form.'.$type.'_addbook_cdom'}) eq 'no_host') {
 7229:                             $errors .= '<li><span class="LC_error">'.$invalid.'</span></li>';
 7230:                         } else {
 7231:                             $newbook{$type} = $env{'form.'.$type.'_addbook_cdom'}.'_'.$env{'form.'.$type.'_addbook_cnum'};
 7232:                             my $position = $env{'form.'.$type.'_addbook_pos'};
 7233:                             $position =~ s/\D+//g;
 7234:                             if ($position ne '') {
 7235:                                 $allpos{$type}[$position] = $newbook{$type};
 7236:                             }
 7237:                         }
 7238:                     } else {
 7239:                         $errors .= '<li><span class="LC_error">'.$invalid.'</span></li>';
 7240:                     }
 7241:                 }
 7242:             } 
 7243:         }
 7244:         if (ref($domconfig{$action}) eq 'HASH') {
 7245:             if (ref($domconfig{$action}{'notify'}) eq 'HASH') {
 7246:                 if ($domconfig{$action}{'notify'}{'approval'} ne $confhash{'notify'}{'approval'}) {
 7247:                     $changes{'notify'}{'approval'} = 1;
 7248:                 }
 7249:             } else {
 7250:                 if ($confhash{'notify'}{'approval'}) {
 7251:                     $changes{'notify'}{'approval'} = 1;
 7252:                 }
 7253:             }
 7254:             if (ref($domconfig{$action}{'uniquecode'}) eq 'HASH') {
 7255:                 if (ref($confhash{'uniquecode'}) eq 'HASH') {
 7256:                     foreach my $crstype (keys(%{$domconfig{$action}{'uniquecode'}})) {
 7257:                         unless ($confhash{'uniquecode'}{$crstype}) {
 7258:                             $changes{'uniquecode'} = 1;
 7259:                         }
 7260:                     }
 7261:                     unless ($changes{'uniquecode'}) {
 7262:                         foreach my $crstype (keys(%{$confhash{'uniquecode'}})) {
 7263:                             unless ($domconfig{$action}{'uniquecode'}{$crstype}) {
 7264:                                 $changes{'uniquecode'} = 1;
 7265:                             }
 7266:                         }
 7267:                     }
 7268:                } else {
 7269:                    $changes{'uniquecode'} = 1;
 7270:                }
 7271:             } elsif (ref($confhash{'uniquecode'}) eq 'HASH') {
 7272:                 $changes{'uniquecode'} = 1;
 7273:             }
 7274:             if ($context eq 'requestcourses') {
 7275:                 foreach my $type ('textbooks','templates') {
 7276:                     if (ref($domconfig{$action}{$type}) eq 'HASH') {
 7277:                         my %deletions;
 7278:                         my @todelete = &Apache::loncommon::get_env_multiple('form.'.$type.'_del');
 7279:                         if (@todelete) {
 7280:                             map { $deletions{$_} = 1; } @todelete;
 7281:                         }
 7282:                         my %imgdeletions;
 7283:                         my @todeleteimages = &Apache::loncommon::get_env_multiple('form.'.$type.'_image_del');
 7284:                         if (@todeleteimages) {
 7285:                             map { $imgdeletions{$_} = 1; } @todeleteimages;
 7286:                         }
 7287:                         my $maxnum = $env{'form.'.$type.'_maxnum'};
 7288:                         for (my $i=0; $i<=$maxnum; $i++) {
 7289:                             my $itemid = $env{'form.'.$type.'_id_'.$i};
 7290:                             my ($key) = ($itemid =~ /^\Q$type\E_(\w+)$/); 
 7291:                             if (ref($domconfig{$action}{$type}{$key}) eq 'HASH') {
 7292:                                 if ($deletions{$key}) {
 7293:                                     if ($domconfig{$action}{$type}{$key}{'image'}) {
 7294:                                         #FIXME need to obsolete item in RES space
 7295:                                     }
 7296:                                     next;
 7297:                                 } else {
 7298:                                     my $newpos = $env{'form.'.$itemid};
 7299:                                     $newpos =~ s/\D+//g;
 7300:                                     foreach my $item ('subject','title','publisher','author') {
 7301:                                         next if ((($item eq 'author') || ($item eq 'publisher')) &&
 7302:                                                  ($type eq 'templates'));
 7303:                                         $confhash{$type}{$key}{$item} = $env{'form.'.$type.'_'.$item.'_'.$i};
 7304:                                         if ($domconfig{$action}{$type}{$key}{$item} ne $confhash{$type}{$key}{$item}) {
 7305:                                             $changes{$type}{$key} = 1;
 7306:                                         }
 7307:                                     }
 7308:                                     $allpos{$type}[$newpos] = $key;
 7309:                                 }
 7310:                                 if ($imgdeletions{$key}) {
 7311:                                     $changes{$type}{$key} = 1;
 7312:                                     #FIXME need to obsolete item in RES space
 7313:                                 } elsif ($env{'form.'.$type.'_image_'.$i.'.filename'}) {
 7314:                                     my ($cdom,$cnum) = split(/_/,$key);
 7315:                                     my ($imgurl,$error) = &process_textbook_image($r,$dom,$confname,$type.'_image_'.$i,
 7316:                                                                                   $cdom,$cnum,$type,$configuserok,
 7317:                                                                                   $switchserver,$author_ok);
 7318:                                     if ($imgurl) {
 7319:                                         $confhash{$type}{$key}{'image'} = $imgurl;
 7320:                                         $changes{$type}{$key} = 1; 
 7321:                                     }
 7322:                                     if ($error) {
 7323:                                         &Apache::lonnet::logthis($error);
 7324:                                         $errors .= '<li><span class="LC_error">'.$error.'</span></li>';
 7325:                                     } 
 7326:                                 } elsif ($domconfig{$action}{$type}{$key}{'image'}) {
 7327:                                     $confhash{$type}{$key}{'image'} = 
 7328:                                         $domconfig{$action}{$type}{$key}{'image'};
 7329:                                 }
 7330:                             }
 7331:                         }
 7332:                     }
 7333:                 }
 7334:             }
 7335:         } else {
 7336:             if ($confhash{'notify'}{'approval'}) {
 7337:                 $changes{'notify'}{'approval'} = 1;
 7338:             }
 7339:             if (ref($confhash{'uniquecode'} eq 'HASH')) {
 7340:                 $changes{'uniquecode'} = 1;
 7341:             }
 7342:         }
 7343:         if ($context eq 'requestcourses') {
 7344:             foreach my $type ('textbooks','templates') {
 7345:                 if ($newbook{$type}) {
 7346:                     $changes{$type}{$newbook{$type}} = 1;
 7347:                     foreach my $item ('subject','title','publisher','author') {
 7348:                         next if ((($item eq 'author') || ($item eq 'publisher')) &&
 7349:                                  ($type eq 'template'));
 7350:                         $env{'form.'.$type.'_addbook_'.$item} =~ s/(`)/'/g;
 7351:                         if ($env{'form.'.$type.'_addbook_'.$item}) {
 7352:                             $confhash{$type}{$newbook{$type}}{$item} = $env{'form.'.$type.'_addbook_'.$item};
 7353:                         }
 7354:                     }
 7355:                     if ($type eq 'textbooks') {
 7356:                         if ($env{'form.'.$type.'_addbook_image.filename'} ne '') {
 7357:                             my ($cdom,$cnum) = split(/_/,$newbook{$type});
 7358:                             my ($imageurl,$error) =
 7359:                                 &process_textbook_image($r,$dom,$confname,$type.'_addbook_image',$cdom,$cnum,$type,
 7360:                                                         $configuserok,$switchserver,$author_ok);
 7361:                             if ($imageurl) {
 7362:                                 $confhash{$type}{$newbook{$type}}{'image'} = $imageurl;
 7363:                             }
 7364:                             if ($error) {
 7365:                                 &Apache::lonnet::logthis($error);
 7366:                                 $errors .= '<li><span class="LC_error">'.$error.'</span></li>';
 7367:                             }
 7368:                         }
 7369:                     }
 7370:                 }
 7371:                 if (@{$allpos{$type}} > 0) {
 7372:                     my $idx = 0;
 7373:                     foreach my $item (@{$allpos{$type}}) {
 7374:                         if ($item ne '') {
 7375:                             $confhash{$type}{$item}{'order'} = $idx;
 7376:                             if (ref($domconfig{$action}) eq 'HASH') {
 7377:                                 if (ref($domconfig{$action}{$type}) eq 'HASH') {
 7378:                                     if (ref($domconfig{$action}{$type}{$item}) eq 'HASH') {
 7379:                                         if ($domconfig{$action}{$type}{$item}{'order'} ne $idx) {
 7380:                                             $changes{$type}{$item} = 1;
 7381:                                         }
 7382:                                     }
 7383:                                 }
 7384:                             }
 7385:                             $idx ++;
 7386:                         }
 7387:                     }
 7388:                 }
 7389:             }
 7390:             if (ref($validationitemsref) eq 'ARRAY') {
 7391:                 foreach my $item (@{$validationitemsref}) {
 7392:                     if ($item eq 'fields') {
 7393:                         my @changed;
 7394:                         @{$confhash{'validation'}{$item}} = &Apache::loncommon::get_env_multiple('form.requestcourses_validation_'.$item);
 7395:                         if (@{$confhash{'validation'}{$item}} > 0) {
 7396:                             @{$confhash{'validation'}{$item}} = sort(@{$confhash{'validation'}{$item}});
 7397:                         }
 7398:                         if (ref($domconfig{'requestcourses'}) eq 'HASH') {
 7399:                             if (ref($domconfig{'requestcourses'}{'validation'}) eq 'HASH') {
 7400:                                 if (ref($domconfig{'requestcourses'}{'validation'}{$item}) eq 'ARRAY') {
 7401:                                     @changed = &Apache::loncommon::compare_arrays($confhash{'validation'}{$item},
 7402:                                                                                   $domconfig{'requestcourses'}{'validation'}{$item});
 7403:                                 } else {
 7404:                                     @changed = @{$confhash{'validation'}{$item}};
 7405:                                 }
 7406:                             } else {
 7407:                                 @changed = @{$confhash{'validation'}{$item}};
 7408:                             }
 7409:                         } else {
 7410:                             @changed = @{$confhash{'validation'}{$item}};
 7411:                         }
 7412:                         if (@changed) {
 7413:                             if ($confhash{'validation'}{$item}) {
 7414:                                 $changes{'validation'}{$item} = join(', ',@{$confhash{'validation'}{$item}});
 7415:                             } else {
 7416:                                 $changes{'validation'}{$item} = &mt('None');
 7417:                             }
 7418:                         }
 7419:                     } else {
 7420:                         $confhash{'validation'}{$item} = $env{'form.requestcourses_validation_'.$item};
 7421:                         if ($item eq 'markup') {
 7422:                             if ($env{'form.requestcourses_validation_'.$item}) {
 7423:                                 $env{'form.requestcourses_validation_'.$item} =~ s/[\n\r\f]+/\s/gs;
 7424:                             }
 7425:                         }
 7426:                         if (ref($domconfig{'requestcourses'}) eq 'HASH') {
 7427:                             if (ref($domconfig{'requestcourses'}{'validation'}) eq 'HASH') {
 7428:                                 if ($domconfig{'requestcourses'}{'validation'}{$item} ne $confhash{'validation'}{$item}) {
 7429:                                     $changes{'validation'}{$item} = $confhash{'validation'}{$item};
 7430:                                 }
 7431:                             } else {
 7432:                                 if ($confhash{'validation'}{$item} ne '') {
 7433:                                     $changes{'validation'}{$item} = $confhash{'validation'}{$item};
 7434:                                 }
 7435:                             }
 7436:                         } else {
 7437:                             if ($confhash{'validation'}{$item} ne '') {
 7438:                                 $changes{'validation'}{$item} = $confhash{'validation'}{$item};
 7439:                             }
 7440:                         }
 7441:                     }
 7442:                 }
 7443:             }
 7444:             if ($env{'form.validationdc'}) {
 7445:                 my $newval = $env{'form.validationdc'};
 7446:                 my %domcoords = &get_active_dcs($dom);
 7447:                 if (exists($domcoords{$newval})) {
 7448:                     $confhash{'validation'}{'dc'} = $newval;
 7449:                 }
 7450:             }
 7451:             if (ref($confhash{'validation'}) eq 'HASH') {
 7452:                 if (ref($domconfig{'requestcourses'}) eq 'HASH') {
 7453:                     if (ref($domconfig{'requestcourses'}{'validation'}) eq 'HASH') {
 7454:                         if ($domconfig{'requestcourses'}{'validation'}{'dc'}) {
 7455:                             unless ($confhash{'validation'}{'dc'} eq $domconfig{'requestcourses'}{'validation'}{'dc'}) {
 7456:                                 if ($confhash{'validation'}{'dc'} eq '') {
 7457:                                     $changes{'validation'}{'dc'} = &mt('None');
 7458:                                 } else {
 7459:                                     $changes{'validation'}{'dc'} = $confhash{'validation'}{'dc'};
 7460:                                 }
 7461:                             }
 7462:                         } elsif ($confhash{'validation'}{'dc'} ne '') {
 7463:                             $changes{'validation'}{'dc'} = $confhash{'validation'}{'dc'};
 7464:                         }
 7465:                     } elsif ($confhash{'validation'}{'dc'} ne '') {
 7466:                         $changes{'validation'}{'dc'} = $confhash{'validation'}{'dc'};
 7467:                     }
 7468:                 } elsif ($confhash{'validation'}{'dc'} ne '') {
 7469:                     $changes{'validation'}{'dc'} = $confhash{'validation'}{'dc'};
 7470:                 }
 7471:             } else {
 7472:                 if (ref($domconfig{'requestcourses'}) eq 'HASH') {
 7473:                     if (ref($domconfig{'requestcourses'}{'validation'}) eq 'HASH') {
 7474:                         if ($domconfig{'requestcourses'}{'validation'}{'dc'}) {
 7475:                             $changes{'validation'}{'dc'} = &mt('None');
 7476:                         }
 7477:                     }
 7478:                 }
 7479:             }
 7480:         }
 7481:     } else {
 7482:         $confhash{'defaultquota'}{'default'} = $env{'form.defaultquota'};
 7483:         $confhash{'authorquota'}{'default'} = $env{'form.authorquota'};
 7484:     }
 7485:     foreach my $item (@usertools) {
 7486:         foreach my $type (@{$types},'default','_LC_adv') {
 7487:             my $unset; 
 7488:             if ($context eq 'requestcourses') {
 7489:                 $unset = '0';
 7490:                 if ($type eq '_LC_adv') {
 7491:                     $unset = '';
 7492:                 }
 7493:                 if ($confhash{$item}{$type} eq 'autolimit') {
 7494:                     $confhash{$item}{$type} .= '=';
 7495:                     unless ($limithash{$item}{$type} =~ /\D/) {
 7496:                         $confhash{$item}{$type} .= $limithash{$item}{$type};
 7497:                     }
 7498:                 }
 7499:             } elsif ($context eq 'requestauthor') {
 7500:                 $unset = '0';
 7501:                 if ($type eq '_LC_adv') {
 7502:                     $unset = '';
 7503:                 }
 7504:             } else {
 7505:                 if (grep(/^\Q$type\E$/,@{$toolshash{$item}})) {
 7506:                     $confhash{$item}{$type} = 1;
 7507:                 } else {
 7508:                     $confhash{$item}{$type} = 0;
 7509:                 }
 7510:             }
 7511:             if (ref($domconfig{$action}) eq 'HASH') {
 7512:                 if ($action eq 'requestauthor') {
 7513:                     if ($domconfig{$action}{$type} ne $confhash{$type}) {
 7514:                         $changes{$type} = 1;
 7515:                     }
 7516:                 } elsif (ref($domconfig{$action}{$item}) eq 'HASH') {
 7517:                     if ($domconfig{$action}{$item}{$type} ne $confhash{$item}{$type}) {
 7518:                         $changes{$item}{$type} = 1;
 7519:                     }
 7520:                 } else {
 7521:                     if ($context eq 'requestcourses') {
 7522:                         if ($confhash{$item}{$type} ne $unset) {
 7523:                             $changes{$item}{$type} = 1;
 7524:                         }
 7525:                     } else {
 7526:                         if (!$confhash{$item}{$type}) {
 7527:                             $changes{$item}{$type} = 1;
 7528:                         }
 7529:                     }
 7530:                 }
 7531:             } else {
 7532:                 if ($context eq 'requestcourses') {
 7533:                     if ($confhash{$item}{$type} ne $unset) {
 7534:                         $changes{$item}{$type} = 1;
 7535:                     }
 7536:                 } elsif ($context eq 'requestauthor') {
 7537:                     if ($confhash{$type} ne $unset) {
 7538:                         $changes{$type} = 1;
 7539:                     }
 7540:                 } else {
 7541:                     if (!$confhash{$item}{$type}) {
 7542:                         $changes{$item}{$type} = 1;
 7543:                     }
 7544:                 }
 7545:             }
 7546:         }
 7547:     }
 7548:     unless (($context eq 'requestcourses') || ($context eq 'requestauthor')) {
 7549:         if (ref($domconfig{'quotas'}) eq 'HASH') {
 7550:             if (ref($domconfig{'quotas'}{'defaultquota'}) eq 'HASH') {
 7551:                 foreach my $key (keys(%{$domconfig{'quotas'}{'defaultquota'}})) {
 7552:                     if (exists($confhash{'defaultquota'}{$key})) {
 7553:                         if ($confhash{'defaultquota'}{$key} ne $domconfig{'quotas'}{'defaultquota'}{$key}) {
 7554:                             $changes{'defaultquota'}{$key} = 1;
 7555:                         }
 7556:                     } else {
 7557:                         $confhash{'defaultquota'}{$key} = $domconfig{'quotas'}{'defaultquota'}{$key};
 7558:                     }
 7559:                 }
 7560:             } else {
 7561:                 foreach my $key (keys(%{$domconfig{'quotas'}})) {
 7562:                     if (exists($confhash{'defaultquota'}{$key})) {
 7563:                         if ($confhash{'defaultquota'}{$key} ne $domconfig{'quotas'}{$key}) {
 7564:                             $changes{'defaultquota'}{$key} = 1;
 7565:                         }
 7566:                     } else {
 7567:                         $confhash{'defaultquota'}{$key} = $domconfig{'quotas'}{$key};
 7568:                     }
 7569:                 }
 7570:             }
 7571:             if (ref($domconfig{'quotas'}{'authorquota'}) eq 'HASH') {
 7572:                 foreach my $key (keys(%{$domconfig{'quotas'}{'authorquota'}})) {
 7573:                     if (exists($confhash{'authorquota'}{$key})) {
 7574:                         if ($confhash{'authorquota'}{$key} ne $domconfig{'quotas'}{'authorquota'}{$key}) {
 7575:                             $changes{'authorquota'}{$key} = 1;
 7576:                         }
 7577:                     } else {
 7578:                         $confhash{'authorquota'}{$key} = $domconfig{'quotas'}{'authorquota'}{$key};
 7579:                     }
 7580:                 }
 7581:             }
 7582:         }
 7583:         if (ref($confhash{'defaultquota'}) eq 'HASH') {
 7584:             foreach my $key (keys(%{$confhash{'defaultquota'}})) {
 7585:                 if (ref($domconfig{'quotas'}) eq 'HASH') {
 7586:                     if (ref($domconfig{'quotas'}{'defaultquota'}) eq 'HASH') {
 7587:                         if (!exists($domconfig{'quotas'}{'defaultquota'}{$key})) {
 7588:                             $changes{'defaultquota'}{$key} = 1;
 7589:                         }
 7590:                     } else {
 7591:                         if (!exists($domconfig{'quotas'}{$key})) {
 7592:                             $changes{'defaultquota'}{$key} = 1;
 7593:                         }
 7594:                     }
 7595:                 } else {
 7596:                     $changes{'defaultquota'}{$key} = 1;
 7597:                 }
 7598:             }
 7599:         }
 7600:         if (ref($confhash{'authorquota'}) eq 'HASH') {
 7601:             foreach my $key (keys(%{$confhash{'authorquota'}})) {
 7602:                 if (ref($domconfig{'quotas'}) eq 'HASH') {
 7603:                     if (ref($domconfig{'quotas'}{'authorquota'}) eq 'HASH') {
 7604:                         if (!exists($domconfig{'quotas'}{'authorquota'}{$key})) {
 7605:                             $changes{'authorquota'}{$key} = 1;
 7606:                         }
 7607:                     } else {
 7608:                         $changes{'authorquota'}{$key} = 1;
 7609:                     }
 7610:                 } else {
 7611:                     $changes{'authorquota'}{$key} = 1;
 7612:                 }
 7613:             }
 7614:         }
 7615:     }
 7616: 
 7617:     if ($context eq 'requestauthor') {
 7618:         $domdefaults{'requestauthor'} = \%confhash;
 7619:     } else {
 7620:         foreach my $key (keys(%confhash)) {
 7621:             unless (($context eq 'requestcourses') && (($key eq 'textbooks') || ($key eq 'templates'))) {
 7622:                 $domdefaults{$key} = $confhash{$key};
 7623:             }
 7624:         }
 7625:     }
 7626: 
 7627:     my %quotahash = (
 7628:                       $action => { %confhash }
 7629:                     );
 7630:     my $putresult = &Apache::lonnet::put_dom('configuration',\%quotahash,
 7631:                                              $dom);
 7632:     if ($putresult eq 'ok') {
 7633:         if (keys(%changes) > 0) {
 7634:             my $cachetime = 24*60*60;
 7635:             &Apache::lonnet::do_cache_new('domdefaults',$dom,\%domdefaults,$cachetime);
 7636:             if (ref($lastactref) eq 'HASH') {
 7637:                 $lastactref->{'domdefaults'} = 1;
 7638:             }
 7639:             $resulttext = &mt('Changes made:').'<ul>';
 7640:             unless (($context eq 'requestcourses') ||
 7641:                     ($context eq 'requestauthor')) {
 7642:                 if (ref($changes{'defaultquota'}) eq 'HASH') {
 7643:                     $resulttext .= '<li>'.&mt('Portfolio default quotas').'<ul>';
 7644:                     foreach my $type (@{$types},'default') {
 7645:                         if (defined($changes{'defaultquota'}{$type})) {
 7646:                             my $typetitle = $usertypes->{$type};
 7647:                             if ($type eq 'default') {
 7648:                                 $typetitle = $othertitle;
 7649:                             }
 7650:                             $resulttext .= '<li>'.&mt('[_1] set to [_2] MB',$typetitle,$confhash{'defaultquota'}{$type}).'</li>';
 7651:                         }
 7652:                     }
 7653:                     $resulttext .= '</ul></li>';
 7654:                 }
 7655:                 if (ref($changes{'authorquota'}) eq 'HASH') {
 7656:                     $resulttext .= '<li>'.&mt('Authoring Space default quotas').'<ul>';
 7657:                     foreach my $type (@{$types},'default') {
 7658:                         if (defined($changes{'authorquota'}{$type})) {
 7659:                             my $typetitle = $usertypes->{$type};
 7660:                             if ($type eq 'default') {
 7661:                                 $typetitle = $othertitle;
 7662:                             }
 7663:                             $resulttext .= '<li>'.&mt('[_1] set to [_2] MB',$typetitle,$confhash{'authorquota'}{$type}).'</li>';
 7664:                         }
 7665:                     }
 7666:                     $resulttext .= '</ul></li>';
 7667:                 }
 7668:             }
 7669:             my %newenv;
 7670:             foreach my $item (@usertools) {
 7671:                 my (%haschgs,%inconf);
 7672:                 if ($context eq 'requestauthor') {
 7673:                     %haschgs = %changes;
 7674:                     %inconf = %confhash;
 7675:                 } else {
 7676:                     if (ref($changes{$item}) eq 'HASH') {
 7677:                         %haschgs = %{$changes{$item}};
 7678:                     }
 7679:                     if (ref($confhash{$item}) eq 'HASH') {
 7680:                         %inconf = %{$confhash{$item}};
 7681:                     }
 7682:                 }
 7683:                 if (keys(%haschgs) > 0) {
 7684:                     my $newacc = 
 7685:                         &Apache::lonnet::usertools_access($env{'user.name'},
 7686:                                                           $env{'user.domain'},
 7687:                                                           $item,'reload',$context);
 7688:                     if (($context eq 'requestcourses') ||
 7689:                         ($context eq 'requestauthor')) {
 7690:                         if ($env{'environment.canrequest.'.$item} ne $newacc) {
 7691:                             $newenv{'environment.canrequest.'.$item} = $newacc;
 7692:                         }
 7693:                     } else {
 7694:                         if ($env{'environment.availabletools.'.$item} ne $newacc) { 
 7695:                             $newenv{'environment.availabletools.'.$item} = $newacc;
 7696:                         }
 7697:                     }
 7698:                     unless ($context eq 'requestauthor') {
 7699:                         $resulttext .= '<li>'.$titles{$item}.'<ul>';
 7700:                     }
 7701:                     foreach my $type (@{$types},'default','_LC_adv') {
 7702:                         if ($haschgs{$type}) {
 7703:                             my $typetitle = $usertypes->{$type};
 7704:                             if ($type eq 'default') {
 7705:                                 $typetitle = $othertitle;
 7706:                             } elsif ($type eq '_LC_adv') {
 7707:                                 $typetitle = 'LON-CAPA Advanced Users'; 
 7708:                             }
 7709:                             if ($inconf{$type}) {
 7710:                                 if ($context eq 'requestcourses') {
 7711:                                     my $cond;
 7712:                                     if ($inconf{$type} =~ /^autolimit=(\d*)$/) {
 7713:                                         if ($1 eq '') {
 7714:                                             $cond = &mt('(Automatic processing of any request).');
 7715:                                         } else {
 7716:                                             $cond = &mt('(Automatic processing of requests up to limit of [quant,_1,request] per user).',$1);
 7717:                                         }
 7718:                                     } else { 
 7719:                                         $cond = $conditions{$inconf{$type}};
 7720:                                     }
 7721:                                     $resulttext .= '<li>'.&mt('Set to be available to [_1].',$typetitle).' '.$cond.'</li>';
 7722:                                 } elsif ($context eq 'requestauthor') {
 7723:                                     $resulttext .= '<li>'.&mt('Set to "[_1]" for "[_2]".',
 7724:                                                              $titles{$inconf{$type}},$typetitle);
 7725: 
 7726:                                 } else {
 7727:                                     $resulttext .= '<li>'.&mt('Set to be available to [_1]',$typetitle).'</li>';
 7728:                                 }
 7729:                             } else {
 7730:                                 if ($type eq '_LC_adv') {
 7731:                                     if ($inconf{$type} eq '0') {
 7732:                                         $resulttext .= '<li>'.&mt('Set to be unavailable to [_1]',$typetitle).'</li>';
 7733:                                     } else { 
 7734:                                         $resulttext .= '<li>'.&mt('No override set for [_1]',$typetitle).'</li>';
 7735:                                     }
 7736:                                 } else {
 7737:                                     $resulttext .= '<li>'.&mt('Set to be unavailable to [_1]',$typetitle).'</li>';
 7738:                                 }
 7739:                             }
 7740:                         }
 7741:                     }
 7742:                     unless ($context eq 'requestauthor') {
 7743:                         $resulttext .= '</ul></li>';
 7744:                     }
 7745:                 }
 7746:             }
 7747:             if (($action eq 'requestcourses') || ($action eq 'requestauthor')) {
 7748:                 if (ref($changes{'notify'}) eq 'HASH') {
 7749:                     if ($changes{'notify'}{'approval'}) {
 7750:                         if (ref($confhash{'notify'}) eq 'HASH') {
 7751:                             if ($confhash{'notify'}{'approval'}) {
 7752:                                 $resulttext .= '<li>'.&mt('Notification of requests requiring approval will be sent to: ').$confhash{'notify'}{'approval'}.'</li>';
 7753:                             } else {
 7754:                                 $resulttext .= '<li>'.&mt('No Domain Coordinators will receive notification of requests requiring approval.').'</li>';
 7755:                             }
 7756:                         }
 7757:                     }
 7758:                 }
 7759:             }
 7760:             if ($action eq 'requestcourses') {
 7761:                 my @offon = ('off','on');
 7762:                 if ($changes{'uniquecode'}) {
 7763:                     if (ref($confhash{'uniquecode'}) eq 'HASH') {
 7764:                         my $codestr = join(' ',map{ &mt($_); } sort(keys(%{$confhash{'uniquecode'}})));
 7765:                         $resulttext .= '<li>'.
 7766:                                        &mt('Generation of six character code as course identifier for distribution to students set to on for: [_1].','<b>'.$codestr.'</b>').
 7767:                                        '</li>';
 7768:                     } else {
 7769:                         $resulttext .= '<li>'.&mt('Generation of six character code as course identifier for distribution to students set to off.').
 7770:                                        '</li>';
 7771:                     }
 7772:                 }
 7773:                 foreach my $type ('textbooks','templates') {
 7774:                     if (ref($changes{$type}) eq 'HASH') {
 7775:                         $resulttext .= '<li>'.&mt("Available $type updated").'<ul>';
 7776:                         foreach my $key (sort(keys(%{$changes{$type}}))) {
 7777:                             my %coursehash = &Apache::lonnet::coursedescription($key);
 7778:                             my $coursetitle = $coursehash{'description'};
 7779:                             my $position = $confhash{$type}{$key}{'order'} + 1;
 7780:                             $resulttext .= '<li>';
 7781:                             foreach my $item ('subject','title','publisher','author') {
 7782:                                 next if ((($item eq 'author') || ($item eq 'publisher')) &&
 7783:                                          ($type eq 'templates'));
 7784:                                 my $name = $item.':';
 7785:                                 $name =~ s/^(\w)/\U$1/;
 7786:                                 $resulttext .= &mt($name).' '.$confhash{$type}{$key}{$item}.'<br />';
 7787:                             }
 7788:                             $resulttext .= ' '.&mt('Order: [_1]',$position).'<br />';
 7789:                             if ($type eq 'textbooks') {
 7790:                                 if ($confhash{$type}{$key}{'image'}) {
 7791:                                     $resulttext .= ' '.&mt('Image: [_1]',
 7792:                                                    '<img src="'.$confhash{$type}{$key}{'image'}.'"'.
 7793:                                                    ' alt="Textbook cover" />').'<br />';
 7794:                                 }
 7795:                             }
 7796:                             $resulttext .= ' '.&mt('LON-CAPA Course: [_1]',$coursetitle).'</li>';
 7797:                         }
 7798:                         $resulttext .= '</ul></li>';
 7799:                     }
 7800:                 }
 7801:                 if (ref($changes{'validation'}) eq 'HASH') {
 7802:                     if ((ref($validationitemsref) eq 'ARRAY') && (ref($validationnamesref) eq 'HASH')) {
 7803:                         $resulttext .= '<li>'.&mt('Validation of courses/communities updated').'<ul>';
 7804:                         foreach my $item (@{$validationitemsref}) {
 7805:                             if (exists($changes{'validation'}{$item})) {
 7806:                                 if ($item eq 'markup') {
 7807:                                     $resulttext .= '<li>'.&mt('[_1] set to: [_2]',$validationnamesref->{$item},
 7808:                                                               '<br /><pre>'.$changes{'validation'}{$item}.'</pre>').'</li>';
 7809:                                 } else {
 7810:                                     $resulttext .= '<li>'.&mt('[_1] set to: [_2]',$validationnamesref->{$item},
 7811:                                                               '<b>'.$changes{'validation'}{$item}.'</b>').'</li>';
 7812:                                 }
 7813:                             }
 7814:                         }
 7815:                         if (exists($changes{'validation'}{'dc'})) {
 7816:                             $resulttext .= '<li>'.&mt('Validated course requests identified as processed by: [_1]',
 7817:                                                      '<b>'.$changes{'validation'}{'dc'}.'</b>').'</li>';
 7818:                         }
 7819:                     }
 7820:                 }
 7821:             }
 7822:             $resulttext .= '</ul>';
 7823:             if (keys(%newenv)) {
 7824:                 &Apache::lonnet::appenv(\%newenv);
 7825:             }
 7826:         } else {
 7827:             if ($context eq 'requestcourses') {
 7828:                 $resulttext = &mt('No changes made to rights to request creation of courses.');
 7829:             } elsif ($context eq 'requestauthor') {
 7830:                 $resulttext = &mt('No changes made to rights to request author space.');
 7831:             } else {
 7832:                 $resulttext = &mt('No changes made to availability of personal information pages, blogs, portfolios or default quotas');
 7833:             }
 7834:         }
 7835:     } else {
 7836:         $resulttext = '<span class="LC_error">'.
 7837: 	    &mt('An error occurred: [_1]',$putresult).'</span>';
 7838:     }
 7839:     if ($errors) {
 7840:         $resulttext .= '<p>'.&mt('The following errors occurred when modifying Textbook settings.').
 7841:                        '<ul>'.$errors.'</ul></p>';
 7842:     }
 7843:     return $resulttext;
 7844: }
 7845: 
 7846: sub process_textbook_image {
 7847:     my ($r,$dom,$confname,$caller,$cdom,$cnum,$type,$configuserok,$switchserver,$author_ok) = @_;
 7848:     my $filename = $env{'form.'.$caller.'.filename'};
 7849:     my ($error,$url);
 7850:     my ($width,$height) = (50,50);
 7851:     if ($configuserok eq 'ok') {
 7852:         if ($switchserver) {
 7853:             $error = &mt('Upload of textbook image is not permitted to this server: [_1]',
 7854:                          $switchserver);
 7855:         } elsif ($author_ok eq 'ok') {
 7856:             my ($result,$imageurl) =
 7857:                 &publishlogo($r,'upload',$caller,$dom,$confname,
 7858:                              "$type/$dom/$cnum/cover",$width,$height);
 7859:             if ($result eq 'ok') {
 7860:                 $url = $imageurl;
 7861:             } else {
 7862:                 $error = &mt("Upload of [_1] failed because an error occurred publishing the file in RES space. Error was: [_2].",$filename,$result);
 7863:             }
 7864:         } else {
 7865:             $error = &mt("Upload of [_1] failed because an author role could not be assigned to a Domain Configuration user ([_2]) in domain: [_3].  Error was: [_4].",$filename,$confname,$dom,$author_ok);
 7866:         }
 7867:     } else {
 7868:         $error = &mt("Upload of [_1] failed because a Domain Configuration user ([_2]) could not be created in domain: [_3].  Error was: [_4].",$filename,$confname,$dom,$configuserok);
 7869:     }
 7870:     return ($url,$error);
 7871: }
 7872: 
 7873: sub modify_autoenroll {
 7874:     my ($dom,$lastactref,%domconfig) = @_;
 7875:     my ($resulttext,%changes);
 7876:     my %currautoenroll;
 7877:     if (ref($domconfig{'autoenroll'}) eq 'HASH') {
 7878:         foreach my $key (keys(%{$domconfig{'autoenroll'}})) {
 7879:             $currautoenroll{$key} = $domconfig{'autoenroll'}{$key};
 7880:         }
 7881:     }
 7882:     my $autorun = &Apache::lonnet::auto_run(undef,$dom),
 7883:     my %title = ( run => 'Auto-enrollment active',
 7884:                   sender => 'Sender for notification messages',
 7885:                   coowners => 'Automatic assignment of co-ownership to instructors of record (institutional data)');
 7886:     my @offon = ('off','on');
 7887:     my $sender_uname = $env{'form.sender_uname'};
 7888:     my $sender_domain = $env{'form.sender_domain'};
 7889:     if ($sender_domain eq '') {
 7890:         $sender_uname = '';
 7891:     } elsif ($sender_uname eq '') {
 7892:         $sender_domain = '';
 7893:     }
 7894:     my $coowners = $env{'form.autoassign_coowners'};
 7895:     my %autoenrollhash =  (
 7896:                        autoenroll => { 'run' => $env{'form.autoenroll_run'},
 7897:                                        'sender_uname' => $sender_uname,
 7898:                                        'sender_domain' => $sender_domain,
 7899:                                        'co-owners' => $coowners,
 7900:                                 }
 7901:                      );
 7902:     my $putresult = &Apache::lonnet::put_dom('configuration',\%autoenrollhash,
 7903:                                              $dom);
 7904:     if ($putresult eq 'ok') {
 7905:         if (exists($currautoenroll{'run'})) {
 7906:              if ($currautoenroll{'run'} ne $env{'form.autoenroll_run'}) {
 7907:                  $changes{'run'} = 1;
 7908:              }
 7909:         } elsif ($autorun) {
 7910:             if ($env{'form.autoenroll_run'} ne '1') {
 7911:                  $changes{'run'} = 1;
 7912:             }
 7913:         }
 7914:         if ($currautoenroll{'sender_uname'} ne $sender_uname) {
 7915:             $changes{'sender'} = 1;
 7916:         }
 7917:         if ($currautoenroll{'sender_domain'} ne $sender_domain) {
 7918:             $changes{'sender'} = 1;
 7919:         }
 7920:         if ($currautoenroll{'co-owners'} ne '') {
 7921:             if ($currautoenroll{'co-owners'} ne $coowners) {
 7922:                 $changes{'coowners'} = 1;
 7923:             }
 7924:         } elsif ($coowners) {
 7925:             $changes{'coowners'} = 1;
 7926:         }      
 7927:         if (keys(%changes) > 0) {
 7928:             $resulttext = &mt('Changes made:').'<ul>';
 7929:             if ($changes{'run'}) {
 7930:                 $resulttext .= '<li>'.&mt("$title{'run'} set to $offon[$env{'form.autoenroll_run'}]").'</li>';
 7931:             }
 7932:             if ($changes{'sender'}) {
 7933:                 if ($sender_uname eq '' || $sender_domain eq '') {
 7934:                     $resulttext .= '<li>'.&mt("$title{'sender'} set to default (course owner).").'</li>';
 7935:                 } else {
 7936:                     $resulttext .= '<li>'.&mt("$title{'sender'} set to [_1]",$sender_uname.':'.$sender_domain).'</li>';
 7937:                 }
 7938:             }
 7939:             if ($changes{'coowners'}) {
 7940:                 $resulttext .= '<li>'.&mt("$title{'coowners'} set to $offon[$env{'form.autoassign_coowners'}]").'</li>';
 7941:                 &Apache::loncommon::devalidate_domconfig_cache($dom);
 7942:                 if (ref($lastactref) eq 'HASH') {
 7943:                     $lastactref->{'domainconfig'} = 1;
 7944:                 }
 7945:             }
 7946:             $resulttext .= '</ul>';
 7947:         } else {
 7948:             $resulttext = &mt('No changes made to auto-enrollment settings');
 7949:         }
 7950:     } else {
 7951:         $resulttext = '<span class="LC_error">'.
 7952: 	    &mt('An error occurred: [_1]',$putresult).'</span>';
 7953:     }
 7954:     return $resulttext;
 7955: }
 7956: 
 7957: sub modify_autoupdate {
 7958:     my ($dom,%domconfig) = @_;
 7959:     my ($resulttext,%currautoupdate,%fields,%changes);
 7960:     if (ref($domconfig{'autoupdate'}) eq 'HASH') {
 7961:         foreach my $key (keys(%{$domconfig{'autoupdate'}})) {
 7962:             $currautoupdate{$key} = $domconfig{'autoupdate'}{$key};
 7963:         }
 7964:     }
 7965:     my @offon = ('off','on');
 7966:     my %title = &Apache::lonlocal::texthash (
 7967:                    run => 'Auto-update:',
 7968:                    classlists => 'Updates to user information in classlists?'
 7969:                 );
 7970:     my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($dom);
 7971:     my %fieldtitles = &Apache::lonlocal::texthash (
 7972:                         id => 'Student/Employee ID',
 7973:                         permanentemail => 'E-mail address',
 7974:                         lastname => 'Last Name',
 7975:                         firstname => 'First Name',
 7976:                         middlename => 'Middle Name',
 7977:                         generation => 'Generation',
 7978:                       );
 7979:     $othertitle = &mt('All users');
 7980:     if (keys(%{$usertypes}) >  0) {
 7981:         $othertitle = &mt('Other users');
 7982:     }
 7983:     foreach my $key (keys(%env)) {
 7984:         if ($key =~ /^form\.updateable_(.+)_([^_]+)$/) {
 7985:             my ($usertype,$item) = ($1,$2);
 7986:             if (grep(/^\Q$item\E$/,keys(%fieldtitles))) {
 7987:                 if ($usertype eq 'default') {   
 7988:                     push(@{$fields{$1}},$2);
 7989:                 } elsif (ref($types) eq 'ARRAY') {
 7990:                     if (grep(/^\Q$usertype\E$/,@{$types})) {
 7991:                         push(@{$fields{$1}},$2);
 7992:                     }
 7993:                 }
 7994:             }
 7995:         }
 7996:     }
 7997:     my @lockablenames = &Apache::loncommon::get_env_multiple('form.lockablenames');
 7998:     @lockablenames = sort(@lockablenames);
 7999:     if (ref($currautoupdate{'lockablenames'}) eq 'ARRAY') {
 8000:         my @changed = &Apache::loncommon::compare_arrays($currautoupdate{'lockablenames'},\@lockablenames);
 8001:         if (@changed) {
 8002:             $changes{'lockablenames'} = 1;
 8003:         }
 8004:     } else {
 8005:         if (@lockablenames) {
 8006:             $changes{'lockablenames'} = 1;
 8007:         }
 8008:     }
 8009:     my %updatehash = (
 8010:                       autoupdate => { run => $env{'form.autoupdate_run'},
 8011:                                       classlists => $env{'form.classlists'},
 8012:                                       fields => {%fields},
 8013:                                       lockablenames => \@lockablenames,
 8014:                                     }
 8015:                      );
 8016:     foreach my $key (keys(%currautoupdate)) {
 8017:         if (($key eq 'run') || ($key eq 'classlists')) {
 8018:             if (exists($updatehash{autoupdate}{$key})) {
 8019:                 if ($currautoupdate{$key} ne $updatehash{autoupdate}{$key}) {
 8020:                     $changes{$key} = 1;
 8021:                 }
 8022:             }
 8023:         } elsif ($key eq 'fields') {
 8024:             if (ref($currautoupdate{$key}) eq 'HASH') {
 8025:                 foreach my $item (@{$types},'default') {
 8026:                     if (ref($currautoupdate{$key}{$item}) eq 'ARRAY') {
 8027:                         my $change = 0;
 8028:                         foreach my $type (@{$currautoupdate{$key}{$item}}) {
 8029:                             if (!exists($fields{$item})) {
 8030:                                 $change = 1;
 8031:                                 last;
 8032:                             } elsif (ref($fields{$item}) eq 'ARRAY') {
 8033:                                 if (!grep(/^\Q$type\E$/,@{$fields{$item}})) {
 8034:                                     $change = 1;
 8035:                                     last;
 8036:                                 }
 8037:                             }
 8038:                         }
 8039:                         if ($change) {
 8040:                             push(@{$changes{$key}},$item);
 8041:                         }
 8042:                     } 
 8043:                 }
 8044:             }
 8045:         } elsif ($key eq 'lockablenames') {
 8046:             if (ref($currautoupdate{$key}) eq 'ARRAY') {
 8047:                 my @changed = &Apache::loncommon::compare_arrays($currautoupdate{'lockablenames'},\@lockablenames);
 8048:                 if (@changed) {
 8049:                     $changes{'lockablenames'} = 1;
 8050:                 }
 8051:             } else {
 8052:                 if (@lockablenames) {
 8053:                     $changes{'lockablenames'} = 1;
 8054:                 }
 8055:             }
 8056:         }
 8057:     }
 8058:     unless (grep(/^\Qlockablenames\E$/,keys(%currautoupdate))) {
 8059:         if (@lockablenames) {
 8060:             $changes{'lockablenames'} = 1;
 8061:         }
 8062:     }
 8063:     foreach my $item (@{$types},'default') {
 8064:         if (defined($fields{$item})) {
 8065:             if (ref($currautoupdate{'fields'}) eq 'HASH') {
 8066:                 if (ref($currautoupdate{'fields'}{$item}) eq 'ARRAY') {
 8067:                     my $change = 0;
 8068:                     if (ref($fields{$item}) eq 'ARRAY') {
 8069:                         foreach my $type (@{$fields{$item}}) {
 8070:                             if (!grep(/^\Q$type\E$/,@{$currautoupdate{'fields'}{$item}})) {
 8071:                                 $change = 1;
 8072:                                 last;
 8073:                             }
 8074:                         }
 8075:                     }
 8076:                     if ($change) {
 8077:                         push(@{$changes{'fields'}},$item);
 8078:                     }
 8079:                 } else {
 8080:                     push(@{$changes{'fields'}},$item);
 8081:                 }
 8082:             } else {
 8083:                 push(@{$changes{'fields'}},$item);
 8084:             }
 8085:         }
 8086:     }
 8087:     my $putresult = &Apache::lonnet::put_dom('configuration',\%updatehash,
 8088:                                              $dom);
 8089:     if ($putresult eq 'ok') {
 8090:         if (keys(%changes) > 0) {
 8091:             $resulttext = &mt('Changes made:').'<ul>';
 8092:             foreach my $key (sort(keys(%changes))) {
 8093:                 if ($key eq 'lockablenames') {
 8094:                     $resulttext .= '<li>';
 8095:                     if (@lockablenames) {
 8096:                         $usertypes->{'default'} = $othertitle;
 8097:                         $resulttext .= &mt("User preference to disable replacement of user's name with institutional data (by auto-update), available for the following affiliations:").' '.
 8098:                                    join(', ', map { $usertypes->{$_}; } @lockablenames).'</li>';
 8099:                     } else {
 8100:                         $resulttext .= &mt("User preference to disable replacement of user's name with institutional data (by auto-update) is unavailable.");
 8101:                     }
 8102:                     $resulttext .= '</li>';
 8103:                 } elsif (ref($changes{$key}) eq 'ARRAY') {
 8104:                     foreach my $item (@{$changes{$key}}) {
 8105:                         my @newvalues;
 8106:                         foreach my $type (@{$fields{$item}}) {
 8107:                             push(@newvalues,$fieldtitles{$type});
 8108:                         }
 8109:                         my $newvaluestr;
 8110:                         if (@newvalues > 0) {
 8111:                             $newvaluestr = join(', ',@newvalues);
 8112:                         } else {
 8113:                             $newvaluestr = &mt('none');
 8114:                         }
 8115:                         if ($item eq 'default') {
 8116:                             $resulttext .= '<li>'.&mt("Updates for '[_1]' set to: '[_2]'",$othertitle,$newvaluestr).'</li>';
 8117:                         } else {
 8118:                             $resulttext .= '<li>'.&mt("Updates for '[_1]' set to: '[_2]'",$usertypes->{$item},$newvaluestr).'</li>';
 8119:                         }
 8120:                     }
 8121:                 } else {
 8122:                     my $newvalue;
 8123:                     if ($key eq 'run') {
 8124:                         $newvalue = $offon[$env{'form.autoupdate_run'}];
 8125:                     } else {
 8126:                         $newvalue = $offon[$env{'form.'.$key}];
 8127:                     }
 8128:                     $resulttext .= '<li>'.&mt("[_1] set to $newvalue",$title{$key}).'</li>';
 8129:                 }
 8130:             }
 8131:             $resulttext .= '</ul>';
 8132:         } else {
 8133:             $resulttext = &mt('No changes made to autoupdates');
 8134:         }
 8135:     } else {
 8136:         $resulttext = '<span class="LC_error">'.
 8137: 	    &mt('An error occurred: [_1]',$putresult).'</span>';
 8138:     }
 8139:     return $resulttext;
 8140: }
 8141: 
 8142: sub modify_autocreate {
 8143:     my ($dom,%domconfig) = @_;
 8144:     my ($resulttext,%changes,%currautocreate,%newvals,%autocreatehash);
 8145:     if (ref($domconfig{'autocreate'}) eq 'HASH') {
 8146:         foreach my $key (keys(%{$domconfig{'autocreate'}})) {
 8147:             $currautocreate{$key} = $domconfig{'autocreate'}{$key};
 8148:         }
 8149:     }
 8150:     my %title= ( xml => 'Auto-creation of courses in XML course description files',
 8151:                  req => 'Auto-creation of validated requests for official courses',
 8152:                  xmldc => 'Identity of course creator of courses from XML files',
 8153:                );
 8154:     my @types = ('xml','req');
 8155:     foreach my $item (@types) {
 8156:         $newvals{$item} = $env{'form.autocreate_'.$item};
 8157:         $newvals{$item} =~ s/\D//g;
 8158:         $newvals{$item} = 0 if ($newvals{$item} eq '');
 8159:     }
 8160:     $newvals{'xmldc'} = $env{'form.autocreate_xmldc'};
 8161:     my %domcoords = &get_active_dcs($dom);
 8162:     unless (exists($domcoords{$newvals{'xmldc'}})) {
 8163:         $newvals{'xmldc'} = '';
 8164:     } 
 8165:     %autocreatehash =  (
 8166:                         autocreate => { xml => $newvals{'xml'},
 8167:                                         req => $newvals{'req'},
 8168:                                       }
 8169:                        );
 8170:     if ($newvals{'xmldc'} ne '') {
 8171:         $autocreatehash{'autocreate'}{'xmldc'} = $newvals{'xmldc'};
 8172:     }
 8173:     my $putresult = &Apache::lonnet::put_dom('configuration',\%autocreatehash,
 8174:                                              $dom);
 8175:     if ($putresult eq 'ok') {
 8176:         my @items = @types;
 8177:         if ($newvals{'xml'}) {
 8178:             push(@items,'xmldc');
 8179:         }
 8180:         foreach my $item (@items) {
 8181:             if (exists($currautocreate{$item})) {
 8182:                 if ($currautocreate{$item} ne $newvals{$item}) {
 8183:                     $changes{$item} = 1;
 8184:                 }
 8185:             } elsif ($newvals{$item}) {
 8186:                 $changes{$item} = 1;
 8187:             }
 8188:         }
 8189:         if (keys(%changes) > 0) {
 8190:             my @offon = ('off','on'); 
 8191:             $resulttext = &mt('Changes made:').'<ul>';
 8192:             foreach my $item (@types) {
 8193:                 if ($changes{$item}) {
 8194:                     my $newtxt = $offon[$newvals{$item}];
 8195:                     $resulttext .= '<li>'.
 8196:                                    &mt("$title{$item} set to [_1]$newtxt [_2]",
 8197:                                        '<b>','</b>').
 8198:                                    '</li>';
 8199:                 }
 8200:             }
 8201:             if ($changes{'xmldc'}) {
 8202:                 my ($dcname,$dcdom) = split(':',$newvals{'xmldc'});
 8203:                 my $newtxt = &Apache::loncommon::plainname($dcname,$dcdom);
 8204:                 $resulttext .= '<li>'.&mt("$title{'xmldc'} set to [_1]",'<b>'.$newtxt.'</b>').'</li>'; 
 8205:             }
 8206:             $resulttext .= '</ul>';
 8207:         } else {
 8208:             $resulttext = &mt('No changes made to auto-creation settings');
 8209:         }
 8210:     } else {
 8211:         $resulttext = '<span class="LC_error">'.
 8212:             &mt('An error occurred: [_1]',$putresult).'</span>';
 8213:     }
 8214:     return $resulttext;
 8215: }
 8216: 
 8217: sub modify_directorysrch {
 8218:     my ($dom,%domconfig) = @_;
 8219:     my ($resulttext,%changes);
 8220:     my %currdirsrch;
 8221:     if (ref($domconfig{'directorysrch'}) eq 'HASH') {
 8222:         foreach my $key (keys(%{$domconfig{'directorysrch'}})) {
 8223:             $currdirsrch{$key} = $domconfig{'directorysrch'}{$key};
 8224:         }
 8225:     }
 8226:     my %title = ( available => 'Directory search available',
 8227:                   localonly => 'Other domains can search',
 8228:                   searchby => 'Search types',
 8229:                   searchtypes => 'Search latitude');
 8230:     my @offon = ('off','on');
 8231:     my @otherdoms = ('Yes','No');
 8232: 
 8233:     my @searchtypes = &Apache::loncommon::get_env_multiple('form.searchtypes');  
 8234:     my @cansearch = &Apache::loncommon::get_env_multiple('form.cansearch');
 8235:     my @searchby = &Apache::loncommon::get_env_multiple('form.searchby');
 8236: 
 8237:     my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($dom);
 8238:     if (keys(%{$usertypes}) == 0) {
 8239:         @cansearch = ('default');
 8240:     } else {
 8241:         if (ref($currdirsrch{'cansearch'}) eq 'ARRAY') {
 8242:             foreach my $type (@{$currdirsrch{'cansearch'}}) {
 8243:                 if (!grep(/^\Q$type\E$/,@cansearch)) {
 8244:                     push(@{$changes{'cansearch'}},$type);
 8245:                 }
 8246:             }
 8247:             foreach my $type (@cansearch) {
 8248:                 if (!grep(/^\Q$type\E$/,@{$currdirsrch{'cansearch'}})) {
 8249:                     push(@{$changes{'cansearch'}},$type);
 8250:                 }
 8251:             }
 8252:         } else {
 8253:             push(@{$changes{'cansearch'}},@cansearch);
 8254:         }
 8255:     }
 8256: 
 8257:     if (ref($currdirsrch{'searchby'}) eq 'ARRAY') {
 8258:         foreach my $by (@{$currdirsrch{'searchby'}}) {
 8259:             if (!grep(/^\Q$by\E$/,@searchby)) {
 8260:                 push(@{$changes{'searchby'}},$by);
 8261:             }
 8262:         }
 8263:         foreach my $by (@searchby) {
 8264:             if (!grep(/^\Q$by\E$/,@{$currdirsrch{'searchby'}})) {
 8265:                 push(@{$changes{'searchby'}},$by);
 8266:             }
 8267:         }
 8268:     } else {
 8269:         push(@{$changes{'searchby'}},@searchby);
 8270:     }
 8271: 
 8272:     if (ref($currdirsrch{'searchtypes'}) eq 'ARRAY') {
 8273:         foreach my $type (@{$currdirsrch{'searchtypes'}}) {
 8274:             if (!grep(/^\Q$type\E$/,@searchtypes)) {
 8275:                 push(@{$changes{'searchtypes'}},$type);
 8276:             }
 8277:         }
 8278:         foreach my $type (@searchtypes) {
 8279:             if (!grep(/^\Q$type\E$/,@{$currdirsrch{'searchtypes'}})) {
 8280:                 push(@{$changes{'searchtypes'}},$type);
 8281:             }
 8282:         }
 8283:     } else {
 8284:         if (exists($currdirsrch{'searchtypes'})) {
 8285:             foreach my $type (@searchtypes) {  
 8286:                 if ($type ne $currdirsrch{'searchtypes'}) { 
 8287:                     push(@{$changes{'searchtypes'}},$type);
 8288:                 }
 8289:             }
 8290:             if (!grep(/^\Q$currdirsrch{'searchtypes'}\E/,@searchtypes)) {
 8291:                 push(@{$changes{'searchtypes'}},$currdirsrch{'searchtypes'});
 8292:             }   
 8293:         } else {
 8294:             push(@{$changes{'searchtypes'}},@searchtypes); 
 8295:         }
 8296:     }
 8297: 
 8298:     my %dirsrch_hash =  (
 8299:             directorysrch => { available => $env{'form.dirsrch_available'},
 8300:                                cansearch => \@cansearch,
 8301:                                localonly => $env{'form.dirsrch_localonly'},
 8302:                                searchby => \@searchby,
 8303:                                searchtypes => \@searchtypes,
 8304:                              }
 8305:             );
 8306:     my $putresult = &Apache::lonnet::put_dom('configuration',\%dirsrch_hash,
 8307:                                              $dom);
 8308:     if ($putresult eq 'ok') {
 8309:         if (exists($currdirsrch{'available'})) {
 8310:              if ($currdirsrch{'available'} ne $env{'form.dirsrch_available'}) {
 8311:                  $changes{'available'} = 1;
 8312:              }
 8313:         } else {
 8314:             if ($env{'form.dirsrch_available'} eq '1') {
 8315:                 $changes{'available'} = 1;
 8316:             }
 8317:         }
 8318:         if (exists($currdirsrch{'localonly'})) {
 8319:              if ($currdirsrch{'localonly'} ne $env{'form.dirsrch_localonly'}) {
 8320:                  $changes{'localonly'} = 1;
 8321:              }
 8322:         } else {
 8323:             if ($env{'form.dirsrch_localonly'} eq '1') {
 8324:                 $changes{'localonly'} = 1;
 8325:             }
 8326:         }
 8327:         if (keys(%changes) > 0) {
 8328:             $resulttext = &mt('Changes made:').'<ul>';
 8329:             if ($changes{'available'}) {
 8330:                 $resulttext .= '<li>'.&mt("$title{'available'} set to: $offon[$env{'form.dirsrch_available'}]").'</li>';
 8331:             }
 8332:             if ($changes{'localonly'}) {
 8333:                 $resulttext .= '<li>'.&mt("$title{'localonly'} set to: $otherdoms[$env{'form.dirsrch_localonly'}]").'</li>';
 8334:             }
 8335: 
 8336:             if (ref($changes{'cansearch'}) eq 'ARRAY') {
 8337:                 my $chgtext;
 8338:                 if (ref($usertypes) eq 'HASH') {
 8339:                     if (keys(%{$usertypes}) > 0) {
 8340:                         foreach my $type (@{$types}) {
 8341:                             if (grep(/^\Q$type\E$/,@cansearch)) {
 8342:                                 $chgtext .= $usertypes->{$type}.'; ';
 8343:                             }
 8344:                         }
 8345:                         if (grep(/^default$/,@cansearch)) {
 8346:                             $chgtext .= $othertitle;
 8347:                         } else {
 8348:                             $chgtext =~ s/\; $//;
 8349:                         }
 8350:                         $resulttext .=
 8351:                             '<li>'.
 8352:                             &mt("Users from domain '[_1]' permitted to search the institutional directory set to: [_2]",
 8353:                                 '<span class="LC_cusr_emph">'.$dom.'</span>',$chgtext).
 8354:                             '</li>';
 8355:                     }
 8356:                 }
 8357:             }
 8358:             if (ref($changes{'searchby'}) eq 'ARRAY') {
 8359:                 my ($searchtitles,$titleorder) = &sorted_searchtitles();
 8360:                 my $chgtext;
 8361:                 foreach my $type (@{$titleorder}) {
 8362:                     if (grep(/^\Q$type\E$/,@searchby)) {
 8363:                         if (defined($searchtitles->{$type})) {
 8364:                             $chgtext .= $searchtitles->{$type}.'; ';
 8365:                         }
 8366:                     }
 8367:                 }
 8368:                 $chgtext =~ s/\; $//;
 8369:                 $resulttext .= '<li>'.&mt("$title{'searchby'} set to: [_1]",$chgtext).'</li>';
 8370:             }
 8371:             if (ref($changes{'searchtypes'}) eq 'ARRAY') {
 8372:                 my ($srchtypes_desc,$srchtypeorder) = &sorted_searchtypes(); 
 8373:                 my $chgtext;
 8374:                 foreach my $type (@{$srchtypeorder}) {
 8375:                     if (grep(/^\Q$type\E$/,@searchtypes)) {
 8376:                         if (defined($srchtypes_desc->{$type})) {
 8377:                             $chgtext .= $srchtypes_desc->{$type}.'; ';
 8378:                         }
 8379:                     }
 8380:                 }
 8381:                 $chgtext =~ s/\; $//;
 8382:                 $resulttext .= '<li>'.&mt($title{'searchtypes'}.' set to: "[_1]"',$chgtext).'</li>';
 8383:             }
 8384:             $resulttext .= '</ul>';
 8385:         } else {
 8386:             $resulttext = &mt('No changes made to institution directory search settings');
 8387:         }
 8388:     } else {
 8389:         $resulttext = '<span class="LC_error">'.
 8390:                       &mt('An error occurred: [_1]',$putresult).'</span>';
 8391:     }
 8392:     return $resulttext;
 8393: }
 8394: 
 8395: sub modify_contacts {
 8396:     my ($dom,$lastactref,%domconfig) = @_;
 8397:     my ($resulttext,%currsetting,%newsetting,%changes,%contacts_hash);
 8398:     if (ref($domconfig{'contacts'}) eq 'HASH') {
 8399:         foreach my $key (keys(%{$domconfig{'contacts'}})) {
 8400:             $currsetting{$key} = $domconfig{'contacts'}{$key};
 8401:         }
 8402:     }
 8403:     my (%others,%to,%bcc);
 8404:     my @contacts = ('supportemail','adminemail');
 8405:     my @mailings = ('errormail','packagesmail','helpdeskmail','lonstatusmail',
 8406:                     'requestsmail','updatesmail','idconflictsmail');
 8407:     my @toggles = ('reporterrors','reportupdates');
 8408:     foreach my $type (@mailings) {
 8409:         @{$newsetting{$type}} = 
 8410:             &Apache::loncommon::get_env_multiple('form.'.$type);
 8411:         foreach my $item (@contacts) {
 8412:             if (grep(/^\Q$item\E$/,@{$newsetting{$type}})) {
 8413:                 $contacts_hash{contacts}{$type}{$item} = 1;
 8414:             } else {
 8415:                 $contacts_hash{contacts}{$type}{$item} = 0;
 8416:             }
 8417:         }  
 8418:         $others{$type} = $env{'form.'.$type.'_others'};
 8419:         $contacts_hash{contacts}{$type}{'others'} = $others{$type};
 8420:         if ($type eq 'helpdeskmail') {
 8421:             $bcc{$type} = $env{'form.'.$type.'_bcc'};
 8422:             $contacts_hash{contacts}{$type}{'bcc'} = $bcc{$type};
 8423:         }
 8424:     }
 8425:     foreach my $item (@contacts) {
 8426:         $to{$item} = $env{'form.'.$item};
 8427:         $contacts_hash{'contacts'}{$item} = $to{$item};
 8428:     }
 8429:     foreach my $item (@toggles) {
 8430:         if ($env{'form.'.$item} =~ /^(0|1)$/) {
 8431:             $contacts_hash{'contacts'}{$item} = $env{'form.'.$item};
 8432:         }
 8433:     }
 8434:     if (keys(%currsetting) > 0) {
 8435:         foreach my $item (@contacts) {
 8436:             if ($to{$item} ne $currsetting{$item}) {
 8437:                 $changes{$item} = 1;
 8438:             }
 8439:         }
 8440:         foreach my $type (@mailings) {
 8441:             foreach my $item (@contacts) {
 8442:                 if (ref($currsetting{$type}) eq 'HASH') {
 8443:                     if ($currsetting{$type}{$item} ne $contacts_hash{contacts}{$type}{$item}) {
 8444:                         push(@{$changes{$type}},$item);
 8445:                     }
 8446:                 } else {
 8447:                     push(@{$changes{$type}},@{$newsetting{$type}});
 8448:                 }
 8449:             }
 8450:             if ($others{$type} ne $currsetting{$type}{'others'}) {
 8451:                 push(@{$changes{$type}},'others');
 8452:             }
 8453:             if ($type eq 'helpdeskmail') {   
 8454:                 if ($bcc{$type} ne $currsetting{$type}{'bcc'}) {
 8455:                     push(@{$changes{$type}},'bcc'); 
 8456:                 }
 8457:             }
 8458:         }
 8459:     } else {
 8460:         my %default;
 8461:         $default{'supportemail'} = $Apache::lonnet::perlvar{'lonSupportEMail'};
 8462:         $default{'adminemail'} = $Apache::lonnet::perlvar{'lonAdmEMail'};
 8463:         $default{'errormail'} = 'adminemail';
 8464:         $default{'packagesmail'} = 'adminemail';
 8465:         $default{'helpdeskmail'} = 'supportemail';
 8466:         $default{'lonstatusmail'} = 'adminemail';
 8467:         $default{'requestsmail'} = 'adminemail';
 8468:         $default{'updatesmail'} = 'adminemail';
 8469:         foreach my $item (@contacts) {
 8470:            if ($to{$item} ne $default{$item}) {
 8471:               $changes{$item} = 1;
 8472:            }
 8473:         }
 8474:         foreach my $type (@mailings) {
 8475:             if ((@{$newsetting{$type}} != 1) || ($newsetting{$type}[0] ne $default{$type})) {
 8476:                
 8477:                 push(@{$changes{$type}},@{$newsetting{$type}});
 8478:             }
 8479:             if ($others{$type} ne '') {
 8480:                 push(@{$changes{$type}},'others');
 8481:             }
 8482:             if ($type eq 'helpdeskmail') {
 8483:                 if ($bcc{$type} ne '') {
 8484:                     push(@{$changes{$type}},'bcc');
 8485:                 }
 8486:             }
 8487:         }
 8488:     }
 8489:     foreach my $item (@toggles) {
 8490:         if (($env{'form.'.$item} == 1) && ($currsetting{$item} == 0)) {
 8491:             $changes{$item} = 1;
 8492:         } elsif ((!$env{'form.'.$item}) &&
 8493:                  (($currsetting{$item} eq '') || ($currsetting{$item} == 1))) {
 8494:             $changes{$item} = 1;
 8495:         }
 8496:     }
 8497:     my $putresult = &Apache::lonnet::put_dom('configuration',\%contacts_hash,
 8498:                                              $dom);
 8499:     if ($putresult eq 'ok') {
 8500:         if (keys(%changes) > 0) {
 8501:             &Apache::loncommon::devalidate_domconfig_cache($dom);
 8502:             if (ref($lastactref) eq 'HASH') {
 8503:                 $lastactref->{'domainconfig'} = 1;
 8504:             }
 8505:             my ($titles,$short_titles)  = &contact_titles();
 8506:             $resulttext = &mt('Changes made:').'<ul>';
 8507:             foreach my $item (@contacts) {
 8508:                 if ($changes{$item}) {
 8509:                     $resulttext .= '<li>'.$titles->{$item}.
 8510:                                     &mt(' set to: ').
 8511:                                     '<span class="LC_cusr_emph">'.
 8512:                                     $to{$item}.'</span></li>';
 8513:                 }
 8514:             }
 8515:             foreach my $type (@mailings) {
 8516:                 if (ref($changes{$type}) eq 'ARRAY') {
 8517:                     $resulttext .= '<li>'.$titles->{$type}.': ';
 8518:                     my @text;
 8519:                     foreach my $item (@{$newsetting{$type}}) {
 8520:                         push(@text,$short_titles->{$item});
 8521:                     }
 8522:                     if ($others{$type} ne '') {
 8523:                         push(@text,$others{$type});
 8524:                     }
 8525:                     $resulttext .= '<span class="LC_cusr_emph">'.
 8526:                                    join(', ',@text).'</span>';
 8527:                     if ($type eq 'helpdeskmail') {
 8528:                         if ($bcc{$type} ne '') {
 8529:                             $resulttext .= '&nbsp;'.&mt('with Bcc to').': <span class="LC_cusr_emph">'.$bcc{$type}.'</span>';
 8530:                         }
 8531:                     }
 8532:                     $resulttext .= '</li>';
 8533:                 }
 8534:             }
 8535:             my @offon = ('off','on');
 8536:             if ($changes{'reporterrors'}) {
 8537:                 $resulttext .= '<li>'.
 8538:                                &mt('E-mail error reports to [_1] set to "'.
 8539:                                    $offon[$env{'form.reporterrors'}].'".',
 8540:                                    &Apache::loncommon::modal_link('http://loncapa.org/core.html',
 8541:                                        &mt('LON-CAPA core group - MSU'),600,500)).
 8542:                                '</li>';
 8543:             }
 8544:             if ($changes{'reportupdates'}) {
 8545:                 $resulttext .= '<li>'.
 8546:                                 &mt('E-mail record of completed LON-CAPA updates to [_1] set to "'.
 8547:                                     $offon[$env{'form.reportupdates'}].'".',
 8548:                                     &Apache::loncommon::modal_link('http://loncapa.org/core.html',
 8549:                                         &mt('LON-CAPA core group - MSU'),600,500)).
 8550:                                 '</li>';
 8551:             }
 8552:             $resulttext .= '</ul>';
 8553:         } else {
 8554:             $resulttext = &mt('No changes made to contact information');
 8555:         }
 8556:     } else {
 8557:         $resulttext = '<span class="LC_error">'.
 8558:             &mt('An error occurred: [_1].',$putresult).'</span>';
 8559:     }
 8560:     return $resulttext;
 8561: }
 8562: 
 8563: sub modify_usercreation {
 8564:     my ($dom,%domconfig) = @_;
 8565:     my ($resulttext,%curr_usercreation,%changes,%authallowed,%cancreate,%save_usercreate);
 8566:     my $warningmsg;
 8567:     if (ref($domconfig{'usercreation'}) eq 'HASH') {
 8568:         foreach my $key (keys(%{$domconfig{'usercreation'}})) {
 8569:             if ($key eq 'cancreate') {
 8570:                 if (ref($domconfig{'usercreation'}{$key}) eq 'HASH') {
 8571:                     foreach my $item (keys(%{$domconfig{'usercreation'}{$key}})) {
 8572:                         if (($item eq 'selfcreate') || ($item eq 'statustocreate') ||
 8573:                             ($item eq 'captcha') || ($item eq 'recaptchakeys')) {
 8574:                             $save_usercreate{$key}{$item} = $domconfig{'usercreation'}{$key}{$item};
 8575:                         } else {
 8576:                             $curr_usercreation{$key}{$item} = $domconfig{'usercreation'}{$key}{$item};
 8577:                         }
 8578:                     }
 8579:                 }
 8580:             } elsif ($key eq 'email_rule') {
 8581:                 $save_usercreate{$key} = $domconfig{'usercreation'}{$key};
 8582:             } else {
 8583:                 $curr_usercreation{$key} = $domconfig{'usercreation'}{$key};
 8584:             }
 8585:         }
 8586:     }
 8587:     my @username_rule = &Apache::loncommon::get_env_multiple('form.username_rule');
 8588:     my @id_rule = &Apache::loncommon::get_env_multiple('form.id_rule');
 8589:     my @contexts = ('author','course','requestcrs');
 8590:     foreach my $item(@contexts) {
 8591:         $cancreate{$item} = $env{'form.can_createuser_'.$item};
 8592:     }
 8593:     if (ref($curr_usercreation{'cancreate'}) eq 'HASH') {
 8594:         foreach my $item (@contexts) {
 8595:             if ($curr_usercreation{'cancreate'}{$item} ne $cancreate{$item}) {
 8596:                 push(@{$changes{'cancreate'}},$item);
 8597:             }
 8598:         }
 8599:     } elsif (ref($curr_usercreation{'cancreate'}) eq 'ARRAY') {
 8600:         foreach my $item (@contexts) {
 8601:             if (!grep(/^\Q$item\E$/,@{$curr_usercreation{'cancreate'}})) {
 8602:                 if ($cancreate{$item} ne 'any') {
 8603:                     push(@{$changes{'cancreate'}},$item);
 8604:                 }
 8605:             } else {
 8606:                 if ($cancreate{$item} ne 'none') {
 8607:                     push(@{$changes{'cancreate'}},$item);
 8608:                 }
 8609:             }
 8610:         }
 8611:     } else {
 8612:         foreach my $item (@contexts)  {
 8613:             push(@{$changes{'cancreate'}},$item);
 8614:         }
 8615:     }
 8616: 
 8617:     if (ref($curr_usercreation{'username_rule'}) eq 'ARRAY') {
 8618:         foreach my $type (@{$curr_usercreation{'username_rule'}}) {
 8619:             if (!grep(/^\Q$type\E$/,@username_rule)) {
 8620:                 push(@{$changes{'username_rule'}},$type);
 8621:             }
 8622:         }
 8623:         foreach my $type (@username_rule) {
 8624:             if (!grep(/^\Q$type\E$/,@{$curr_usercreation{'username_rule'}})) {
 8625:                 push(@{$changes{'username_rule'}},$type);
 8626:             }
 8627:         }
 8628:     } else {
 8629:         push(@{$changes{'username_rule'}},@username_rule);
 8630:     }
 8631: 
 8632:     if (ref($curr_usercreation{'id_rule'}) eq 'ARRAY') {
 8633:         foreach my $type (@{$curr_usercreation{'id_rule'}}) {
 8634:             if (!grep(/^\Q$type\E$/,@id_rule)) {
 8635:                 push(@{$changes{'id_rule'}},$type);
 8636:             }
 8637:         }
 8638:         foreach my $type (@id_rule) {
 8639:             if (!grep(/^\Q$type\E$/,@{$curr_usercreation{'id_rule'}})) {
 8640:                 push(@{$changes{'id_rule'}},$type);
 8641:             }
 8642:         }
 8643:     } else {
 8644:         push(@{$changes{'id_rule'}},@id_rule);
 8645:     }
 8646: 
 8647:     my @authen_contexts = ('author','course','domain');
 8648:     my @authtypes = ('int','krb4','krb5','loc');
 8649:     my %authhash;
 8650:     foreach my $item (@authen_contexts) {
 8651:         my @authallowed =  &Apache::loncommon::get_env_multiple('form.'.$item.'_auth');
 8652:         foreach my $auth (@authtypes) {
 8653:             if (grep(/^\Q$auth\E$/,@authallowed)) {
 8654:                 $authhash{$item}{$auth} = 1;
 8655:             } else {
 8656:                 $authhash{$item}{$auth} = 0;
 8657:             }
 8658:         }
 8659:     }
 8660:     if (ref($curr_usercreation{'authtypes'}) eq 'HASH') {
 8661:         foreach my $item (@authen_contexts) {
 8662:             if (ref($curr_usercreation{'authtypes'}{$item}) eq 'HASH') {
 8663:                 foreach my $auth (@authtypes) {
 8664:                     if ($authhash{$item}{$auth} ne $curr_usercreation{'authtypes'}{$item}{$auth}) {
 8665:                         push(@{$changes{'authtypes'}},$item);
 8666:                         last;
 8667:                     }
 8668:                 }
 8669:             }
 8670:         }
 8671:     } else {
 8672:         foreach my $item (@authen_contexts) {
 8673:             push(@{$changes{'authtypes'}},$item);
 8674:         }
 8675:     }
 8676: 
 8677:     $save_usercreate{'cancreate'}{'course'} = $cancreate{'course'}; 
 8678:     $save_usercreate{'cancreate'}{'author'} = $cancreate{'author'};
 8679:     $save_usercreate{'cancreate'}{'requestcrs'} = $cancreate{'requestcrs'};
 8680:     $save_usercreate{'id_rule'} = \@id_rule;
 8681:     $save_usercreate{'username_rule'} = \@username_rule,
 8682:     $save_usercreate{'authtypes'} = \%authhash;
 8683: 
 8684:     my %usercreation_hash =  (
 8685:         usercreation     => \%save_usercreate,
 8686:     );
 8687: 
 8688:     my $putresult = &Apache::lonnet::put_dom('configuration',\%usercreation_hash,
 8689:                                              $dom);
 8690: 
 8691:     if ($putresult eq 'ok') {
 8692:         if (keys(%changes) > 0) {
 8693:             $resulttext = &mt('Changes made:').'<ul>';
 8694:             if (ref($changes{'cancreate'}) eq 'ARRAY') {
 8695:                 my %lt = &usercreation_types();
 8696:                 foreach my $type (@{$changes{'cancreate'}}) {
 8697:                     my $chgtext = $lt{$type}.', ';
 8698:                     if ($cancreate{$type} eq 'none') {
 8699:                         $chgtext .= &mt('creation of new users is not permitted, except by a Domain Coordinator.');
 8700:                     } elsif ($cancreate{$type} eq 'any') {
 8701:                         $chgtext .= &mt('creation of new users is permitted for both institutional and non-institutional usernames.');
 8702:                     } elsif ($cancreate{$type} eq 'official') {
 8703:                         $chgtext .= &mt('creation of new users is only permitted for institutional usernames.');
 8704:                     } elsif ($cancreate{$type} eq 'unofficial') {
 8705:                         $chgtext .= &mt('creation of new users is only permitted for non-institutional usernames.');
 8706:                     }
 8707:                     $resulttext .= '<li>'.$chgtext.'</li>';
 8708:                 }
 8709:             }
 8710:             if (ref($changes{'username_rule'}) eq 'ARRAY') {
 8711:                 my ($rules,$ruleorder) = 
 8712:                     &Apache::lonnet::inst_userrules($dom,'username');
 8713:                 my $chgtext = '<ul>';
 8714:                 foreach my $type (@username_rule) {
 8715:                     if (ref($rules->{$type}) eq 'HASH') {
 8716:                         $chgtext .= '<li>'.$rules->{$type}{'name'}.'</li>';
 8717:                     }
 8718:                 }
 8719:                 $chgtext .= '</ul>';
 8720:                 if (@username_rule > 0) {
 8721:                     $resulttext .= '<li>'.&mt('Usernames with the following formats are restricted to verified users in the institutional directory: ').$chgtext.'</li>';     
 8722:                 } else {
 8723:                     $resulttext .= '<li>'.&mt('There are now no username formats restricted to verified users in the institutional directory.').'</li>'; 
 8724:                 }
 8725:             }
 8726:             if (ref($changes{'id_rule'}) eq 'ARRAY') {
 8727:                 my ($idrules,$idruleorder) = 
 8728:                     &Apache::lonnet::inst_userrules($dom,'id');
 8729:                 my $chgtext = '<ul>';
 8730:                 foreach my $type (@id_rule) {
 8731:                     if (ref($idrules->{$type}) eq 'HASH') {
 8732:                         $chgtext .= '<li>'.$idrules->{$type}{'name'}.'</li>';
 8733:                     }
 8734:                 }
 8735:                 $chgtext .= '</ul>';
 8736:                 if (@id_rule > 0) {
 8737:                     $resulttext .= '<li>'.&mt('IDs with the following formats are restricted to verified users in the institutional directory: ').$chgtext.'</li>';
 8738:                 } else {
 8739:                     $resulttext .= '<li>'.&mt('There are now no ID formats restricted to verified users in the institutional directory.').'</li>';
 8740:                 }
 8741:             }
 8742:             my %authname = &authtype_names();
 8743:             my %context_title = &context_names();
 8744:             if (ref($changes{'authtypes'}) eq 'ARRAY') {
 8745:                 my $chgtext = '<ul>';
 8746:                 foreach my $type (@{$changes{'authtypes'}}) {
 8747:                     my @allowed;
 8748:                     $chgtext .= '<li><span class="LC_cusr_emph">'.$context_title{$type}.'</span> - '.&mt('assignable authentication types: ');
 8749:                     foreach my $auth (@authtypes) {
 8750:                         if ($authhash{$type}{$auth}) {
 8751:                             push(@allowed,$authname{$auth});
 8752:                         }
 8753:                     }
 8754:                     if (@allowed > 0) {
 8755:                         $chgtext .= join(', ',@allowed).'</li>';
 8756:                     } else {
 8757:                         $chgtext .= &mt('none').'</li>';
 8758:                     }
 8759:                 }
 8760:                 $chgtext .= '</ul>';
 8761:                 $resulttext .= '<li>'.&mt('Authentication types available for assignment to new users').'<br />'.$chgtext;
 8762:                 $resulttext .= '</li>';
 8763:             }
 8764:             $resulttext .= '</ul>';
 8765:         } else {
 8766:             $resulttext = &mt('No changes made to user creation settings');
 8767:         }
 8768:     } else {
 8769:         $resulttext = '<span class="LC_error">'.
 8770:             &mt('An error occurred: [_1]',$putresult).'</span>';
 8771:     }
 8772:     if ($warningmsg ne '') {
 8773:         $resulttext .= '<br /><span class="LC_warning">'.$warningmsg.'</span><br />';
 8774:     }
 8775:     return $resulttext;
 8776: }
 8777: 
 8778: sub modify_selfcreation {
 8779:     my ($dom,%domconfig) = @_;
 8780:     my ($resulttext,$warningmsg,%curr_usercreation,%curr_usermodify,%changes,%cancreate);
 8781:     my (%save_usercreate,%save_usermodify);
 8782:     my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($dom);
 8783:     if (ref($types) eq 'ARRAY') {
 8784:         $usertypes->{'default'} = $othertitle;
 8785:         push(@{$types},'default');
 8786:     }
 8787: #
 8788: # Retrieve current domain configuration for self-creation of usernames from $domconfig{'usercreation'}.
 8789: #
 8790:     if (ref($domconfig{'usercreation'}) eq 'HASH') {
 8791:         foreach my $key (keys(%{$domconfig{'usercreation'}})) {
 8792:             if ($key eq 'cancreate') {
 8793:                 if (ref($domconfig{'usercreation'}{$key}) eq 'HASH') {
 8794:                     foreach my $item (keys(%{$domconfig{'usercreation'}{$key}})) {
 8795:                         if (($item eq 'selfcreate') || ($item eq 'statustocreate') ||
 8796:                             ($item eq 'captcha') || ($item eq 'recaptchakeys') || 
 8797:                             ($item eq 'emailusername') || ($item eq 'notify') ||
 8798:                             ($item eq 'selfcreateprocessing') || ($item eq 'shibenv')) {
 8799:                             $curr_usercreation{$key}{$item} = $domconfig{'usercreation'}{$key}{$item};
 8800:                         } else {
 8801:                             $save_usercreate{$key}{$item} = $domconfig{'usercreation'}{$key}{$item};
 8802:                         }
 8803:                     }
 8804:                 }
 8805:             } elsif ($key eq 'email_rule') {
 8806:                 $curr_usercreation{$key} = $domconfig{'usercreation'}{$key};
 8807:             } else {
 8808:                 $save_usercreate{$key} = $domconfig{'usercreation'}{$key};
 8809:             }
 8810:         }
 8811:     }
 8812: #
 8813: # Retrieve current domain configuration for self-creation of usernames from $domconfig{'usermodification'}.
 8814: #
 8815:     if (ref($domconfig{'usermodification'}) eq 'HASH') {
 8816:         foreach my $key (keys(%{$domconfig{'usermodification'}})) {
 8817:             if ($key eq 'selfcreate') {
 8818:                 $curr_usermodify{$key} = $domconfig{'usermodification'}{$key};
 8819:             } else {
 8820:                 $save_usermodify{$key} = $domconfig{'usermodification'}{$key};
 8821:             }
 8822:         }
 8823:     }
 8824: 
 8825:     my @contexts = ('selfcreate');
 8826:     @{$cancreate{'selfcreate'}} = ();
 8827:     %{$cancreate{'emailusername'}} = ();
 8828:     @{$cancreate{'statustocreate'}} = ();
 8829:     %{$cancreate{'selfcreateprocessing'}} = ();
 8830:     %{$cancreate{'shibenv'}} = ();
 8831:     my %selfcreatetypes = (
 8832:                              sso   => 'users authenticated by institutional single sign on',
 8833:                              login => 'users authenticated by institutional log-in',
 8834:                              email => 'users who provide a valid e-mail address for use as username',
 8835:                           );
 8836: #
 8837: # Populate $cancreate{'selfcreate'} array reference with types of user, for which self-creation of user accounts
 8838: # is permitted.
 8839: #
 8840: 
 8841:     my @statuses;
 8842:     if (ref($domconfig{'inststatus'}) eq 'HASH') {
 8843:         if (ref($domconfig{'inststatus'}{'inststatusguest'}) eq 'ARRAY') {
 8844:             @statuses = @{$domconfig{'inststatus'}{'inststatusguest'}};
 8845:         }
 8846:     }
 8847:     push(@statuses,'default');
 8848: 
 8849:     foreach my $item ('login','sso','email') {
 8850:         if ($item eq 'email') {
 8851:             if ($env{'form.cancreate_email'}) {
 8852:                 push(@{$cancreate{'selfcreate'}},'email');
 8853:                 push(@contexts,'selfcreateprocessing');
 8854:                 foreach my $type (@statuses) {
 8855:                     if ($type eq 'default') {
 8856:                         $cancreate{'selfcreateprocessing'}{$type} = $env{'form.cancreate_emailprocess'};
 8857:                     } else { 
 8858:                         $cancreate{'selfcreateprocessing'}{$type} = $env{'form.cancreate_emailprocess_'.$type};
 8859:                     }
 8860:                 }
 8861:             }
 8862:         } else {
 8863:             if ($env{'form.cancreate_'.$item}) {
 8864:                 push(@{$cancreate{'selfcreate'}},$item);
 8865:             }
 8866:         }
 8867:     }
 8868:     my (@email_rule,%userinfo,%savecaptcha);
 8869:     my ($infofields,$infotitles) = &Apache::loncommon::emailusername_info();
 8870: #
 8871: # Populate $cancreate{'emailusername'}{$type} hash ref with information fields (if new user will provide data
 8872: # value set to one), if self-creation with e-mail address permitted, where $type is user type: faculty, staff, student etc.
 8873: #
 8874: 
 8875:     if ($env{'form.cancreate_email'}) {
 8876:         push(@contexts,'emailusername');
 8877:         if (ref($types) eq 'ARRAY') {
 8878:             foreach my $type (@{$types}) {
 8879:                 if (ref($infofields) eq 'ARRAY') {
 8880:                     foreach my $field (@{$infofields}) {
 8881:                         if ($env{'form.canmodify_emailusername_'.$type.'_'.$field} =~ /^(required|optional)$/) {
 8882:                             $cancreate{'emailusername'}{$type}{$field} = $1;
 8883:                         }
 8884:                     }
 8885:                 }
 8886:             }
 8887:         }
 8888: #
 8889: # Populate $cancreate{'notify'} hash ref with names of Domain Coordinators who are to be notified of
 8890: # queued requests for self-creation of account using e-mail address as username
 8891: #
 8892: 
 8893:         my @approvalnotify = &Apache::loncommon::get_env_multiple('form.selfcreationnotifyapproval');
 8894:         @approvalnotify = sort(@approvalnotify);
 8895:         $cancreate{'notify'}{'approval'} = join(',',@approvalnotify);
 8896:         if (ref($curr_usercreation{'cancreate'}) eq 'HASH') {
 8897:             if (ref($curr_usercreation{'cancreate'}{'notify'}) eq 'HASH') {
 8898:                 if ($curr_usercreation{'cancreate'}{'notify'}{'approval'} ne $cancreate{'notify'}{'approval'}) {
 8899:                     push(@{$changes{'cancreate'}},'notify');
 8900:                 }
 8901:             } else {
 8902:                 if ($cancreate{'notify'}{'approval'}) {
 8903:                     push(@{$changes{'cancreate'}},'notify');
 8904:                 }
 8905:             }
 8906:         } elsif ($cancreate{'notify'}{'approval'}) {
 8907:             push(@{$changes{'cancreate'}},'notify');
 8908:         }
 8909: 
 8910: #
 8911: # Retrieve rules (if any) governing types of e-mail address which may be used as a username
 8912: #
 8913:         @email_rule = &Apache::loncommon::get_env_multiple('form.email_rule');
 8914:         &process_captcha('cancreate',\%changes,\%savecaptcha,$curr_usercreation{'cancreate'});
 8915:         if (ref($curr_usercreation{'email_rule'}) eq 'ARRAY') {
 8916:             if (@{$curr_usercreation{'email_rule'}} > 0) {
 8917:                 foreach my $type (@{$curr_usercreation{'email_rule'}}) {
 8918:                     if (!grep(/^\Q$type\E$/,@email_rule)) {
 8919:                         push(@{$changes{'email_rule'}},$type);
 8920:                     }
 8921:                 }
 8922:             }
 8923:             if (@email_rule > 0) {
 8924:                 foreach my $type (@email_rule) {
 8925:                     if (!grep(/^\Q$type\E$/,@{$curr_usercreation{'email_rule'}})) {
 8926:                         push(@{$changes{'email_rule'}},$type);
 8927:                     }
 8928:                 }
 8929:             }
 8930:         } elsif (@email_rule > 0) {
 8931:             push(@{$changes{'email_rule'}},@email_rule);
 8932:         }
 8933:     }
 8934: #  
 8935: # Check if domain default is set appropriately, if self-creation of accounts is to be available for
 8936: # institutional log-in.
 8937: #
 8938:     if (grep(/^login$/,@{$cancreate{'selfcreate'}})) {
 8939:         my %domdefaults = &Apache::lonnet::get_domain_defaults($dom,1);
 8940:         if (!((($domdefaults{'auth_def'} =~/^krb/) && ($domdefaults{'auth_arg_def'} ne '')) || 
 8941:                ($domdefaults{'auth_def'} eq 'localauth'))) {
 8942:             $warningmsg = &mt('Although account creation has been set to be available for institutional logins, currently default authentication in this domain has not been set to support this.').' '.
 8943:                           &mt('You need to set the default authentication type to Kerberos 4 or 5 (with a Kerberos domain specified), or to Local authentication, if the localauth module has been customized in your domain to authenticate institutional logins.');
 8944:         }
 8945:     }
 8946:     my @fields = ('lastname','firstname','middlename','generation',
 8947:                   'permanentemail','id');
 8948:     my @shibfields = (@fields,'inststatus');
 8949:     my %fieldtitles = &Apache::loncommon::personal_data_fieldtitles();
 8950: #
 8951: # Where usernames may created for institutional log-in and/or institutional single sign on:
 8952: # (a) populate $cancreate{'statustocreate'} array reference with institutional status types who
 8953: # may self-create accounts 
 8954: # (b) populate $save_usermodify{'selfcreate'} hash reference with status types, and information fields
 8955: # which the user may supply, if institutional data is unavailable.
 8956: #
 8957:     if (($env{'form.cancreate_login'}) || ($env{'form.cancreate_sso'})) {
 8958:         if (ref($types) eq 'ARRAY') {
 8959:             if (@{$types} > 1) {
 8960:                 @{$cancreate{'statustocreate'}} = &Apache::loncommon::get_env_multiple('form.statustocreate');
 8961:                 push(@contexts,'statustocreate');
 8962:             } else {
 8963:                 undef($cancreate{'statustocreate'});
 8964:             } 
 8965:             foreach my $type (@{$types}) {
 8966:                 my @modifiable =  &Apache::loncommon::get_env_multiple('form.canmodify_'.$type);
 8967:                 foreach my $field (@fields) {
 8968:                     if (grep(/^\Q$field\E$/,@modifiable)) {
 8969:                         $save_usermodify{'selfcreate'}{$type}{$field} = 1;
 8970:                     } else {
 8971:                         $save_usermodify{'selfcreate'}{$type}{$field} = 0;
 8972:                     }
 8973:                 }
 8974:             }
 8975:             if (ref($curr_usermodify{'selfcreate'}) eq 'HASH') {
 8976:                 foreach my $type (@{$types}) {
 8977:                     if (ref($curr_usermodify{'selfcreate'}{$type}) eq 'HASH') {
 8978:                         foreach my $field (@fields) {
 8979:                             if ($save_usermodify{'selfcreate'}{$type}{$field} ne
 8980:                                 $curr_usermodify{'selfcreate'}{$type}{$field}) {
 8981:                                 push(@{$changes{'selfcreate'}},$type);
 8982:                                 last;
 8983:                             }
 8984:                         }
 8985:                     }
 8986:                 }
 8987:             } else {
 8988:                 foreach my $type (@{$types}) {
 8989:                     push(@{$changes{'selfcreate'}},$type);
 8990:                 }
 8991:             }
 8992:         }
 8993:         foreach my $field (@shibfields) {
 8994:             if ($env{'form.shibenv_'.$field} ne '') {
 8995:                 $cancreate{'shibenv'}{$field} = $env{'form.shibenv_'.$field};
 8996:             }
 8997:         }
 8998:         if (ref($curr_usercreation{'cancreate'}) eq 'HASH') {
 8999:             if (ref($curr_usercreation{'cancreate'}{'shibenv'}) eq 'HASH') {
 9000:                 foreach my $field (@shibfields) {
 9001:                     if ($env{'form.shibenv_'.$field} ne $curr_usercreation{'cancreate'}{'shibenv'}{$field}) {
 9002:                         push(@{$changes{'cancreate'}},'shibenv');
 9003:                     }
 9004:                 }
 9005:             } else {
 9006:                 foreach my $field (@shibfields) {
 9007:                     if ($env{'form.shibenv_'.$field}) {
 9008:                         push(@{$changes{'cancreate'}},'shibenv');
 9009:                         last;
 9010:                     }
 9011:                 }
 9012:             }
 9013:         }
 9014:     }
 9015:     foreach my $item (@contexts) {
 9016:         if (ref($curr_usercreation{'cancreate'}{$item}) eq 'ARRAY') {
 9017:             foreach my $curr (@{$curr_usercreation{'cancreate'}{$item}}) {
 9018:                 if (ref($cancreate{$item}) eq 'ARRAY') {
 9019:                     if (!grep(/^$curr$/,@{$cancreate{$item}})) {
 9020:                         if (!grep(/^$item$/,@{$changes{'cancreate'}})) {
 9021:                             push(@{$changes{'cancreate'}},$item);
 9022:                         }
 9023:                     }
 9024:                 }
 9025:             }
 9026:             if (ref($cancreate{$item}) eq 'ARRAY') {
 9027:                 foreach my $type (@{$cancreate{$item}}) {
 9028:                     if (!grep(/^$type$/,@{$curr_usercreation{'cancreate'}{$item}})) {
 9029:                         if (!grep(/^$item$/,@{$changes{'cancreate'}})) {
 9030:                             push(@{$changes{'cancreate'}},$item);
 9031:                         }
 9032:                     }
 9033:                 }
 9034:             }
 9035:         } elsif (ref($curr_usercreation{'cancreate'}{$item}) eq 'HASH') {
 9036:             if (ref($cancreate{$item}) eq 'HASH') {
 9037:                 foreach my $curr (keys(%{$curr_usercreation{'cancreate'}{$item}})) {
 9038:                     if (ref($curr_usercreation{'cancreate'}{$item}{$curr}) eq 'HASH') {
 9039:                         foreach my $field (keys(%{$curr_usercreation{'cancreate'}{$item}{$curr}})) {
 9040:                             unless ($curr_usercreation{'cancreate'}{$item}{$curr}{$field} eq $cancreate{$item}{$curr}{$field}) {
 9041:                                 if (!grep(/^$item$/,@{$changes{'cancreate'}})) {
 9042:                                     push(@{$changes{'cancreate'}},$item);
 9043:                                 }
 9044:                             }
 9045:                         }
 9046:                     } elsif ($item eq 'selfcreateprocessing') {
 9047:                         if ($cancreate{$item}{$curr} ne $curr_usercreation{'cancreate'}{$item}{$curr}) {
 9048:                             if (!grep(/^$item$/,@{$changes{'cancreate'}})) {
 9049:                                 push(@{$changes{'cancreate'}},$item);
 9050:                             }
 9051:                         }
 9052:                     } else {
 9053:                         if (!$cancreate{$item}{$curr}) {
 9054:                             if (!grep(/^$item$/,@{$changes{'cancreate'}})) {
 9055:                                 push(@{$changes{'cancreate'}},$item);
 9056:                             }
 9057:                         }
 9058:                     }
 9059:                 }
 9060:                 foreach my $field (keys(%{$cancreate{$item}})) {
 9061:                     if (ref($cancreate{$item}{$field}) eq 'HASH') {
 9062:                         foreach my $inner (keys(%{$cancreate{$item}{$field}})) {
 9063:                             if (ref($curr_usercreation{'cancreate'}{$item}{$field}) eq 'HASH') {
 9064:                                 unless ($curr_usercreation{'cancreate'}{$item}{$field}{$inner} eq $cancreate{$item}{$field}{$inner}) {
 9065:                                     if (!grep(/^$item$/,@{$changes{'cancreate'}})) {
 9066:                                         push(@{$changes{'cancreate'}},$item);
 9067:                                     }
 9068:                                 }
 9069:                             } else {
 9070:                                 if (!grep(/^$item$/,@{$changes{'cancreate'}})) {
 9071:                                     push(@{$changes{'cancreate'}},$item);
 9072:                                 }
 9073:                             }
 9074:                         }
 9075:                     } elsif ($item eq 'selfcreateprocessing') {
 9076:                         if ($cancreate{$item}{$field} ne $curr_usercreation{'cancreate'}{$item}{$field}) {
 9077:                             if (!grep(/^$item$/,@{$changes{'cancreate'}})) {
 9078:                                 push(@{$changes{'cancreate'}},$item);
 9079:                             }
 9080:                         }
 9081:                     } else {
 9082:                         if (!$curr_usercreation{'cancreate'}{$item}{$field}) {
 9083:                             if (!grep(/^$item$/,@{$changes{'cancreate'}})) {
 9084:                                 push(@{$changes{'cancreate'}},$item);
 9085:                             }
 9086:                         }
 9087:                     }
 9088:                 }
 9089:             }
 9090:         } elsif ($curr_usercreation{'cancreate'}{$item}) {
 9091:             if (ref($cancreate{$item}) eq 'ARRAY') {
 9092:                 if (!grep(/^\Q$curr_usercreation{'cancreate'}{$item}\E$/,@{$cancreate{$item}})) {
 9093:                     if (!grep(/^$item$/,@{$changes{'cancreate'}})) {
 9094:                         push(@{$changes{'cancreate'}},$item);
 9095:                     }
 9096:                 }
 9097:             } elsif (ref($cancreate{$item}) eq 'HASH') {
 9098:                 if (!$cancreate{$item}{$curr_usercreation{'cancreate'}{$item}}) {
 9099:                     if (!grep(/^$item$/,@{$changes{'cancreate'}})) {
 9100:                         push(@{$changes{'cancreate'}},$item);
 9101:                     }
 9102:                 }
 9103:             }
 9104:         } elsif ($item eq 'emailusername') {
 9105:             if (ref($cancreate{$item}) eq 'HASH') {
 9106:                 foreach my $type (keys(%{$cancreate{$item}})) {
 9107:                     if (ref($cancreate{$item}{$type}) eq 'HASH') {
 9108:                         foreach my $field (keys(%{$cancreate{$item}{$type}})) {
 9109:                             if ($cancreate{$item}{$type}{$field}) {
 9110:                                 if (!grep(/^$item$/,@{$changes{'cancreate'}})) {
 9111:                                     push(@{$changes{'cancreate'}},$item);
 9112:                                 }
 9113:                                 last;
 9114:                             }
 9115:                         }
 9116:                     }
 9117:                 }
 9118:             }
 9119:         }
 9120:     }
 9121: #
 9122: # Populate %save_usercreate hash with updates to self-creation configuration.
 9123: #
 9124:     $save_usercreate{'cancreate'}{'captcha'} = $savecaptcha{'captcha'};
 9125:     $save_usercreate{'cancreate'}{'recaptchakeys'} = $savecaptcha{'recaptchakeys'};
 9126:     $save_usercreate{'cancreate'}{'selfcreate'} = $cancreate{'selfcreate'};
 9127:     if (ref($cancreate{'notify'}) eq 'HASH') {
 9128:         $save_usercreate{'cancreate'}{'notify'} = $cancreate{'notify'};
 9129:     }
 9130:     if (ref($cancreate{'selfcreateprocessing'}) eq 'HASH') {
 9131:         $save_usercreate{'cancreate'}{'selfcreateprocessing'} = $cancreate{'selfcreateprocessing'};
 9132:     }
 9133:     if (ref($cancreate{'statustocreate'}) eq 'ARRAY') {
 9134:         $save_usercreate{'cancreate'}{'statustocreate'} = $cancreate{'statustocreate'};
 9135:     }
 9136:     if (ref($cancreate{'shibenv'}) eq 'HASH') {
 9137:         $save_usercreate{'cancreate'}{'shibenv'} = $cancreate{'shibenv'};
 9138:     }
 9139:     $save_usercreate{'cancreate'}{'emailusername'} = $cancreate{'emailusername'};
 9140:     $save_usercreate{'emailrule'} = \@email_rule;
 9141: 
 9142:     my %userconfig_hash = (
 9143:             usercreation     => \%save_usercreate,
 9144:             usermodification => \%save_usermodify,
 9145:     );
 9146:     my $putresult = &Apache::lonnet::put_dom('configuration',\%userconfig_hash,
 9147:                                              $dom);
 9148: #
 9149: # Accumulate details of changes to domain cofiguration for self-creation of usernames in $resulttext
 9150: #
 9151:     if ($putresult eq 'ok') {
 9152:         if (keys(%changes) > 0) {
 9153:             $resulttext = &mt('Changes made:').'<ul>';
 9154:             if (ref($changes{'cancreate'}) eq 'ARRAY') {
 9155:                 my %lt = &selfcreation_types();
 9156:                 foreach my $type (@{$changes{'cancreate'}}) {
 9157:                     my $chgtext;
 9158:                     if ($type eq 'selfcreate') {
 9159:                         if (@{$cancreate{$type}} == 0) {
 9160:                             $chgtext .= &mt('Self creation of a new user account is not permitted.');
 9161:                         } else {
 9162:                             $chgtext .= &mt('Self-creation of a new account is permitted for:').
 9163:                                         '<ul>';
 9164:                             foreach my $case (@{$cancreate{$type}}) {
 9165:                                 $chgtext .= '<li>'.$selfcreatetypes{$case}.'</li>';
 9166:                             }
 9167:                             $chgtext .= '</ul>';
 9168:                             if (ref($cancreate{$type}) eq 'ARRAY') {
 9169:                                 if (grep(/^(login|sso)$/,@{$cancreate{$type}})) {
 9170:                                     if (ref($cancreate{'statustocreate'}) eq 'ARRAY') {
 9171:                                         if (@{$cancreate{'statustocreate'}} == 0) {
 9172:                                             $chgtext .= '<br />'.
 9173:                                                         '<span class="LC_warning">'.
 9174:                                                         &mt("However, no institutional affiliations (including 'other') are currently permitted to create accounts.").
 9175:                                                         '</span>';
 9176:                                         }
 9177:                                     }
 9178:                                 }
 9179:                             }
 9180:                         }
 9181:                     } elsif ($type eq 'shibenv') {
 9182:                         if (keys(%{$cancreate{$type}}) == 0) {
 9183:                             $chgtext .= &mt('Shibboleth-autheticated user does not use environment variables to set user information'); 
 9184:                         } else {
 9185:                             $chgtext .= &mt('Shibboleth-autheticated user information set from environment variables, as follows:').
 9186:                                         '<ul>';
 9187:                             foreach my $field (@shibfields) {
 9188:                                 next if ($cancreate{$type}{$field} eq '');
 9189:                                 if ($field eq 'inststatus') {
 9190:                                     $chgtext .= '<li>'.&mt('Institutional status').' -- '.$cancreate{$type}{$field}.'</li>';
 9191:                                 } else {
 9192:                                     $chgtext .= '<li>'.$fieldtitles{$field}.' -- '.$cancreate{$type}{$field}.'</li>';
 9193:                                 }
 9194:                             }
 9195:                             $chgtext .= '</ul>';
 9196:                         }  
 9197:                     } elsif ($type eq 'statustocreate') {
 9198:                         if ((ref($cancreate{'selfcreate'}) eq 'ARRAY') &&
 9199:                             (ref($cancreate{'statustocreate'}) eq 'ARRAY')) {
 9200:                             if (@{$cancreate{'selfcreate'}} > 0) {
 9201:                                 if (@{$cancreate{'statustocreate'}} == 0) {
 9202:                                     $chgtext .= &mt("Institutional affiliations permitted to create accounts set to 'None'.");
 9203:                                     if (!grep(/^email$/,@{$cancreate{'selfcreate'}})) {
 9204:                                         $chgtext .= '<br />'.
 9205:                                                     '<span class="LC_warning">'.
 9206:                                                     &mt("However, no institutional affiliations (including 'other') are currently permitted to create accounts.").
 9207:                                                     '</span>';
 9208:                                     }
 9209:                                 } elsif (ref($usertypes) eq 'HASH') {
 9210:                                     if (grep(/^(login|sso)$/,@{$cancreate{'selfcreate'}})) {
 9211:                                         $chgtext .= &mt('Creation of a new account for an institutional user is restricted to the following institutional affiliation(s):');
 9212:                                     } else {
 9213:                                         $chgtext .= &mt('Institutional affiliations permitted to create accounts with institutional authentication were set as follows:');
 9214:                                     }
 9215:                                     $chgtext .= '<ul>';
 9216:                                     foreach my $case (@{$cancreate{$type}}) {
 9217:                                         if ($case eq 'default') {
 9218:                                             $chgtext .= '<li>'.$othertitle.'</li>';
 9219:                                         } else {
 9220:                                             $chgtext .= '<li>'.$usertypes->{$case}.'</li>';
 9221:                                         }
 9222:                                     }
 9223:                                     $chgtext .= '</ul>';
 9224:                                     if (!grep(/^(login|sso)$/,@{$cancreate{'selfcreate'}})) {
 9225:                                         $chgtext .= '<br /><span class="LC_warning">'.
 9226:                                                     &mt('However, users authenticated by institutional login/single sign on are not currently permitted to create accounts.').
 9227:                                                     '</span>';
 9228:                                     }
 9229:                                 }
 9230:                             } else {
 9231:                                 if (@{$cancreate{$type}} == 0) {
 9232:                                     $chgtext .= &mt("Institutional affiliations permitted to create accounts were set to 'none'.");
 9233:                                 } else {
 9234:                                     $chgtext .= &mt('Although institutional affiliations permitted to create accounts were changed, self creation of accounts is not currently permitted for any authentication types.');
 9235:                                 }
 9236:                             }
 9237:                         }
 9238:                     } elsif ($type eq 'selfcreateprocessing') {
 9239:                         my %choices = &Apache::lonlocal::texthash (
 9240:                                                                     automatic => 'Automatic approval',
 9241:                                                                     approval  => 'Queued for approval',
 9242:                                                                   );
 9243:                         if (@statuses > 1) {
 9244:                             $chgtext .= &mt('Processing of requests to create account with e-mail address as username set as follows:'). 
 9245:                                         '<ul>';
 9246:                            foreach my $type (@statuses) {
 9247:                                if ($type eq 'default') {
 9248:                                    $chgtext .= '<li>'.$othertitle.' -- '.$choices{$cancreate{'selfcreateprocessing'}{$type}}.'</li>';
 9249:                                } else {
 9250:                                    $chgtext .= '<li>'.$usertypes->{$type}.' -- '.$choices{$cancreate{'selfcreateprocessing'}{$type}}.'</li>';
 9251:                                }
 9252:                            }
 9253:                            $chgtext .= '</ul>';
 9254:                         } else {
 9255:                            $chgtext .= &mt('Processing of requests to create account with e-mail address as username set to: "[_1]"',
 9256:                                          $choices{$cancreate{'selfcreateprocessing'}{'default'}});
 9257:                         }
 9258:                     } elsif ($type eq 'captcha') {
 9259:                         if ($savecaptcha{$type} eq 'notused') {
 9260:                             $chgtext .= &mt('No CAPTCHA validation in use for self-creation screen.');
 9261:                         } else {
 9262:                             my %captchas = &captcha_phrases();
 9263:                             if ($captchas{$savecaptcha{$type}}) {
 9264:                                 $chgtext .= &mt("Validation for self-creation screen set to $captchas{$savecaptcha{$type}}.");
 9265:                             } else {
 9266:                                 $chgtext .= &mt('Validation for self-creation screen set to unknown type.');
 9267:                             }
 9268:                         }
 9269:                     } elsif ($type eq 'recaptchakeys') {
 9270:                         my ($privkey,$pubkey);
 9271:                         if (ref($savecaptcha{$type}) eq 'HASH') {
 9272:                             $pubkey = $savecaptcha{$type}{'public'};
 9273:                             $privkey = $savecaptcha{$type}{'private'};
 9274:                         }
 9275:                         $chgtext .= &mt('ReCAPTCHA keys changes').'<ul>';
 9276:                         if (!$pubkey) {
 9277:                             $chgtext .= '<li>'.&mt('Public key deleted').'</li>';
 9278:                         } else {
 9279:                             $chgtext .= '<li>'.&mt('Public key set to [_1]',$pubkey).'</li>';
 9280:                         }
 9281:                         if (!$privkey) {
 9282:                             $chgtext .= '<li>'.&mt('Private key deleted').'</li>';
 9283:                         } else {
 9284:                             $chgtext .= '<li>'.&mt('Private key set to [_1]',$pubkey).'</li>';
 9285:                         }
 9286:                         $chgtext .= '</ul>';
 9287:                     } elsif ($type eq 'emailusername') {
 9288:                         if (ref($cancreate{'emailusername'}) eq 'HASH') {
 9289:                             if (ref($types) eq 'ARRAY') {
 9290:                                 foreach my $type (@{$types}) {
 9291:                                     if (ref($cancreate{'emailusername'}{$type}) eq 'HASH') {
 9292:                                         if (keys(%{$cancreate{'emailusername'}{$type}}) > 0) {
 9293:                                             $chgtext .= &mt('When self-creating account with e-mail as username, the following information will be provided by [_1]:',"'$usertypes->{$type}'").
 9294:                                                     '<ul>';
 9295:                                             foreach my $field (@{$infofields}) {
 9296:                                                 if ($cancreate{'emailusername'}{$type}{$field}) {
 9297:                                                     $chgtext .= '<li>'.$infotitles->{$field}.'</li>';
 9298:                                                 }
 9299:                                             }
 9300:                                             $chgtext .= '</ul>';
 9301:                                         } else {
 9302:                                             $chgtext .= &mt('When self creating account with e-mail as username, no information besides e-mail address will be provided by [_1].',"'$usertypes->{$type}'").'<br />';
 9303:                                         }
 9304:                                     } else {
 9305:                                         $chgtext .= &mt('When self creating account with e-mail as username, no information besides e-mail address will be provided by [_1].',"'$usertypes->{$type}'").'<br />';
 9306:                                     }
 9307:                                 }
 9308:                             }
 9309:                         }
 9310:                     } elsif ($type eq 'notify') {
 9311:                         $chgtext = &mt('No Domain Coordinators will receive notification of username requests requiring approval.');
 9312:                         if (ref($changes{'cancreate'}) eq 'ARRAY') {
 9313:                             if ((grep(/^notify$/,@{$changes{'cancreate'}})) && (ref($cancreate{'notify'}) eq 'HASH')) {
 9314:                                 if ($cancreate{'notify'}{'approval'}) {
 9315:                                     $chgtext = &mt('Notification of username requests requiring approval will be sent to: ').$cancreate{'notify'}{'approval'};
 9316:                                 }
 9317:                             }
 9318:                         }
 9319:                     }
 9320:                     if ($chgtext) {
 9321:                         $resulttext .= '<li>'.$chgtext.'</li>';
 9322:                     }
 9323:                 }
 9324:             }
 9325:             if (ref($changes{'email_rule'}) eq 'ARRAY') {
 9326:                 my ($emailrules,$emailruleorder) =
 9327:                     &Apache::lonnet::inst_userrules($dom,'email');
 9328:                 my $chgtext = '<ul>';
 9329:                 foreach my $type (@email_rule) {
 9330:                     if (ref($emailrules->{$type}) eq 'HASH') {
 9331:                         $chgtext .= '<li>'.$emailrules->{$type}{'name'}.'</li>';
 9332:                     }
 9333:                 }
 9334:                 $chgtext .= '</ul>';
 9335:                 if (@email_rule > 0) {
 9336:                     $resulttext .= '<li>'.
 9337:                                    &mt('Accounts may not be created by users self-enrolling with e-mail addresses of the following types: ').
 9338:                                        $chgtext.
 9339:                                    '</li>';
 9340:                 } else {
 9341:                     $resulttext .= '<li>'.
 9342:                                    &mt('There are now no restrictions on e-mail addresses which may be used as a username when self-enrolling.').
 9343:                                    '</li>';
 9344:                 }
 9345:             }
 9346:             if (ref($changes{'selfcreate'}) eq 'ARRAY') {
 9347:                 $resulttext .= '<li>'.&mt('When self-creating institutional account:').'<ul>';
 9348:                 my %fieldtitles = &Apache::loncommon::personal_data_fieldtitles();
 9349:                 foreach my $type (@{$changes{'selfcreate'}}) {
 9350:                     my $typename = $type;
 9351:                     if (ref($usertypes) eq 'HASH') {
 9352:                         if ($usertypes->{$type} ne '') {
 9353:                             $typename = $usertypes->{$type};
 9354:                         }
 9355:                     }
 9356:                     my @modifiable;
 9357:                     $resulttext .= '<li>'.
 9358:                                     &mt('Self-creation of account by users with status: [_1]',
 9359:                                         '<span class="LC_cusr_emph">'.$typename.'</span>').
 9360:                                     ' - '.&mt('modifiable fields (if institutional data blank): ');
 9361:                     foreach my $field (@fields) {
 9362:                         if ($save_usermodify{'selfcreate'}{$type}{$field}) {
 9363:                             push(@modifiable,'<b>'.$fieldtitles{$field}.'</b>');
 9364:                         }
 9365:                     }
 9366:                     if (@modifiable > 0) {
 9367:                         $resulttext .= join(', ',@modifiable);
 9368:                     } else {
 9369:                         $resulttext .= &mt('none');
 9370:                     }
 9371:                     $resulttext .= '</li>';
 9372:                 }
 9373:                 $resulttext .= '</ul></li>';
 9374:             }
 9375:             $resulttext .= '</ul>';
 9376:         } else {
 9377:             $resulttext = &mt('No changes made to self-creation settings');
 9378:         }
 9379:     } else {
 9380:         $resulttext = '<span class="LC_error">'.
 9381:             &mt('An error occurred: [_1]',$putresult).'</span>';
 9382:     }
 9383:     if ($warningmsg ne '') {
 9384:         $resulttext .= '<br /><span class="LC_warning">'.$warningmsg.'</span><br />';
 9385:     }
 9386:     return $resulttext;
 9387: }
 9388: 
 9389: sub process_captcha {
 9390:     my ($container,$changes,$newsettings,$current) = @_;
 9391:     return unless ((ref($changes) eq 'HASH') && (ref($newsettings) eq 'HASH') || (ref($current) eq 'HASH'));
 9392:     $newsettings->{'captcha'} = $env{'form.'.$container.'_captcha'};
 9393:     unless ($newsettings->{'captcha'} eq 'recaptcha' || $newsettings->{'captcha'} eq 'notused') {
 9394:         $newsettings->{'captcha'} = 'original';
 9395:     }
 9396:     if ($current->{'captcha'} ne $newsettings->{'captcha'}) {
 9397:         if ($container eq 'cancreate') {
 9398:             if (ref($changes->{'cancreate'}) eq 'ARRAY') {
 9399:                 push(@{$changes->{'cancreate'}},'captcha');
 9400:             } elsif (!defined($changes->{'cancreate'})) {
 9401:                 $changes->{'cancreate'} = ['captcha'];
 9402:             }
 9403:         } else {
 9404:             $changes->{'captcha'} = 1;
 9405:         }
 9406:     }
 9407:     my ($newpub,$newpriv,$currpub,$currpriv);
 9408:     if ($newsettings->{'captcha'} eq 'recaptcha') {
 9409:         $newpub = $env{'form.'.$container.'_recaptchapub'};
 9410:         $newpriv = $env{'form.'.$container.'_recaptchapriv'};
 9411:         $newpub =~ s/[^\w\-]//g;
 9412:         $newpriv =~ s/[^\w\-]//g;
 9413:         $newsettings->{'recaptchakeys'} = {
 9414:                                              public  => $newpub,
 9415:                                              private => $newpriv,
 9416:                                           };
 9417:     }
 9418:     if (ref($current->{'recaptchakeys'}) eq 'HASH') {
 9419:         $currpub = $current->{'recaptchakeys'}{'public'};
 9420:         $currpriv = $current->{'recaptchakeys'}{'private'};
 9421:         unless ($newsettings->{'captcha'} eq 'recaptcha') {
 9422:             $newsettings->{'recaptchakeys'} = {
 9423:                                                  public  => '',
 9424:                                                  private => '',
 9425:                                               }
 9426:         }
 9427:     }
 9428:     if (($newpub ne $currpub) || ($newpriv ne $currpriv)) {
 9429:         if ($container eq 'cancreate') {
 9430:             if (ref($changes->{'cancreate'}) eq 'ARRAY') {
 9431:                 push(@{$changes->{'cancreate'}},'recaptchakeys');
 9432:             } elsif (!defined($changes->{'cancreate'})) {
 9433:                 $changes->{'cancreate'} = ['recaptchakeys'];
 9434:             }
 9435:         } else {
 9436:             $changes->{'recaptchakeys'} = 1;
 9437:         }
 9438:     }
 9439:     return;
 9440: }
 9441: 
 9442: sub modify_usermodification {
 9443:     my ($dom,%domconfig) = @_;
 9444:     my ($resulttext,%curr_usermodification,%changes,%modifyhash);
 9445:     if (ref($domconfig{'usermodification'}) eq 'HASH') {
 9446:         foreach my $key (keys(%{$domconfig{'usermodification'}})) {
 9447:             if ($key eq 'selfcreate') {
 9448:                 $modifyhash{$key} = $domconfig{'usermodification'}{$key};
 9449:             } else {  
 9450:                 $curr_usermodification{$key} = $domconfig{'usermodification'}{$key};
 9451:             }
 9452:         }
 9453:     }
 9454:     my @contexts = ('author','course');
 9455:     my %context_title = (
 9456:                            author => 'In author context',
 9457:                            course => 'In course context',
 9458:                         );
 9459:     my @fields = ('lastname','firstname','middlename','generation',
 9460:                   'permanentemail','id');
 9461:     my %roles = (
 9462:                   author => ['ca','aa'],
 9463:                   course => ['st','ep','ta','in','cr'],
 9464:                 );
 9465:     my %fieldtitles = &Apache::loncommon::personal_data_fieldtitles();
 9466:     foreach my $context (@contexts) {
 9467:         foreach my $role (@{$roles{$context}}) {
 9468:             my @modifiable =  &Apache::loncommon::get_env_multiple('form.canmodify_'.$role);
 9469:             foreach my $item (@fields) {
 9470:                 if (grep(/^\Q$item\E$/,@modifiable)) {
 9471:                     $modifyhash{$context}{$role}{$item} = 1;
 9472:                 } else {
 9473:                     $modifyhash{$context}{$role}{$item} = 0;
 9474:                 }
 9475:             }
 9476:         }
 9477:         if (ref($curr_usermodification{$context}) eq 'HASH') {
 9478:             foreach my $role (@{$roles{$context}}) {
 9479:                 if (ref($curr_usermodification{$context}{$role}) eq 'HASH') {
 9480:                     foreach my $field (@fields) {
 9481:                         if ($modifyhash{$context}{$role}{$field} ne 
 9482:                                 $curr_usermodification{$context}{$role}{$field}) {
 9483:                             push(@{$changes{$context}},$role);
 9484:                             last;
 9485:                         }
 9486:                     }
 9487:                 }
 9488:             }
 9489:         } else {
 9490:             foreach my $context (@contexts) {
 9491:                 foreach my $role (@{$roles{$context}}) {
 9492:                     push(@{$changes{$context}},$role);
 9493:                 }
 9494:             }
 9495:         }
 9496:     }
 9497:     my %usermodification_hash =  (
 9498:                                    usermodification => \%modifyhash,
 9499:                                  );
 9500:     my $putresult = &Apache::lonnet::put_dom('configuration',
 9501:                                              \%usermodification_hash,$dom);
 9502:     if ($putresult eq 'ok') {
 9503:         if (keys(%changes) > 0) {
 9504:             $resulttext = &mt('Changes made: ').'<ul>';
 9505:             foreach my $context (@contexts) {
 9506:                 if (ref($changes{$context}) eq 'ARRAY') {
 9507:                     $resulttext .= '<li>'.$context_title{$context}.':<ul>';
 9508:                     if (ref($changes{$context}) eq 'ARRAY') {
 9509:                         foreach my $role (@{$changes{$context}}) {
 9510:                             my $rolename;
 9511:                             if ($role eq 'cr') {
 9512:                                 $rolename = &mt('Custom');
 9513:                             } else {
 9514:                                 $rolename = &Apache::lonnet::plaintext($role);
 9515:                             }
 9516:                             my @modifiable;
 9517:                             $resulttext .= '<li><span class="LC_cusr_emph">'.&mt('Target user with [_1] role',$rolename).'</span> - '.&mt('modifiable fields: ');
 9518:                             foreach my $field (@fields) {
 9519:                                 if ($modifyhash{$context}{$role}{$field}) {
 9520:                                     push(@modifiable,$fieldtitles{$field});
 9521:                                 }
 9522:                             }
 9523:                             if (@modifiable > 0) {
 9524:                                 $resulttext .= join(', ',@modifiable);
 9525:                             } else {
 9526:                                 $resulttext .= &mt('none'); 
 9527:                             }
 9528:                             $resulttext .= '</li>';
 9529:                         }
 9530:                         $resulttext .= '</ul></li>';
 9531:                     }
 9532:                 }
 9533:             }
 9534:             $resulttext .= '</ul>';
 9535:         } else {
 9536:             $resulttext = &mt('No changes made to user modification settings');
 9537:         }
 9538:     } else {
 9539:         $resulttext = '<span class="LC_error">'.
 9540:             &mt('An error occurred: [_1]',$putresult).'</span>';
 9541:     }
 9542:     return $resulttext;
 9543: }
 9544: 
 9545: sub modify_defaults {
 9546:     my ($dom,$lastactref,%domconfig) = @_;
 9547:     my ($resulttext,$mailmsgtxt,%newvalues,%changes,@errors);
 9548:     my %domdefaults = &Apache::lonnet::get_domain_defaults($dom,1);
 9549:     my @items = ('auth_def','auth_arg_def','lang_def','timezone_def','datelocale_def','portal_def');
 9550:     my @authtypes = ('internal','krb4','krb5','localauth');
 9551:     foreach my $item (@items) {
 9552:         $newvalues{$item} = $env{'form.'.$item};
 9553:         if ($item eq 'auth_def') {
 9554:             if ($newvalues{$item} ne '') {
 9555:                 if (!grep(/^\Q$newvalues{$item}\E$/,@authtypes)) {
 9556:                     push(@errors,$item);
 9557:                 }
 9558:             }
 9559:         } elsif ($item eq 'lang_def') {
 9560:             if ($newvalues{$item} ne '') {
 9561:                 if ($newvalues{$item} =~ /^(\w+)/) {
 9562:                     my $langcode = $1;
 9563:                     if ($langcode ne 'x_chef') {
 9564:                         if (code2language($langcode) eq '') {
 9565:                             push(@errors,$item);
 9566:                         }
 9567:                     }
 9568:                 } else {
 9569:                     push(@errors,$item);
 9570:                 }
 9571:             }
 9572:         } elsif ($item eq 'timezone_def') {
 9573:             if ($newvalues{$item} ne '') {
 9574:                 if (!DateTime::TimeZone->is_valid_name($newvalues{$item})) {
 9575:                     push(@errors,$item);   
 9576:                 }
 9577:             }
 9578:         } elsif ($item eq 'datelocale_def') {
 9579:             if ($newvalues{$item} ne '') {
 9580:                 my @datelocale_ids = DateTime::Locale->ids();
 9581:                 if (!grep(/^\Q$newvalues{$item}\E$/,@datelocale_ids)) {
 9582:                     push(@errors,$item);
 9583:                 }
 9584:             }
 9585:         } elsif ($item eq 'portal_def') {
 9586:             if ($newvalues{$item} ne '') {
 9587:                 unless ($newvalues{$item} =~ /^https?\:\/\/(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9])\.)*([A-Za-z]|[A-Za-z][A-Za-z0-9\-]*[A-Za-z0-9])\/?$/) {
 9588:                     push(@errors,$item);
 9589:                 }
 9590:             }
 9591:         }
 9592:         if (grep(/^\Q$item\E$/,@errors)) {
 9593:             $newvalues{$item} = $domdefaults{$item};
 9594:         } elsif ($domdefaults{$item} ne $newvalues{$item}) {
 9595:             $changes{$item} = 1;
 9596:         }
 9597:         $domdefaults{$item} = $newvalues{$item};
 9598:     }
 9599:     my %defaults_hash = (
 9600:                          defaults => \%newvalues,
 9601:                         );
 9602:     my $title = &defaults_titles();
 9603: 
 9604:     my $currinststatus;
 9605:     if (ref($domconfig{'inststatus'}) eq 'HASH') {
 9606:         $currinststatus = $domconfig{'inststatus'};
 9607:     } else {
 9608:         my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($dom);
 9609:         $currinststatus = {
 9610:                              inststatustypes => $usertypes,
 9611:                              inststatusorder => $types,
 9612:                              inststatusguest => [],
 9613:                           };
 9614:     }
 9615:     my @todelete = &Apache::loncommon::get_env_multiple('form.inststatus_delete');
 9616:     my @allpos;
 9617:     my %guests;
 9618:     my %alltypes;
 9619:     my ($currtitles,$currguests,$currorder);
 9620:     if (ref($currinststatus) eq 'HASH') {
 9621:         if (ref($currinststatus->{'inststatusorder'}) eq 'ARRAY') {
 9622:             foreach my $type (@{$currinststatus->{'inststatusorder'}}) {
 9623:                 if (ref($currinststatus->{inststatustypes}) eq 'HASH') {
 9624:                     if ($currinststatus->{inststatustypes}->{$type} ne '') {
 9625:                         $currtitles .= $currinststatus->{inststatustypes}->{$type}.',';
 9626:                     }
 9627:                 }
 9628:                 unless (grep(/^\Q$type\E$/,@todelete)) { 
 9629:                     my $position = $env{'form.inststatus_pos_'.$type};
 9630:                     $position =~ s/\D+//g;
 9631:                     $allpos[$position] = $type;
 9632:                     $alltypes{$type} = $env{'form.inststatus_title_'.$type};
 9633:                     $alltypes{$type} =~ s/`//g;
 9634:                     if ($env{'form.inststatus_guest_'.$type}) {
 9635:                         $guests{$type} = 1;
 9636:                     }
 9637:                 }
 9638:             }
 9639:             if (ref($currinststatus->{'inststatusguest'}) eq 'ARRAY') {
 9640:                 $currguests = join(',',@{$currinststatus->{'inststatusguest'}});
 9641:             }
 9642:             $currorder = join(',',@{$currinststatus->{'inststatusorder'}});
 9643:             $currtitles =~ s/,$//;
 9644:         }
 9645:     }
 9646:     if ($env{'form.addinststatus'}) {
 9647:         my $newtype = $env{'form.addinststatus'};
 9648:         $newtype =~ s/\W//g;
 9649:         unless (exists($alltypes{$newtype})) {
 9650:             if ($env{'form.addinststatus_guest'}) {
 9651:                 $guests{$newtype} = 1;
 9652:             }
 9653:             $alltypes{$newtype} = $env{'form.addinststatus_title'};
 9654:             $alltypes{$newtype} =~ s/`//g; 
 9655:             my $position = $env{'form.addinststatus_pos'};
 9656:             $position =~ s/\D+//g;
 9657:             if ($position ne '') {
 9658:                 $allpos[$position] = $newtype;
 9659:             }
 9660:         }
 9661:     }
 9662:     my (@orderedstatus,@orderedguests);
 9663:     foreach my $type (@allpos) {
 9664:         unless (($type eq '') || (grep(/^\Q$type\E$/,@orderedstatus))) {
 9665:             push(@orderedstatus,$type);
 9666:             if ($guests{$type}) {
 9667:                 push(@orderedguests,$type);
 9668:             }
 9669:         }
 9670:     }
 9671:     foreach my $type (keys(%alltypes)) {
 9672:         unless (grep(/^\Q$type\E$/,@orderedstatus)) {
 9673:             delete($alltypes{$type});
 9674:         }
 9675:     }
 9676:     $defaults_hash{'inststatus'} = {
 9677:                                      inststatustypes => \%alltypes,
 9678:                                      inststatusorder => \@orderedstatus,
 9679:                                      inststatusguest => \@orderedguests,
 9680:                                    };
 9681:     if (ref($defaults_hash{'inststatus'}) eq 'HASH') {
 9682:         foreach my $item ('inststatustypes','inststatusorder','inststatusguest') {
 9683:             $domdefaults{$item} = $defaults_hash{'inststatus'}{$item};
 9684:         }
 9685:     }
 9686:     if ($currorder ne join(',',@orderedstatus)) {
 9687:         $changes{'inststatus'}{'inststatusorder'} = 1;
 9688:     }
 9689:     if ($currguests ne join(',',@orderedguests)) {
 9690:         $changes{'inststatus'}{'inststatusguest'} = 1;
 9691:     }
 9692:     my $newtitles;
 9693:     foreach my $item (@orderedstatus) {
 9694:         $newtitles .= $alltypes{$item}.',';
 9695:     }
 9696:     $newtitles =~ s/,$//;
 9697:     if ($currtitles ne $newtitles) {
 9698:         $changes{'inststatus'}{'inststatustypes'} = 1;
 9699:     }
 9700:     my $putresult = &Apache::lonnet::put_dom('configuration',\%defaults_hash,
 9701:                                              $dom);
 9702:     if ($putresult eq 'ok') {
 9703:         if (keys(%changes) > 0) {
 9704:             $resulttext = &mt('Changes made:').'<ul>';
 9705:             my $version = &Apache::lonnet::get_server_loncaparev($dom);
 9706:             my $mailmsgtext = "Changes made to domain settings in a LON-CAPA installation - domain: $dom (running version: $version) - dns_domain.tab needs to be updated with the following changes, to support legacy 2.4, 2.5 and 2.6 versions of LON-CAPA.\n\n";
 9707:             foreach my $item (sort(keys(%changes))) {
 9708:                 if ($item eq 'inststatus') {
 9709:                     if (ref($changes{'inststatus'}) eq 'HASH') {
 9710:                         if (($changes{'inststatus'}{'inststatustypes'}) || $changes{'inststatus'}{'inststatusorder'}) {
 9711:                             $resulttext .= '<li>'.&mt('Institutional user status types set to:').' ';
 9712:                             foreach my $type (@orderedstatus) { 
 9713:                                 $resulttext .= $alltypes{$type}.', ';
 9714:                             }
 9715:                             $resulttext =~ s/, $//;
 9716:                             $resulttext .= '</li>';
 9717:                         }
 9718:                         if ($changes{'inststatus'}{'inststatusguest'}) {
 9719:                             $resulttext .= '<li>'; 
 9720:                             if (@orderedguests) {
 9721:                                 $resulttext .= &mt('Types assignable to "non-institutional" usernames set to:').' ';
 9722:                                 foreach my $type (@orderedguests) {
 9723:                                     $resulttext .= $alltypes{$type}.', ';
 9724:                                 }
 9725:                                 $resulttext =~ s/, $//;
 9726:                             } else {
 9727:                                 $resulttext .= &mt('Types assignable to "non-institutional" usernames set to none.');
 9728:                             }
 9729:                             $resulttext .= '</li>';
 9730:                         }
 9731:                     }
 9732:                 } else {
 9733:                     my $value = $env{'form.'.$item};
 9734:                     if ($value eq '') {
 9735:                         $value = &mt('none');
 9736:                     } elsif ($item eq 'auth_def') {
 9737:                         my %authnames = &authtype_names();
 9738:                         my %shortauth = (
 9739:                                           internal   => 'int',
 9740:                                           krb4       => 'krb4',
 9741:                                           krb5       => 'krb5',
 9742:                                           localauth  => 'loc',
 9743:                         );
 9744:                         $value = $authnames{$shortauth{$value}};
 9745:                     }
 9746:                     $resulttext .= '<li>'.&mt('[_1] set to "[_2]"',$title->{$item},$value).'</li>';
 9747:                     $mailmsgtext .= "$title->{$item} set to $value\n";  
 9748:                 }
 9749:             }
 9750:             $resulttext .= '</ul>';
 9751:             $mailmsgtext .= "\n";
 9752:             my $cachetime = 24*60*60;
 9753:             &Apache::lonnet::do_cache_new('domdefaults',$dom,\%domdefaults,$cachetime);
 9754:             if (ref($lastactref) eq 'HASH') {
 9755:                 $lastactref->{'domdefaults'} = 1;
 9756:             }
 9757:             if ($changes{'auth_def'} || $changes{'auth_arg_def'} || $changes{'lang_def'} || $changes{'datelocale_def'}) {
 9758:                 my $notify = 1;
 9759:                 if (ref($domconfig{'contacts'}) eq 'HASH') {
 9760:                     if ($domconfig{'contacts'}{'reportupdates'} == 0) {
 9761:                         $notify = 0;
 9762:                     }
 9763:                 }
 9764:                 if ($notify) {
 9765:                     &Apache::lonmsg::sendemail('installrecord@loncapa.org',
 9766:                                                "LON-CAPA Domain Settings Change - $dom",
 9767:                                                $mailmsgtext);
 9768:                 }
 9769:             }
 9770:         } else {
 9771:             $resulttext = &mt('No changes made to default authentication/language/timezone settings');
 9772:         }
 9773:     } else {
 9774:         $resulttext = '<span class="LC_error">'.
 9775:             &mt('An error occurred: [_1]',$putresult).'</span>';
 9776:     }
 9777:     if (@errors > 0) {
 9778:         $resulttext .= '<br />'.&mt('The following were left unchanged because the values entered were invalid:');
 9779:         foreach my $item (@errors) {
 9780:             $resulttext .= ' "'.$title->{$item}.'",';
 9781:         }
 9782:         $resulttext =~ s/,$//;
 9783:     }
 9784:     return $resulttext;
 9785: }
 9786: 
 9787: sub modify_scantron {
 9788:     my ($r,$dom,$confname,$lastactref,%domconfig) = @_;
 9789:     my ($resulttext,%confhash,%changes,$errors);
 9790:     my $custom = 'custom.tab';
 9791:     my $default = 'default.tab';
 9792:     my $servadm = $r->dir_config('lonAdmEMail');
 9793:     my ($configuserok,$author_ok,$switchserver) = 
 9794:         &config_check($dom,$confname,$servadm);
 9795:     if ($env{'form.scantronformat.filename'} ne '') {
 9796:         my $error;
 9797:         if ($configuserok eq 'ok') {
 9798:             if ($switchserver) {
 9799:                 $error = &mt("Upload of bubblesheet format file is not permitted to this server: [_1]",$switchserver);
 9800:             } else {
 9801:                 if ($author_ok eq 'ok') {
 9802:                     my ($result,$scantronurl) =
 9803:                         &publishlogo($r,'upload','scantronformat',$dom,
 9804:                                      $confname,'scantron','','',$custom);
 9805:                     if ($result eq 'ok') {
 9806:                         $confhash{'scantron'}{'scantronformat'} = $scantronurl;
 9807:                         $changes{'scantronformat'} = 1;
 9808:                     } else {
 9809:                         $error = &mt("Upload of [_1] failed because an error occurred publishing the file in RES space. Error was: [_2].",$custom,$result);
 9810:                     }
 9811:                 } else {
 9812:                     $error = &mt("Upload of [_1] failed because an author role could not be assigned to a Domain Configuration user ([_2]) in domain: [_3].  Error was: [_4].",$custom,$confname,$dom,$author_ok);
 9813:                 }
 9814:             }
 9815:         } else {
 9816:             $error = &mt("Upload of [_1] failed because a Domain Configuration user ([_2]) could not be created in domain: [_3].  Error was: [_4].",$custom,$confname,$dom,$configuserok);
 9817:         }
 9818:         if ($error) {
 9819:             &Apache::lonnet::logthis($error);
 9820:             $errors .= '<li><span class="LC_error">'.$error.'</span></li>';
 9821:         }
 9822:     }
 9823:     if (ref($domconfig{'scantron'}) eq 'HASH') {
 9824:         if ($domconfig{'scantron'}{'scantronformat'} ne '') {
 9825:             if ($env{'form.scantronformat_del'}) {
 9826:                 $confhash{'scantron'}{'scantronformat'} = '';
 9827:                 $changes{'scantronformat'} = 1;
 9828:             }
 9829:         }
 9830:     }
 9831:     if (keys(%confhash) > 0) {
 9832:         my $putresult = &Apache::lonnet::put_dom('configuration',\%confhash,
 9833:                                                  $dom);
 9834:         if ($putresult eq 'ok') {
 9835:             if (keys(%changes) > 0) {
 9836:                 if (ref($confhash{'scantron'}) eq 'HASH') {
 9837:                     $resulttext = &mt('Changes made:').'<ul>';
 9838:                     if ($confhash{'scantron'}{'scantronformat'} eq '') {
 9839:                         $resulttext .= '<li>'.&mt('[_1] bubblesheet format file removed; [_2] file will be used for courses in this domain.',$custom,$default).'</li>';
 9840:                     } else {
 9841:                         $resulttext .= '<li>'.&mt('Custom bubblesheet format file ([_1]) uploaded for use with courses in this domain.',$custom).'</li>';
 9842:                     }
 9843:                     $resulttext .= '</ul>';
 9844:                 } else {
 9845:                     $resulttext = &mt('Changes made to bubblesheet format file.');
 9846:                 }
 9847:                 $resulttext .= '</ul>';
 9848:                 &Apache::loncommon::devalidate_domconfig_cache($dom);
 9849:                 if (ref($lastactref) eq 'HASH') {
 9850:                     $lastactref->{'domainconfig'} = 1;
 9851:                 }
 9852:             } else {
 9853:                 $resulttext = &mt('No changes made to bubblesheet format file');
 9854:             }
 9855:         } else {
 9856:             $resulttext = '<span class="LC_error">'.
 9857:                 &mt('An error occurred: [_1]',$putresult).'</span>';
 9858:         }
 9859:     } else {
 9860:         $resulttext = &mt('No changes made to bubblesheet format file'); 
 9861:     }
 9862:     if ($errors) {
 9863:         $resulttext .= &mt('The following errors occurred: ').'<ul>'.
 9864:                        $errors.'</ul>';
 9865:     }
 9866:     return $resulttext;
 9867: }
 9868: 
 9869: sub modify_coursecategories {
 9870:     my ($dom,$lastactref,%domconfig) = @_;
 9871:     my ($resulttext,%deletions,%reorderings,%needreordering,%adds,%changes,$errors,
 9872:         $cathash);
 9873:     my @deletecategory = &Apache::loncommon::get_env_multiple('form.deletecategory');
 9874:     my @catitems = ('unauth','auth');
 9875:     my @cattypes = ('std','domonly','codesrch','none');
 9876:     if (ref($domconfig{'coursecategories'}) eq 'HASH') {
 9877:         $cathash = $domconfig{'coursecategories'}{'cats'};
 9878:         if ($domconfig{'coursecategories'}{'togglecats'} ne $env{'form.togglecats'}) {
 9879:             $changes{'togglecats'} = 1;
 9880:             $domconfig{'coursecategories'}{'togglecats'} = $env{'form.togglecats'};
 9881:         }
 9882:         if ($domconfig{'coursecategories'}{'categorize'} ne $env{'form.categorize'}) {
 9883:             $changes{'categorize'} = 1;
 9884:             $domconfig{'coursecategories'}{'categorize'} = $env{'form.categorize'};
 9885:         }
 9886:         if ($domconfig{'coursecategories'}{'togglecatscomm'} ne $env{'form.togglecatscomm'}) {
 9887:             $changes{'togglecatscomm'} = 1;
 9888:             $domconfig{'coursecategories'}{'togglecatscomm'} = $env{'form.togglecatscomm'};
 9889:         }
 9890:         if ($domconfig{'coursecategories'}{'categorizecomm'} ne $env{'form.categorizecomm'}) {
 9891:             $changes{'categorizecomm'} = 1;
 9892:             $domconfig{'coursecategories'}{'categorizecomm'} = $env{'form.categorizecomm'};
 9893:         }
 9894:         foreach my $item (@catitems) {
 9895:             if (grep(/^\Q$env{'form.coursecat_'.$item}\E$/,@cattypes)) {
 9896:                 if ($domconfig{'coursecategories'}{$item} ne $env{'form.coursecat_'.$item}) {
 9897:                     $changes{$item} = 1;
 9898:                     $domconfig{'coursecategories'}{$item} = $env{'form.coursecat_'.$item};
 9899:                 }
 9900:             }
 9901:         }
 9902:     } else {
 9903:         $changes{'togglecats'} = 1;
 9904:         $changes{'categorize'} = 1;
 9905:         $changes{'togglecatscomm'} = 1;
 9906:         $changes{'categorizecomm'} = 1;
 9907:         $domconfig{'coursecategories'} = {
 9908:                                              togglecats => $env{'form.togglecats'},
 9909:                                              categorize => $env{'form.categorize'},
 9910:                                              togglecatscomm => $env{'form.togglecatscomm'},
 9911:                                              categorizecomm => $env{'form.categorizecomm'},
 9912:                                          };
 9913:         foreach my $item (@catitems) {
 9914:             if ($env{'form.coursecat_'.$item} ne 'std') {
 9915:                 $changes{$item} = 1;
 9916:             }
 9917:             if (grep(/^\Q$env{'form.coursecat_'.$item}\E$/,@cattypes)) {
 9918:                 $domconfig{'coursecategories'}{$item} = $env{'form.coursecat_'.$item};
 9919:             }
 9920:         }
 9921:     }
 9922:     if (ref($cathash) eq 'HASH') {
 9923:         if (($domconfig{'coursecategories'}{'cats'}{'instcode::0'} ne '')  && ($env{'form.instcode'} == 0)) {
 9924:             push (@deletecategory,'instcode::0');
 9925:         }
 9926:         if (($domconfig{'coursecategories'}{'cats'}{'communities::0'} ne '')  && ($env{'form.communities'} == 0)) {
 9927:             push(@deletecategory,'communities::0');
 9928:         }
 9929:     }
 9930:     my (@predelcats,@predeltrails,%predelallitems,%sort_by_deltrail);
 9931:     if (ref($cathash) eq 'HASH') {
 9932:         if (@deletecategory > 0) {
 9933:             #FIXME Need to remove category from all courses using a deleted category 
 9934:             &Apache::loncommon::extract_categories($cathash,\@predelcats,\@predeltrails,\%predelallitems);
 9935:             foreach my $item (@deletecategory) {
 9936:                 if ($domconfig{'coursecategories'}{'cats'}{$item} ne '') {
 9937:                     delete($domconfig{'coursecategories'}{'cats'}{$item});
 9938:                     $deletions{$item} = 1;
 9939:                     &recurse_cat_deletes($item,$cathash,\%deletions);
 9940:                 }
 9941:             }
 9942:         }
 9943:         foreach my $item (keys(%{$cathash})) {
 9944:             my ($cat,$container,$depth) = map { &unescape($_); } split(/:/,$item);
 9945:             if ($cathash->{$item} ne $env{'form.'.$item}) {
 9946:                 $reorderings{$item} = 1;
 9947:                 $domconfig{'coursecategories'}{'cats'}{$item} = $env{'form.'.$item};
 9948:             }
 9949:             if ($env{'form.addcategory_name_'.$item} ne '') {
 9950:                 my $newcat = $env{'form.addcategory_name_'.$item};
 9951:                 my $newdepth = $depth+1;
 9952:                 my $newitem = &escape($newcat).':'.&escape($cat).':'.$newdepth;
 9953:                 $domconfig{'coursecategories'}{'cats'}{$newitem} = $env{'form.addcategory_pos_'.$item};
 9954:                 $adds{$newitem} = 1; 
 9955:             }
 9956:             if ($env{'form.subcat_'.$item} ne '') {
 9957:                 my $newcat = $env{'form.subcat_'.$item};
 9958:                 my $newdepth = $depth+1;
 9959:                 my $newitem = &escape($newcat).':'.&escape($cat).':'.$newdepth;
 9960:                 $domconfig{'coursecategories'}{'cats'}{$newitem} = 0;
 9961:                 $adds{$newitem} = 1;
 9962:             }
 9963:         }
 9964:     }
 9965:     if ($env{'form.instcode'} eq '1') {
 9966:         if (ref($cathash) eq 'HASH') {
 9967:             my $newitem = 'instcode::0';
 9968:             if ($cathash->{$newitem} eq '') {  
 9969:                 $domconfig{'coursecategories'}{'cats'}{$newitem} = $env{'form.instcode_pos'};
 9970:                 $adds{$newitem} = 1;
 9971:             }
 9972:         } else {
 9973:             my $newitem = 'instcode::0';
 9974:             $domconfig{'coursecategories'}{'cats'}{$newitem} = $env{'form.instcode_pos'};
 9975:             $adds{$newitem} = 1;
 9976:         }
 9977:     }
 9978:     if ($env{'form.communities'} eq '1') {
 9979:         if (ref($cathash) eq 'HASH') {
 9980:             my $newitem = 'communities::0';
 9981:             if ($cathash->{$newitem} eq '') {
 9982:                 $domconfig{'coursecategories'}{'cats'}{$newitem} = $env{'form.communities_pos'};
 9983:                 $adds{$newitem} = 1;
 9984:             }
 9985:         } else {
 9986:             my $newitem = 'communities::0';
 9987:             $domconfig{'coursecategories'}{'cats'}{$newitem} = $env{'form.communities_pos'};
 9988:             $adds{$newitem} = 1;
 9989:         }
 9990:     }
 9991:     if ($env{'form.addcategory_name'} ne '') {
 9992:         if (($env{'form.addcategory_name'} ne 'instcode') &&
 9993:             ($env{'form.addcategory_name'} ne 'communities')) {
 9994:             my $newitem = &escape($env{'form.addcategory_name'}).'::0';
 9995:             $domconfig{'coursecategories'}{'cats'}{$newitem} = $env{'form.addcategory_pos'};
 9996:             $adds{$newitem} = 1;
 9997:         }
 9998:     }
 9999:     my $putresult;
10000:     if ((keys(%deletions) > 0) || (keys(%reorderings) > 0) || (keys(%adds) > 0)) {
10001:         if (keys(%deletions) > 0) {
10002:             foreach my $key (keys(%deletions)) {
10003:                 if ($predelallitems{$key} ne '') {
10004:                     $sort_by_deltrail{$predelallitems{$key}} = $predeltrails[$predelallitems{$key}];
10005:                 }
10006:             }
10007:         }
10008:         my (@chkcats,@chktrails,%chkallitems);
10009:         &Apache::loncommon::extract_categories($domconfig{'coursecategories'}{'cats'},\@chkcats,\@chktrails,\%chkallitems);
10010:         if (ref($chkcats[0]) eq 'ARRAY') {
10011:             my $depth = 0;
10012:             my $chg = 0;
10013:             for (my $i=0; $i<@{$chkcats[0]}; $i++) {
10014:                 my $name = $chkcats[0][$i];
10015:                 my $item;
10016:                 if ($name eq '') {
10017:                     $chg ++;
10018:                 } else {
10019:                     $item = &escape($name).'::0';
10020:                     if ($chg) {
10021:                         $domconfig{'coursecategories'}{'cats'}{$item} -= $chg;
10022:                     }
10023:                     $depth ++; 
10024:                     &recurse_check(\@chkcats,$domconfig{'coursecategories'}{'cats'},$depth,$name);
10025:                     $depth --;
10026:                 }
10027:             }
10028:         }
10029:     }
10030:     if ((keys(%changes) > 0) || (keys(%deletions) > 0) || (keys(%reorderings) > 0) || (keys(%adds) > 0)) {
10031:         $putresult = &Apache::lonnet::put_dom('configuration',\%domconfig,$dom);
10032:         if ($putresult eq 'ok') {
10033:             my %title = (
10034:                          togglecats     => 'Show/Hide a course in catalog',
10035:                          categorize     => 'Assign a category to a course',
10036:                          togglecatscomm => 'Show/Hide a community in catalog',
10037:                          categorizecomm => 'Assign a category to a community',
10038:                         );
10039:             my %level = (
10040:                          dom  => 'set in Domain ("Modify Course/Community")',
10041:                          crs  => 'set in Course ("Course Configuration")',
10042:                          comm => 'set in Community ("Community Configuration")',
10043:                          none     => 'No catalog',
10044:                          std      => 'Standard catalog',
10045:                          domonly  => 'Domain-only catalog',
10046:                          codesrch => 'Code search form',
10047:                         );
10048:             $resulttext = &mt('Changes made:').'<ul>';
10049:             if ($changes{'togglecats'}) {
10050:                 $resulttext .= '<li>'.&mt("$title{'togglecats'} $level{$env{'form.togglecats'}}").'</li>'; 
10051:             }
10052:             if ($changes{'categorize'}) {
10053:                 $resulttext .= '<li>'.&mt("$title{'categorize'} $level{$env{'form.categorize'}}").'</li>';
10054:             }
10055:             if ($changes{'togglecatscomm'}) {
10056:                 $resulttext .= '<li>'.&mt("$title{'togglecatscomm'} $level{$env{'form.togglecatscomm'}}").'</li>';
10057:             }
10058:             if ($changes{'categorizecomm'}) {
10059:                 $resulttext .= '<li>'.&mt("$title{'categorizecomm'} $level{$env{'form.categorizecomm'}}").'</li>';
10060:             }
10061:             if ($changes{'unauth'}) {
10062:                 $resulttext .= '<li>'.&mt('Catalog type for unauthenticated users set to "'.$level{$env{'form.coursecat_unauth'}}.'"').'</li>';
10063:             }
10064:             if ($changes{'auth'}) {
10065:                 $resulttext .= '<li>'.&mt('Catalog type for authenticated users set to "'.$level{$env{'form.coursecat_auth'}}.'"').'</li>';
10066:             }
10067:             if ((keys(%deletions) > 0) || (keys(%reorderings) > 0) || (keys(%adds) > 0)) {
10068:                 my $cathash;
10069:                 if (ref($domconfig{'coursecategories'}) eq 'HASH') {
10070:                     $cathash = $domconfig{'coursecategories'}{'cats'};
10071:                 } else {
10072:                     $cathash = {};
10073:                 } 
10074:                 my (@cats,@trails,%allitems);
10075:                     &Apache::loncommon::extract_categories($cathash,\@cats,\@trails,\%allitems);
10076:                 if (keys(%deletions) > 0) {
10077:                     $resulttext .= '<li>'.&mt('Deleted categories:').'<ul>';
10078:                     foreach my $predeltrail (sort {$a <=> $b } (keys(%sort_by_deltrail))) { 
10079:                         $resulttext .= '<li>'.$predeltrails[$predeltrail].'</li>';
10080:                     }
10081:                     $resulttext .= '</ul></li>';
10082:                 }
10083:                 if (keys(%reorderings) > 0) {
10084:                     my %sort_by_trail;
10085:                     $resulttext .= '<li>'.&mt('Reordered categories:').'<ul>';
10086:                     foreach my $key (keys(%reorderings)) {
10087:                         if ($allitems{$key} ne '') {
10088:                             $sort_by_trail{$allitems{$key}} = $trails[$allitems{$key}];
10089:                         }
10090:                     }
10091:                     foreach my $trail (sort {$a <=> $b } (keys(%sort_by_trail))) {
10092:                         $resulttext .= '<li>'.$trails[$trail].'</li>';
10093:                     }
10094:                     $resulttext .= '</ul></li>';
10095:                 }
10096:                 if (keys(%adds) > 0) {
10097:                     my %sort_by_trail;
10098:                     $resulttext .= '<li>'.&mt('Added categories:').'<ul>';
10099:                     foreach my $key (keys(%adds)) {
10100:                         if ($allitems{$key} ne '') {
10101:                             $sort_by_trail{$allitems{$key}} = $trails[$allitems{$key}];
10102:                         }
10103:                     }
10104:                     foreach my $trail (sort {$a <=> $b } (keys(%sort_by_trail))) {
10105:                         $resulttext .= '<li>'.$trails[$trail].'</li>';
10106:                     }
10107:                     $resulttext .= '</ul></li>';
10108:                 }
10109:             }
10110:             $resulttext .= '</ul>';
10111:             if ($changes{'unauth'} || $changes{'auth'}) {
10112:                 my %domdefaults = &Apache::lonnet::get_domain_defaults($dom);
10113:                 if ($changes{'auth'}) {
10114:                     $domdefaults{'catauth'} = $domconfig{'coursecategories'}{'auth'};
10115:                 }
10116:                 if ($changes{'unauth'}) {
10117:                     $domdefaults{'catunauth'} = $domconfig{'coursecategories'}{'unauth'};
10118:                 }
10119:                 my $cachetime = 24*60*60;
10120:                 &Apache::lonnet::do_cache_new('domdefaults',$dom,\%domdefaults,$cachetime);
10121:                 if (ref($lastactref) eq 'HASH') {
10122:                     $lastactref->{'domdefaults'} = 1;
10123:                 }
10124:             }
10125:         } else {
10126:             $resulttext = '<span class="LC_error">'.
10127:                           &mt('An error occurred: [_1]',$putresult).'</span>';
10128:         }
10129:     } else {
10130:         $resulttext = &mt('No changes made to course and community categories');
10131:     }
10132:     return $resulttext;
10133: }
10134: 
10135: sub modify_serverstatuses {
10136:     my ($dom,%domconfig) = @_;
10137:     my ($resulttext,%changes,%currserverstatus,%newserverstatus);
10138:     if (ref($domconfig{'serverstatuses'}) eq 'HASH') {
10139:         %currserverstatus = %{$domconfig{'serverstatuses'}};
10140:     }
10141:     my @pages = &serverstatus_pages();
10142:     foreach my $type (@pages) {
10143:         $newserverstatus{$type}{'namedusers'} = '';
10144:         $newserverstatus{$type}{'machines'} = '';
10145:         if (defined($env{'form.'.$type.'_namedusers'})) {
10146:             my @users = split(/,/,$env{'form.'.$type.'_namedusers'});
10147:             my @okusers;
10148:             foreach my $user (@users) {
10149:                 my ($uname,$udom) = split(/:/,$user);
10150:                 if (($udom =~ /^$match_domain$/) &&   
10151:                     (&Apache::lonnet::domain($udom)) &&
10152:                     ($uname =~ /^$match_username$/)) {
10153:                     if (!grep(/^\Q$user\E/,@okusers)) {
10154:                         push(@okusers,$user);
10155:                     }
10156:                 }
10157:             }
10158:             if (@okusers > 0) {
10159:                  @okusers = sort(@okusers);
10160:                  $newserverstatus{$type}{'namedusers'} = join(',',@okusers);
10161:             }
10162:         }
10163:         if (defined($env{'form.'.$type.'_machines'})) {
10164:             my @machines = split(/,/,$env{'form.'.$type.'_machines'});
10165:             my @okmachines;
10166:             foreach my $ip (@machines) {
10167:                 my @parts = split(/\./,$ip);
10168:                 next if (@parts < 4);
10169:                 my $badip = 0;
10170:                 for (my $i=0; $i<4; $i++) {
10171:                     if (!(($parts[$i] >= 0) && ($parts[$i] <= 255))) {
10172:                         $badip = 1;
10173:                         last;
10174:                     }
10175:                 }
10176:                 if (!$badip) {
10177:                     push(@okmachines,$ip);     
10178:                 }
10179:             }
10180:             @okmachines = sort(@okmachines);
10181:             $newserverstatus{$type}{'machines'} = join(',',@okmachines);
10182:         }
10183:     }
10184:     my %serverstatushash =  (
10185:                                 serverstatuses => \%newserverstatus,
10186:                             );
10187:     foreach my $type (@pages) {
10188:         foreach my $setting ('namedusers','machines') {
10189:             my (@current,@new);
10190:             if (ref($currserverstatus{$type}) eq 'HASH') {
10191:                 if ($currserverstatus{$type}{$setting} ne '') { 
10192:                     @current = split(/,/,$currserverstatus{$type}{$setting});
10193:                 }
10194:             }
10195:             if ($newserverstatus{$type}{$setting} ne '') {
10196:                 @new = split(/,/,$newserverstatus{$type}{$setting});
10197:             }
10198:             if (@current > 0) {
10199:                 if (@new > 0) {
10200:                     foreach my $item (@current) {
10201:                         if (!grep(/^\Q$item\E$/,@new)) {
10202:                             $changes{$type}{$setting} = 1;
10203:                             last;
10204:                         }
10205:                     }
10206:                     foreach my $item (@new) {
10207:                         if (!grep(/^\Q$item\E$/,@current)) {
10208:                             $changes{$type}{$setting} = 1;
10209:                             last;
10210:                         }
10211:                     }
10212:                 } else {
10213:                     $changes{$type}{$setting} = 1;
10214:                 }
10215:             } elsif (@new > 0) {
10216:                 $changes{$type}{$setting} = 1;
10217:             }
10218:         }
10219:     }
10220:     if (keys(%changes) > 0) {
10221:         my $titles= &LONCAPA::lonauthcgi::serverstatus_titles();
10222:         my $putresult = &Apache::lonnet::put_dom('configuration',
10223:                                                  \%serverstatushash,$dom);
10224:         if ($putresult eq 'ok') {
10225:             $resulttext .= &mt('Changes made:').'<ul>';
10226:             foreach my $type (@pages) {
10227:                 if (ref($changes{$type}) eq 'HASH') {
10228:                     $resulttext .= '<li>'.$titles->{$type}.'<ul>';
10229:                     if ($changes{$type}{'namedusers'}) {
10230:                         if ($newserverstatus{$type}{'namedusers'} eq '') {
10231:                             $resulttext .= '<li>'.&mt("Access terminated for all specific (named) users").'</li>'."\n";
10232:                         } else {
10233:                             $resulttext .= '<li>'.&mt("Access available for the following specified users: ").$newserverstatus{$type}{'namedusers'}.'</li>'."\n";
10234:                         }
10235:                     }
10236:                     if ($changes{$type}{'machines'}) {
10237:                         if ($newserverstatus{$type}{'machines'} eq '') {
10238:                             $resulttext .= '<li>'.&mt("Access terminated for all specific IP addresses").'</li>'."\n";
10239:                         } else {
10240:                             $resulttext .= '<li>'.&mt("Access available for the following specified IP addresses: ").$newserverstatus{$type}{'machines'}.'</li>'."\n";
10241:                         }
10242: 
10243:                     }
10244:                     $resulttext .= '</ul></li>';
10245:                 }
10246:             }
10247:             $resulttext .= '</ul>';
10248:         } else {
10249:             $resulttext = '<span class="LC_error">'.
10250:                           &mt('An error occurred saving access settings for server status pages: [_1].',$putresult).'</span>';
10251: 
10252:         }
10253:     } else {
10254:         $resulttext = &mt('No changes made to access to server status pages');
10255:     }
10256:     return $resulttext;
10257: }
10258: 
10259: sub modify_helpsettings {
10260:     my ($r,$dom,$confname,%domconfig) = @_;
10261:     my ($resulttext,$errors,%changes,%helphash);
10262:     my %defaultchecked = ('submitbugs' => 'on');
10263:     my @offon = ('off','on');
10264:     my @toggles = ('submitbugs');
10265:     if (ref($domconfig{'helpsettings'}) eq 'HASH') {
10266:         foreach my $item (@toggles) {
10267:             if ($defaultchecked{$item} eq 'on') { 
10268:                 if ($domconfig{'helpsettings'}{$item} eq '') {
10269:                     if ($env{'form.'.$item} eq '0') {
10270:                         $changes{$item} = 1;
10271:                     }
10272:                 } elsif ($domconfig{'helpsettings'}{$item} ne $env{'form.'.$item}) {
10273:                     $changes{$item} = 1;
10274:                 }
10275:             } elsif ($defaultchecked{$item} eq 'off') {
10276:                 if ($domconfig{'helpsettings'}{$item} eq '') {
10277:                     if ($env{'form.'.$item} eq '1') {
10278:                         $changes{$item} = 1;
10279:                     }
10280:                 } elsif ($domconfig{'helpsettings'}{$item} ne $env{'form.'.$item}) {
10281:                     $changes{$item} = 1;
10282:                 }
10283:             }
10284:             if (($env{'form.'.$item} eq '0') || ($env{'form.'.$item} eq '1')) {
10285:                 $helphash{'helpsettings'}{$item} = $env{'form.'.$item};
10286:             }
10287:         }
10288:     }
10289:     my $putresult;
10290:     if (keys(%changes) > 0) {
10291:         $putresult = &Apache::lonnet::put_dom('configuration',\%helphash,$dom);
10292:         if ($putresult eq 'ok') {
10293:             $resulttext = &mt('Changes made:').'<ul>';
10294:             foreach my $item (sort(keys(%changes))) {
10295:                 if ($item eq 'submitbugs') {
10296:                     $resulttext .= '<li>'.&mt('Display link to: [_1] set to "'.$offon[$env{'form.'.$item}].'".',
10297:                                               &Apache::loncommon::modal_link('http://bugs.loncapa.org',
10298:                                               &mt('LON-CAPA bug tracker'),600,500)).'</li>';
10299:                 }
10300:             }
10301:             $resulttext .= '</ul>';
10302:         } else {
10303:             $resulttext = &mt('No changes made to help settings');
10304:             $errors .= '<li><span class="LC_error">'.
10305:                        &mt('An error occurred storing the settings: [_1]',
10306:                            $putresult).'</span></li>';
10307:         }
10308:     }
10309:     if ($errors) {
10310:         $resulttext .= '<br />'.&mt('The following errors occurred: ').'<ul>'.
10311:                        $errors.'</ul>';
10312:     }
10313:     return $resulttext;
10314: }
10315: 
10316: sub modify_coursedefaults {
10317:     my ($dom,$lastactref,%domconfig) = @_;
10318:     my ($resulttext,$errors,%changes,%defaultshash);
10319:     my %defaultchecked = (
10320:                            'uselcmath'       => 'on',
10321:                            'usejsme'         => 'on'
10322:                          );
10323:     my @toggles = ('uselcmath','usejsme');
10324:     my @numbers = ('anonsurvey_threshold','uploadquota_official','uploadquota_unofficial',
10325:                    'uploadquota_community','uploadquota_textbook');
10326:     my @types = ('official','unofficial','community','textbook');
10327:     my %staticdefaults = (
10328:                            anonsurvey_threshold => 10,
10329:                            uploadquota          => 500,
10330:                            postsubmit           => 60,
10331:                          );
10332: 
10333:     $defaultshash{'coursedefaults'} = {};
10334: 
10335:     if (ref($domconfig{'coursedefaults'}) ne 'HASH') {
10336:         if ($domconfig{'coursedefaults'} eq '') {
10337:             $domconfig{'coursedefaults'} = {};
10338:         }
10339:     }
10340: 
10341:     if (ref($domconfig{'coursedefaults'}) eq 'HASH') {
10342:         foreach my $item (@toggles) {
10343:             if ($defaultchecked{$item} eq 'on') {
10344:                 if (($domconfig{'coursedefaults'}{$item} eq '') &&
10345:                     ($env{'form.'.$item} eq '0')) {
10346:                     $changes{$item} = 1;
10347:                 } elsif ($domconfig{'coursedefaults'}{$item} ne $env{'form.'.$item}) {
10348:                     $changes{$item} = 1;
10349:                 }
10350:             } elsif ($defaultchecked{$item} eq 'off') {
10351:                 if (($domconfig{'coursedefaults'}{$item} eq '') &&
10352:                     ($env{'form.'.$item} eq '1')) {
10353:                     $changes{$item} = 1;
10354:                 } elsif ($domconfig{'coursedefaults'}{$item} ne $env{'form.'.$item}) {
10355:                     $changes{$item} = 1;
10356:                 }
10357:             }
10358:             $defaultshash{'coursedefaults'}{$item} = $env{'form.'.$item};
10359:         }
10360:         foreach my $item (@numbers) {
10361:             my ($currdef,$newdef);
10362:             $newdef = $env{'form.'.$item};
10363:             if ($item eq 'anonsurvey_threshold') {
10364:                 $currdef = $domconfig{'coursedefaults'}{$item};
10365:                 $newdef =~ s/\D//g;
10366:                 if ($newdef eq '' || $newdef < 1) {
10367:                     $newdef = 1;
10368:                 }
10369:                 $defaultshash{'coursedefaults'}{$item} = $newdef;
10370:             } else {
10371:                 my ($type) = ($item =~ /^\Quploadquota_\E(\w+)$/);
10372:                 if (ref($domconfig{'coursedefaults'}{'uploadquota'}) eq 'HASH') {
10373:                     $currdef = $domconfig{'coursedefaults'}{'uploadquota'}{$type};
10374:                 }
10375:                 $newdef =~ s/[^\w.\-]//g;
10376:                 $defaultshash{'coursedefaults'}{'uploadquota'}{$type} = $newdef;
10377:             }
10378:             if ($currdef ne $newdef) {
10379:                 my $staticdef;
10380:                 if ($item eq 'anonsurvey_threshold') {
10381:                     unless (($currdef eq '') && ($newdef == $staticdefaults{$item})) {
10382:                         $changes{$item} = 1;
10383:                     }
10384:                 } else {
10385:                     unless (($currdef eq '') && ($newdef == $staticdefaults{'uploadquota'})) {
10386:                         $changes{'uploadquota'} = 1;
10387:                     }
10388:                 }
10389:             }
10390:         }
10391:         my $currclone = $domconfig{'coursedefaults'}{'canclone'};
10392:         my @currclonecode;
10393:         if (ref($currclone) eq 'HASH') {
10394:             if (ref($currclone->{'instcode'}) eq 'ARRAY') {
10395:                 @currclonecode = @{$currclone->{'instcode'}};
10396:             }
10397:         }
10398:         my $newclone;
10399:         if ($env{'form.canclone'} =~ /^(none|domain|instcode)$/) {
10400:             $newclone = $env{'form.canclone'};
10401:         }
10402:         if ($newclone eq 'instcode') {
10403:             my @newcodes = &Apache::loncommon::get_env_multiple('form.clonecode');
10404:             my (%codedefaults,@code_order,@clonecode);
10405:             &Apache::lonnet::auto_instcode_defaults($dom,\%codedefaults,
10406:                                                     \@code_order);
10407:             foreach my $item (@code_order) {
10408:                 if (grep(/^\Q$item\E$/,@newcodes)) {
10409:                     push(@clonecode,$item);
10410:                 }
10411:             }
10412:             if (@clonecode) {
10413:                 $defaultshash{'coursedefaults'}{'canclone'} = { $newclone => \@clonecode };
10414:                 my @diffs = &Apache::loncommon::compare_arrays(\@currclonecode,\@clonecode);
10415:                 if (@diffs) {
10416:                     $changes{'canclone'} = 1;
10417:                 }
10418:             } else {
10419:                 $newclone eq '';
10420:             }
10421:         } elsif ($newclone ne '') {
10422:             $defaultshash{'coursedefaults'}{'canclone'} = $newclone;
10423:         }
10424:         if ($newclone ne $currclone) {
10425:             $changes{'canclone'} = 1;
10426:         }
10427:         my %credits;
10428:         foreach my $type (@types) {
10429:             unless ($type eq 'community') {
10430:                 $credits{$type} = $env{'form.'.$type.'_credits'};
10431:                 $credits{$type} =~ s/[^\d.]+//g;
10432:             }
10433:         }
10434:         if ((ref($domconfig{'coursedefaults'}{'coursecredits'}) ne 'HASH') &&
10435:             ($env{'form.coursecredits'} eq '1')) {
10436:             $changes{'coursecredits'} = 1;
10437:             foreach my $type (keys(%credits)) {
10438:                 $defaultshash{'coursedefaults'}{'coursecredits'}{$type} = $credits{$type};
10439:             }
10440:         } else {
10441:             if ($env{'form.coursecredits'} eq '1') {
10442:                 foreach my $type (@types) {
10443:                     unless ($type eq 'community') {
10444:                         if ($domconfig{'coursedefaults'}{'coursecredits'}{$type} ne $credits{$type}) {
10445:                             $changes{'coursecredits'} = 1;
10446:                         }
10447:                         $defaultshash{'coursedefaults'}{'coursecredits'}{$type} = $credits{$type};
10448:                     }
10449:                 }
10450:             } elsif (ref($domconfig{'coursedefaults'}{'coursecredits'}) eq 'HASH') {
10451:                 foreach my $type (@types) {
10452:                     unless ($type eq 'community') {
10453:                         if ($domconfig{'coursedefaults'}{'coursecredits'}{$type}) {
10454:                             $changes{'coursecredits'} = 1;
10455:                             last;
10456:                         }
10457:                     }
10458:                 }
10459:             }
10460:         }
10461:         if ($env{'form.postsubmit'} eq '1') {
10462:             $defaultshash{'coursedefaults'}{'postsubmit'}{'client'} = 'on';
10463:             my %currtimeout;
10464:             if (ref($domconfig{'coursedefaults'}{'postsubmit'}) eq 'HASH') {
10465:                 if ($domconfig{'coursedefaults'}{'postsubmit'}{'client'} eq 'off') {
10466:                     $changes{'postsubmit'} = 1;
10467:                 }
10468:                 if (ref($domconfig{'coursedefaults'}{'postsubmit'}{'timeout'}) eq 'HASH') {
10469:                     %currtimeout = %{$domconfig{'coursedefaults'}{'postsubmit'}{'timeout'}};
10470:                 }
10471:             } else {
10472:                 $changes{'postsubmit'} = 1;
10473:             }
10474:             foreach my $type (@types) {
10475:                 my $timeout = $env{'form.'.$type.'_timeout'};
10476:                 $timeout =~ s/\D//g;
10477:                 if ($timeout == $staticdefaults{'postsubmit'}) {
10478:                     $timeout = '';
10479:                 } elsif (($timeout eq '') || ($timeout =~ /^0+$/)) {
10480:                     $timeout = '0';
10481:                 }
10482:                 unless ($timeout eq '') {
10483:                     $defaultshash{'coursedefaults'}{'postsubmit'}{'timeout'}{$type} = $timeout;
10484:                 }
10485:                 if (exists($currtimeout{$type})) {
10486:                     if ($timeout ne $currtimeout{$type}) {
10487:                         $changes{'postsubmit'} = 1;
10488:                     }
10489:                 } elsif ($timeout ne '') {
10490:                     $changes{'postsubmit'} = 1;
10491:                 }
10492:             }
10493:         } else {
10494:             $defaultshash{'coursedefaults'}{'postsubmit'}{'client'} = 'off';
10495:             if (ref($domconfig{'coursedefaults'}{'postsubmit'}) eq 'HASH') {
10496:                 if ($domconfig{'coursedefaults'}{'postsubmit'}{'client'} eq 'on') {
10497:                     $changes{'postsubmit'} = 1;
10498:                 }
10499:             } else {
10500:                 $changes{'postsubmit'} = 1;
10501:             }
10502:         }
10503:     }
10504:     my $putresult = &Apache::lonnet::put_dom('configuration',\%defaultshash,
10505:                                              $dom);
10506:     if ($putresult eq 'ok') {
10507:         if (keys(%changes) > 0) {
10508:             my %domdefaults = &Apache::lonnet::get_domain_defaults($dom,1);
10509:             if (($changes{'uploadquota'}) || ($changes{'postsubmit'}) ||
10510:                 ($changes{'coursecredits'}) || ($changes{'uselcmath'}) || ($changes{'usejsme'}) ||
10511:                 ($changes{'canclone'})) {
10512:                 foreach my $item ('uselcmath','usejsme') {
10513:                     if ($changes{$item}) {
10514:                         $domdefaults{$item}=$defaultshash{'coursedefaults'}{$item};
10515:                     }
10516:                 }
10517:                 if ($changes{'coursecredits'}) {
10518:                     if (ref($defaultshash{'coursedefaults'}{'coursecredits'}) eq 'HASH') {
10519:                         foreach my $type (keys(%{$defaultshash{'coursedefaults'}{'coursecredits'}})) {
10520:                             $domdefaults{$type.'credits'} =
10521:                                 $defaultshash{'coursedefaults'}{'coursecredits'}{$type};
10522:                         }
10523:                     }
10524:                 }
10525:                 if ($changes{'postsubmit'}) {
10526:                     if (ref($defaultshash{'coursedefaults'}{'postsubmit'}) eq 'HASH') {
10527:                         $domdefaults{'postsubmit'} = $defaultshash{'coursedefaults'}{'postsubmit'}{'client'};
10528:                         if (ref($defaultshash{'coursedefaults'}{'postsubmit'}{'timeout'}) eq 'HASH') {
10529:                             foreach my $type (keys(%{$defaultshash{'coursedefaults'}{'postsubmit'}{'timeout'}})) {
10530:                                 $domdefaults{$type.'postsubtimeout'} =
10531:                                     $defaultshash{'coursedefaults'}{'postsubmit'}{'timeout'}{$type};
10532:                             }
10533:                         }
10534:                     }
10535:                 }
10536:                 if ($changes{'uploadquota'}) {
10537:                     if (ref($defaultshash{'coursedefaults'}{'uploadquota'}) eq 'HASH') {
10538:                         foreach my $type (@types) {
10539:                             $domdefaults{$type.'quota'}=$defaultshash{'coursedefaults'}{'uploadquota'}{$type};
10540:                         }
10541:                     }
10542:                 }
10543:                 if ($changes{'canclone'}) {
10544:                     if (ref($defaultshash{'coursedefaults'}{'canclone'}) eq 'HASH') {
10545:                         if (ref($defaultshash{'coursedefaults'}{'canclone'}{'instcode'}) eq 'ARRAY') {
10546:                             my @clonecodes = @{$defaultshash{'coursedefaults'}{'canclone'}{'instcode'}};
10547:                             if (@clonecodes) {
10548:                                 $domdefaults{'canclone'} = join('+',@clonecodes);
10549:                             }
10550:                         }
10551:                     } else {
10552:                         $domdefaults{'canclone'}=$defaultshash{'coursedefaults'}{'canclone'};
10553:                     }
10554:                 }
10555:                 my $cachetime = 24*60*60;
10556:                 &Apache::lonnet::do_cache_new('domdefaults',$dom,\%domdefaults,$cachetime);
10557:                 if (ref($lastactref) eq 'HASH') {
10558:                     $lastactref->{'domdefaults'} = 1;
10559:                 }
10560:             }
10561:             $resulttext = &mt('Changes made:').'<ul>';
10562:             foreach my $item (sort(keys(%changes))) {
10563:                 if ($item eq 'uselcmath') {
10564:                     if ($env{'form.'.$item} eq '1') {
10565:                         $resulttext .= '<li>'.&mt('Math preview uses LON-CAPA previewer (javascript), if supported by browser.').'</li>';
10566:                     } else {
10567:                         $resulttext .= '<li>'.&mt('Math preview uses DragMath (Java), if supported by client OS.').'</li>';
10568:                     }
10569:                 } elsif ($item eq 'usejsme') {
10570:                     if ($env{'form.'.$item} eq '1') {
10571:                         $resulttext .= '<li>'.&mt('Molecule editor uses JSME (HTML5), if supported by browser.').'</li>';
10572:                     } else {
10573:                         $resulttext .= '<li>'.&mt('Molecule editor uses JME (Java), if supported by client OS.').'</li>';
10574:                     }
10575:                 } elsif ($item eq 'anonsurvey_threshold') {
10576:                     $resulttext .= '<li>'.&mt('Responder count required for display of anonymous survey submissions set to [_1].',$defaultshash{'coursedefaults'}{'anonsurvey_threshold'}).'</li>';
10577:                 } elsif ($item eq 'uploadquota') {
10578:                     if (ref($defaultshash{'coursedefaults'}{'uploadquota'}) eq 'HASH') {
10579:                         $resulttext .= '<li>'.&mt('Default quota for content uploaded to a course/community via Course Editor set as follows:').'<ul>'.
10580:                                        '<li>'.&mt('Official courses: [_1] MB','<b>'.$defaultshash{'coursedefaults'}{'uploadquota'}{'official'}.'</b>').'</li>'.
10581:                                        '<li>'.&mt('Unofficial courses: [_1] MB','<b>'.$defaultshash{'coursedefaults'}{'uploadquota'}{'unofficial'}.'</b>').'</li>'.
10582:                                        '<li>'.&mt('Textbook courses: [_1] MB','<b>'.$defaultshash{'coursedefaults'}{'uploadquota'}{'textbook'}.'</b>').'</li>'.
10583: 
10584:                                        '<li>'.&mt('Communities: [_1] MB','<b>'.$defaultshash{'coursedefaults'}{'uploadquota'}{'community'}.'</b>').'</li>'.
10585:                                        '</ul>'.
10586:                                        '</li>';
10587:                     } else {
10588:                         $resulttext .= '<li>'.&mt('Default quota for content uploaded via Course Editor remains default: [_1] MB',$staticdefaults{'uploadquota'}).'</li>';
10589:                     }
10590:                 } elsif ($item eq 'postsubmit') {
10591:                     if ($domdefaults{'postsubmit'} eq 'off') {
10592:                         $resulttext .= '<li>'.&mt('Submit button(s) remain enabled on page after student makes submission.');
10593:                     } else {
10594:                         $resulttext .= '<li>'.&mt('Submit button(s) disabled on page after student makes submission').'; ';
10595:                         if (ref($defaultshash{'coursedefaults'}{'postsubmit'}) eq 'HASH') {
10596:                             $resulttext .= &mt('durations:').'<ul>';
10597:                             foreach my $type (@types) {
10598:                                 $resulttext .= '<li>';
10599:                                 my $timeout;
10600:                                 if (ref($defaultshash{'coursedefaults'}{'postsubmit'}{'timeout'}) eq 'HASH') {
10601:                                     $timeout = $defaultshash{'coursedefaults'}{'postsubmit'}{'timeout'}{$type};
10602:                                 }
10603:                                 my $display;
10604:                                 if ($timeout eq '0') {
10605:                                     $display = &mt('unlimited');
10606:                                 } elsif ($timeout eq '') {
10607:                                     $display = &mt('[quant,_1,second] (default)',$staticdefaults{'postsubmit'});
10608:                                 } else {
10609:                                     $display = &mt('[quant,_1,second]',$timeout);
10610:                                 }
10611:                                 if ($type eq 'community') {
10612:                                     $resulttext .= &mt('Communities');
10613:                                 } elsif ($type eq 'official') {
10614:                                     $resulttext .= &mt('Official courses');
10615:                                 } elsif ($type eq 'unofficial') {
10616:                                     $resulttext .= &mt('Unofficial courses');
10617:                                 } elsif ($type eq 'textbook') {
10618:                                     $resulttext .= &mt('Textbook courses');
10619:                                 }
10620:                                 $resulttext .= ' -- '.$display.'</li>';
10621:                             }
10622:                             $resulttext .= '</ul>';
10623:                         }
10624:                         $resulttext .= '</li>';
10625:                     }
10626:                 } elsif ($item eq 'coursecredits') {
10627:                     if (ref($defaultshash{'coursedefaults'}{'coursecredits'}) eq 'HASH') {
10628:                         if (($domdefaults{'officialcredits'} eq '') &&
10629:                             ($domdefaults{'unofficialcredits'} eq '') &&
10630:                             ($domdefaults{'textbookcredits'} eq '')) {
10631:                             $resulttext .= '<li>'.&mt('Student credits not in use for courses in this domain').'</li>';
10632:                         } else {
10633:                             $resulttext .= '<li>'.&mt('Student credits can be set per course by a Domain Coordinator, with the following defaults applying:').'<ul>'.
10634:                                            '<li>'.&mt('Official courses: [_1]',$defaultshash{'coursedefaults'}{'coursecredits'}{'official'}).'</li>'.
10635:                                            '<li>'.&mt('Unofficial courses: [_1]',$defaultshash{'coursedefaults'}{'coursecredits'}{'unofficial'}).'</li>'.
10636:                                            '<li>'.&mt('Textbook courses: [_1]',$defaultshash{'coursedefaults'}{'coursecredits'}{'textbook'}).'</li>'.
10637:                                            '</ul>'.
10638:                                            '</li>';
10639:                         }
10640:                     } else {
10641:                         $resulttext .= '<li>'.&mt('Student credits not in use for courses in this domain').'</li>';
10642:                     }
10643:                 } elsif ($item eq 'canclone') {
10644:                     if (ref($defaultshash{'coursedefaults'}{'canclone'}) eq 'HASH') {
10645:                         if (ref($defaultshash{'coursedefaults'}{'canclone'}{'instcode'}) eq 'ARRAY') {
10646:                             my $clonecodes = join(' '.&mt('and').' ',@{$defaultshash{'coursedefaults'}{'canclone'}{'instcode'}});
10647:                             $resulttext .= '<li>'.&mt('By default, official courses can be cloned from existing courses with the same: [_1]','<b>'.$clonecodes.'</b>').'</li>';
10648:                         }
10649:                     } elsif ($defaultshash{'coursedefaults'}{'canclone'} eq 'domain') {
10650:                         $resulttext .= '<li>'.&mt('By default, a course requester can clone any course from his/her domain.').'</li>';
10651:                     } else {
10652:                         $resulttext .= '<li>'.&mt('By default, only course owner and coordinators may clone a course.').'</li>';
10653:                     }
10654:                 }
10655:             }
10656:             $resulttext .= '</ul>';
10657:         } else {
10658:             $resulttext = &mt('No changes made to course defaults');
10659:         }
10660:     } else {
10661:         $resulttext = '<span class="LC_error">'.
10662:             &mt('An error occurred: [_1]',$putresult).'</span>';
10663:     }
10664:     return $resulttext;
10665: }
10666: 
10667: sub modify_selfenrollment {
10668:     my ($dom,$lastactref,%domconfig) = @_;
10669:     my ($resulttext,$errors,%changes,%selfenrollhash,%ordered);
10670:     my @types = ('official','unofficial','community','textbook');
10671:     my %titles = &tool_titles();
10672:     my %descs = &Apache::lonuserutils::selfenroll_default_descs();
10673:     ($ordered{'admin'},my $titlesref) = &Apache::lonuserutils::get_selfenroll_titles();
10674:     $ordered{'default'} = ['types','registered','approval','limit'];
10675: 
10676:     my (%roles,%shown,%toplevel);
10677:     $roles{'0'} = &Apache::lonnet::plaintext('dc');
10678: 
10679:     if (ref($domconfig{'selfenrollment'}) ne 'HASH') {
10680:         if ($domconfig{'selfenrollment'} eq '') {
10681:             $domconfig{'selfenrollment'} = {};
10682:         }
10683:     }
10684:     %toplevel = (
10685:                   admin      => 'Configuration Rights',
10686:                   default    => 'Default settings',
10687:                   validation => 'Validation of self-enrollment requests',
10688:                 );
10689:     my ($itemsref,$namesref,$fieldsref) = &Apache::lonuserutils::selfenroll_validation_types();
10690: 
10691:     if (ref($ordered{'admin'}) eq 'ARRAY') {
10692:         foreach my $item (@{$ordered{'admin'}}) {
10693:             foreach my $type (@types) {
10694:                 if ($env{'form.selfenrolladmin_'.$item.'_'.$type}) {
10695:                     $selfenrollhash{'admin'}{$type}{$item} = 1;
10696:                 } else {
10697:                     $selfenrollhash{'admin'}{$type}{$item} = 0;
10698:                 }
10699:                 if (ref($domconfig{'selfenrollment'}{'admin'}) eq 'HASH') {
10700:                     if (ref($domconfig{'selfenrollment'}{'admin'}{$type}) eq 'HASH') {
10701:                         if ($selfenrollhash{'admin'}{$type}{$item} ne
10702:                             $domconfig{'selfenrollment'}{'admin'}{$type}{$item})  {
10703:                             push(@{$changes{'admin'}{$type}},$item);
10704:                         }
10705:                     } else {
10706:                         if (!$selfenrollhash{'admin'}{$type}{$item}) {
10707:                             push(@{$changes{'admin'}{$type}},$item);
10708:                         }
10709:                     }
10710:                 } elsif (!$selfenrollhash{'admin'}{$type}{$item}) {
10711:                     push(@{$changes{'admin'}{$type}},$item);
10712:                 }
10713:             }
10714:         }
10715:     }
10716: 
10717:     foreach my $item (@{$ordered{'default'}}) {
10718:         foreach my $type (@types) {
10719:             my $value = $env{'form.selfenrolldefault_'.$item.'_'.$type};
10720:             if ($item eq 'types') {
10721:                 unless (($value eq 'all') || ($value eq 'dom')) {
10722:                     $value = '';
10723:                 }
10724:             } elsif ($item eq 'registered') {
10725:                 unless ($value eq '1') {
10726:                     $value = 0;
10727:                 }
10728:             } elsif ($item eq 'approval') {
10729:                 unless ($value =~ /^[012]$/) {
10730:                     $value = 0;
10731:                 }
10732:             } else {
10733:                 unless (($value eq 'allstudents') || ($value eq 'selfenrolled')) {
10734:                     $value = 'none';
10735:                 }
10736:             }
10737:             $selfenrollhash{'default'}{$type}{$item} = $value;
10738:             if (ref($domconfig{'selfenrollment'}{'default'}) eq 'HASH') {
10739:                 if (ref($domconfig{'selfenrollment'}{'default'}{$type}) eq 'HASH') {
10740:                     if ($selfenrollhash{'default'}{$type}{$item} ne
10741:                          $domconfig{'selfenrollment'}{'default'}{$type}{$item})  {
10742:                          push(@{$changes{'default'}{$type}},$item);
10743:                     }
10744:                 } else {
10745:                     push(@{$changes{'default'}{$type}},$item);
10746:                 }
10747:             } else {
10748:                 push(@{$changes{'default'}{$type}},$item);
10749:             }
10750:             if ($item eq 'limit') {
10751:                 if (($value eq 'allstudents') || ($value eq 'selfenrolled')) {
10752:                     $env{'form.selfenrolldefault_cap_'.$type} =~ s/\D//g;
10753:                     if ($env{'form.selfenrolldefault_cap_'.$type} ne '') {
10754:                         $selfenrollhash{'default'}{$type}{'cap'} = $env{'form.selfenrolldefault_cap_'.$type};
10755:                     }
10756:                 } else {
10757:                     $selfenrollhash{'default'}{$type}{'cap'} = '';
10758:                 }
10759:                 if (ref($domconfig{'selfenrollment'}{'default'}{$type}) eq 'HASH') {
10760:                     if ($selfenrollhash{'default'}{$type}{'cap'} ne
10761:                          $domconfig{'selfenrollment'}{'admin'}{$type}{'cap'})  {
10762:                          push(@{$changes{'default'}{$type}},'cap');
10763:                     }
10764:                 } elsif ($selfenrollhash{'default'}{$type}{'cap'} ne '') {
10765:                     push(@{$changes{'default'}{$type}},'cap');
10766:                 }
10767:             }
10768:         }
10769:     }
10770: 
10771:     foreach my $item (@{$itemsref}) {
10772:         if ($item eq 'fields') {
10773:             my @changed;
10774:             @{$selfenrollhash{'validation'}{$item}} = &Apache::loncommon::get_env_multiple('form.selfenroll_validation_'.$item);
10775:             if (@{$selfenrollhash{'validation'}{$item}} > 0) {
10776:                 @{$selfenrollhash{'validation'}{$item}} = sort(@{$selfenrollhash{'validation'}{$item}});
10777:             }
10778:             if (ref($domconfig{'selfenrollment'}{'validation'}) eq 'HASH') {
10779:                 if (ref($domconfig{'selfenrollment'}{'validation'}{$item}) eq 'ARRAY') {
10780:                     @changed = &Apache::loncommon::compare_arrays($selfenrollhash{'validation'}{$item},
10781:                                                                   $domconfig{'selfenrollment'}{'validation'}{$item});
10782:                 } else {
10783:                     @changed = @{$selfenrollhash{'validation'}{$item}};
10784:                 }
10785:             } else {
10786:                 @changed = @{$selfenrollhash{'validation'}{$item}};
10787:             }
10788:             if (@changed) {
10789:                 if ($selfenrollhash{'validation'}{$item}) { 
10790:                     $changes{'validation'}{$item} = join(', ',@{$selfenrollhash{'validation'}{$item}});
10791:                 } else {
10792:                     $changes{'validation'}{$item} = &mt('None');
10793:                 }
10794:             }
10795:         } else {
10796:             $selfenrollhash{'validation'}{$item} = $env{'form.selfenroll_validation_'.$item};
10797:             if ($item eq 'markup') {
10798:                if ($env{'form.selfenroll_validation_'.$item}) {
10799:                    $env{'form.selfenroll_validation_'.$item} =~ s/[\n\r\f]+/\s/gs;
10800:                }
10801:             }
10802:             if (ref($domconfig{'selfenrollment'}{'validation'}) eq 'HASH') {
10803:                 if ($domconfig{'selfenrollment'}{'validation'}{$item} ne $selfenrollhash{'validation'}{$item}) {
10804:                     $changes{'validation'}{$item} = $selfenrollhash{'validation'}{$item};
10805:                 }
10806:             }
10807:         }
10808:     }
10809: 
10810:     my $putresult = &Apache::lonnet::put_dom('configuration',{'selfenrollment' => \%selfenrollhash},
10811:                                              $dom);
10812:     if ($putresult eq 'ok') {
10813:         if (keys(%changes) > 0) {
10814:             my %domdefaults = &Apache::lonnet::get_domain_defaults($dom,1);
10815:             $resulttext = &mt('Changes made:').'<ul>';
10816:             foreach my $key ('admin','default','validation') {
10817:                 if (ref($changes{$key}) eq 'HASH') {
10818:                     $resulttext .= '<li>'.$toplevel{$key}.'<ul>';
10819:                     if ($key eq 'validation') {
10820:                         foreach my $item (@{$itemsref}) {
10821:                             if (exists($changes{$key}{$item})) {
10822:                                 if ($item eq 'markup') {
10823:                                     $resulttext .= '<li>'.&mt('[_1] set to: [_2]',$namesref->{$item},
10824:                                                               '<br /><pre>'.$changes{$key}{$item}.'</pre>').'</li>';
10825:                                 } else {  
10826:                                     $resulttext .= '<li>'.&mt('[_1] set to: [_2]',$namesref->{$item},
10827:                                                               '<b>'.$changes{$key}{$item}.'</b>').'</li>';
10828:                                 }
10829:                             }
10830:                         }
10831:                     } else {
10832:                         foreach my $type (@types) {
10833:                             if ($type eq 'community') {
10834:                                 $roles{'1'} = &mt('Community personnel');
10835:                             } else {
10836:                                 $roles{'1'} = &mt('Course personnel');
10837:                             }
10838:                             if (ref($changes{$key}{$type}) eq 'ARRAY') {
10839:                                 if (ref($selfenrollhash{$key}{$type}) eq 'HASH') {
10840:                                     if ($key eq 'admin') {
10841:                                         my @mgrdc = ();
10842:                                         if (ref($ordered{$key}) eq 'ARRAY') {
10843:                                             foreach my $item (@{$ordered{'admin'}}) {
10844:                                                 if (ref($selfenrollhash{$key}{$type}) eq 'HASH') { 
10845:                                                     if ($selfenrollhash{$key}{$type}{$item} eq '0') {
10846:                                                         push(@mgrdc,$item);
10847:                                                     }
10848:                                                 }
10849:                                             }
10850:                                             if (@mgrdc) {
10851:                                                 $domdefaults{$type.'selfenrolladmdc'} = join(',',@mgrdc);
10852:                                             } else {
10853:                                                 delete($domdefaults{$type.'selfenrolladmdc'});
10854:                                             }
10855:                                         }
10856:                                     } else {
10857:                                         if (ref($ordered{$key}) eq 'ARRAY') {
10858:                                             foreach my $item (@{$ordered{$key}}) {
10859:                                                 if (grep(/^\Q$item\E$/,@{$changes{$key}{$type}})) {
10860:                                                     $domdefaults{$type.'selfenroll'.$item} =
10861:                                                         $selfenrollhash{$key}{$type}{$item};
10862:                                                 }
10863:                                             }
10864:                                         }
10865:                                     }
10866:                                 }
10867:                                 $resulttext .= '<li>'.$titles{$type}.'<ul>';
10868:                                 foreach my $item (@{$ordered{$key}}) {
10869:                                     if (grep(/^\Q$item\E$/,@{$changes{$key}{$type}})) {
10870:                                         $resulttext .= '<li>';
10871:                                         if ($key eq 'admin') {
10872:                                             $resulttext .= &mt('[_1] -- management by: [_2]',$titlesref->{$item},
10873:                                                                '<b>'.$roles{$selfenrollhash{'admin'}{$type}{$item}}.'</b>');
10874:                                         } else {
10875:                                             $resulttext .= &mt('[_1] set to: [_2]',$titlesref->{$item},
10876:                                                                '<b>'.$descs{$item}{$selfenrollhash{'default'}{$type}{$item}}.'</b>');
10877:                                         }
10878:                                         $resulttext .= '</li>';
10879:                                     }
10880:                                 }
10881:                                 $resulttext .= '</ul></li>';
10882:                             }
10883:                         }
10884:                         $resulttext .= '</ul></li>'; 
10885:                     }
10886:                 }
10887:                 if ((exists($changes{'admin'})) || (exists($changes{'default'}))) {
10888:                     my $cachetime = 24*60*60;
10889:                     &Apache::lonnet::do_cache_new('domdefaults',$dom,\%domdefaults,$cachetime);
10890:                     if (ref($lastactref) eq 'HASH') {
10891:                         $lastactref->{'domdefaults'} = 1;
10892:                     }
10893:                 }
10894:             }
10895:             $resulttext .= '</ul>';
10896:         } else {
10897:             $resulttext = &mt('No changes made to self-enrollment settings');
10898:         }
10899:     } else {
10900:         $resulttext = '<span class="LC_error">'.
10901:             &mt('An error occurred: [_1]',$putresult).'</span>';
10902:     }
10903:     return $resulttext;
10904: }
10905: 
10906: sub modify_usersessions {
10907:     my ($dom,$lastactref,%domconfig) = @_;
10908:     my @hostingtypes = ('version','excludedomain','includedomain');
10909:     my @offloadtypes = ('primary','default');
10910:     my %types = (
10911:                   remote => \@hostingtypes,
10912:                   hosted => \@hostingtypes,
10913:                   spares => \@offloadtypes,
10914:                 );
10915:     my @prefixes = ('remote','hosted','spares');
10916:     my @lcversions = &Apache::lonnet::all_loncaparevs();
10917:     my (%by_ip,%by_location,@intdoms);
10918:     &build_location_hashes(\@intdoms,\%by_ip,\%by_location);
10919:     my @locations = sort(keys(%by_location));
10920:     my (%defaultshash,%changes);
10921:     foreach my $prefix (@prefixes) {
10922:         $defaultshash{'usersessions'}{$prefix} = {};
10923:     }
10924:     my %domdefaults = &Apache::lonnet::get_domain_defaults($dom,1);
10925:     my $resulttext;
10926:     my %iphost = &Apache::lonnet::get_iphost();
10927:     foreach my $prefix (@prefixes) {
10928:         next if ($prefix eq 'spares');
10929:         foreach my $type (@{$types{$prefix}}) {
10930:             my $inuse = $env{'form.'.$prefix.'_'.$type.'_inuse'};
10931:             if ($type eq 'version') {
10932:                 my $value = $env{'form.'.$prefix.'_'.$type};
10933:                 my $okvalue;
10934:                 if ($value ne '') {
10935:                     if (grep(/^\Q$value\E$/,@lcversions)) {
10936:                         $okvalue = $value;
10937:                     }
10938:                 }
10939:                 if (ref($domconfig{'usersessions'}) eq 'HASH') {
10940:                     if (ref($domconfig{'usersessions'}{$prefix}) eq 'HASH') {
10941:                         if ($domconfig{'usersessions'}{$prefix}{$type} ne '') {
10942:                             if ($inuse == 0) {
10943:                                 $changes{$prefix}{$type} = 1;
10944:                             } else {
10945:                                 if ($okvalue ne $domconfig{'usersessions'}{$prefix}{$type}) {
10946:                                     $changes{$prefix}{$type} = 1;
10947:                                 }
10948:                                 if ($okvalue ne '') {
10949:                                     $defaultshash{'usersessions'}{$prefix}{$type} = $okvalue;
10950:                                 } 
10951:                             }
10952:                         } else {
10953:                             if (($inuse == 1) && ($okvalue ne '')) {
10954:                                 $defaultshash{'usersessions'}{$prefix}{$type} = $okvalue;
10955:                                 $changes{$prefix}{$type} = 1;
10956:                             }
10957:                         }
10958:                     } else {
10959:                         if (($inuse == 1) && ($okvalue ne '')) {
10960:                             $defaultshash{'usersessions'}{$prefix}{$type} = $okvalue;
10961:                             $changes{$prefix}{$type} = 1;
10962:                         }
10963:                     }
10964:                 } else {
10965:                     if (($inuse == 1) && ($okvalue ne '')) {
10966:                         $defaultshash{'usersessions'}{$prefix}{$type} = $okvalue;
10967:                         $changes{$prefix}{$type} = 1;
10968:                     }
10969:                 }
10970:             } else {
10971:                 my @vals = &Apache::loncommon::get_env_multiple('form.'.$prefix.'_'.$type);
10972:                 my @okvals;
10973:                 foreach my $val (@vals) {
10974:                     if ($val =~ /:/) {
10975:                         my @items = split(/:/,$val);
10976:                         foreach my $item (@items) {
10977:                             if (ref($by_location{$item}) eq 'ARRAY') {
10978:                                 push(@okvals,$item);
10979:                             }
10980:                         }
10981:                     } else {
10982:                         if (ref($by_location{$val}) eq 'ARRAY') {
10983:                             push(@okvals,$val);
10984:                         }
10985:                     }
10986:                 }
10987:                 @okvals = sort(@okvals);
10988:                 if (ref($domconfig{'usersessions'}) eq 'HASH') {
10989:                     if (ref($domconfig{'usersessions'}{$prefix}) eq 'HASH') {
10990:                         if (ref($domconfig{'usersessions'}{$prefix}{$type}) eq 'ARRAY') {
10991:                             if ($inuse == 0) {
10992:                                 $changes{$prefix}{$type} = 1; 
10993:                             } else {
10994:                                 $defaultshash{'usersessions'}{$prefix}{$type} = \@okvals;
10995:                                 my @changed = &Apache::loncommon::compare_arrays($domconfig{'usersessions'}{$prefix}{$type},$defaultshash{'usersessions'}{$prefix}{$type});
10996:                                 if (@changed > 0) {
10997:                                     $changes{$prefix}{$type} = 1;
10998:                                 }
10999:                             }
11000:                         } else {
11001:                             if ($inuse == 1) {
11002:                                 $defaultshash{'usersessions'}{$prefix}{$type} = \@okvals;
11003:                                 $changes{$prefix}{$type} = 1;
11004:                             }
11005:                         } 
11006:                     } else {
11007:                         if ($inuse == 1) {
11008:                             $defaultshash{'usersessions'}{$prefix}{$type} = \@okvals;
11009:                             $changes{$prefix}{$type} = 1;
11010:                         }
11011:                     }
11012:                 } else {
11013:                     if ($inuse == 1) {
11014:                         $defaultshash{'usersessions'}{$prefix}{$type} = \@okvals;
11015:                         $changes{$prefix}{$type} = 1;
11016:                     }
11017:                 }
11018:             }
11019:         }
11020:     }
11021: 
11022:     my @alldoms = &Apache::lonnet::all_domains();
11023:     my %servers = &Apache::lonnet::internet_dom_servers($dom);
11024:     my %spareid = &current_offloads_to($dom,$domconfig{'usersessions'},\%servers);
11025:     my $savespares;
11026: 
11027:     foreach my $lonhost (sort(keys(%servers))) {
11028:         my $serverhomeID =
11029:             &Apache::lonnet::get_server_homeID($servers{$lonhost});
11030:         my $serverhostname = &Apache::lonnet::hostname($lonhost);
11031:         $defaultshash{'usersessions'}{'spares'}{$lonhost} = {};
11032:         my %spareschg;
11033:         foreach my $type (@{$types{'spares'}}) {
11034:             my @okspares;
11035:             my @checked = &Apache::loncommon::get_env_multiple('form.spare_'.$type.'_'.$lonhost);
11036:             foreach my $server (@checked) {
11037:                 if (&Apache::lonnet::hostname($server) ne '') {
11038:                     unless (&Apache::lonnet::hostname($server) eq $serverhostname) {
11039:                         unless (grep(/^\Q$server\E$/,@okspares)) {
11040:                             push(@okspares,$server);
11041:                         }
11042:                     }
11043:                 }
11044:             }
11045:             my $new = $env{'form.newspare_'.$type.'_'.$lonhost};
11046:             my $newspare;
11047:             if (($new ne '') && (&Apache::lonnet::hostname($new))) {
11048:                 unless (&Apache::lonnet::hostname($new) eq $serverhostname) {
11049:                     $newspare = $new;
11050:                 }
11051:             }
11052:             my @spares;
11053:             if (($newspare ne '') && (!grep(/^\Q$newspare\E$/,@okspares))) {
11054:                 @spares = sort(@okspares,$newspare);
11055:             } else {
11056:                 @spares = sort(@okspares);
11057:             }
11058:             $defaultshash{'usersessions'}{'spares'}{$lonhost}{$type} = \@spares;
11059:             if (ref($spareid{$lonhost}) eq 'HASH') {
11060:                 if (ref($spareid{$lonhost}{$type}) eq 'ARRAY') {
11061:                     my @diffs = &Apache::loncommon::compare_arrays($spareid{$lonhost}{$type},\@spares);
11062:                     if (@diffs > 0) {
11063:                         $spareschg{$type} = 1;
11064:                     }
11065:                 }
11066:             }
11067:         }
11068:         if (keys(%spareschg) > 0) {
11069:             $changes{'spares'}{$lonhost} = \%spareschg;
11070:         }
11071:     }
11072:     $defaultshash{'usersessions'}{'offloadnow'} = {};
11073:     my @offloadnow = &Apache::loncommon::get_env_multiple('form.offloadnow');
11074:     my @okoffload;
11075:     if (@offloadnow) {
11076:         foreach my $server (@offloadnow) {
11077:             if (&Apache::lonnet::hostname($server) ne '') {
11078:                 unless (grep(/^\Q$server\E$/,@okoffload)) {
11079:                     push(@okoffload,$server);
11080:                 }
11081:             }
11082:         }
11083:         if (@okoffload) {
11084:             foreach my $lonhost (@okoffload) {
11085:                 $defaultshash{'usersessions'}{'offloadnow'}{$lonhost} = 1;
11086:             }
11087:         }
11088:     }
11089:     if (ref($domconfig{'usersessions'}) eq 'HASH') {
11090:         if (ref($domconfig{'usersessions'}{'spares'}) eq 'HASH') {
11091:             if (ref($changes{'spares'}) eq 'HASH') {
11092:                 if (keys(%{$changes{'spares'}}) > 0) {
11093:                     $savespares = 1;
11094:                 }
11095:             }
11096:         } else {
11097:             $savespares = 1;
11098:         }
11099:         if (ref($domconfig{'usersessions'}{'offloadnow'}) eq 'HASH') {
11100:             foreach my $lonhost (keys(%{$domconfig{'usersessions'}{'offloadnow'}})) {
11101:                 unless ($defaultshash{'usersessions'}{'offloadnow'}{$lonhost}) {
11102:                     $changes{'offloadnow'} = 1;
11103:                     last;
11104:                 }
11105:             }
11106:             unless ($changes{'offloadnow'}) {
11107:                 foreach my $lonhost (keys(%{$defaultshash{'usersessions'}{'offloadnow'}})) {
11108:                     unless ($domconfig{'usersessions'}{'offloadnow'}{$lonhost}) {
11109:                         $changes{'offloadnow'} = 1;
11110:                         last;
11111:                     }
11112:                 }
11113:             }
11114:         } elsif (@okoffload) {
11115:             $changes{'offloadnow'} = 1;
11116:         }
11117:     } elsif (@okoffload) {
11118:         $changes{'offloadnow'} = 1;
11119:     }
11120:     my $nochgmsg = &mt('No changes made to settings for user session hosting/offloading.');
11121:     if ((keys(%changes) > 0) || ($savespares)) {
11122:         my $putresult = &Apache::lonnet::put_dom('configuration',\%defaultshash,
11123:                                                  $dom);
11124:         if ($putresult eq 'ok') {
11125:             if (ref($defaultshash{'usersessions'}) eq 'HASH') {
11126:                 if (ref($defaultshash{'usersessions'}{'remote'}) eq 'HASH') {
11127:                     $domdefaults{'remotesessions'} = $defaultshash{'usersessions'}{'remote'};
11128:                 }
11129:                 if (ref($defaultshash{'usersessions'}{'hosted'}) eq 'HASH') {
11130:                     $domdefaults{'hostedsessions'} = $defaultshash{'usersessions'}{'hosted'};
11131:                 }
11132:                 if (ref($defaultshash{'usersessions'}{'offloadnow'}) eq 'HASH') {
11133:                     $domdefaults{'offloadnow'} = $defaultshash{'usersessions'}{'offloadnow'};
11134:                 }
11135:             }
11136:             my $cachetime = 24*60*60;
11137:             &Apache::lonnet::do_cache_new('domdefaults',$dom,\%domdefaults,$cachetime);
11138:             if (ref($lastactref) eq 'HASH') {
11139:                 $lastactref->{'domdefaults'} = 1;
11140:             }
11141:             if (keys(%changes) > 0) {
11142:                 my %lt = &usersession_titles();
11143:                 $resulttext = &mt('Changes made:').'<ul>';
11144:                 foreach my $prefix (@prefixes) {
11145:                     if (ref($changes{$prefix}) eq 'HASH') {
11146:                         $resulttext .= '<li>'.$lt{$prefix}.'<ul>';
11147:                         if ($prefix eq 'spares') {
11148:                             if (ref($changes{$prefix}) eq 'HASH') {
11149:                                 foreach my $lonhost (sort(keys(%{$changes{$prefix}}))) {
11150:                                     $resulttext .= '<li><b>'.$lonhost.'</b> ';
11151:                                     my $lonhostdom = &Apache::lonnet::host_domain($lonhost);
11152:                                     my $cachekey = &escape('spares').':'.&escape($lonhostdom);
11153:                                     &Apache::lonnet::remote_devalidate_cache($lonhost,[$cachekey]);
11154:                                     if (ref($changes{$prefix}{$lonhost}) eq 'HASH') {
11155:                                         foreach my $type (@{$types{$prefix}}) {
11156:                                             if ($changes{$prefix}{$lonhost}{$type}) {
11157:                                                 my $offloadto = &mt('None');
11158:                                                 if (ref($defaultshash{'usersessions'}{'spares'}{$lonhost}{$type}) eq 'ARRAY') {
11159:                                                     if (@{$defaultshash{'usersessions'}{'spares'}{$lonhost}{$type}} > 0) {   
11160:                                                         $offloadto = join(', ',@{$defaultshash{'usersessions'}{'spares'}{$lonhost}{$type}});
11161:                                                     }
11162:                                                 }
11163:                                                 $resulttext .= &mt('[_1] set to: [_2].','<i>'.$lt{$type}.'</i>',$offloadto).('&nbsp;'x3);
11164:                                             }
11165:                                         }
11166:                                     }
11167:                                     $resulttext .= '</li>';
11168:                                 }
11169:                             }
11170:                         } else {
11171:                             foreach my $type (@{$types{$prefix}}) {
11172:                                 if (defined($changes{$prefix}{$type})) {
11173:                                     my $newvalue;
11174:                                     if (ref($defaultshash{'usersessions'}) eq 'HASH') {
11175:                                         if (ref($defaultshash{'usersessions'}{$prefix})) {
11176:                                             if ($type eq 'version') {
11177:                                                 $newvalue = $defaultshash{'usersessions'}{$prefix}{$type};
11178:                                             } elsif (ref($defaultshash{'usersessions'}{$prefix}{$type}) eq 'ARRAY') {
11179:                                                 if (@{$defaultshash{'usersessions'}{$prefix}{$type}} > 0) {
11180:                                                     $newvalue = join(', ',@{$defaultshash{'usersessions'}{$prefix}{$type}});
11181:                                                 }
11182:                                             }
11183:                                         }
11184:                                     }
11185:                                     if ($newvalue eq '') {
11186:                                         if ($type eq 'version') {
11187:                                             $resulttext .= '<li>'.&mt('[_1] set to: off',$lt{$type}).'</li>';
11188:                                         } else {
11189:                                             $resulttext .= '<li>'.&mt('[_1] set to: none',$lt{$type}).'</li>';
11190:                                         }
11191:                                     } else {
11192:                                         if ($type eq 'version') {
11193:                                             $newvalue .= ' '.&mt('(or later)'); 
11194:                                         }
11195:                                         $resulttext .= '<li>'.&mt('[_1] set to: [_2].',$lt{$type},$newvalue).'</li>';
11196:                                     }
11197:                                 }
11198:                             }
11199:                         }
11200:                         $resulttext .= '</ul>';
11201:                     }
11202:                 }
11203:                 if ($changes{'offloadnow'}) {
11204:                     if (ref($defaultshash{'usersessions'}{'offloadnow'}) eq 'HASH') {
11205:                         if (keys(%{$defaultshash{'usersessions'}{'offloadnow'}}) > 0) {
11206:                             $resulttext .= '<li>'.&mt('Switch active users on next access, for server(s):').'<ul>';
11207:                             foreach my $lonhost (sort(keys(%{$defaultshash{'usersessions'}{'offloadnow'}}))) {
11208:                                 $resulttext .= '<li>'.$lonhost.'</li>';
11209:                             }
11210:                             $resulttext .= '</ul>';
11211:                         } else {
11212:                             $resulttext .= '<li>'.&mt('No servers now set to switch active users on next access.');
11213:                         }
11214:                     } else {
11215:                         $resulttext .= '<li>'.&mt('No servers now set to switch active users on next access.').'</li>';
11216:                     }
11217:                 }
11218:                 $resulttext .= '</ul>';
11219:             } else {
11220:                 $resulttext = $nochgmsg;
11221:             }
11222:         } else {
11223:             $resulttext = '<span class="LC_error">'.
11224:                           &mt('An error occurred: [_1]',$putresult).'</span>';
11225:         }
11226:     } else {
11227:         $resulttext = $nochgmsg;
11228:     }
11229:     return $resulttext;
11230: }
11231: 
11232: sub modify_loadbalancing {
11233:     my ($dom,%domconfig) = @_;
11234:     my $primary_id = &Apache::lonnet::domain($dom,'primary');
11235:     my $intdom = &Apache::lonnet::internet_dom($primary_id);
11236:     my ($othertitle,$usertypes,$types) =
11237:         &Apache::loncommon::sorted_inst_types($dom);
11238:     my %servers = &Apache::lonnet::internet_dom_servers($dom);
11239:     my %libraryservers = &Apache::lonnet::get_servers($dom,'library');
11240:     my @sparestypes = ('primary','default');
11241:     my %typetitles = &sparestype_titles();
11242:     my $resulttext;
11243:     my (%currbalancer,%currtargets,%currrules,%existing);
11244:     if (ref($domconfig{'loadbalancing'}) eq 'HASH') {
11245:         %existing = %{$domconfig{'loadbalancing'}};
11246:     }
11247:     &get_loadbalancers_config(\%servers,\%existing,\%currbalancer,
11248:                               \%currtargets,\%currrules);
11249:     my ($saveloadbalancing,%defaultshash,%changes);
11250:     my ($alltypes,$othertypes,$titles) =
11251:         &loadbalancing_titles($dom,$intdom,$usertypes,$types);
11252:     my %ruletitles = &offloadtype_text();
11253:     my @deletions = &Apache::loncommon::get_env_multiple('form.loadbalancing_delete');
11254:     for (my $i=0; $i<$env{'form.loadbalancing_total'}; $i++) {
11255:         my $balancer = $env{'form.loadbalancing_lonhost_'.$i};
11256:         if ($balancer eq '') {
11257:             next;
11258:         }
11259:         if (!exists($servers{$balancer})) {
11260:             if (exists($currbalancer{$balancer})) {
11261:                 push(@{$changes{'delete'}},$balancer);
11262:             }
11263:             next;
11264:         }
11265:         if ((@deletions > 0) && (grep(/^\Q$i\E$/,@deletions))) {
11266:             push(@{$changes{'delete'}},$balancer);
11267:             next;
11268:         }
11269:         if (!exists($currbalancer{$balancer})) {
11270:             push(@{$changes{'add'}},$balancer);
11271:         }
11272:         $defaultshash{'loadbalancing'}{$balancer}{'targets'}{'primary'} = [];
11273:         $defaultshash{'loadbalancing'}{$balancer}{'targets'}{'default'} = [];
11274:         $defaultshash{'loadbalancing'}{$balancer}{'rules'} = {};
11275:         unless (ref($domconfig{'loadbalancing'}) eq 'HASH') {
11276:             $saveloadbalancing = 1;
11277:         }
11278:         foreach my $sparetype (@sparestypes) {
11279:             my @targets = &Apache::loncommon::get_env_multiple('form.loadbalancing_target_'.$i.'_'.$sparetype);
11280:             my @offloadto;
11281:             foreach my $target (@targets) {
11282:                 if (($servers{$target}) && ($target ne $balancer)) {
11283:                     if ($sparetype eq 'default') {
11284:                         if (ref($defaultshash{'loadbalancing'}{$balancer}{'targets'}{'primary'}) eq 'ARRAY') {
11285:                             next if (grep(/^\Q$target\E$/,@{$defaultshash{'loadbalancing'}{$balancer}{'targets'}{'primary'}}));
11286:                         }
11287:                     }
11288:                     unless(grep(/^\Q$target\E$/,@offloadto)) {
11289:                         push(@offloadto,$target);
11290:                     }
11291:                 }
11292:                 $defaultshash{'loadbalancing'}{$balancer}{'targets'}{$sparetype} = \@offloadto;
11293:             }
11294:         }
11295:         if (ref($currtargets{$balancer}) eq 'HASH') {
11296:             foreach my $sparetype (@sparestypes) {
11297:                 if (ref($currtargets{$balancer}{$sparetype}) eq 'ARRAY') {
11298:                     my @targetdiffs = &Apache::loncommon::compare_arrays($currtargets{$balancer}{$sparetype},$defaultshash{'loadbalancing'}{$balancer}{'targets'}{$sparetype});
11299:                     if (@targetdiffs > 0) {
11300:                         $changes{'curr'}{$balancer}{'targets'} = 1;
11301:                     }
11302:                 } elsif (ref($defaultshash{'loadbalancing'}{$balancer}{'targets'}{$sparetype}) eq 'ARRAY') {
11303:                     if (@{$defaultshash{'loadbalancing'}{$balancer}{'targets'}{$sparetype}} > 0) {
11304:                         $changes{'curr'}{$balancer}{'targets'} = 1;
11305:                     }
11306:                 }
11307:             }
11308:         } else {
11309:             if (ref($defaultshash{'loadbalancing'}{$balancer}) eq 'HASH') {
11310:                 foreach my $sparetype (@sparestypes) {
11311:                     if (ref($defaultshash{'loadbalancing'}{$balancer}{'targets'}{$sparetype}) eq 'ARRAY') {
11312:                         if (@{$defaultshash{'loadbalancing'}{$balancer}{'targets'}{$sparetype}} > 0) {
11313:                             $changes{'curr'}{$balancer}{'targets'} = 1;
11314:                         }
11315:                     }
11316:                 }
11317:             }
11318:         }
11319:         my $ishomedom;
11320:         if (&Apache::lonnet::host_domain($balancer) eq $dom) {
11321:             $ishomedom = 1;
11322:         }
11323:         if (ref($alltypes) eq 'ARRAY') {
11324:             foreach my $type (@{$alltypes}) {
11325:                 my $rule;
11326:                 unless ((($type eq '_LC_external') || ($type eq '_LC_internetdom')) &&
11327:                          (!$ishomedom)) {
11328:                     $rule = $env{'form.loadbalancing_rules_'.$i.'_'.$type};
11329:                 }
11330:                 if ($rule eq 'specific') {
11331:                     my $specifiedhost = $env{'form.loadbalancing_singleserver_'.$i.'_'.$type};
11332:                     if (exists($servers{$specifiedhost})) {
11333:                         $rule = $specifiedhost;
11334:                     }
11335:                 }
11336:                 $defaultshash{'loadbalancing'}{$balancer}{'rules'}{$type} = $rule;
11337:                 if (ref($currrules{$balancer}) eq 'HASH') {
11338:                     if ($rule ne $currrules{$balancer}{$type}) {
11339:                         $changes{'curr'}{$balancer}{'rules'}{$type} = 1;
11340:                     }
11341:                 } elsif ($rule ne '') {
11342:                     $changes{'curr'}{$balancer}{'rules'}{$type} = 1;
11343:                 }
11344:             }
11345:         }
11346:     }
11347:     my $nochgmsg = &mt('No changes made to Load Balancer settings.');
11348:     if ((keys(%changes) > 0) || ($saveloadbalancing)) {
11349:         unless (ref($defaultshash{'loadbalancing'}) eq 'HASH') {
11350:             $defaultshash{'loadbalancing'} = {};
11351:         }
11352:         my $putresult = &Apache::lonnet::put_dom('configuration',
11353:                                                  \%defaultshash,$dom);
11354:         if ($putresult eq 'ok') {
11355:             if (keys(%changes) > 0) {
11356:                 my %toupdate;
11357:                 if (ref($changes{'delete'}) eq 'ARRAY') {
11358:                     foreach my $balancer (sort(@{$changes{'delete'}})) {
11359:                         $resulttext .= '<li>'.&mt('Load Balancing discontinued for: [_1]',$balancer).'</li>';
11360:                         $toupdate{$balancer} = 1;
11361:                     }
11362:                 }
11363:                 if (ref($changes{'add'}) eq 'ARRAY') {
11364:                     foreach my $balancer (sort(@{$changes{'add'}})) {
11365:                         $resulttext .= '<li>'.&mt('Load Balancing enabled for: [_1]',$balancer);
11366:                         $toupdate{$balancer} = 1;
11367:                     }
11368:                 }
11369:                 if (ref($changes{'curr'}) eq 'HASH') {
11370:                     foreach my $balancer (sort(keys(%{$changes{'curr'}}))) {
11371:                         $toupdate{$balancer} = 1;
11372:                         if (ref($changes{'curr'}{$balancer}) eq 'HASH') {
11373:                             if ($changes{'curr'}{$balancer}{'targets'}) {
11374:                                 my %offloadstr;
11375:                                 foreach my $sparetype (@sparestypes) {
11376:                                     if (ref($defaultshash{'loadbalancing'}{$balancer}{'targets'}{$sparetype}) eq 'ARRAY') {
11377:                                         if (@{$defaultshash{'loadbalancing'}{$balancer}{'targets'}{$sparetype}} > 0) {
11378:                                             $offloadstr{$sparetype} = join(', ',@{$defaultshash{'loadbalancing'}{$balancer}{'targets'}{$sparetype}});
11379:                                         }
11380:                                     }
11381:                                 }
11382:                                 if (keys(%offloadstr) == 0) {
11383:                                     $resulttext .= '<li>'.&mt("Servers to which Load Balance server offloads set to 'None', by default").'</li>';
11384:                                 } else {
11385:                                     my $showoffload;
11386:                                     foreach my $sparetype (@sparestypes) {
11387:                                         $showoffload .= '<i>'.$typetitles{$sparetype}.'</i>:&nbsp;';
11388:                                         if (defined($offloadstr{$sparetype})) {
11389:                                             $showoffload .= $offloadstr{$sparetype};
11390:                                         } else {
11391:                                             $showoffload .= &mt('None');
11392:                                         }
11393:                                         $showoffload .= ('&nbsp;'x3);
11394:                                     }
11395:                                     $resulttext .= '<li>'.&mt('By default, Load Balancer: [_1] set to offload to - [_2]',$balancer,$showoffload).'</li>';
11396:                                 }
11397:                             }
11398:                         }
11399:                         if (ref($changes{'curr'}{$balancer}{'rules'}) eq 'HASH') {
11400:                             if ((ref($alltypes) eq 'ARRAY') && (ref($titles) eq 'HASH')) {
11401:                                 foreach my $type (@{$alltypes}) {
11402:                                     if ($changes{'curr'}{$balancer}{'rules'}{$type}) {
11403:                                         my $rule = $defaultshash{'loadbalancing'}{$balancer}{'rules'}{$type};
11404:                                         my $balancetext;
11405:                                         if ($rule eq '') {
11406:                                             $balancetext =  $ruletitles{'default'};
11407:                                         } elsif (($rule eq 'homeserver') || ($rule eq 'externalbalancer') ||
11408:                                                  ($type eq '_LC_ipchange') || ($type eq '_LC_ipchangesso')) {
11409:                                             if (($type eq '_LC_ipchange') || ($type eq '_LC_ipchangesso')) {
11410:                                                 foreach my $sparetype (@sparestypes) {
11411:                                                     if (ref($defaultshash{'loadbalancing'}{$balancer}{'targets'}{$sparetype}) eq 'ARRAY') {
11412:                                                         map { $toupdate{$_} = 1; } (@{$defaultshash{'loadbalancing'}{$balancer}{'targets'}{$sparetype}});
11413:                                                     }
11414:                                                 }
11415:                                                 foreach my $item (@{$alltypes}) {
11416:                                                     next if ($item =~  /^_LC_ipchange/);
11417:                                                     my $hasrule = $defaultshash{'loadbalancing'}{$balancer}{'rules'}{$item};
11418:                                                     if ($hasrule eq 'homeserver') {
11419:                                                         map { $toupdate{$_} = 1; } (keys(%libraryservers));
11420:                                                     } else {
11421:                                                         unless (($hasrule eq 'default') || ($hasrule eq 'none') || ($hasrule eq 'externalbalancer')) {
11422:                                                             if ($servers{$hasrule}) {
11423:                                                                 $toupdate{$hasrule} = 1;
11424:                                                             }
11425:                                                         }
11426:                                                     }
11427:                                                 }
11428:                                                 if (($rule eq 'balancer') || ($rule eq 'offloadedto')) {
11429:                                                     $balancetext =  $ruletitles{$rule};
11430:                                                 } else {
11431:                                                     my $receiver = $defaultshash{'loadbalancing'}{$balancer}{'rules'}{$type};
11432:                                                     $balancetext = $ruletitles{'particular'}.' '.$receiver;
11433:                                                     if ($receiver) {
11434:                                                         $toupdate{$receiver};
11435:                                                     }
11436:                                                 }
11437:                                             } else {
11438:                                                 $balancetext =  $ruletitles{$rule};
11439:                                             }
11440:                                         } else {
11441:                                             $balancetext = &mt('offload to [_1]',$defaultshash{'loadbalancing'}{$balancer}{'rules'}{$type});
11442:                                         }
11443:                                         $resulttext .= '<li>'.&mt('Load Balancer: [_1] -- balancing for [_2] set to - "[_3]"',$balancer,$titles->{$type},$balancetext).'</li>';
11444:                                     }
11445:                                 }
11446:                             }
11447:                         }
11448:                         if (keys(%toupdate)) {
11449:                             my %thismachine;
11450:                             my $updatedhere;
11451:                             my $cachetime = 60*60*24;
11452:                             map { $thismachine{$_} = 1; } &Apache::lonnet::current_machine_ids();
11453:                             foreach my $lonhost (keys(%toupdate)) {
11454:                                 if ($thismachine{$lonhost}) {
11455:                                     unless ($updatedhere) {
11456:                                         &Apache::lonnet::do_cache_new('loadbalancing',$dom,
11457:                                                                       $defaultshash{'loadbalancing'},
11458:                                                                       $cachetime);
11459:                                         $updatedhere = 1;
11460:                                     }
11461:                                 } else {
11462:                                     my $cachekey = &escape('loadbalancing').':'.&escape($dom);
11463:                                     &Apache::lonnet::remote_devalidate_cache($lonhost,[$cachekey]);
11464:                                 }
11465:                             }
11466:                         }
11467:                     }
11468:                 }
11469:                 if ($resulttext ne '') {
11470:                     $resulttext = &mt('Changes made:').'<ul>'.$resulttext.'</ul>';
11471:                 } else {
11472:                     $resulttext = $nochgmsg;
11473:                 }
11474:             } else {
11475:                 $resulttext = $nochgmsg;
11476:             }
11477:         } else {
11478:             $resulttext = '<span class="LC_error">'.
11479:                           &mt('An error occurred: [_1]',$putresult).'</span>';
11480:         }
11481:     } else {
11482:         $resulttext = $nochgmsg;
11483:     }
11484:     return $resulttext;
11485: }
11486: 
11487: sub recurse_check {
11488:     my ($chkcats,$categories,$depth,$name) = @_;
11489:     if (ref($chkcats->[$depth]{$name}) eq 'ARRAY') {
11490:         my $chg = 0;
11491:         for (my $j=0; $j<@{$chkcats->[$depth]{$name}}; $j++) {
11492:             my $category = $chkcats->[$depth]{$name}[$j];
11493:             my $item;
11494:             if ($category eq '') {
11495:                 $chg ++;
11496:             } else {
11497:                 my $deeper = $depth + 1;
11498:                 $item = &escape($category).':'.&escape($name).':'.$depth;
11499:                 if ($chg) {
11500:                     $categories->{$item} -= $chg;
11501:                 }
11502:                 &recurse_check($chkcats,$categories,$deeper,$category);
11503:                 $deeper --;
11504:             }
11505:         }
11506:     }
11507:     return;
11508: }
11509: 
11510: sub recurse_cat_deletes {
11511:     my ($item,$coursecategories,$deletions) = @_;
11512:     my ($deleted,$container,$depth) = map { &unescape($_); } split(/:/,$item);
11513:     my $subdepth = $depth + 1;
11514:     if (ref($coursecategories) eq 'HASH') {
11515:         foreach my $subitem (keys(%{$coursecategories})) {
11516:             my ($child,$parent,$itemdepth) = map { &unescape($_); } split(/:/,$subitem);
11517:             if (($parent eq $deleted) && ($itemdepth == $subdepth)) {
11518:                 delete($coursecategories->{$subitem});
11519:                 $deletions->{$subitem} = 1;
11520:                 &recurse_cat_deletes($subitem,$coursecategories,$deletions);
11521:             }
11522:         }
11523:     }
11524:     return;
11525: }
11526: 
11527: sub get_active_dcs {
11528:     my ($dom) = @_;
11529:     my $now = time;
11530:     my %dompersonnel = &Apache::lonnet::get_domain_roles($dom,['dc'],$now,$now);
11531:     my %domcoords;
11532:     my $numdcs = 0;
11533:     foreach my $server (keys(%dompersonnel)) {
11534:         foreach my $user (sort(keys(%{$dompersonnel{$server}}))) {
11535:             my ($trole,$uname,$udom,$runame,$rudom,$rsec) = split(/:/,$user);
11536:             $domcoords{$uname.':'.$udom} = $dompersonnel{$server}{$user};
11537:         }
11538:     }
11539:     return %domcoords;
11540: }
11541: 
11542: sub active_dc_picker {
11543:     my ($dom,$numinrow,$inputtype,$name,%currhash) = @_;
11544:     my %domcoords = &get_active_dcs($dom);
11545:     my @domcoord = keys(%domcoords);
11546:     if (keys(%currhash)) {
11547:         foreach my $dc (keys(%currhash)) {
11548:             unless (exists($domcoords{$dc})) {
11549:                 push(@domcoord,$dc);
11550:             }
11551:         }
11552:     }
11553:     @domcoord = sort(@domcoord);
11554:     my $numdcs = scalar(@domcoord);
11555:     my $rows = 0;
11556:     my $table;
11557:     if ($numdcs > 1) {
11558:         $table = '<table>';
11559:         for (my $i=0; $i<@domcoord; $i++) {
11560:             my $rem = $i%($numinrow);
11561:             if ($rem == 0) {
11562:                 if ($i > 0) {
11563:                     $table .= '</tr>';
11564:                 }
11565:                 $table .= '<tr>';
11566:                 $rows ++;
11567:             }
11568:             my $check = '';
11569:             if ($inputtype eq 'radio') {
11570:                 if (keys(%currhash) == 0) {
11571:                     if (!$i) {
11572:                         $check = ' checked="checked"';
11573:                     }
11574:                 } elsif (exists($currhash{$domcoord[$i]})) {
11575:                     $check = ' checked="checked"';
11576:                 }
11577:             } else {
11578:                 if (exists($currhash{$domcoord[$i]})) {
11579:                     $check = ' checked="checked"';
11580:                 }
11581:             }
11582:             if ($i == @domcoord - 1) {
11583:                 my $colsleft = $numinrow - $rem;
11584:                 if ($colsleft > 1) {
11585:                     $table .= '<td class="LC_left_item" colspan="'.$colsleft.'">';
11586:                 } else {
11587:                     $table .= '<td class="LC_left_item">';
11588:                 }
11589:             } else {
11590:                 $table .= '<td class="LC_left_item">';
11591:             }
11592:             my ($dcname,$dcdom) = split(':',$domcoord[$i]);
11593:             my $user = &Apache::loncommon::plainname($dcname,$dcdom);
11594:             $table .= '<span class="LC_nobreak"><label>'.
11595:                       '<input type="'.$inputtype.'" name="'.$name.'"'.
11596:                       ' value="'.$domcoord[$i].'"'.$check.' />'.$user;
11597:             if ($user ne $dcname.':'.$dcdom) {
11598:                 $table .=  ' ('.$dcname.':'.$dcdom.')';
11599:             }
11600:             $table .= '</label></span></td>';
11601:         }
11602:         $table .= '</tr></table>';
11603:     } elsif ($numdcs == 1) {
11604:         my ($dcname,$dcdom) = split(':',$domcoord[0]);
11605:         my $user = &Apache::loncommon::plainname($dcname,$dcdom);
11606:         if ($inputtype eq 'radio') {
11607:             $table = '<input type="hidden" name="'.$name.'" value="'.$domcoord[0].'" />'.$user;
11608:             if ($user ne $dcname.':'.$dcdom) {
11609:                 $table .=  ' ('.$dcname.':'.$dcdom.')';
11610:             }
11611:         } else {
11612:             my $check;
11613:             if (exists($currhash{$domcoord[0]})) {
11614:                 $check = ' checked="checked"';
11615:             }
11616:             $table = '<span class="LC_nobreak"><label>'.
11617:                      '<input type="checkbox" name="'.$name.'" '.
11618:                      'value="'.$domcoord[0].'"'.$check.' />'.$user;
11619:             if ($user ne $dcname.':'.$dcdom) {
11620:                 $table .=  ' ('.$dcname.':'.$dcdom.')';
11621:             }
11622:             $table .= '</label></span>';
11623:             $rows ++;
11624:         }
11625:     }
11626:     return ($numdcs,$table,$rows);
11627: }
11628: 
11629: sub usersession_titles {
11630:     return &Apache::lonlocal::texthash(
11631:                hosted => 'Hosting of sessions for users from other domains on servers in this domain',
11632:                remote => 'Hosting of sessions for users in this domain on servers in other domains',
11633:                spares => 'Servers offloaded to, when busy',
11634:                version => 'LON-CAPA version requirement',
11635:                excludedomain => 'Allow all, but exclude specific domains',
11636:                includedomain => 'Deny all, but include specific domains',
11637:                primary => 'Primary (checked first)',
11638:                default => 'Default',
11639:            );
11640: }
11641: 
11642: sub id_for_thisdom {
11643:     my (%servers) = @_;
11644:     my %altids;
11645:     foreach my $server (keys(%servers)) {
11646:         my $serverhome = &Apache::lonnet::get_server_homeID($servers{$server});
11647:         if ($serverhome ne $server) {
11648:             $altids{$serverhome} = $server;
11649:         }
11650:     }
11651:     return %altids;
11652: }
11653: 
11654: sub count_servers {
11655:     my ($currbalancer,%servers) = @_;
11656:     my (@spares,$numspares);
11657:     foreach my $lonhost (sort(keys(%servers))) {
11658:         next if ($currbalancer eq $lonhost);
11659:         push(@spares,$lonhost);
11660:     }
11661:     if ($currbalancer) {
11662:         $numspares = scalar(@spares);
11663:     } else {
11664:         $numspares = scalar(@spares) - 1;
11665:     }
11666:     return ($numspares,@spares);
11667: }
11668: 
11669: sub lonbalance_targets_js {
11670:     my ($dom,$types,$servers,$settings) = @_;
11671:     my $select = &mt('Select');
11672:     my ($alltargets,$allishome,$allinsttypes,@alltypes);
11673:     if (ref($servers) eq 'HASH') {
11674:         $alltargets = join("','",sort(keys(%{$servers})));
11675:         my @homedoms;
11676:         foreach my $server (sort(keys(%{$servers}))) {
11677:             if (&Apache::lonnet::host_domain($server) eq $dom) {
11678:                 push(@homedoms,'1');
11679:             } else {
11680:                 push(@homedoms,'0');
11681:             }
11682:         }
11683:         $allishome = join("','",@homedoms);
11684:     }
11685:     if (ref($types) eq 'ARRAY') {
11686:         if (@{$types} > 0) {
11687:             @alltypes = @{$types};
11688:         }
11689:     }
11690:     push(@alltypes,'default','_LC_adv','_LC_author','_LC_internetdom','_LC_external');
11691:     $allinsttypes = join("','",@alltypes);
11692:     my (%currbalancer,%currtargets,%currrules,%existing);
11693:     if (ref($settings) eq 'HASH') {
11694:         %existing = %{$settings};
11695:     }
11696:     &get_loadbalancers_config($servers,\%existing,\%currbalancer,
11697:                               \%currtargets,\%currrules);
11698:     my $balancers = join("','",sort(keys(%currbalancer)));
11699:     return <<"END";
11700: 
11701: <script type="text/javascript">
11702: // <![CDATA[
11703: 
11704: currBalancers = new Array('$balancers');
11705: 
11706: function toggleTargets(balnum) {
11707:     var lonhostitem = document.getElementById('loadbalancing_lonhost_'+balnum);
11708:     var prevhostitem = document.getElementById('loadbalancing_prevlonhost_'+balnum);
11709:     var balancer = lonhostitem.options[lonhostitem.selectedIndex].value;
11710:     var prevbalancer = prevhostitem.value;
11711:     var baltotal = document.getElementById('loadbalancing_total').value;
11712:     prevhostitem.value = balancer;
11713:     if (prevbalancer != '') {
11714:         var prevIdx = currBalancers.indexOf(prevbalancer);
11715:         if (prevIdx != -1) {
11716:             currBalancers.splice(prevIdx,1);
11717:         }
11718:     }
11719:     if (balancer == '') {
11720:         hideSpares(balnum);
11721:     } else {
11722:         var currIdx = currBalancers.indexOf(balancer);
11723:         if (currIdx == -1) {
11724:             currBalancers.push(balancer);
11725:         }
11726:         var homedoms = new Array('$allishome');
11727:         var ishomedom = homedoms[lonhostitem.selectedIndex];
11728:         showSpares(balancer,ishomedom,balnum);
11729:     }
11730:     balancerChange(balnum,baltotal,'change',prevbalancer,balancer);
11731:     return;
11732: }
11733: 
11734: function showSpares(balancer,ishomedom,balnum) {
11735:     var alltargets = new Array('$alltargets');
11736:     var insttypes = new Array('$allinsttypes');
11737:     var offloadtypes = new Array('primary','default');
11738: 
11739:     document.getElementById('loadbalancing_targets_'+balnum).style.display='block';
11740:     document.getElementById('loadbalancing_disabled_'+balnum).style.display='none';
11741:  
11742:     for (var i=0; i<offloadtypes.length; i++) {
11743:         var count = 0;
11744:         for (var j=0; j<alltargets.length; j++) {
11745:             if (alltargets[j] != balancer) {
11746:                 var item = document.getElementById('loadbalancing_target_'+balnum+'_'+offloadtypes[i]+'_'+count);
11747:                 item.value = alltargets[j];
11748:                 item.style.textAlign='left';
11749:                 item.style.textFace='normal';
11750:                 document.getElementById('loadbalancing_targettxt_'+balnum+'_'+offloadtypes[i]+'_'+count).innerHTML = alltargets[j];
11751:                 if (currBalancers.indexOf(alltargets[j]) == -1) {
11752:                     item.disabled = '';
11753:                 } else {
11754:                     item.disabled = 'disabled';
11755:                     item.checked = false;
11756:                 }
11757:                 count ++;
11758:             }
11759:         }
11760:     }
11761:     for (var k=0; k<insttypes.length; k++) {
11762:         if ((insttypes[k] == '_LC_external') || (insttypes[k] == '_LC_internetdom')) {
11763:             if (ishomedom == 1) {
11764:                 document.getElementById('balanceruletitle_'+balnum+'_'+insttypes[k]).style.display='block';
11765:                 document.getElementById('balancerule_'+balnum+'_'+insttypes[k]).style.display='block';
11766:             } else {
11767:                 document.getElementById('balanceruletitle_'+balnum+'_'+insttypes[k]).style.display='none';
11768:                 document.getElementById('balancerule_'+balnum+'_'+insttypes[k]).style.display='none';
11769:             }
11770:         } else {
11771:             document.getElementById('balanceruletitle_'+balnum+'_'+insttypes[k]).style.display='block';
11772:             document.getElementById('balancerule_'+balnum+'_'+insttypes[k]).style.display='block';
11773:         }
11774:         if ((insttypes[k] != '_LC_external') && 
11775:             ((insttypes[k] != '_LC_internetdom') ||
11776:              ((insttypes[k] == '_LC_internetdom') && (ishomedom == 1)))) {
11777:             var item = document.getElementById('loadbalancing_singleserver_'+balnum+'_'+insttypes[k]);
11778:             item.options.length = 0;
11779:             item.options[0] = new Option("","",true,true);
11780:             var idx = 0;
11781:             for (var m=0; m<alltargets.length; m++) {
11782:                 if ((currBalancers.indexOf(alltargets[m]) == -1) && (alltargets[m] != balancer)) {
11783:                     idx ++;
11784:                     item.options[idx] = new Option(alltargets[m],alltargets[m],false,false);
11785:                 }
11786:             }
11787:         }
11788:     }
11789:     return;
11790: }
11791: 
11792: function hideSpares(balnum) {
11793:     var alltargets = new Array('$alltargets');
11794:     var insttypes = new Array('$allinsttypes');
11795:     var offloadtypes = new Array('primary','default');
11796: 
11797:     document.getElementById('loadbalancing_targets_'+balnum).style.display='none';
11798:     document.getElementById('loadbalancing_disabled_'+balnum).style.display='block';
11799: 
11800:     var total = alltargets.length - 1;
11801:     for (var i=0; i<offloadtypes; i++) {
11802:         for (var j=0; j<total; j++) {
11803:            document.getElementById('loadbalancing_target_'+balnum+'_'+offloadtypes[i]+'_'+j).checked = false;
11804:            document.getElementById('loadbalancing_target_'+balnum+'_'+offloadtypes[i]+'_'+j).value = '';
11805:            document.getElementById('loadbalancing_targettxt_'+balnum+'_'+offloadtypes[i]+'_'+j).innerHTML = '';
11806:         }
11807:     }
11808:     for (var k=0; k<insttypes.length; k++) {
11809:         document.getElementById('balanceruletitle_'+balnum+'_'+insttypes[k]).style.display='none';
11810:         document.getElementById('balancerule_'+balnum+'_'+insttypes[k]).style.display='none';
11811:         if (insttypes[k] != '_LC_external') {
11812:             document.getElementById('loadbalancing_singleserver_'+balnum+'_'+insttypes[k]).length = 0;
11813:             document.getElementById('loadbalancing_singleserver_'+balnum+'_'+insttypes[k]).options[0] = new Option("","",true,true);
11814:         }
11815:     }
11816:     return;
11817: }
11818: 
11819: function checkOffloads(item,balnum,type) {
11820:     var alltargets = new Array('$alltargets');
11821:     var offloadtypes = new Array('primary','default');
11822:     if (item.checked) {
11823:         var total = alltargets.length - 1;
11824:         var other;
11825:         if (type == offloadtypes[0]) {
11826:             other = offloadtypes[1];
11827:         } else {
11828:             other = offloadtypes[0];
11829:         }
11830:         for (var i=0; i<total; i++) {
11831:             var server = document.getElementById('loadbalancing_target_'+balnum+'_'+other+'_'+i).value;
11832:             if (server == item.value) {
11833:                 if (document.getElementById('loadbalancing_target_'+balnum+'_'+other+'_'+i).checked) {
11834:                     document.getElementById('loadbalancing_target_'+balnum+'_'+other+'_'+i).checked = false;
11835:                 }
11836:             }
11837:         }
11838:     }
11839:     return;
11840: }
11841: 
11842: function singleServerToggle(balnum,type) {
11843:     var offloadtoSelIdx = document.getElementById('loadbalancing_singleserver_'+balnum+'_'+type).selectedIndex;
11844:     if (offloadtoSelIdx == 0) {
11845:         document.getElementById('loadbalancing_rules_'+balnum+'_'+type+'_0').checked = true;
11846:         document.getElementById('loadbalancing_singleserver_'+balnum+'_'+type).options[0].text = '';
11847: 
11848:     } else {
11849:         document.getElementById('loadbalancing_rules_'+balnum+'_'+type+'_2').checked = true;
11850:         document.getElementById('loadbalancing_singleserver_'+balnum+'_'+type).options[0].text = '$select';
11851:     }
11852:     return;
11853: }
11854: 
11855: function balanceruleChange(formname,balnum,type) {
11856:     if (type == '_LC_external') {
11857:         return;
11858:     }
11859:     var typesRules = getIndicesByName(formname,'loadbalancing_rules_'+balnum+'_'+type);
11860:     for (var i=0; i<typesRules.length; i++) {
11861:         if (formname.elements[typesRules[i]].checked) {
11862:             if (formname.elements[typesRules[i]].value != 'specific') {
11863:                 document.getElementById('loadbalancing_singleserver_'+balnum+'_'+type).selectedIndex = 0;
11864:                 document.getElementById('loadbalancing_singleserver_'+balnum+'_'+type).options[0].text = '';
11865:             } else {
11866:                 document.getElementById('loadbalancing_singleserver_'+balnum+'_'+type).options[0].text = '$select';
11867:             }
11868:         }
11869:     }
11870:     return;
11871: }
11872: 
11873: function balancerDeleteChange(balnum) {
11874:     var hostitem = document.getElementById('loadbalancing_lonhost_'+balnum);
11875:     var baltotal = document.getElementById('loadbalancing_total').value;
11876:     var addtarget;
11877:     var removetarget;
11878:     var action = 'delete';
11879:     if (document.getElementById('loadbalancing_delete_'+balnum)) {
11880:         var lonhost = hostitem.value;
11881:         var currIdx = currBalancers.indexOf(lonhost);
11882:         if (document.getElementById('loadbalancing_delete_'+balnum).checked) {
11883:             if (currIdx != -1) {
11884:                 currBalancers.splice(currIdx,1);
11885:             }
11886:             addtarget = lonhost;
11887:         } else {
11888:             if (currIdx == -1) {
11889:                 currBalancers.push(lonhost);
11890:             }
11891:             removetarget = lonhost;
11892:             action = 'undelete';
11893:         }
11894:         balancerChange(balnum,baltotal,action,addtarget,removetarget);
11895:     }
11896:     return;
11897: }
11898: 
11899: function balancerChange(balnum,baltotal,action,addtarget,removetarget) {
11900:     if (baltotal > 1) {
11901:         var offloadtypes = new Array('primary','default');
11902:         var alltargets = new Array('$alltargets');
11903:         var insttypes = new Array('$allinsttypes');
11904:         for (var i=0; i<baltotal; i++) {
11905:             if (i != balnum) {
11906:                 for (var j=0; j<offloadtypes.length; j++) {
11907:                     var total = alltargets.length - 1;
11908:                     for (var k=0; k<total; k++) {
11909:                         var serveritem = document.getElementById('loadbalancing_target_'+i+'_'+offloadtypes[j]+'_'+k);
11910:                         var server = serveritem.value;
11911:                         if ((action == 'delete') || (action == 'change' && addtarget != ''))  {
11912:                             if (server == addtarget) {
11913:                                 serveritem.disabled = '';
11914:                             }
11915:                         }
11916:                         if ((action == 'undelete') || (action == 'change' && removetarget != '')) {
11917:                             if (server == removetarget) {
11918:                                 serveritem.disabled = 'disabled';
11919:                                 serveritem.checked = false;
11920:                             }
11921:                         }
11922:                     }
11923:                 }
11924:                 for (var j=0; j<insttypes.length; j++) {
11925:                     if (insttypes[j] != '_LC_external') {
11926:                         if (document.getElementById('loadbalancing_singleserver_'+i+'_'+insttypes[j])) {
11927:                             var singleserver = document.getElementById('loadbalancing_singleserver_'+i+'_'+insttypes[j]);
11928:                             var currSel = singleserver.selectedIndex;
11929:                             var currVal = singleserver.options[currSel].value;
11930:                             if ((action == 'delete') || (action == 'change' && addtarget != '')) {
11931:                                 var numoptions = singleserver.options.length;
11932:                                 var needsnew = 1;
11933:                                 for (var k=0; k<numoptions; k++) {
11934:                                     if (singleserver.options[k] == addtarget) {
11935:                                         needsnew = 0;
11936:                                         break;
11937:                                     }
11938:                                 }
11939:                                 if (needsnew == 1) {
11940:                                     singleserver.options[numoptions] = new Option(addtarget,addtarget,false,false);
11941:                                 }
11942:                             }
11943:                             if ((action == 'undelete') || (action == 'change' && removetarget != '')) {
11944:                                 singleserver.options.length = 0;
11945:                                 if ((currVal) && (currVal != removetarget)) {
11946:                                     singleserver.options[0] = new Option("","",false,false);
11947:                                 } else {
11948:                                     singleserver.options[0] = new Option("","",true,true);
11949:                                 }
11950:                                 var idx = 0;
11951:                                 for (var m=0; m<alltargets.length; m++) {
11952:                                     if (currBalancers.indexOf(alltargets[m]) == -1) {
11953:                                         idx ++;
11954:                                         if (currVal == alltargets[m]) {
11955:                                             singleserver.options[idx] = new Option(alltargets[m],alltargets[m],true,true);
11956:                                         } else {
11957:                                             singleserver.options[idx] = new Option(alltargets[m],alltargets[m],false,false);
11958:                                         }
11959:                                     }
11960:                                 }
11961:                             }
11962:                         }
11963:                     }
11964:                 }
11965:             }
11966:         }
11967:     }
11968:     return;
11969: }
11970: 
11971: // ]]>
11972: </script>
11973: 
11974: END
11975: }
11976: 
11977: sub new_spares_js {
11978:     my @sparestypes = ('primary','default');
11979:     my $types = join("','",@sparestypes);
11980:     my $select = &mt('Select');
11981:     return <<"END";
11982: 
11983: <script type="text/javascript">
11984: // <![CDATA[
11985: 
11986: function updateNewSpares(formname,lonhost) {
11987:     var types = new Array('$types');
11988:     var include = new Array();
11989:     var exclude = new Array();
11990:     for (var i=0; i<types.length; i++) {
11991:         var spareboxes = getIndicesByName(formname,'spare_'+types[i]+'_'+lonhost);
11992:         for (var j=0; j<spareboxes.length; j++) {
11993:             if (formname.elements[spareboxes[j]].checked) {
11994:                 exclude.push(formname.elements[spareboxes[j]].value);
11995:             } else {
11996:                 include.push(formname.elements[spareboxes[j]].value);
11997:             }
11998:         }
11999:     }
12000:     for (var i=0; i<types.length; i++) {
12001:         var newSpare = document.getElementById('newspare_'+types[i]+'_'+lonhost);
12002:         var selIdx = newSpare.selectedIndex;
12003:         var currnew = newSpare.options[selIdx].value;
12004:         var okSpares = new Array();
12005:         for (var j=0; j<newSpare.options.length; j++) {
12006:             var possible = newSpare.options[j].value;
12007:             if (possible != '') {
12008:                 if (exclude.indexOf(possible) == -1) {
12009:                     okSpares.push(possible);
12010:                 } else {
12011:                     if (currnew == possible) {
12012:                         selIdx = 0;
12013:                     }
12014:                 }
12015:             }
12016:         }
12017:         for (var k=0; k<include.length; k++) {
12018:             if (okSpares.indexOf(include[k]) == -1) {
12019:                 okSpares.push(include[k]);
12020:             }
12021:         }
12022:         okSpares.sort();
12023:         newSpare.options.length = 0;
12024:         if (selIdx == 0) {
12025:             newSpare.options[0] = new Option("$select","",true,true);
12026:         } else {
12027:             newSpare.options[0] = new Option("$select","",false,false);
12028:         }
12029:         for (var m=0; m<okSpares.length; m++) {
12030:             var idx = m+1;
12031:             var selThis = 0;
12032:             if (selIdx != 0) {
12033:                 if (okSpares[m] == currnew) {
12034:                     selThis = 1;
12035:                 }
12036:             }
12037:             if (selThis == 1) {
12038:                 newSpare.options[idx] = new Option(okSpares[m],okSpares[m],true,true);
12039:             } else {
12040:                 newSpare.options[idx] = new Option(okSpares[m],okSpares[m],false,false);
12041:             }
12042:         }
12043:     }
12044:     return;
12045: }
12046: 
12047: function checkNewSpares(lonhost,type) {
12048:     var newSpare = document.getElementById('newspare_'+type+'_'+lonhost);
12049:     var chosen =  newSpare.options[newSpare.selectedIndex].value;
12050:     if (chosen != '') { 
12051:         var othertype;
12052:         var othernewSpare;
12053:         if (type == 'primary') {
12054:             othernewSpare = document.getElementById('newspare_default_'+lonhost);
12055:         }
12056:         if (type == 'default') {
12057:             othernewSpare = document.getElementById('newspare_primary_'+lonhost);
12058:         }
12059:         if (othernewSpare.options[othernewSpare.selectedIndex].value == chosen) {
12060:             othernewSpare.selectedIndex = 0;
12061:         }
12062:     }
12063:     return;
12064: }
12065: 
12066: // ]]>
12067: </script>
12068: 
12069: END
12070: 
12071: }
12072: 
12073: sub common_domprefs_js {
12074:     return <<"END";
12075: 
12076: <script type="text/javascript">
12077: // <![CDATA[
12078: 
12079: function getIndicesByName(formname,item) {
12080:     var group = new Array();
12081:     for (var i=0;i<formname.elements.length;i++) {
12082:         if (formname.elements[i].name == item) {
12083:             group.push(formname.elements[i].id);
12084:         }
12085:     }
12086:     return group;
12087: }
12088: 
12089: // ]]>
12090: </script>
12091: 
12092: END
12093: 
12094: }
12095: 
12096: sub recaptcha_js {
12097:     my %lt = &captcha_phrases();
12098:     return <<"END";
12099: 
12100: <script type="text/javascript">
12101: // <![CDATA[
12102: 
12103: function updateCaptcha(caller,context) {
12104:     var privitem;
12105:     var pubitem;
12106:     var privtext;
12107:     var pubtext;
12108:     if (document.getElementById(context+'_recaptchapub')) {
12109:         pubitem = document.getElementById(context+'_recaptchapub');
12110:     } else {
12111:         return;
12112:     }
12113:     if (document.getElementById(context+'_recaptchapriv')) {
12114:         privitem = document.getElementById(context+'_recaptchapriv');
12115:     } else {
12116:         return;
12117:     }
12118:     if (document.getElementById(context+'_recaptchapubtxt')) {
12119:         pubtext = document.getElementById(context+'_recaptchapubtxt');
12120:     } else {
12121:         return;
12122:     }
12123:     if (document.getElementById(context+'_recaptchaprivtxt')) {
12124:         privtext = document.getElementById(context+'_recaptchaprivtxt');
12125:     } else {
12126:         return;
12127:     }
12128:     if (caller.checked) {
12129:         if (caller.value == 'recaptcha') {
12130:             pubitem.type = 'text';
12131:             privitem.type = 'text';
12132:             pubitem.size = '40';
12133:             privitem.size = '40';
12134:             pubtext.innerHTML = "$lt{'pub'}";
12135:             privtext.innerHTML = "$lt{'priv'}";
12136:         } else {
12137:             pubitem.type = 'hidden';
12138:             privitem.type = 'hidden';
12139:             pubtext.innerHTML = '';
12140:             privtext.innerHTML = '';
12141:         }
12142:     }
12143:     return;
12144: }
12145: 
12146: // ]]>
12147: </script>
12148: 
12149: END
12150: 
12151: }
12152: 
12153: sub toggle_display_js {
12154:     return <<"END";
12155: 
12156: <script type="text/javascript">
12157: // <![CDATA[
12158: 
12159: function toggleDisplay(domForm,caller) {
12160:     if (document.getElementById(caller)) {
12161:         var divitem = document.getElementById(caller);
12162:         var optionsElement = domForm.coursecredits;
12163:         var checkval = 1;
12164:         var dispval = 'block';
12165:         if (caller == 'emailoptions') {
12166:             optionsElement = domForm.cancreate_email; 
12167:         }
12168:         if (caller == 'studentsubmission') {
12169:             optionsElement = domForm.postsubmit;
12170:         }
12171:         if (caller == 'cloneinstcode') {
12172:             optionsElement = domForm.canclone;
12173:             checkval = 'instcode';
12174:         }
12175:         if (optionsElement.length) {
12176:             var currval;
12177:             for (var i=0; i<optionsElement.length; i++) {
12178:                 if (optionsElement[i].checked) {
12179:                    currval = optionsElement[i].value;
12180:                 }
12181:             }
12182:             if (currval == checkval) {
12183:                 divitem.style.display = dispval;
12184:             } else {
12185:                 divitem.style.display = 'none';
12186:             }
12187:         }
12188:     }
12189:     return;
12190: }
12191: 
12192: // ]]>
12193: </script>
12194: 
12195: END
12196: 
12197: }
12198: 
12199: sub captcha_phrases {
12200:     return &Apache::lonlocal::texthash (
12201:                  priv => 'Private key',
12202:                  pub  => 'Public key',
12203:                  original  => 'original (CAPTCHA)',
12204:                  recaptcha => 'successor (ReCAPTCHA)',
12205:                  notused   => 'unused',
12206:     );
12207: }
12208: 
12209: sub devalidate_remote_domconfs {
12210:     my ($dom,$cachekeys) = @_;
12211:     return unless (ref($cachekeys) eq 'HASH');
12212:     my %servers = &Apache::lonnet::internet_dom_servers($dom);
12213:     my %thismachine;
12214:     map { $thismachine{$_} = 1; } &Apache::lonnet::current_machine_ids();
12215:     my @posscached = ('domainconfig','domdefaults');
12216:     if (keys(%servers)) {
12217:         foreach my $server (keys(%servers)) {
12218:             next if ($thismachine{$server});
12219:             my @cached;
12220:             foreach my $name (@posscached) {
12221:                 if ($cachekeys->{$name}) {
12222:                     push(@cached,&escape($name).':'.&escape($dom));
12223:                 }
12224:             }
12225:             if (@cached) {
12226:                 &Apache::lonnet::remote_devalidate_cache($server,\@cached);
12227:             }
12228:         }
12229:     }
12230:     return;
12231: }
12232: 
12233: 1;

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