Annotation of loncom/interface/domainprefs.pm, revision 1.265

1.1       raeburn     1: # The LearningOnline Network with CAPA
                      2: # Handler to set domain-wide configuration settings
                      3: #
1.265   ! damieng     4: # $Id: domainprefs.pm,v 1.264 2015/05/21 22:59:16 raeburn Exp $
1.2       albertel    5: #
1.1       raeburn     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: 
1.101     raeburn    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 
1.183     bisitz     48: for use by individuals affiliated with the institution.  Accordingly, each domain
1.101     raeburn    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 
1.210     raeburn    89: number of rows displayed on the page, and $action is the context (quotas, 
1.163     raeburn    90: requestcourses or requestauthor).
1.101     raeburn    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,
1.197     raeburn    97: used by course owners to request creation of a course, and to display/store
1.223     bisitz     98: default quota sizes for Authoring Spaces.
1.101     raeburn    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 
1.216     raeburn   106: (official, unofficial, community, and textbook).  In each case the radio buttons 
                    107: allow the selection of one of four values:
1.101     raeburn   108: 
1.104     raeburn   109: 0, approval, validate, autolimit=N (where N is blank, or a positive integer).
1.101     raeburn   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: 
1.104     raeburn   120: approval 
1.101     raeburn   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:  
1.143     raeburn   144: - course requests will be processed automatically up to a limit of
1.101     raeburn   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: 
1.1       raeburn   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;
1.43      raeburn   165: use Apache::lonmsg();
1.91      raeburn   166: use Apache::lonconfigsettings;
1.232     raeburn   167: use Apache::lonuserutils();
1.235     raeburn   168: use Apache::loncoursequeueadmin();
1.69      raeburn   169: use LONCAPA qw(:DEFAULT :match);
1.6       raeburn   170: use LONCAPA::Enrollment;
1.81      raeburn   171: use LONCAPA::lonauthcgi();
1.9       raeburn   172: use File::Copy;
1.43      raeburn   173: use Locale::Language;
1.62      raeburn   174: use DateTime::TimeZone;
1.68      raeburn   175: use DateTime::Locale;
1.1       raeburn   176: 
1.155     raeburn   177: my $registered_cleanup;
                    178: my $modified_urls;
                    179: 
1.1       raeburn   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: 
1.91      raeburn   188:     my $context = 'domain';
1.1       raeburn   189:     my $dom = $env{'request.role.domain'};
1.5       albertel  190:     my $domdesc = &Apache::lonnet::domain($dom,'description');
1.1       raeburn   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:     }
1.155     raeburn   199: 
                    200:     $registered_cleanup=0;
                    201:     @{$modified_urls}=();
                    202: 
1.1       raeburn   203:     &Apache::lonhtmlcommon::clear_breadcrumbs();
                    204:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
1.58      raeburn   205:                                             ['phase','actions']);
1.30      raeburn   206:     my $phase = 'pickactions';
1.3       raeburn   207:     if ( exists($env{'form.phase'}) ) {
                    208:         $phase = $env{'form.phase'};
                    209:     }
1.150     raeburn   210:     my %servers = &Apache::lonnet::internet_dom_servers($dom);
1.3       raeburn   211:     my %domconfig =
1.6       raeburn   212:       &Apache::lonnet::get_dom('configuration',['login','rolecolors',
1.125     raeburn   213:                 'quotas','autoenroll','autoupdate','autocreate',
                    214:                 'directorysrch','usercreation','usermodification',
                    215:                 'contacts','defaults','scantron','coursecategories',
                    216:                 'serverstatuses','requestcourses','helpsettings',
1.163     raeburn   217:                 'coursedefaults','usersessions','loadbalancing',
1.236     raeburn   218:                 'requestauthor','selfenrollment','inststatus'],$dom);
1.43      raeburn   219:     my @prefs_order = ('rolecolors','login','defaults','quotas','autoenroll',
1.125     raeburn   220:                        'autoupdate','autocreate','directorysrch','contacts',
1.224     raeburn   221:                        'usercreation','selfcreation','usermodification','scantron',
1.163     raeburn   222:                        'requestcourses','requestauthor','coursecategories',
                    223:                        'serverstatuses','helpsettings',
1.231     raeburn   224:                        'coursedefaults','selfenrollment','usersessions');
1.171     raeburn   225:     my %existing;
                    226:     if (ref($domconfig{'loadbalancing'}) eq 'HASH') {
                    227:         %existing = %{$domconfig{'loadbalancing'}};
                    228:     }
                    229:     if ((keys(%servers) > 1) || (keys(%existing) > 0)) {
1.150     raeburn   230:         push(@prefs_order,'loadbalancing');
                    231:     }
1.30      raeburn   232:     my %prefs = (
                    233:         'rolecolors' =>
                    234:                    { text => 'Default color schemes',
1.67      raeburn   235:                      help => 'Domain_Configuration_Color_Schemes',
1.30      raeburn   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 => '',}],
1.230     raeburn   244:                       print => \&print_rolecolors,
                    245:                       modify => \&modify_rolecolors,
1.30      raeburn   246:                     },
1.110     raeburn   247:         'login' =>
1.30      raeburn   248:                     { text => 'Log-in page options',
1.67      raeburn   249:                       help => 'Domain_Configuration_Login_Page',
1.168     raeburn   250:                       header => [{col1 => 'Log-in Page Items',
                    251:                                   col2 => '',},
                    252:                                  {col1 => 'Log-in Help',
1.256     raeburn   253:                                   col2 => 'Value'},
                    254:                                  {col1 => 'Custom HTML in document head',
1.168     raeburn   255:                                   col2 => 'Value'}],
1.230     raeburn   256:                       print => \&print_login,
                    257:                       modify => \&modify_login,
1.30      raeburn   258:                     },
1.43      raeburn   259:         'defaults' => 
1.236     raeburn   260:                     { text => 'Default authentication/language/timezone/portal/types',
1.67      raeburn   261:                       help => 'Domain_Configuration_LangTZAuth',
1.43      raeburn   262:                       header => [{col1 => 'Setting',
1.236     raeburn   263:                                   col2 => 'Value'},
                    264:                                  {col1 => 'Institutional user types',
                    265:                                   col2 => 'Assignable to e-mail usernames'}],
1.230     raeburn   266:                       print => \&print_defaults,
                    267:                       modify => \&modify_defaults,
1.43      raeburn   268:                     },
1.30      raeburn   269:         'quotas' => 
1.197     raeburn   270:                     { text => 'Blogs, personal web pages, webDAV/quotas, portfolios',
1.67      raeburn   271:                       help => 'Domain_Configuration_Quotas',
1.77      raeburn   272:                       header => [{col1 => 'User affiliation',
1.72      raeburn   273:                                   col2 => 'Available tools',
1.213     raeburn   274:                                   col3 => 'Quotas, MB; (Authoring requires role)',}],
1.230     raeburn   275:                       print => \&print_quotas,
                    276:                       modify => \&modify_quotas,
1.30      raeburn   277:                     },
                    278:         'autoenroll' =>
                    279:                    { text => 'Auto-enrollment settings',
1.67      raeburn   280:                      help => 'Domain_Configuration_Auto_Enrollment',
1.30      raeburn   281:                      header => [{col1 => 'Configuration setting',
                    282:                                  col2 => 'Value(s)'}],
1.230     raeburn   283:                      print => \&print_autoenroll,
                    284:                      modify => \&modify_autoenroll,
1.30      raeburn   285:                    },
                    286:         'autoupdate' => 
                    287:                    { text => 'Auto-update settings',
1.67      raeburn   288:                      help => 'Domain_Configuration_Auto_Updates',
1.30      raeburn   289:                      header => [{col1 => 'Setting',
                    290:                                  col2 => 'Value',},
1.131     raeburn   291:                                 {col1 => 'Setting',
                    292:                                  col2 => 'Affiliation'},
1.43      raeburn   293:                                 {col1 => 'User population',
1.227     bisitz    294:                                  col2 => 'Updatable user data'}],
1.230     raeburn   295:                      print => \&print_autoupdate,
                    296:                      modify => \&modify_autoupdate,
1.30      raeburn   297:                   },
1.125     raeburn   298:         'autocreate' => 
                    299:                   { text => 'Auto-course creation settings',
                    300:                      help => 'Domain_Configuration_Auto_Creation',
                    301:                      header => [{col1 => 'Configuration Setting',
                    302:                                  col2 => 'Value',}],
1.230     raeburn   303:                      print => \&print_autocreate,
                    304:                      modify => \&modify_autocreate,
1.125     raeburn   305:                   },
1.30      raeburn   306:         'directorysrch' => 
                    307:                   { text => 'Institutional directory searches',
1.67      raeburn   308:                     help => 'Domain_Configuration_InstDirectory_Search',
1.30      raeburn   309:                     header => [{col1 => 'Setting',
                    310:                                 col2 => 'Value',}],
1.230     raeburn   311:                     print => \&print_directorysrch,
                    312:                     modify => \&modify_directorysrch,
1.30      raeburn   313:                   },
                    314:         'contacts' =>
                    315:                   { text => 'Contact Information',
1.67      raeburn   316:                     help => 'Domain_Configuration_Contact_Info',
1.30      raeburn   317:                     header => [{col1 => 'Setting',
                    318:                                 col2 => 'Value',}],
1.230     raeburn   319:                     print => \&print_contacts,
                    320:                     modify => \&modify_contacts,
1.30      raeburn   321:                   },
                    322:         'usercreation' => 
                    323:                   { text => 'User creation',
1.67      raeburn   324:                     help => 'Domain_Configuration_User_Creation',
1.43      raeburn   325:                     header => [{col1 => 'Format rule type',
                    326:                                 col2 => 'Format rules in force'},
1.34      raeburn   327:                                {col1 => 'User account creation',
                    328:                                 col2 => 'Usernames which may be created',},
1.30      raeburn   329:                                {col1 => 'Context',
1.43      raeburn   330:                                 col2 => 'Assignable authentication types'}],
1.230     raeburn   331:                     print => \&print_usercreation,
                    332:                     modify => \&modify_usercreation,
1.30      raeburn   333:                   },
1.224     raeburn   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'}],
1.230     raeburn   343:                     print => \&print_selfcreation,
                    344:                     modify => \&modify_selfcreation,
1.224     raeburn   345:                   },
1.69      raeburn   346:         'usermodification' =>
1.33      raeburn   347:                   { text => 'User modification',
1.67      raeburn   348:                     help => 'Domain_Configuration_User_Modification',
1.33      raeburn   349:                     header => [{col1 => 'Target user has role',
1.227     bisitz    350:                                 col2 => 'User information updatable in author context'},
1.33      raeburn   351:                                {col1 => 'Target user has role',
1.227     bisitz    352:                                 col2 => 'User information updatable in course context'}],
1.230     raeburn   353:                     print => \&print_usermodification,
                    354:                     modify => \&modify_usermodification,
1.33      raeburn   355:                   },
1.69      raeburn   356:         'scantron' =>
1.95      www       357:                   { text => 'Bubblesheet format file',
1.67      raeburn   358:                     help => 'Domain_Configuration_Scantron_Format',
1.46      raeburn   359:                     header => [ {col1 => 'Item',
                    360:                                  col2 => '',
                    361:                               }],
1.230     raeburn   362:                     print => \&print_scantron,
                    363:                     modify => \&modify_scantron,
1.46      raeburn   364:                   },
1.86      raeburn   365:         'requestcourses' => 
                    366:                  {text => 'Request creation of courses',
                    367:                   help => 'Domain_Configuration_Request_Courses',
                    368:                   header => [{col1 => 'User affiliation',
1.102     raeburn   369:                               col2 => 'Availability/Processing of requests',},
                    370:                              {col1 => 'Setting',
1.216     raeburn   371:                               col2 => 'Value'},
                    372:                              {col1 => 'Available textbooks',
1.235     raeburn   373:                               col2 => ''},
1.242     raeburn   374:                              {col1 => 'Available templates',
                    375:                               col2 => ''},
1.235     raeburn   376:                              {col1 => 'Validation (not official courses)',
                    377:                               col2 => 'Value'},],
1.230     raeburn   378:                   print => \&print_quotas,
                    379:                   modify => \&modify_quotas,
1.86      raeburn   380:                  },
1.163     raeburn   381:         'requestauthor' =>
1.223     bisitz    382:                  {text => 'Request Authoring Space',
1.163     raeburn   383:                   help => 'Domain_Configuration_Request_Author',
                    384:                   header => [{col1 => 'User affiliation',
                    385:                               col2 => 'Availability/Processing of requests',},
                    386:                              {col1 => 'Setting',
                    387:                               col2 => 'Value'}],
1.230     raeburn   388:                   print => \&print_quotas,
                    389:                   modify => \&modify_quotas,
1.163     raeburn   390:                  },
1.69      raeburn   391:         'coursecategories' =>
1.120     raeburn   392:                   { text => 'Cataloging of courses/communities',
1.67      raeburn   393:                     help => 'Domain_Configuration_Cataloging_Courses',
1.238     raeburn   394:                     header => [{col1 => 'Catalog type/availability',
                    395:                                 col2 => '',},
                    396:                                {col1 => 'Category settings for standard catalog',
1.57      raeburn   397:                                 col2 => '',},
                    398:                                {col1 => 'Categories',
                    399:                                 col2 => '',
                    400:                                }],
1.230     raeburn   401:                     print => \&print_coursecategories,
                    402:                     modify => \&modify_coursecategories,
1.69      raeburn   403:                   },
                    404:         'serverstatuses' =>
1.77      raeburn   405:                  {text   => 'Access to server status pages',
1.69      raeburn   406:                   help   => 'Domain_Configuration_Server_Status',
                    407:                   header => [{col1 => 'Status Page',
                    408:                               col2 => 'Other named users',
                    409:                               col3 => 'Specific IPs',
                    410:                             }],
1.230     raeburn   411:                   print => \&print_serverstatuses,
                    412:                   modify => \&modify_serverstatuses,
1.69      raeburn   413:                  },
1.118     jms       414:         'helpsettings' =>
                    415:                  {text   => 'Help page settings',
                    416:                   help   => 'Domain_Configuration_Help_Settings',
1.166     raeburn   417:                   header => [{col1 => 'Help Settings (logged-in users)',
                    418:                               col2 => 'Value'}],
1.230     raeburn   419:                   print  => \&print_helpsettings,
                    420:                   modify => \&modify_helpsettings,
1.118     jms       421:                  },
1.121     raeburn   422:         'coursedefaults' => 
                    423:                  {text => 'Course/Community defaults',
                    424:                   help => 'Domain_Configuration_Course_Defaults',
1.139     raeburn   425:                   header => [{col1 => 'Defaults which can be overridden in each course by a CC',
                    426:                               col2 => 'Value',},
                    427:                              {col1 => 'Defaults which can be overridden for each course by a DC',
                    428:                               col2 => 'Value',},],
1.230     raeburn   429:                   print => \&print_coursedefaults,
                    430:                   modify => \&modify_coursedefaults,
1.121     raeburn   431:                  },
1.231     raeburn   432:         'selfenrollment' => 
                    433:                  {text   => 'Self-enrollment in Course/Community',
                    434:                   help   => 'Domain_Configuration_Selfenrollment',
                    435:                   header => [{col1 => 'Configuration Rights',
                    436:                               col2 => 'Configured by Course Personnel or Domain Coordinator?'},
                    437:                              {col1 => 'Defaults',
                    438:                               col2 => 'Value'},
                    439:                              {col1 => 'Self-enrollment validation (optional)',
                    440:                               col2 => 'Value'},],
                    441:                   print => \&print_selfenrollment,
                    442:                   modify => \&modify_selfenrollment,
                    443:                  },
1.120     raeburn   444:         'privacy' => 
                    445:                  {text   => 'User Privacy',
                    446:                   help   => 'Domain_Configuration_User_Privacy',
                    447:                   header => [{col1 => 'Setting',
                    448:                               col2 => 'Value',}],
1.230     raeburn   449:                   print => \&print_privacy,
                    450:                   modify => \&modify_privacy,
1.120     raeburn   451:                  },
1.141     raeburn   452:         'usersessions' =>
1.145     raeburn   453:                  {text  => 'User session hosting/offloading',
1.137     raeburn   454:                   help  => 'Domain_Configuration_User_Sessions',
1.145     raeburn   455:                   header => [{col1 => 'Domain server',
                    456:                               col2 => 'Servers to offload sessions to when busy'},
                    457:                              {col1 => 'Hosting of users from other domains',
1.137     raeburn   458:                               col2 => 'Rules'},
                    459:                              {col1 => "Hosting domain's own users elsewhere",
                    460:                               col2 => 'Rules'}],
1.230     raeburn   461:                   print => \&print_usersessions,
                    462:                   modify => \&modify_usersessions,
1.137     raeburn   463:                  },
1.150     raeburn   464:          'loadbalancing' =>
1.185     raeburn   465:                  {text  => 'Dedicated Load Balancer(s)',
1.150     raeburn   466:                   help  => 'Domain_Configuration_Load_Balancing',
1.171     raeburn   467:                   header => [{col1 => 'Balancers',
1.150     raeburn   468:                               col2 => 'Default destinations',
1.183     bisitz    469:                               col3 => 'User affiliation',
1.150     raeburn   470:                               col4 => 'Overrides'},
                    471:                             ],
1.230     raeburn   472:                   print => \&print_loadbalancing,
                    473:                   modify => \&modify_loadbalancing,
1.150     raeburn   474:                  },
1.3       raeburn   475:     );
1.110     raeburn   476:     if (keys(%servers) > 1) {
                    477:         $prefs{'login'}  = { text   => 'Log-in page options',
                    478:                              help   => 'Domain_Configuration_Login_Page',
                    479:                             header => [{col1 => 'Log-in Service',
                    480:                                         col2 => 'Server Setting',},
                    481:                                        {col1 => 'Log-in Page Items',
1.168     raeburn   482:                                         col2 => ''},
                    483:                                        {col1 => 'Log-in Help',
1.256     raeburn   484:                                         col2 => 'Value'},
                    485:                                        {col1 => 'Custom HTML in document head',
1.168     raeburn   486:                                         col2 => 'Value'}],
1.230     raeburn   487:                             print => \&print_login,
                    488:                             modify => \&modify_login,
1.110     raeburn   489:                            };
                    490:     }
1.174     foxr      491: 
1.6       raeburn   492:     my @roles = ('student','coordinator','author','admin');
1.30      raeburn   493:     my @actions = &Apache::loncommon::get_env_multiple('form.actions');
1.3       raeburn   494:     &Apache::lonhtmlcommon::add_breadcrumb
1.30      raeburn   495:     ({href=>"javascript:changePage(document.$phase,'pickactions')",
1.133     raeburn   496:       text=>"Settings to display/modify"});
1.9       raeburn   497:     my $confname = $dom.'-domainconfig';
1.174     foxr      498: 
1.3       raeburn   499:     if ($phase eq 'process') {
1.212     raeburn   500:         my $result = &Apache::lonconfigsettings::make_changes($r,$dom,$phase,$context,\@prefs_order,
                    501:                                                               \%prefs,\%domconfig,$confname,\@roles);
1.224     raeburn   502:         if ((ref($result) eq 'HASH') && (keys(%{$result}))) {
1.205     raeburn   503:             $r->rflush();
1.212     raeburn   504:             &devalidate_remote_domconfs($dom,$result);
1.205     raeburn   505:         }
1.30      raeburn   506:     } elsif ($phase eq 'display') {
1.192     raeburn   507:         my $js = &recaptcha_js().
1.236     raeburn   508:                  &toggle_display_js();
1.171     raeburn   509:         if ((keys(%servers) > 1) || (keys(%existing) > 0)) {
1.152     raeburn   510:             my ($othertitle,$usertypes,$types) =
                    511:                 &Apache::loncommon::sorted_inst_types($dom);
1.171     raeburn   512:             $js .= &lonbalance_targets_js($dom,$types,\%servers,
                    513:                                           $domconfig{'loadbalancing'}).
1.170     raeburn   514:                    &new_spares_js().
                    515:                    &common_domprefs_js().
                    516:                    &Apache::loncommon::javascript_array_indexof();
1.152     raeburn   517:         }
1.216     raeburn   518:         if (grep(/^requestcourses$/,@actions)) {
                    519:             my $javascript_validations;
                    520:             my $coursebrowserjs=&Apache::loncommon::coursebrowser_javascript($env{'request.role.domain'}); 
                    521:             $js .= <<END;
                    522: <script type="text/javascript">
                    523: $javascript_validations
                    524: </script>
                    525: $coursebrowserjs
                    526: END
                    527:         }
1.150     raeburn   528:         &Apache::lonconfigsettings::display_settings($r,$dom,$phase,$context,\@prefs_order,\%prefs,\%domconfig,$confname,$js);
1.1       raeburn   529:     } else {
1.180     raeburn   530: # check if domconfig user exists for the domain.
                    531:         my $servadm = $r->dir_config('lonAdmEMail');
                    532:         my ($configuserok,$author_ok,$switchserver) =
                    533:             &config_check($dom,$confname,$servadm);
                    534:         unless ($configuserok eq 'ok') {
1.181     raeburn   535:             &Apache::lonconfigsettings::print_header($r,$phase,$context);
                    536:             $r->print(&mt('The domain configuration user "[_1]" has yet to be created.',
1.210     raeburn   537:                           $confname).
1.181     raeburn   538:                       '<br />'
                    539:             );
1.180     raeburn   540:             if ($switchserver) {
1.181     raeburn   541:                 $r->print(&mt('Ordinarily, that domain configuration user is created when the ./UPDATE script is run to install LON-CAPA for the first time.').
                    542:                           '<br />'.
                    543:                           &mt('However, that does not apply when new domains are added to a multi-domain server, and ./UPDATE has not been run recently.').
                    544:                           '<br />'.
                    545:                           &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).
                    546:                           '<br />'.
                    547:                           &mt('To do that now, use the following link: [_1]',$switchserver)
                    548:                 );
                    549:             } else {
                    550:                 $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.').
                    551:                           '<br />'.
                    552:                           &mt('Once that is done, you will be able to use the web-based "Set domain configuration" to configure the domain')
                    553:                 );
1.180     raeburn   554:             }
                    555:             $r->print(&Apache::loncommon::end_page());
                    556:             return OK;
                    557:         }
1.21      raeburn   558:         if (keys(%domconfig) == 0) {
                    559:             my $primarylibserv = &Apache::lonnet::domain($dom,'primary');
1.29      raeburn   560:             my @ids=&Apache::lonnet::current_machine_ids();
                    561:             if (!grep(/^\Q$primarylibserv\E$/,@ids)) {
1.21      raeburn   562:                 my %designhash = &Apache::loncommon::get_domainconf($dom);
1.41      raeburn   563:                 my @loginimages = ('img','logo','domlogo','login');
1.21      raeburn   564:                 my $custom_img_count = 0;
                    565:                 foreach my $img (@loginimages) {
                    566:                     if ($designhash{$dom.'.login.'.$img} ne '') {
                    567:                         $custom_img_count ++;
                    568:                     }
                    569:                 }
                    570:                 foreach my $role (@roles) {
                    571:                     if ($designhash{$dom.'.'.$role.'.img'} ne '') {
                    572:                         $custom_img_count ++;
                    573:                     }
                    574:                 }
                    575:                 if ($custom_img_count > 0) {
1.94      raeburn   576:                     &Apache::lonconfigsettings::print_header($r,$phase,$context);
1.21      raeburn   577:                     my $switch_server = &check_switchserver($dom,$confname);
1.29      raeburn   578:                     $r->print(
                    579:     &mt('Domain configuration settings have yet to be saved for this domain via the web-based domain preferences interface.').'<br />'.
                    580:     &mt("While this remains so, you must switch to the domain's primary library server in order to update settings.").'<br /><br />'.
                    581:     &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 />'.
                    582:     &mt("However, you will still need to switch to the domain's primary library server to upload new images or logos.").'<br /><br />');
                    583:                     if ($switch_server) {
1.30      raeburn   584:                         $r->print($switch_server.' '.&mt('to primary library server for domain: [_1]',$dom));
1.29      raeburn   585:                     }
1.91      raeburn   586:                     $r->print(&Apache::loncommon::end_page());
1.21      raeburn   587:                     return OK;
                    588:                 }
                    589:             }
                    590:         }
1.91      raeburn   591:         &Apache::lonconfigsettings::display_choices($r,$phase,$context,\@prefs_order,\%prefs);
1.3       raeburn   592:     }
                    593:     return OK;
                    594: }
                    595: 
                    596: sub process_changes {
1.205     raeburn   597:     my ($r,$dom,$confname,$action,$roles,$values,$lastactref) = @_;
1.92      raeburn   598:     my %domconfig;
                    599:     if (ref($values) eq 'HASH') {
                    600:         %domconfig = %{$values};
                    601:     }
1.3       raeburn   602:     my $output;
                    603:     if ($action eq 'login') {
1.205     raeburn   604:         $output = &modify_login($r,$dom,$confname,$lastactref,%domconfig);
1.6       raeburn   605:     } elsif ($action eq 'rolecolors') {
1.9       raeburn   606:         $output = &modify_rolecolors($r,$dom,$confname,$roles,
1.205     raeburn   607:                                      $lastactref,%domconfig);
1.3       raeburn   608:     } elsif ($action eq 'quotas') {
1.216     raeburn   609:         $output = &modify_quotas($r,$dom,$action,$lastactref,%domconfig);
1.3       raeburn   610:     } elsif ($action eq 'autoenroll') {
1.205     raeburn   611:         $output = &modify_autoenroll($dom,$lastactref,%domconfig);
1.3       raeburn   612:     } elsif ($action eq 'autoupdate') {
                    613:         $output = &modify_autoupdate($dom,%domconfig);
1.125     raeburn   614:     } elsif ($action eq 'autocreate') {
                    615:         $output = &modify_autocreate($dom,%domconfig);
1.23      raeburn   616:     } elsif ($action eq 'directorysrch') {
                    617:         $output = &modify_directorysrch($dom,%domconfig);
1.27      raeburn   618:     } elsif ($action eq 'usercreation') {
1.28      raeburn   619:         $output = &modify_usercreation($dom,%domconfig);
1.224     raeburn   620:     } elsif ($action eq 'selfcreation') {
                    621:         $output = &modify_selfcreation($dom,%domconfig);
1.33      raeburn   622:     } elsif ($action eq 'usermodification') {
                    623:         $output = &modify_usermodification($dom,%domconfig);
1.28      raeburn   624:     } elsif ($action eq 'contacts') {
1.205     raeburn   625:         $output = &modify_contacts($dom,$lastactref,%domconfig);
1.43      raeburn   626:     } elsif ($action eq 'defaults') {
1.212     raeburn   627:         $output = &modify_defaults($dom,$lastactref,%domconfig);
1.46      raeburn   628:     } elsif ($action eq 'scantron') {
1.205     raeburn   629:         $output = &modify_scantron($r,$dom,$confname,$lastactref,%domconfig);
1.48      raeburn   630:     } elsif ($action eq 'coursecategories') {
1.239     raeburn   631:         $output = &modify_coursecategories($dom,$lastactref,%domconfig);
1.69      raeburn   632:     } elsif ($action eq 'serverstatuses') {
                    633:         $output = &modify_serverstatuses($dom,%domconfig);
1.86      raeburn   634:     } elsif ($action eq 'requestcourses') {
1.216     raeburn   635:         $output = &modify_quotas($r,$dom,$action,$lastactref,%domconfig);
1.163     raeburn   636:     } elsif ($action eq 'requestauthor') {
1.216     raeburn   637:         $output = &modify_quotas($r,$dom,$action,$lastactref,%domconfig);
1.118     jms       638:     } elsif ($action eq 'helpsettings') {
1.122     jms       639:         $output = &modify_helpsettings($r,$dom,$confname,%domconfig);
1.121     raeburn   640:     } elsif ($action eq 'coursedefaults') {
1.212     raeburn   641:         $output = &modify_coursedefaults($dom,$lastactref,%domconfig);
1.231     raeburn   642:     } elsif ($action eq 'selfenrollment') {
                    643:         $output = &modify_selfenrollment($dom,$lastactref,%domconfig)
1.137     raeburn   644:     } elsif ($action eq 'usersessions') {
1.212     raeburn   645:         $output = &modify_usersessions($dom,$lastactref,%domconfig);
1.150     raeburn   646:     } elsif ($action eq 'loadbalancing') {
                    647:         $output = &modify_loadbalancing($dom,%domconfig);
1.3       raeburn   648:     }
                    649:     return $output;
                    650: }
                    651: 
                    652: sub print_config_box {
1.9       raeburn   653:     my ($r,$dom,$confname,$phase,$action,$item,$settings) = @_;
1.30      raeburn   654:     my $rowtotal = 0;
1.49      raeburn   655:     my $output;
                    656:     if ($action eq 'coursecategories') {
                    657:         $output = &coursecategories_javascript($settings);
1.236     raeburn   658:     } elsif ($action eq 'defaults') {
                    659:         $output = &defaults_javascript($settings); 
1.91      raeburn   660:     }
1.236     raeburn   661:     $output .=
1.30      raeburn   662:          '<table class="LC_nested_outer">
1.3       raeburn   663:           <tr>
1.66      raeburn   664:            <th align="left" valign="middle"><span class="LC_nobreak">'.
                    665:            &mt($item->{text}).'&nbsp;'.
                    666:            &Apache::loncommon::help_open_topic($item->{'help'}).'</span></th>'."\n".
                    667:           '</tr>';
1.30      raeburn   668:     $rowtotal ++;
1.110     raeburn   669:     my $numheaders = 1;
                    670:     if (ref($item->{'header'}) eq 'ARRAY') {
                    671:         $numheaders = scalar(@{$item->{'header'}});
                    672:     }
                    673:     if ($numheaders > 1) {
1.64      raeburn   674:         my $colspan = '';
1.145     raeburn   675:         my $rightcolspan = '';
1.238     raeburn   676:         if (($action eq 'rolecolors') || ($action eq 'defaults') ||
1.256     raeburn   677:             (($action eq 'login') && ($numheaders < 4))) {
1.64      raeburn   678:             $colspan = ' colspan="2"';
                    679:         }
1.145     raeburn   680:         if ($action eq 'usersessions') {
                    681:             $rightcolspan = ' colspan="3"'; 
                    682:         }
1.30      raeburn   683:         $output .= '
1.3       raeburn   684:           <tr>
                    685:            <td>
                    686:             <table class="LC_nested">
                    687:              <tr class="LC_info_row">
1.59      bisitz    688:               <td class="LC_left_item"'.$colspan.'>'.&mt($item->{'header'}->[0]->{'col1'}).'</td>
1.145     raeburn   689:               <td class="LC_right_item"'.$rightcolspan.'>'.&mt($item->{'header'}->[0]->{'col2'}).'</td>
1.30      raeburn   690:              </tr>';
1.69      raeburn   691:         $rowtotal ++;
1.230     raeburn   692:         if (($action eq 'autoupdate') || ($action eq 'usercreation') || ($action eq 'selfcreation') ||
1.236     raeburn   693:             ($action eq 'usermodification') || ($action eq 'defaults') || ($action eq 'coursedefaults') ||
1.230     raeburn   694:             ($action eq 'selfenrollment') || ($action eq 'usersessions')) {
                    695:             $output .= $item->{'print'}->('top',$dom,$settings,\$rowtotal);
1.57      raeburn   696:         } elsif ($action eq 'coursecategories') {
1.230     raeburn   697:             $output .= $item->{'print'}->('top',$dom,$item,$settings,\$rowtotal);
1.110     raeburn   698:         } elsif ($action eq 'login') {
1.256     raeburn   699:             if ($numheaders == 4) {
1.168     raeburn   700:                 $colspan = ' colspan="2"';
                    701:                 $output .= &print_login('service',$dom,$confname,$phase,$settings,\$rowtotal);
                    702:             } else {
                    703:                 $output .= &print_login('page',$dom,$confname,$phase,$settings,\$rowtotal);
                    704:             }
1.230     raeburn   705:         } elsif (($action eq 'requestcourses') || ($action eq 'requestauthor')) {
1.163     raeburn   706:             $output .= &print_quotas($dom,$settings,\$rowtotal,$action);
1.122     jms       707:         } elsif ($action eq 'rolecolors') {
1.30      raeburn   708:             $output .= &print_rolecolors($phase,'student',$dom,$confname,$settings,\$rowtotal);
1.6       raeburn   709:         }
1.30      raeburn   710:         $output .= '
1.6       raeburn   711:            </table>
                    712:           </td>
                    713:          </tr>
                    714:          <tr>
                    715:            <td>
                    716:             <table class="LC_nested">
                    717:              <tr class="LC_info_row">
1.230     raeburn   718:               <td class="LC_left_item"'.$colspan.'>'.&mt($item->{'header'}->[1]->{'col1'}).'</td>
1.59      bisitz    719:               <td class="LC_right_item"'.$colspan.'>'.&mt($item->{'header'}->[1]->{'col2'}).'</td>
1.30      raeburn   720:              </tr>';
                    721:             $rowtotal ++;
1.230     raeburn   722:         if (($action eq 'autoupdate') || ($action eq 'usercreation') ||
                    723:             ($action eq 'selfcreation') || ($action eq 'selfenrollment') ||
1.238     raeburn   724:             ($action eq 'usersessions') || ($action eq 'coursecategories')) {
                    725:             if ($action eq 'coursecategories') {
                    726:                 $output .= &print_coursecategories('middle',$dom,$item,$settings,\$rowtotal);
                    727:                 $colspan = ' colspan="2"';
                    728:             } else {
                    729:                 $output .= $item->{'print'}->('middle',$dom,$settings,\$rowtotal);
                    730:             }
                    731:             $output .= '
1.63      raeburn   732:            </table>
                    733:           </td>
                    734:          </tr>
                    735:          <tr>
                    736:            <td>
                    737:             <table class="LC_nested">
                    738:              <tr class="LC_info_row">
                    739:               <td class="LC_left_item"'.$colspan.'>'.&mt($item->{'header'}->[2]->{'col1'}).'</td>
1.224     raeburn   740:               <td class="LC_right_item">'.&mt($item->{'header'}->[2]->{'col2'}).'</td>
1.238     raeburn   741:              </tr>'."\n";
                    742:             if ($action eq 'coursecategories') {
                    743:                 $output .= &print_coursecategories('bottom',$dom,$item,$settings,\$rowtotal);
                    744:             } else {
                    745:                 $output .= $item->{'print'}->('bottom',$dom,$settings,\$rowtotal);
                    746:             }
1.63      raeburn   747:             $rowtotal ++;
1.236     raeburn   748:         } elsif (($action eq 'usermodification') || ($action eq 'coursedefaults') ||
                    749:                   ($action eq 'defaults')) {
1.230     raeburn   750:             $output .= $item->{'print'}->('bottom',$dom,$settings,\$rowtotal);
1.110     raeburn   751:         } elsif ($action eq 'login') {
1.256     raeburn   752:             if ($numheaders == 4) {
1.168     raeburn   753:                 $output .= &print_login('page',$dom,$confname,$phase,$settings,\$rowtotal).'
                    754:            </table>
                    755:           </td>
                    756:          </tr>
                    757:          <tr>
                    758:            <td>
                    759:             <table class="LC_nested">
                    760:              <tr class="LC_info_row">
                    761:               <td class="LC_left_item"'.$colspan.'>'.&mt($item->{'header'}->[2]->{'col1'}).'</td>
1.216     raeburn   762:               <td class="LC_right_item"'.$colspan.'>'.&mt($item->{'header'}->[2]->{'col2'}).'</td></tr>'.
1.168     raeburn   763:                        &print_login('help',$dom,$confname,$phase,$settings,\$rowtotal);
                    764:                 $rowtotal ++;
                    765:             } else {
                    766:                 $output .= &print_login('help',$dom,$confname,$phase,$settings,\$rowtotal);
                    767:             }
1.256     raeburn   768:             $output .= '
                    769:            </table>
                    770:           </td>
                    771:          </tr>
                    772:          <tr>
                    773:            <td>
                    774:             <table class="LC_nested">
                    775:              <tr class="LC_info_row">';
                    776:             if ($numheaders == 4) {
                    777:                 $output .= '
                    778:               <td class="LC_left_item"'.$colspan.'>'.&mt($item->{'header'}->[3]->{'col1'}).'</td>
                    779:               <td class="LC_right_item"'.$colspan.'>'.&mt($item->{'header'}->[3]->{'col2'}).'</td>
                    780:              </tr>';
                    781:             } else {
                    782:                 $output .= '
                    783:               <td class="LC_left_item"'.$colspan.'>'.&mt($item->{'header'}->[2]->{'col1'}).'</td>
                    784:               <td class="LC_right_item"'.$colspan.'>'.&mt($item->{'header'}->[2]->{'col2'}).'</td>
                    785:              </tr>';
                    786:             }
                    787:             $rowtotal ++;
                    788:             $output .= &print_login('headtag',$dom,$confname,$phase,$settings,\$rowtotal);
1.102     raeburn   789:         } elsif ($action eq 'requestcourses') {
1.247     raeburn   790:             $output .= &print_requestmail($dom,$action,$settings,\$rowtotal);
                    791:             $rowtotal ++;
                    792:             $output .= &print_studentcode($settings,\$rowtotal).'
1.216     raeburn   793:            </table>
                    794:           </td>
                    795:          </tr>
                    796:          <tr>
                    797:            <td>
                    798:             <table class="LC_nested">
                    799:              <tr class="LC_info_row">
                    800:               <td class="LC_left_item"'.$colspan.'>'.&mt($item->{'header'}->[2]->{'col1'}).'</td>
                    801:               <td class="LC_right_item">'.&mt($item->{'header'}->[2]->{'col2'}).'</td> </tr>'.
1.242     raeburn   802:                        &textbookcourses_javascript($settings).
                    803:                        &print_textbookcourses($dom,'textbooks',$settings,\$rowtotal).'
                    804:             </table>
                    805:            </td>
                    806:           </tr>
                    807:          <tr>
                    808:            <td>
                    809:             <table class="LC_nested">
                    810:              <tr class="LC_info_row">
                    811:               <td class="LC_left_item"'.$colspan.'>'.&mt($item->{'header'}->[3]->{'col1'}).'</td>
                    812:               <td class="LC_right_item">'.&mt($item->{'header'}->[3]->{'col2'}).'</td> </tr>'.
                    813:                        &print_textbookcourses($dom,'templates',$settings,\$rowtotal).'
1.235     raeburn   814:             </table>
                    815:            </td>
                    816:           </tr>
                    817:           <tr>
                    818:            <td>
                    819:             <table class="LC_nested">
                    820:              <tr class="LC_info_row">
1.242     raeburn   821:               <td class="LC_left_item"'.$colspan.' valign="top">'.&mt($item->{'header'}->[4]->{'col1'}).'</td>
                    822:               <td class="LC_right_item" valign="top">'.&mt($item->{'header'}->[4]->{'col2'}).'</td>
1.235     raeburn   823:              </tr>'.
                    824:             &print_validation_rows('requestcourses',$dom,$settings,\$rowtotal);
1.163     raeburn   825:         } elsif ($action eq 'requestauthor') {
                    826:             $output .= &print_requestmail($dom,$action,$settings,\$rowtotal);
1.247     raeburn   827:             $rowtotal ++;
1.122     jms       828:         } elsif ($action eq 'rolecolors') {
1.30      raeburn   829:             $output .= &print_rolecolors($phase,'coordinator',$dom,$confname,$settings,\$rowtotal).'
1.6       raeburn   830:            </table>
                    831:           </td>
                    832:          </tr>
                    833:          <tr>
                    834:            <td>
                    835:             <table class="LC_nested">
                    836:              <tr class="LC_info_row">
1.69      raeburn   837:               <td class="LC_left_item"'.$colspan.' valign="top">'.
                    838:                &mt($item->{'header'}->[2]->{'col1'}).'</td>
                    839:               <td class="LC_right_item" valign="top">'.
                    840:                &mt($item->{'header'}->[2]->{'col2'}).'</td>
1.3       raeburn   841:              </tr>'.
1.30      raeburn   842:             &print_rolecolors($phase,'author',$dom,$confname,$settings,\$rowtotal).'
1.3       raeburn   843:            </table>
                    844:           </td>
                    845:          </tr>
                    846:          <tr>
                    847:            <td>
                    848:             <table class="LC_nested">
                    849:              <tr class="LC_info_row">
1.59      bisitz    850:               <td class="LC_left_item"'.$colspan.'>'.&mt($item->{'header'}->[3]->{'col1'}).'</td>
                    851:               <td class="LC_right_item">'.&mt($item->{'header'}->[3]->{'col2'}).'</td>
1.3       raeburn   852:              </tr>'.
1.30      raeburn   853:             &print_rolecolors($phase,'admin',$dom,$confname,$settings,\$rowtotal);
                    854:             $rowtotal += 2;
1.6       raeburn   855:         }
1.3       raeburn   856:     } else {
1.30      raeburn   857:         $output .= '
1.3       raeburn   858:           <tr>
                    859:            <td>
                    860:             <table class="LC_nested">
1.30      raeburn   861:              <tr class="LC_info_row">';
1.24      raeburn   862:         if (($action eq 'login') || ($action eq 'directorysrch')) {
1.30      raeburn   863:             $output .= '  
1.59      bisitz    864:               <td class="LC_left_item" colspan="2">'.&mt($item->{'header'}->[0]->{'col1'}).'</td>';
1.69      raeburn   865:         } elsif ($action eq 'serverstatuses') {
                    866:             $output .= '
                    867:               <td class="LC_left_item" valign="top">'.&mt($item->{'header'}->[0]->{'col1'}).
                    868:               '<br />('.&mt('Automatic access for Dom. Coords.').')</td>';
                    869: 
1.6       raeburn   870:         } else {
1.30      raeburn   871:             $output .= '
1.69      raeburn   872:               <td class="LC_left_item" valign="top">'.&mt($item->{'header'}->[0]->{'col1'}).'</td>';
                    873:         }
1.72      raeburn   874:         if (defined($item->{'header'}->[0]->{'col3'})) {
                    875:             $output .= '<td class="LC_left_item" valign="top">'.
                    876:                        &mt($item->{'header'}->[0]->{'col2'});
                    877:             if ($action eq 'serverstatuses') {
                    878:                 $output .= '<br />(<tt>'.&mt('user1:domain1,user2:domain2 etc.').'</tt>)';
                    879:             } 
1.69      raeburn   880:         } else {
                    881:             $output .= '<td class="LC_right_item" valign="top">'.
                    882:                        &mt($item->{'header'}->[0]->{'col2'});
                    883:         }
                    884:         $output .= '</td>';
                    885:         if ($item->{'header'}->[0]->{'col3'}) {
1.150     raeburn   886:             if (defined($item->{'header'}->[0]->{'col4'})) {
                    887:                 $output .= '<td class="LC_left_item" valign="top">'.
                    888:                             &mt($item->{'header'}->[0]->{'col3'});
                    889:             } else {
                    890:                 $output .= '<td class="LC_right_item" valign="top">'.
                    891:                            &mt($item->{'header'}->[0]->{'col3'});
                    892:             }
1.69      raeburn   893:             if ($action eq 'serverstatuses') {
                    894:                 $output .= '<br />(<tt>'.&mt('IP1,IP2 etc.').'</tt>)';
                    895:             }
                    896:             $output .= '</td>';
1.6       raeburn   897:         }
1.150     raeburn   898:         if ($item->{'header'}->[0]->{'col4'}) {
                    899:             $output .= '<td class="LC_right_item" valign="top">'.
                    900:                        &mt($item->{'header'}->[0]->{'col4'});
                    901:         }
1.69      raeburn   902:         $output .= '</tr>';
1.48      raeburn   903:         $rowtotal ++;
1.168     raeburn   904:         if ($action eq 'quotas') {
1.86      raeburn   905:             $output .= &print_quotas($dom,$settings,\$rowtotal,$action);
1.230     raeburn   906:         } elsif (($action eq 'autoenroll') || ($action eq 'autocreate') || ($action eq 'directorysrch') ||
1.236     raeburn   907:                  ($action eq 'contacts') || ($action eq 'serverstatuses') || ($action eq 'loadbalancing')) {
1.230     raeburn   908:             $output .= $item->{'print'}->($dom,$settings,\$rowtotal);
1.46      raeburn   909:         } elsif ($action eq 'scantron') {
                    910:             $output .= &print_scantronformat($r,$dom,$confname,$settings,\$rowtotal);
1.118     jms       911:         } elsif ($action eq 'helpsettings') {
1.168     raeburn   912:             $output .= &print_helpsettings($dom,$confname,$settings,\$rowtotal);
1.121     raeburn   913:         }
1.3       raeburn   914:     }
1.30      raeburn   915:     $output .= '
1.3       raeburn   916:    </table>
                    917:   </td>
                    918:  </tr>
1.30      raeburn   919: </table><br />';
                    920:     return ($output,$rowtotal);
1.1       raeburn   921: }
                    922: 
1.3       raeburn   923: sub print_login {
1.168     raeburn   924:     my ($caller,$dom,$confname,$phase,$settings,$rowtotal) = @_;
1.110     raeburn   925:     my ($css_class,$datatable);
1.6       raeburn   926:     my %choices = &login_choices();
1.110     raeburn   927: 
1.168     raeburn   928:     if ($caller eq 'service') {
1.149     raeburn   929:         my %servers = &Apache::lonnet::internet_dom_servers($dom);
1.110     raeburn   930:         my $choice = $choices{'disallowlogin'};
                    931:         $css_class = ' class="LC_odd_row"';
1.128     raeburn   932:         $datatable .= '<tr'.$css_class.'><td>'.$choice.'</td>'.
1.110     raeburn   933:                       '<td align="right"><table><tr><th>'.$choices{'hostid'}.'</th>'.
1.128     raeburn   934:                       '<th>'.$choices{'server'}.'</th>'.
                    935:                       '<th>'.$choices{'serverpath'}.'</th>'.
                    936:                       '<th>'.$choices{'custompath'}.'</th>'.
                    937:                       '<th><span class="LC_nobreak">'.$choices{'exempt'}.'</span></th></tr>'."\n";
1.110     raeburn   938:         my %disallowed;
                    939:         if (ref($settings) eq 'HASH') {
                    940:             if (ref($settings->{'loginvia'}) eq 'HASH') {
                    941:                %disallowed = %{$settings->{'loginvia'}};
                    942:             }
                    943:         }
                    944:         foreach my $lonhost (sort(keys(%servers))) {
                    945:             my $direct = 'selected="selected"';
1.128     raeburn   946:             if (ref($disallowed{$lonhost}) eq 'HASH') {
                    947:                 if ($disallowed{$lonhost}{'server'} ne '') {
                    948:                     $direct = '';
                    949:                 }
1.110     raeburn   950:             }
1.115     raeburn   951:             $datatable .= '<tr><td>'.$servers{$lonhost}.'</td>'.
1.128     raeburn   952:                           '<td><select name="'.$lonhost.'_server">'.
1.110     raeburn   953:                           '<option value=""'.$direct.'>'.$choices{'directlogin'}.
                    954:                           '</option>';
1.184     raeburn   955:             foreach my $hostid (sort(keys(%servers))) {
1.115     raeburn   956:                 next if ($servers{$hostid} eq $servers{$lonhost});
1.110     raeburn   957:                 my $selected = '';
1.128     raeburn   958:                 if (ref($disallowed{$lonhost}) eq 'HASH') {
                    959:                     if ($hostid eq $disallowed{$lonhost}{'server'}) {
                    960:                         $selected = 'selected="selected"';
                    961:                     }
1.110     raeburn   962:                 }
                    963:                 $datatable .= '<option value="'.$hostid.'"'.$selected.'>'.
                    964:                               $servers{$hostid}.'</option>';
                    965:             }
1.128     raeburn   966:             $datatable .= '</select></td>'.
                    967:                           '<td><select name="'.$lonhost.'_serverpath">';
                    968:             foreach my $path ('','/','/adm/login','/adm/roles','custom') {
                    969:                 my $pathname = $path;
                    970:                 if ($path eq 'custom') {
                    971:                     $pathname = &mt('Custom Path').' ->';
                    972:                 }
                    973:                 my $selected = '';
                    974:                 if (ref($disallowed{$lonhost}) eq 'HASH') {
                    975:                     if ($path eq $disallowed{$lonhost}{'serverpath'}) {
                    976:                         $selected = 'selected="selected"';
                    977:                     }
                    978:                 } elsif ($path eq '') {
                    979:                     $selected = 'selected="selected"';
                    980:                 }
                    981:                 $datatable .= '<option value="'.$path.'"'.$selected.'>'.$pathname.'</option>';
                    982:             }
                    983:             $datatable .= '</select></td>';
                    984:             my ($custom,$exempt);
                    985:             if (ref($disallowed{$lonhost}) eq 'HASH') {
                    986:                 $custom = $disallowed{$lonhost}{'custompath'};
                    987:                 $exempt = $disallowed{$lonhost}{'exempt'};
                    988:             }
                    989:             $datatable .= '<td><input type="text" name="'.$lonhost.'_custompath" size="6" value="'.$custom.'" /></td>'.
                    990:                           '<td><input type="text" name="'.$lonhost.'_exempt" size="8" value="'.$exempt.'" /></td>'.
                    991:                           '</tr>';
1.110     raeburn   992:         }
                    993:         $datatable .= '</table></td></tr>';
                    994:         return $datatable;
1.168     raeburn   995:     } elsif ($caller eq 'page') {
                    996:         my %defaultchecked = ( 
                    997:                                'coursecatalog' => 'on',
1.188     raeburn   998:                                'helpdesk'      => 'on',
1.168     raeburn   999:                                'adminmail'     => 'off',
                   1000:                                'newuser'       => 'off',
                   1001:                              );
1.188     raeburn  1002:         my @toggles = ('coursecatalog','adminmail','helpdesk','newuser');
1.168     raeburn  1003:         my (%checkedon,%checkedoff);
1.42      raeburn  1004:         foreach my $item (@toggles) {
1.168     raeburn  1005:             if ($defaultchecked{$item} eq 'on') { 
                   1006:                 $checkedon{$item} = ' checked="checked" ';
1.42      raeburn  1007:                 $checkedoff{$item} = ' ';
1.168     raeburn  1008:             } elsif ($defaultchecked{$item} eq 'off') {
                   1009:                 $checkedoff{$item} = ' checked="checked" ';
1.42      raeburn  1010:                 $checkedon{$item} = ' ';
                   1011:             }
1.1       raeburn  1012:         }
1.168     raeburn  1013:         my @images = ('img','logo','domlogo','login');
                   1014:         my @logintext = ('textcol','bgcol');
                   1015:         my @bgs = ('pgbg','mainbg','sidebg');
                   1016:         my @links = ('link','alink','vlink');
                   1017:         my %designhash = &Apache::loncommon::get_domainconf($dom);
                   1018:         my %defaultdesign = %Apache::loncommon::defaultdesign;
                   1019:         my (%is_custom,%designs);
                   1020:         my %defaults = (
                   1021:                        font => $defaultdesign{'login.font'},
                   1022:                        );
1.6       raeburn  1023:         foreach my $item (@images) {
1.168     raeburn  1024:             $defaults{$item} = $defaultdesign{'login.'.$item};
                   1025:             $defaults{'showlogo'}{$item} = 1;
                   1026:         }
                   1027:         foreach my $item (@bgs) {
                   1028:             $defaults{'bgs'}{$item} = $defaultdesign{'login.'.$item};
1.6       raeburn  1029:         }
1.41      raeburn  1030:         foreach my $item (@logintext) {
1.168     raeburn  1031:             $defaults{'logintext'}{$item} = $defaultdesign{'login.'.$item};
1.41      raeburn  1032:         }
1.168     raeburn  1033:         foreach my $item (@links) {
                   1034:             $defaults{'links'}{$item} = $defaultdesign{'login.'.$item};
1.6       raeburn  1035:         }
1.168     raeburn  1036:         if (ref($settings) eq 'HASH') {
                   1037:             foreach my $item (@toggles) {
                   1038:                 if ($settings->{$item} eq '1') {
                   1039:                     $checkedon{$item} =  ' checked="checked" ';
                   1040:                     $checkedoff{$item} = ' ';
                   1041:                 } elsif ($settings->{$item} eq '0') {
                   1042:                     $checkedoff{$item} =  ' checked="checked" ';
                   1043:                     $checkedon{$item} = ' ';
                   1044:                 }
                   1045:             }
                   1046:             foreach my $item (@images) {
                   1047:                 if (defined($settings->{$item})) {
                   1048:                     $designs{$item} = $settings->{$item};
                   1049:                     $is_custom{$item} = 1;
                   1050:                 }
                   1051:                 if (defined($settings->{'showlogo'}{$item})) {
                   1052:                     $designs{'showlogo'}{$item} = $settings->{'showlogo'}{$item};
                   1053:                 }
                   1054:             }
                   1055:             foreach my $item (@logintext) {
                   1056:                 if ($settings->{$item} ne '') {
                   1057:                     $designs{'logintext'}{$item} = $settings->{$item};
                   1058:                     $is_custom{$item} = 1;
                   1059:                 }
                   1060:             }
                   1061:             if ($settings->{'font'} ne '') {
                   1062:                 $designs{'font'} = $settings->{'font'};
                   1063:                 $is_custom{'font'} = 1;
                   1064:             }
                   1065:             foreach my $item (@bgs) {
                   1066:                 if ($settings->{$item} ne '') {
                   1067:                     $designs{'bgs'}{$item} = $settings->{$item};
                   1068:                     $is_custom{$item} = 1;
                   1069:                 }
                   1070:             }
                   1071:             foreach my $item (@links) {
                   1072:                 if ($settings->{$item} ne '') {
                   1073:                     $designs{'links'}{$item} = $settings->{$item};
                   1074:                     $is_custom{$item} = 1;
                   1075:                 }
                   1076:             }
                   1077:         } else {
                   1078:             if ($designhash{$dom.'.login.font'} ne '') {
                   1079:                 $designs{'font'} = $designhash{$dom.'.login.font'};
                   1080:                 $is_custom{'font'} = 1;
                   1081:             }
                   1082:             foreach my $item (@images) {
                   1083:                 if ($designhash{$dom.'.login.'.$item} ne '') {
                   1084:                     $designs{$item} = $designhash{$dom.'.login.'.$item};
                   1085:                     $is_custom{$item} = 1;
                   1086:                 }
                   1087:             }
                   1088:             foreach my $item (@bgs) {
                   1089:                 if ($designhash{$dom.'.login.'.$item} ne '') {
                   1090:                     $designs{'bgs'}{$item} = $designhash{$dom.'.login.'.$item};
                   1091:                     $is_custom{$item} = 1;
                   1092:                 }
1.6       raeburn  1093:             }
1.168     raeburn  1094:             foreach my $item (@links) {
                   1095:                 if ($designhash{$dom.'.login.'.$item} ne '') {
                   1096:                     $designs{'links'}{$item} = $designhash{$dom.'.login.'.$item};
                   1097:                     $is_custom{$item} = 1;
                   1098:                 }
1.6       raeburn  1099:             }
                   1100:         }
1.168     raeburn  1101:         my %alt_text = &Apache::lonlocal::texthash  ( img => 'Log-in banner',
                   1102:                                                       logo => 'Institution Logo',
                   1103:                                                       domlogo => 'Domain Logo',
                   1104:                                                       login => 'Login box');
                   1105:         my $itemcount = 1;
                   1106:         foreach my $item (@toggles) {
                   1107:             $css_class = $itemcount%2?' class="LC_odd_row"':'';
                   1108:             $datatable .=  
                   1109:                 '<tr'.$css_class.'><td colspan="2">'.$choices{$item}.
                   1110:                 '</td><td>'.
                   1111:                 '<span class="LC_nobreak"><label><input type="radio" name="'.
                   1112:                 $item.'"'.$checkedon{$item}.' value="1" />'.&mt('Yes').
                   1113:                 '</label>&nbsp;<label><input type="radio" name="'.$item.'"'.
                   1114:                 $checkedoff{$item}.' value="0" />'.&mt('No').'</label></span></td>'.
                   1115:                 '</tr>';
                   1116:             $itemcount ++;
1.6       raeburn  1117:         }
1.168     raeburn  1118:         $datatable .= &display_color_options($dom,$confname,$phase,'login',$itemcount,\%choices,\%is_custom,\%defaults,\%designs,\@images,\@bgs,\@links,\%alt_text,$rowtotal,\@logintext);
                   1119:         $datatable .= '</tr></table></td></tr>';
                   1120:     } elsif ($caller eq 'help') {
                   1121:         my ($defaulturl,$defaulttype,%url,%type,%lt,%langchoices);
                   1122:         my $switchserver = &check_switchserver($dom,$confname);
                   1123:         my $itemcount = 1;
                   1124:         $defaulturl = '/adm/loginproblems.html';
                   1125:         $defaulttype = 'default';
                   1126:         %lt = &Apache::lonlocal::texthash (
                   1127:                      del     => 'Delete?',
                   1128:                      rep     => 'Replace:',
                   1129:                      upl     => 'Upload:',
                   1130:                      default => 'Default',
                   1131:                      custom  => 'Custom',
                   1132:                                              );
                   1133:         %langchoices = &Apache::lonlocal::texthash(&get_languages_hash());
                   1134:         my @currlangs;
                   1135:         if (ref($settings) eq 'HASH') {
                   1136:             if (ref($settings->{'helpurl'}) eq 'HASH') {
                   1137:                 foreach my $key (sort(keys(%{$settings->{'helpurl'}}))) {
                   1138:                     next if ($settings->{'helpurl'}{$key} eq '');
                   1139:                     $url{$key} = $settings->{'helpurl'}{$key}.'?inhibitmenu=yes';
                   1140:                     $type{$key} = 'custom';
                   1141:                     unless ($key eq 'nolang') {
                   1142:                         push(@currlangs,$key);
                   1143:                     }
                   1144:                 }
                   1145:             } elsif ($settings->{'helpurl'} ne '') {
                   1146:                 $type{'nolang'} = 'custom';
                   1147:                 $url{'nolang'} = $settings->{'helpurl'}.'?inhibitmenu=yes';
1.8       raeburn  1148:             }
                   1149:         }
1.168     raeburn  1150:         foreach my $lang ('nolang',sort(@currlangs)) {
                   1151:             $css_class = $itemcount%2 ? ' class="LC_odd_row"' : '';
                   1152:             $datatable .= '<tr'.$css_class.'>';
                   1153:             if ($url{$lang} eq '') {
                   1154:                 $url{$lang} = $defaulturl;
                   1155:             }
                   1156:             if ($type{$lang} eq '') {
                   1157:                 $type{$lang} = $defaulttype;
                   1158:             }
                   1159:             $datatable .= '<td colspan="2"><span class="LC_nobreak">';
                   1160:             if ($lang eq 'nolang') {
                   1161:                 $datatable .= &mt('Log-in help page if no specific language file: [_1]',
                   1162:                                   &Apache::loncommon::modal_link($url{$lang},$lt{$type{$lang}},600,500));
                   1163:             } else {
                   1164:                 $datatable .= &mt('Log-in help page for language: [_1] is [_2]',
                   1165:                                   $langchoices{$lang},
                   1166:                                   &Apache::loncommon::modal_link($url{$lang},$lt{$type{$lang}},600,500));
                   1167:             }
                   1168:             $datatable .= '</span></td>'."\n".
                   1169:                           '<td class="LC_left_item">';
                   1170:             if ($type{$lang} eq 'custom') {
                   1171:                 $datatable .= '<span class="LC_nobreak"><label>'.
                   1172:                               '<input type="checkbox" name="loginhelpurl_del" value="'.$lang.'" />'.
                   1173:                               $lt{'del'}.'</label>&nbsp;'.$lt{'rep'}.'</span>';
                   1174:             } else {
                   1175:                 $datatable .= $lt{'upl'};
                   1176:             }
                   1177:             $datatable .='<br />';
                   1178:             if ($switchserver) {
                   1179:                 $datatable .= &mt('Upload to library server: [_1]',$switchserver);
                   1180:             } else {
                   1181:                 $datatable .= '<input type="file" name="loginhelpurl_'.$lang.'" />';
1.6       raeburn  1182:             }
1.168     raeburn  1183:             $datatable .= '</td></tr>';
                   1184:             $itemcount ++;
1.6       raeburn  1185:         }
1.168     raeburn  1186:         my @addlangs;
                   1187:         foreach my $lang (sort(keys(%langchoices))) {
                   1188:             next if ((grep(/^\Q$lang\E$/,@currlangs)) || ($lang eq 'x_chef'));
                   1189:             push(@addlangs,$lang);
                   1190:         }
                   1191:         if (@addlangs > 0) {
                   1192:             my %toadd;
                   1193:             map { $toadd{$_} = $langchoices{$_} ; } @addlangs;
                   1194:             $toadd{''} = &mt('Select');
                   1195:             $css_class = $itemcount%2 ? ' class="LC_odd_row"' : '';
                   1196:             $datatable .= '<tr'.$css_class.'><td class="LC_left_item" colspan="2">'.
                   1197:                           &mt('Add log-in help page for a specific language:').'&nbsp;'.
                   1198:                           &Apache::loncommon::select_form('','loginhelpurl_add_lang',\%toadd).
                   1199:                           '</td><td class="LC_left_item">'.$lt{'upl'}.'<br />';
                   1200:             if ($switchserver) {
                   1201:                 $datatable .= &mt('Upload to library server: [_1]',$switchserver);
                   1202:             } else {
                   1203:                 $datatable .= '<input type="file" name="loginhelpurl_add_file" />';
1.6       raeburn  1204:             }
1.168     raeburn  1205:             $datatable .= '</td></tr>';
1.169     raeburn  1206:             $itemcount ++;
1.6       raeburn  1207:         }
1.169     raeburn  1208:         $datatable .= &captcha_choice('login',$settings,$itemcount);
1.256     raeburn  1209:     } elsif ($caller eq 'headtag') {
                   1210:         my %domservers = &Apache::lonnet::get_servers($dom);
                   1211:         my $choice = $choices{'headtag'};
                   1212:         $css_class = ' class="LC_odd_row"';
                   1213:         $datatable .= '<tr'.$css_class.'><td colspan="2">'.$choice.'</td>'.
                   1214:                       '<td align="left"><table><tr><th>'.$choices{'hostid'}.'</th>'.
                   1215:                       '<th>'.$choices{'current'}.'</th>'.
                   1216:                       '<th>'.$choices{'action'}.'</th>'.
                   1217:                       '<th>'.$choices{'exempt'}.'</th></tr>'."\n";
                   1218:         my (%currurls,%currexempt);
                   1219:         if (ref($settings) eq 'HASH') {
                   1220:             if (ref($settings->{'headtag'}) eq 'HASH') {
                   1221:                 foreach my $lonhost (keys(%{$settings->{'headtag'}})) {
                   1222:                     if (ref($settings->{'headtag'}{$lonhost}) eq 'HASH') {
                   1223:                         $currurls{$lonhost} = $settings->{'headtag'}{$lonhost}{'url'};
                   1224:                         $currexempt{$lonhost} = $settings->{'headtag'}{$lonhost}{'exempt'};
                   1225:                     }
                   1226:                 }
                   1227:             }
                   1228:         }
                   1229:         my %lt = &Apache::lonlocal::texthash(
                   1230:                                                del  => 'Delete?',
                   1231:                                                rep  => 'Replace:',
                   1232:                                                upl  => 'Upload:',
                   1233:                                                curr => 'View contents',
                   1234:                                                none => 'None',
                   1235:         );
                   1236:         my $switchserver = &check_switchserver($dom,$confname);
                   1237:         foreach my $lonhost (sort(keys(%domservers))) {
                   1238:             my $exempt = &check_exempt_addresses($currexempt{$lonhost});
                   1239:             $datatable .= '<tr><td>'.$domservers{$lonhost}.'</td>';
                   1240:             if ($currurls{$lonhost}) {
                   1241:                 $datatable .= '<td class="LC_right_item"><a href="'.
                   1242:                               "javascript:void(open('$currurls{$lonhost}?inhibitmenu=yes','Custom_HeadTag',
                   1243:                               'menubar=0,toolbar=1,scrollbars=1,width=600,height=500,resizable=yes'))".
                   1244:                               '">'.$lt{'curr'}.'</a></td>'.
                   1245:                               '<td><span class="LC_nobreak"><label>'.
                   1246:                               '<input type="checkbox" name="loginheadtag_del" value="'.$lonhost.'" />'.
                   1247:                               $lt{'del'}.'</label>&nbsp;'.$lt{'rep'}.'</span>';
                   1248:             } else {
                   1249:                 $datatable .= '<td class="LC_right_item">'.$lt{'none'}.'</td><td>'.$lt{'upl'};
                   1250:             }
                   1251:             $datatable .='<br />';
                   1252:             if ($switchserver) {
                   1253:                 $datatable .= &mt('Upload to library server: [_1]',$switchserver);
                   1254:             } else {
                   1255:                 $datatable .= '<input type="file" name="loginheadtag_'.$lonhost.'" />';
                   1256:             }
                   1257:             $datatable .= '</td><td><input type="textbox" name="loginheadtagexempt_'.$lonhost.'" value="'.$exempt.'" /></td></tr>';
                   1258:         }
                   1259:         $datatable .= '</table></td></tr>';
1.1       raeburn  1260:     }
1.6       raeburn  1261:     return $datatable;
                   1262: }
                   1263: 
                   1264: sub login_choices {
                   1265:     my %choices =
                   1266:         &Apache::lonlocal::texthash (
1.116     bisitz   1267:             coursecatalog => 'Display Course/Community Catalog link?',
1.110     raeburn  1268:             adminmail     => "Display Administrator's E-mail Address?",
1.188     raeburn  1269:             helpdesk      => 'Display "Contact Helpdesk" link',
1.110     raeburn  1270:             disallowlogin => "Login page requests redirected",
                   1271:             hostid        => "Server",
1.128     raeburn  1272:             server        => "Redirect to:",
                   1273:             serverpath    => "Path",
                   1274:             custompath    => "Custom", 
                   1275:             exempt        => "Exempt IP(s)",
1.110     raeburn  1276:             directlogin   => "No redirect",
                   1277:             newuser       => "Link to create a user account",
                   1278:             img           => "Header",
                   1279:             logo          => "Main Logo",
                   1280:             domlogo       => "Domain Logo",
                   1281:             login         => "Log-in Header", 
                   1282:             textcol       => "Text color",
                   1283:             bgcol         => "Box color",
                   1284:             bgs           => "Background colors",
                   1285:             links         => "Link colors",
                   1286:             font          => "Font color",
                   1287:             pgbg          => "Header",
                   1288:             mainbg        => "Page",
                   1289:             sidebg        => "Login box",
                   1290:             link          => "Link",
                   1291:             alink         => "Active link",
                   1292:             vlink         => "Visited link",
1.256     raeburn  1293:             headtag       => "Custom markup",
                   1294:             action        => "Action",
                   1295:             current       => "Current",
1.6       raeburn  1296:         );
                   1297:     return %choices;
                   1298: }
                   1299: 
                   1300: sub print_rolecolors {
1.30      raeburn  1301:     my ($phase,$role,$dom,$confname,$settings,$rowtotal) = @_;
1.6       raeburn  1302:     my %choices = &color_font_choices();
                   1303:     my @bgs = ('pgbg','tabbg','sidebg');
                   1304:     my @links = ('link','alink','vlink');
                   1305:     my @images = ('img');
                   1306:     my %alt_text = &Apache::lonlocal::texthash(img => "Banner for $role role");
1.7       albertel 1307:     my %designhash = &Apache::loncommon::get_domainconf($dom);
1.6       raeburn  1308:     my %defaultdesign = %Apache::loncommon::defaultdesign;
                   1309:     my (%is_custom,%designs);
1.200     raeburn  1310:     my %defaults = &role_defaults($role,\@bgs,\@links,\@images);
1.6       raeburn  1311:     if (ref($settings) eq 'HASH') {
                   1312:         if (ref($settings->{$role}) eq 'HASH') {
                   1313:             if ($settings->{$role}->{'img'} ne '') {
                   1314:                 $designs{'img'} = $settings->{$role}->{'img'};
                   1315:                 $is_custom{'img'} = 1;
                   1316:             }
                   1317:             if ($settings->{$role}->{'font'} ne '') {
                   1318:                 $designs{'font'} = $settings->{$role}->{'font'};
                   1319:                 $is_custom{'font'} = 1;
                   1320:             }
1.97      tempelho 1321:             if ($settings->{$role}->{'fontmenu'} ne '') {
                   1322:                 $designs{'fontmenu'} = $settings->{$role}->{'fontmenu'};
                   1323:                 $is_custom{'fontmenu'} = 1;
                   1324:             }
1.6       raeburn  1325:             foreach my $item (@bgs) {
                   1326:                 if ($settings->{$role}->{$item} ne '') {
                   1327:                     $designs{'bgs'}{$item} = $settings->{$role}->{$item};
                   1328:                     $is_custom{$item} = 1;
                   1329:                 }
                   1330:             }
                   1331:             foreach my $item (@links) {
                   1332:                 if ($settings->{$role}->{$item} ne '') {
                   1333:                     $designs{'links'}{$item} = $settings->{$role}->{$item};
                   1334:                     $is_custom{$item} = 1;
                   1335:                 }
                   1336:             }
                   1337:         }
                   1338:     } else {
                   1339:         if ($designhash{$dom.'.'.$role.'.img'} ne '') {
                   1340:             $designs{img} = $designhash{$dom.'.'.$role.'.img'};
                   1341:             $is_custom{'img'} = 1;
                   1342:         }
1.97      tempelho 1343:         if ($designhash{$dom.'.'.$role.'.fontmenu'} ne '') {
                   1344:             $designs{fontmenu} = $designhash{$dom.'.'.$role.'.fontmenu'};
                   1345:             $is_custom{'fontmenu'} = 1; 
                   1346:         }
1.6       raeburn  1347:         if ($designhash{$dom.'.'.$role.'.font'} ne '') {
                   1348:             $designs{font} = $designhash{$dom.'.'.$role.'.font'};
                   1349:             $is_custom{'font'} = 1;
                   1350:         }
                   1351:         foreach my $item (@bgs) {
                   1352:             if ($designhash{$dom.'.'.$role.'.'.$item} ne '') {
                   1353:                 $designs{'bgs'}{$item} = $designhash{$dom.'.'.$role.'.'.$item};
                   1354:                 $is_custom{$item} = 1;
                   1355:             
                   1356:             }
                   1357:         }
                   1358:         foreach my $item (@links) {
                   1359:             if ($designhash{$dom.'.'.$role.'.'.$item} ne '') {
                   1360:                 $designs{'links'}{$item} = $designhash{$dom.'.'.$role.'.'.$item};
                   1361:                 $is_custom{$item} = 1;
                   1362:             }
                   1363:         }
                   1364:     }
                   1365:     my $itemcount = 1;
1.30      raeburn  1366:     my $datatable = &display_color_options($dom,$confname,$phase,$role,$itemcount,\%choices,\%is_custom,\%defaults,\%designs,\@images,\@bgs,\@links,\%alt_text,$rowtotal);
1.6       raeburn  1367:     $datatable .= '</tr></table></td></tr>';
                   1368:     return $datatable;
                   1369: }
                   1370: 
1.200     raeburn  1371: sub role_defaults {
                   1372:     my ($role,$bgs,$links,$images,$logintext) = @_;
1.202     raeburn  1373:     my %defaults;
                   1374:     unless ((ref($bgs) eq 'ARRAY') && (ref($links) eq 'ARRAY') && (ref($images) eq 'ARRAY')) {
1.200     raeburn  1375:         return %defaults;
                   1376:     }
                   1377:     my %defaultdesign = %Apache::loncommon::defaultdesign;
                   1378:     if ($role eq 'login') {
                   1379:         %defaults = (
                   1380:                        font => $defaultdesign{$role.'.font'},
                   1381:                     );
                   1382:         if (ref($logintext) eq 'ARRAY') {
                   1383:             foreach my $item (@{$logintext}) {
                   1384:                 $defaults{'logintext'}{$item} = $defaultdesign{$role.'.'.$item};
                   1385:             }
                   1386:         }
                   1387:         foreach my $item (@{$images}) {
                   1388:             $defaults{'showlogo'}{$item} = 1;
                   1389:         }
                   1390:     } else {
                   1391:         %defaults = (
                   1392:                        img => $defaultdesign{$role.'.img'},
                   1393:                        font => $defaultdesign{$role.'.font'},
                   1394:                        fontmenu => $defaultdesign{$role.'.fontmenu'},
                   1395:                     );
                   1396:     }
                   1397:     foreach my $item (@{$bgs}) {
                   1398:         $defaults{'bgs'}{$item} = $defaultdesign{$role.'.'.$item};
                   1399:     }
                   1400:     foreach my $item (@{$links}) {
                   1401:         $defaults{'links'}{$item} = $defaultdesign{$role.'.'.$item};
                   1402:     }
                   1403:     foreach my $item (@{$images}) {
                   1404:         $defaults{$item} = $defaultdesign{$role.'.'.$item};
                   1405:     }
                   1406:     return %defaults;
                   1407: }
                   1408: 
1.6       raeburn  1409: sub display_color_options {
1.9       raeburn  1410:     my ($dom,$confname,$phase,$role,$itemcount,$choices,$is_custom,$defaults,$designs,
1.135     bisitz   1411:         $images,$bgs,$links,$alt_text,$rowtotal,$logintext) = @_;
1.159     raeburn  1412:     my $londocroot = $Apache::lonnet::perlvar{'lonDocRoot'};
1.6       raeburn  1413:     my $css_class = $itemcount%2?' class="LC_odd_row"':'';
1.176     raeburn  1414:     my $datatable = '<tr'.$css_class.'>'.
1.6       raeburn  1415:         '<td>'.$choices->{'font'}.'</td>';
                   1416:     if (!$is_custom->{'font'}) {
1.30      raeburn  1417:         $datatable .=  '<td>'.&mt('Default in use:').'&nbsp;<span id="css_default_'.$role.'_font" style="color: '.$defaults->{'font'}.';">'.$defaults->{'font'}.'</span></td>';
1.6       raeburn  1418:     } else {
                   1419:         $datatable .= '<td>&nbsp;</td>';
                   1420:     }
1.174     foxr     1421:     my $current_color = $designs->{'font'} ? $designs->{'font'} : $defaults->{'font'};
                   1422: 
1.8       raeburn  1423:     $datatable .= '<td><span class="LC_nobreak">'.
1.174     foxr     1424:                   '<input type="text" class="colorchooser" size="10" name="'.$role.'_font"'.
1.202     raeburn  1425:                   ' value="'.$current_color.'" />&nbsp;'.
1.174     foxr     1426:                   '&nbsp;</td></tr>';
1.107     raeburn  1427:     unless ($role eq 'login') { 
                   1428:         $datatable .= '<tr'.$css_class.'>'.
                   1429:                       '<td>'.$choices->{'fontmenu'}.'</td>';
                   1430:         if (!$is_custom->{'fontmenu'}) {
                   1431:             $datatable .=  '<td>'.&mt('Default in use:').'&nbsp;<span id="css_default_'.$role.'_font" style="color: '.$defaults->{'fontmenu'}.';">'.$defaults->{'fontmenu'}.'</span></td>';
                   1432:         } else {
                   1433:             $datatable .= '<td>&nbsp;</td>';
                   1434:         }
1.202     raeburn  1435: 	$current_color = $designs->{'fontmenu'} ?
1.174     foxr     1436: 	    $designs->{'fontmenu'} : $defaults->{'fontmenu'};
1.107     raeburn  1437:         $datatable .= '<td><span class="LC_nobreak">'.
1.174     foxr     1438:                       '<input class="colorchooser" type="text" size="10" name="'
                   1439: 		      .$role.'_fontmenu"'.
                   1440:                       ' value="'.$current_color.'" />&nbsp;'.
                   1441:                       '&nbsp;</td></tr>';
1.97      tempelho 1442:     }
1.9       raeburn  1443:     my $switchserver = &check_switchserver($dom,$confname);
1.6       raeburn  1444:     foreach my $img (@{$images}) {
1.18      albertel 1445: 	$itemcount ++;
1.6       raeburn  1446:         $css_class = $itemcount%2?' class="LC_odd_row"':'';
1.8       raeburn  1447:         $datatable .= '<tr'.$css_class.'>'.
1.70      raeburn  1448:                       '<td>'.$choices->{$img};
1.41      raeburn  1449:         my ($imgfile,$img_import,$login_hdr_pick,$logincolors);
1.70      raeburn  1450:         if ($role eq 'login') {
                   1451:             if ($img eq 'login') {
                   1452:                 $login_hdr_pick =
1.135     bisitz   1453:                     &login_header_options($img,$role,$defaults,$is_custom,$choices);
1.70      raeburn  1454:                 $logincolors =
                   1455:                     &login_text_colors($img,$role,$logintext,$phase,$choices,
1.201     raeburn  1456:                                        $designs,$defaults);
1.70      raeburn  1457:             } elsif ($img ne 'domlogo') {
                   1458:                 $datatable.= &logo_display_options($img,$defaults,$designs);
                   1459:             }
                   1460:         }
                   1461:         $datatable .= '</td>';
1.6       raeburn  1462:         if ($designs->{$img} ne '') {
                   1463:             $imgfile = $designs->{$img};
1.18      albertel 1464: 	    $img_import = ($imgfile =~ m{^/adm/});
1.6       raeburn  1465:         } else {
                   1466:             $imgfile = $defaults->{$img};
                   1467:         }
                   1468:         if ($imgfile) {
1.9       raeburn  1469:             my ($showfile,$fullsize);
                   1470:             if ($imgfile =~ m-^(/res/\Q$dom\E/\Q$confname\E/\Q$img\E)/([^/]+)$-) {
1.6       raeburn  1471:                 my $urldir = $1;
                   1472:                 my $filename = $2;
                   1473:                 my @info = &Apache::lonnet::stat_file($designs->{$img});
                   1474:                 if (@info) {
                   1475:                     my $thumbfile = 'tn-'.$filename;
                   1476:                     my @thumb=&Apache::lonnet::stat_file($urldir.'/'.$thumbfile);
                   1477:                     if (@thumb) {
                   1478:                         $showfile = $urldir.'/'.$thumbfile;
                   1479:                     } else {
                   1480:                         $showfile = $imgfile;
                   1481:                     }
                   1482:                 } else {
                   1483:                     $showfile = '';
                   1484:                 }
                   1485:             } elsif ($imgfile =~ m-^/(adm/[^/]+)/([^/]+)$-) {
1.16      raeburn  1486:                 $showfile = $imgfile;
1.6       raeburn  1487:                 my $imgdir = $1;
                   1488:                 my $filename = $2;
1.159     raeburn  1489:                 if (-e "$londocroot/$imgdir/tn-".$filename) {
1.6       raeburn  1490:                     $showfile = "/$imgdir/tn-".$filename;
                   1491:                 } else {
1.159     raeburn  1492:                     my $input = $londocroot.$imgfile;
                   1493:                     my $output = "$londocroot/$imgdir/tn-".$filename;
1.6       raeburn  1494:                     if (!-e $output) {
1.9       raeburn  1495:                         my ($width,$height) = &thumb_dimensions();
1.16      raeburn  1496:                         my ($fullwidth,$fullheight) = &check_dimensions($input);
                   1497:                         if ($fullwidth ne '' && $fullheight ne '') {
                   1498:                             if ($fullwidth > $width && $fullheight > $height) { 
                   1499:                                 my $size = $width.'x'.$height;
                   1500:                                 system("convert -sample $size $input $output");
1.159     raeburn  1501:                                 $showfile = "/$imgdir/tn-".$filename;
1.16      raeburn  1502:                             }
                   1503:                         }
1.6       raeburn  1504:                     }
                   1505:                 }
1.16      raeburn  1506:             }
1.6       raeburn  1507:             if ($showfile) {
1.40      raeburn  1508:                 if ($showfile =~ m{^/(adm|res)/}) {
                   1509:                     if ($showfile =~ m{^/res/}) {
                   1510:                         my $local_showfile =
                   1511:                             &Apache::lonnet::filelocation('',$showfile);
                   1512:                         &Apache::lonnet::repcopy($local_showfile);
                   1513:                     }
                   1514:                     $showfile = &Apache::loncommon::lonhttpdurl($showfile);
                   1515:                 }
                   1516:                 if ($imgfile) {
                   1517:                     if ($imgfile  =~ m{^/(adm|res)/}) {
                   1518:                         if ($imgfile =~ m{^/res/}) {
                   1519:                             my $local_imgfile =
                   1520:                                 &Apache::lonnet::filelocation('',$imgfile);
                   1521:                             &Apache::lonnet::repcopy($local_imgfile);
                   1522:                         }
                   1523:                         $fullsize = &Apache::loncommon::lonhttpdurl($imgfile);
                   1524:                     } else {
                   1525:                         $fullsize = $imgfile;
                   1526:                     }
                   1527:                 }
1.41      raeburn  1528:                 $datatable .= '<td>';
                   1529:                 if ($img eq 'login') {
1.135     bisitz   1530:                     $datatable .= $login_hdr_pick;
                   1531:                 } 
1.41      raeburn  1532:                 $datatable .= &image_changes($is_custom->{$img},$alt_text->{$img},$img_import,
                   1533:                                              $showfile,$fullsize,$role,$img,$imgfile,$logincolors);
1.6       raeburn  1534:             } else {
1.201     raeburn  1535:                 $datatable .= '<td>&nbsp;</td><td class="LC_left_item">'.
                   1536:                               &mt('Upload:').'<br />';
1.6       raeburn  1537:             }
                   1538:         } else {
1.201     raeburn  1539:             $datatable .= '<td>&nbsp;</td><td class="LC_left_item">'.
                   1540:                           &mt('Upload:').'<br />';
1.6       raeburn  1541:         }
1.9       raeburn  1542:         if ($switchserver) {
                   1543:             $datatable .= &mt('Upload to library server: [_1]',$switchserver);
                   1544:         } else {
1.135     bisitz   1545:             if ($img ne 'login') { # suppress file selection for Log-in header
                   1546:                 $datatable .='&nbsp;<input type="file" name="'.$role.'_'.$img.'" />';
                   1547:             }
1.9       raeburn  1548:         }
                   1549:         $datatable .= '</td></tr>';
1.6       raeburn  1550:     }
                   1551:     $itemcount ++;
                   1552:     $css_class = $itemcount%2?' class="LC_odd_row"':'';
                   1553:     $datatable .= '<tr'.$css_class.'>'.
                   1554:                   '<td>'.$choices->{'bgs'}.'</td>';
                   1555:     my $bgs_def;
                   1556:     foreach my $item (@{$bgs}) {
                   1557:         if (!$is_custom->{$item}) {
1.70      raeburn  1558:             $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>';
1.6       raeburn  1559:         }
                   1560:     }
                   1561:     if ($bgs_def) {
1.8       raeburn  1562:         $datatable .= '<td>'.&mt('Default(s) in use:').'<br /><table border="0"><tr>'.$bgs_def.'</tr></table></td>';
1.6       raeburn  1563:     } else {
                   1564:         $datatable .= '<td>&nbsp;</td>';
                   1565:     }
                   1566:     $datatable .= '<td class="LC_right_item">'.
                   1567:                   '<table border="0"><tr>';
1.174     foxr     1568: 
1.6       raeburn  1569:     foreach my $item (@{$bgs}) {
1.201     raeburn  1570:         $datatable .= '<td align="center">'.$choices->{$item};
1.174     foxr     1571: 	my $color = $designs->{'bgs'}{$item} ? $designs->{'bgs'}{$item} : $defaults->{'bgs'}{$item};
1.6       raeburn  1572:         if ($designs->{'bgs'}{$item}) {
1.174     foxr     1573:             $datatable .= '&nbsp;';
1.6       raeburn  1574:         }
1.174     foxr     1575:         $datatable .= '<br /><input type="text" class="colorchooser" size="8" name="'.$role.'_'.$item.'" value="'.$color.
1.41      raeburn  1576:                       '" onblur = "javascript:colchg_span('."'css_".$role.'_'.$item."'".',this);" /></td>';
1.6       raeburn  1577:     }
                   1578:     $datatable .= '</tr></table></td></tr>';
                   1579:     $itemcount ++;
                   1580:     $css_class = $itemcount%2?' class="LC_odd_row"':'';
                   1581:     $datatable .= '<tr'.$css_class.'>'.
                   1582:                   '<td>'.$choices->{'links'}.'</td>';
                   1583:     my $links_def;
                   1584:     foreach my $item (@{$links}) {
                   1585:         if (!$is_custom->{$item}) {
1.30      raeburn  1586:             $links_def .= '<td>'.$choices->{$item}.'<br /><span id="css_default_'.$role.'_'.$item.'" style="color: '.$defaults->{'links'}{$item}.';">'.$defaults->{'links'}{$item}.'</span></td>';
1.6       raeburn  1587:         }
                   1588:     }
                   1589:     if ($links_def) {
1.8       raeburn  1590:         $datatable .= '<td>'.&mt('Default(s) in use:').'<br /><table border="0"><tr>'.$links_def.'</tr></table></td>';
1.6       raeburn  1591:     } else {
                   1592:         $datatable .= '<td>&nbsp;</td>';
                   1593:     }
                   1594:     $datatable .= '<td class="LC_right_item">'.
                   1595:                   '<table border="0"><tr>';
                   1596:     foreach my $item (@{$links}) {
1.234     raeburn  1597: 	my $color = $designs->{'links'}{$item} ? $designs->{'links'}{$item} : $defaults->{'links'}{$item};
1.201     raeburn  1598:         $datatable .= '<td align="center">'.$choices->{$item}."\n";
1.6       raeburn  1599:         if ($designs->{'links'}{$item}) {
1.174     foxr     1600:             $datatable.='&nbsp;';
1.6       raeburn  1601:         }
1.174     foxr     1602:         $datatable .= '<br /><input type="text" size="8" class="colorchooser" name="'.$role.'_'.$item.'" value="'.$color.
1.6       raeburn  1603:                       '" /></td>';
                   1604:     }
1.30      raeburn  1605:     $$rowtotal += $itemcount;
1.3       raeburn  1606:     return $datatable;
                   1607: }
                   1608: 
1.70      raeburn  1609: sub logo_display_options {
                   1610:     my ($img,$defaults,$designs) = @_;
                   1611:     my $checkedon;
                   1612:     if (ref($defaults) eq 'HASH') {
                   1613:         if (ref($defaults->{'showlogo'}) eq 'HASH') {
                   1614:             if ($defaults->{'showlogo'}{$img}) {
                   1615:                 $checkedon = 'checked="checked" ';     
                   1616:             }
                   1617:         } 
                   1618:     }
                   1619:     if (ref($designs) eq 'HASH') {
                   1620:         if (ref($designs->{'showlogo'}) eq 'HASH') {
                   1621:             if (defined($designs->{'showlogo'}{$img})) {
                   1622:                 if ($designs->{'showlogo'}{$img} == 0) {
                   1623:                     $checkedon = '';
                   1624:                 } elsif ($designs->{'showlogo'}{$img} == 1) {
                   1625:                     $checkedon = 'checked="checked" ';
                   1626:                 }
                   1627:             }
                   1628:         }
                   1629:     }
                   1630:     return '<br /><label>&nbsp;&nbsp;<input type="checkbox" name="'.
                   1631:            'login_showlogo_'.$img.'" value="1" '.$checkedon.'/>'.
                   1632:            &mt('show').'</label>'."\n";
                   1633: }
                   1634: 
1.41      raeburn  1635: sub login_header_options  {
1.135     bisitz   1636:     my ($img,$role,$defaults,$is_custom,$choices) = @_;
                   1637:     my $output = '';
1.41      raeburn  1638:     if ((!$is_custom->{'textcol'}) || (!$is_custom->{'bgcol'})) {
1.135     bisitz   1639:         $output .= &mt('Text default(s):').'<br />';
1.41      raeburn  1640:         if (!$is_custom->{'textcol'}) {
                   1641:             $output .= $choices->{'textcol'}.':&nbsp;'.$defaults->{'logintext'}{'textcol'}.
                   1642:                        '&nbsp;&nbsp;&nbsp;';
                   1643:         }
                   1644:         if (!$is_custom->{'bgcol'}) {
                   1645:             $output .= $choices->{'bgcol'}.':&nbsp;'.
                   1646:                        '<span id="css_'.$role.'_font" style="background-color: '.
                   1647:                        $defaults->{'logintext'}{'bgcol'}.';">&nbsp;&nbsp;&nbsp;</span>';
                   1648:         }
                   1649:         $output .= '<br />';
                   1650:     }
                   1651:     $output .='<br />';
                   1652:     return $output;
                   1653: }
                   1654: 
                   1655: sub login_text_colors {
1.201     raeburn  1656:     my ($img,$role,$logintext,$phase,$choices,$designs,$defaults) = @_;
1.41      raeburn  1657:     my $color_menu = '<table border="0"><tr>';
                   1658:     foreach my $item (@{$logintext}) {
1.201     raeburn  1659:         $color_menu .= '<td align="center">'.$choices->{$item};
                   1660:         my $color = $designs->{'logintext'}{$item} ? $designs->{'logintext'}{$item} : $defaults->{'logintext'}{$item};
                   1661:         $color_menu .= '<br /><input type="text" class="colorchooser" size="8" name="'.$role.'_'.$item.'" value="'.$color.
                   1662:                       '" onblur = "javascript:colchg_span('."'css_".$role.'_'.$item."'".',this);" /></td>';
1.41      raeburn  1663:     }
                   1664:     $color_menu .= '</tr></table><br />';
                   1665:     return $color_menu;
                   1666: }
                   1667: 
                   1668: sub image_changes {
                   1669:     my ($is_custom,$alt_text,$img_import,$showfile,$fullsize,$role,$img,$imgfile,$logincolors) = @_;
                   1670:     my $output;
1.135     bisitz   1671:     if ($img eq 'login') {
                   1672:             # suppress image for Log-in header
                   1673:     } elsif (!$is_custom) {
1.70      raeburn  1674:         if ($img ne 'domlogo') {
1.41      raeburn  1675:             $output .= &mt('Default image:').'<br />';
                   1676:         } else {
                   1677:             $output .= &mt('Default in use:').'<br />';
                   1678:         }
                   1679:     }
1.135     bisitz   1680:     if ($img eq 'login') { # suppress image for Log-in header
                   1681:         $output .= '<td>'.$logincolors;
1.41      raeburn  1682:     } else {
1.135     bisitz   1683:         if ($img_import) {
                   1684:             $output .= '<input type="hidden" name="'.$role.'_import_'.$img.'" value="'.$imgfile.'" />';
                   1685:         }
                   1686:         $output .= '<a href="'.$fullsize.'" target="_blank"><img src="'.
                   1687:                    $showfile.'" alt="'.$alt_text.'" border="0" /></a></td>';
                   1688:         if ($is_custom) {
                   1689:             $output .= '<td>'.$logincolors.'<span class="LC_nobreak"><label>'.
                   1690:                        '<input type="checkbox" name="'.
                   1691:                        $role.'_del_'.$img.'" value="1" />'.&mt('Delete?').
                   1692:                        '</label>&nbsp;'.&mt('Replace:').'</span><br />';
                   1693:         } else {
1.201     raeburn  1694:             $output .= '<td valign="middle">'.$logincolors.&mt('Upload:').'<br />';
1.135     bisitz   1695:         }
1.41      raeburn  1696:     }
                   1697:     return $output;
                   1698: }
                   1699: 
1.3       raeburn  1700: sub print_quotas {
1.86      raeburn  1701:     my ($dom,$settings,$rowtotal,$action) = @_;
                   1702:     my $context;
                   1703:     if ($action eq 'quotas') {
                   1704:         $context = 'tools';
                   1705:     } else {
                   1706:         $context = $action;
                   1707:     }
1.197     raeburn  1708:     my ($datatable,$defaultquota,$authorquota,@usertools,@options,%validations);
1.44      raeburn  1709:     my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($dom);
1.3       raeburn  1710:     my $typecount = 0;
1.101     raeburn  1711:     my ($css_class,%titles);
1.86      raeburn  1712:     if ($context eq 'requestcourses') {
1.216     raeburn  1713:         @usertools = ('official','unofficial','community','textbook');
1.106     raeburn  1714:         @options =('norequest','approval','validate','autolimit');
1.101     raeburn  1715:         %validations = &Apache::lonnet::auto_courserequest_checks($dom);
                   1716:         %titles = &courserequest_titles();
1.163     raeburn  1717:     } elsif ($context eq 'requestauthor') {
                   1718:         @usertools = ('author');
                   1719:         @options = ('norequest','approval','automatic');
1.210     raeburn  1720:         %titles = &authorrequest_titles();
1.86      raeburn  1721:     } else {
1.162     raeburn  1722:         @usertools = ('aboutme','blog','webdav','portfolio');
1.101     raeburn  1723:         %titles = &tool_titles();
1.86      raeburn  1724:     }
1.26      raeburn  1725:     if (ref($types) eq 'ARRAY') {
1.23      raeburn  1726:         foreach my $type (@{$types}) {
1.197     raeburn  1727:             my ($currdefquota,$currauthorquota);
1.163     raeburn  1728:             unless (($context eq 'requestcourses') ||
                   1729:                     ($context eq 'requestauthor')) {
1.86      raeburn  1730:                 if (ref($settings) eq 'HASH') {
                   1731:                     if (ref($settings->{defaultquota}) eq 'HASH') {
1.197     raeburn  1732:                         $currdefquota = $settings->{defaultquota}->{$type};
1.86      raeburn  1733:                     } else {
                   1734:                         $currdefquota = $settings->{$type};
                   1735:                     }
1.197     raeburn  1736:                     if (ref($settings->{authorquota}) eq 'HASH') {
                   1737:                         $currauthorquota = $settings->{authorquota}->{$type};
                   1738:                     }
1.78      raeburn  1739:                 }
1.72      raeburn  1740:             }
1.3       raeburn  1741:             if (defined($usertypes->{$type})) {
                   1742:                 $typecount ++;
                   1743:                 $css_class = $typecount%2?' class="LC_odd_row"':'';
1.72      raeburn  1744:                 $datatable .= '<tr'.$css_class.'>'.
1.3       raeburn  1745:                               '<td>'.$usertypes->{$type}.'</td>'.
1.72      raeburn  1746:                               '<td class="LC_left_item">';
1.101     raeburn  1747:                 if ($context eq 'requestcourses') {
                   1748:                     $datatable .= '<table><tr>';
                   1749:                 }
                   1750:                 my %cell;  
1.72      raeburn  1751:                 foreach my $item (@usertools) {
1.101     raeburn  1752:                     if ($context eq 'requestcourses') {
                   1753:                         my ($curroption,$currlimit);
                   1754:                         if (ref($settings) eq 'HASH') {
                   1755:                             if (ref($settings->{$item}) eq 'HASH') {
                   1756:                                 $curroption = $settings->{$item}->{$type};
                   1757:                                 if ($curroption =~ /^autolimit=(\d*)$/) {
                   1758:                                     $currlimit = $1; 
                   1759:                                 }
                   1760:                             }
                   1761:                         }
                   1762:                         if (!$curroption) {
                   1763:                             $curroption = 'norequest';
                   1764:                         }
                   1765:                         $datatable .= '<th>'.$titles{$item}.'</th>';
                   1766:                         foreach my $option (@options) {
                   1767:                             my $val = $option;
                   1768:                             if ($option eq 'norequest') {
                   1769:                                 $val = 0;  
                   1770:                             }
                   1771:                             if ($option eq 'validate') {
                   1772:                                 my $canvalidate = 0;
                   1773:                                 if (ref($validations{$item}) eq 'HASH') { 
                   1774:                                     if ($validations{$item}{$type}) {
                   1775:                                         $canvalidate = 1;
                   1776:                                     }
                   1777:                                 }
                   1778:                                 next if (!$canvalidate);
                   1779:                             }
                   1780:                             my $checked = '';
                   1781:                             if ($option eq $curroption) {
                   1782:                                 $checked = ' checked="checked"';
                   1783:                             } elsif ($option eq 'autolimit') {
                   1784:                                 if ($curroption =~ /^autolimit/) {
                   1785:                                     $checked = ' checked="checked"';
                   1786:                                 }                       
                   1787:                             } 
                   1788:                             $cell{$item} .= '<span class="LC_nobreak"><label>'.
                   1789:                                   '<input type="radio" name="crsreq_'.$item.
                   1790:                                   '_'.$type.'" value="'.$val.'"'.$checked.' />'.
1.127     raeburn  1791:                                   $titles{$option}.'</label>';
1.101     raeburn  1792:                             if ($option eq 'autolimit') {
1.127     raeburn  1793:                                 $cell{$item} .= '&nbsp;<input type="text" name="crsreq_'.
1.101     raeburn  1794:                                                 $item.'_limit_'.$type.'" size="1" '.
1.103     raeburn  1795:                                                 'value="'.$currlimit.'" />';
1.101     raeburn  1796:                             }
1.127     raeburn  1797:                             $cell{$item} .= '</span> ';
1.103     raeburn  1798:                             if ($option eq 'autolimit') {
1.127     raeburn  1799:                                 $cell{$item} .= $titles{'unlimited'};
1.103     raeburn  1800:                             }
1.101     raeburn  1801:                         }
1.163     raeburn  1802:                     } elsif ($context eq 'requestauthor') {
                   1803:                         my $curroption;
                   1804:                         if (ref($settings) eq 'HASH') {
                   1805:                             $curroption = $settings->{$type};
                   1806:                         }
                   1807:                         if (!$curroption) {
                   1808:                             $curroption = 'norequest';
                   1809:                         }
                   1810:                         foreach my $option (@options) {
                   1811:                             my $val = $option;
                   1812:                             if ($option eq 'norequest') {
                   1813:                                 $val = 0;
                   1814:                             }
                   1815:                             my $checked = '';
                   1816:                             if ($option eq $curroption) {
                   1817:                                 $checked = ' checked="checked"';
                   1818:                             }
                   1819:                             $datatable .= '<span class="LC_nobreak"><label>'.
                   1820:                                   '<input type="radio" name="authorreq_'.$type.
                   1821:                                   '" value="'.$val.'"'.$checked.' />'.
                   1822:                                   $titles{$option}.'</label></span>&nbsp; ';
                   1823:                         }
1.101     raeburn  1824:                     } else {
                   1825:                         my $checked = 'checked="checked" ';
                   1826:                         if (ref($settings) eq 'HASH') {
                   1827:                             if (ref($settings->{$item}) eq 'HASH') {
                   1828:                                 if ($settings->{$item}->{$type} == 0) {
                   1829:                                     $checked = '';
                   1830:                                 } elsif ($settings->{$item}->{$type} == 1) {
                   1831:                                     $checked =  'checked="checked" ';
                   1832:                                 }
1.78      raeburn  1833:                             }
1.72      raeburn  1834:                         }
1.101     raeburn  1835:                         $datatable .= '<span class="LC_nobreak"><label>'.
                   1836:                                       '<input type="checkbox" name="'.$context.'_'.$item.
                   1837:                                       '" value="'.$type.'" '.$checked.'/>'.$titles{$item}.
                   1838:                                       '</label></span>&nbsp; ';
1.72      raeburn  1839:                     }
1.101     raeburn  1840:                 }
                   1841:                 if ($context eq 'requestcourses') {
                   1842:                     $datatable .= '</tr><tr>';
                   1843:                     foreach my $item (@usertools) {
1.106     raeburn  1844:                         $datatable .= '<td style="vertical-align: top">'.$cell{$item}.'</td>';  
1.101     raeburn  1845:                     }
                   1846:                     $datatable .= '</tr></table>';
1.72      raeburn  1847:                 }
1.86      raeburn  1848:                 $datatable .= '</td>';
1.163     raeburn  1849:                 unless (($context eq 'requestcourses') ||
                   1850:                         ($context eq 'requestauthor')) {
1.86      raeburn  1851:                     $datatable .= 
1.197     raeburn  1852:                               '<td class="LC_right_item">'.
                   1853:                               '<span class="LC_nobreak">'.&mt('Portfolio').':&nbsp;'.
1.3       raeburn  1854:                               '<input type="text" name="quota_'.$type.
1.72      raeburn  1855:                               '" value="'.$currdefquota.
1.197     raeburn  1856:                               '" size="5" /></span>'.('&nbsp;' x 2).
                   1857:                               '<span class="LC_nobreak">'.&mt('Authoring').':&nbsp;'.
                   1858:                               '<input type="text" name="authorquota_'.$type.
                   1859:                               '" value="'.$currauthorquota.
                   1860:                               '" size="5" /></span></td>';
1.86      raeburn  1861:                 }
                   1862:                 $datatable .= '</tr>';
1.3       raeburn  1863:             }
                   1864:         }
                   1865:     }
1.163     raeburn  1866:     unless (($context eq 'requestcourses') || ($context eq 'requestauthor')) {
1.86      raeburn  1867:         $defaultquota = '20';
1.197     raeburn  1868:         $authorquota = '500';
1.86      raeburn  1869:         if (ref($settings) eq 'HASH') {
                   1870:             if (ref($settings->{'defaultquota'}) eq 'HASH') {
                   1871:                 $defaultquota = $settings->{'defaultquota'}->{'default'};
                   1872:             } elsif (defined($settings->{'default'})) {
                   1873:                 $defaultquota = $settings->{'default'};
                   1874:             }
1.197     raeburn  1875:             if (ref($settings->{'authorquota'}) eq 'HASH') {
                   1876:                 $authorquota = $settings->{'authorquota'}->{'default'};
                   1877:             }
1.3       raeburn  1878:         }
                   1879:     }
                   1880:     $typecount ++;
                   1881:     $css_class = $typecount%2?' class="LC_odd_row"':'';
                   1882:     $datatable .= '<tr'.$css_class.'>'.
1.26      raeburn  1883:                   '<td>'.$othertitle.'</td>'.
1.72      raeburn  1884:                   '<td class="LC_left_item">';
1.101     raeburn  1885:     if ($context eq 'requestcourses') {
                   1886:         $datatable .= '<table><tr>';
                   1887:     }
                   1888:     my %defcell;
1.72      raeburn  1889:     foreach my $item (@usertools) {
1.101     raeburn  1890:         if ($context eq 'requestcourses') {
                   1891:             my ($curroption,$currlimit);
                   1892:             if (ref($settings) eq 'HASH') {
                   1893:                 if (ref($settings->{$item}) eq 'HASH') {
                   1894:                     $curroption = $settings->{$item}->{'default'};
                   1895:                     if ($curroption =~ /^autolimit=(\d*)$/) {
                   1896:                         $currlimit = $1;
                   1897:                     }
                   1898:                 }
                   1899:             }
                   1900:             if (!$curroption) {
                   1901:                 $curroption = 'norequest';
                   1902:             }
                   1903:             $datatable .= '<th>'.$titles{$item}.'</th>';
                   1904:             foreach my $option (@options) {
                   1905:                 my $val = $option;
                   1906:                 if ($option eq 'norequest') {
                   1907:                     $val = 0;
                   1908:                 }
                   1909:                 if ($option eq 'validate') {
                   1910:                     my $canvalidate = 0;
                   1911:                     if (ref($validations{$item}) eq 'HASH') {
                   1912:                         if ($validations{$item}{'default'}) {
                   1913:                             $canvalidate = 1;
                   1914:                         }
                   1915:                     }
                   1916:                     next if (!$canvalidate);
                   1917:                 }
                   1918:                 my $checked = '';
                   1919:                 if ($option eq $curroption) {
                   1920:                     $checked = ' checked="checked"';
                   1921:                 } elsif ($option eq 'autolimit') {
                   1922:                     if ($curroption =~ /^autolimit/) {
                   1923:                         $checked = ' checked="checked"';
                   1924:                     }
                   1925:                 }
                   1926:                 $defcell{$item} .= '<span class="LC_nobreak"><label>'.
                   1927:                                   '<input type="radio" name="crsreq_'.$item.
                   1928:                                   '_default" value="'.$val.'"'.$checked.' />'.
                   1929:                                   $titles{$option}.'</label>';
                   1930:                 if ($option eq 'autolimit') {
1.127     raeburn  1931:                     $defcell{$item} .= '&nbsp;<input type="text" name="crsreq_'.
1.101     raeburn  1932:                                        $item.'_limit_default" size="1" '.
                   1933:                                        'value="'.$currlimit.'" />';
                   1934:                 }
1.127     raeburn  1935:                 $defcell{$item} .= '</span> ';
1.104     raeburn  1936:                 if ($option eq 'autolimit') {
1.127     raeburn  1937:                     $defcell{$item} .= $titles{'unlimited'};
1.104     raeburn  1938:                 }
1.101     raeburn  1939:             }
1.163     raeburn  1940:         } elsif ($context eq 'requestauthor') {
                   1941:             my $curroption;
                   1942:             if (ref($settings) eq 'HASH') {
1.172     raeburn  1943:                 $curroption = $settings->{'default'};
1.163     raeburn  1944:             }
                   1945:             if (!$curroption) {
                   1946:                 $curroption = 'norequest';
                   1947:             }
                   1948:             foreach my $option (@options) {
                   1949:                 my $val = $option;
                   1950:                 if ($option eq 'norequest') {
                   1951:                     $val = 0;
                   1952:                 }
                   1953:                 my $checked = '';
                   1954:                 if ($option eq $curroption) {
                   1955:                     $checked = ' checked="checked"';
                   1956:                 }
                   1957:                 $datatable .= '<span class="LC_nobreak"><label>'.
                   1958:                               '<input type="radio" name="authorreq_default"'.
                   1959:                               ' value="'.$val.'"'.$checked.' />'.
                   1960:                               $titles{$option}.'</label></span>&nbsp; ';
                   1961:             }
1.101     raeburn  1962:         } else {
                   1963:             my $checked = 'checked="checked" ';
                   1964:             if (ref($settings) eq 'HASH') {
                   1965:                 if (ref($settings->{$item}) eq 'HASH') {
                   1966:                     if ($settings->{$item}->{'default'} == 0) {
                   1967:                         $checked = '';
                   1968:                     } elsif ($settings->{$item}->{'default'} == 1) {
                   1969:                         $checked = 'checked="checked" ';
                   1970:                     }
1.78      raeburn  1971:                 }
1.72      raeburn  1972:             }
1.101     raeburn  1973:             $datatable .= '<span class="LC_nobreak"><label>'.
                   1974:                           '<input type="checkbox" name="'.$context.'_'.$item.
                   1975:                           '" value="default" '.$checked.'/>'.$titles{$item}.
                   1976:                           '</label></span>&nbsp; ';
                   1977:         }
                   1978:     }
                   1979:     if ($context eq 'requestcourses') {
                   1980:         $datatable .= '</tr><tr>';
                   1981:         foreach my $item (@usertools) {
1.106     raeburn  1982:             $datatable .= '<td style="vertical-align: top">'.$defcell{$item}.'</td>';
1.72      raeburn  1983:         }
1.101     raeburn  1984:         $datatable .= '</tr></table>';
1.72      raeburn  1985:     }
1.86      raeburn  1986:     $datatable .= '</td>';
1.163     raeburn  1987:     unless (($context eq 'requestcourses') || ($context eq 'requestauthor')) {
1.197     raeburn  1988:         $datatable .= '<td class="LC_right_item">'.
                   1989:                       '<span class="LC_nobreak">'.&mt('Portfolio').':&nbsp;'.
1.86      raeburn  1990:                       '<input type="text" name="defaultquota" value="'.
1.197     raeburn  1991:                       $defaultquota.'" size="5" /></span>'.('&nbsp;' x2).
                   1992:                       '<span class="LC_nobreak">'.&mt('Authoring').':&nbsp;'.
                   1993:                       '<input type="text" name="authorquota" value="'.
                   1994:                       $authorquota.'" size="5" /></span></td>';
1.86      raeburn  1995:     }
                   1996:     $datatable .= '</tr>';
1.72      raeburn  1997:     $typecount ++;
                   1998:     $css_class = $typecount%2?' class="LC_odd_row"':'';
                   1999:     $datatable .= '<tr'.$css_class.'>'.
1.197     raeburn  2000:                   '<td>'.&mt('LON-CAPA Advanced Users').'<br />';
1.104     raeburn  2001:     if ($context eq 'requestcourses') {
1.109     raeburn  2002:         $datatable .= &mt('(overrides affiliation, if set)').
                   2003:                       '</td>'.
                   2004:                       '<td class="LC_left_item">'.
                   2005:                       '<table><tr>';
1.101     raeburn  2006:     } else {
1.109     raeburn  2007:         $datatable .= &mt('(overrides affiliation, if checked)').
                   2008:                       '</td>'.
                   2009:                       '<td class="LC_left_item" colspan="2">'.
                   2010:                       '<br />';
1.101     raeburn  2011:     }
                   2012:     my %advcell;
1.72      raeburn  2013:     foreach my $item (@usertools) {
1.101     raeburn  2014:         if ($context eq 'requestcourses') {
                   2015:             my ($curroption,$currlimit);
                   2016:             if (ref($settings) eq 'HASH') {
                   2017:                 if (ref($settings->{$item}) eq 'HASH') {
                   2018:                     $curroption = $settings->{$item}->{'_LC_adv'};
                   2019:                     if ($curroption =~ /^autolimit=(\d*)$/) {
                   2020:                         $currlimit = $1;
                   2021:                     }
                   2022:                 }
                   2023:             }
                   2024:             $datatable .= '<th>'.$titles{$item}.'</th>';
1.104     raeburn  2025:             my $checked = '';
                   2026:             if ($curroption eq '') {
                   2027:                 $checked = ' checked="checked"';
                   2028:             }
                   2029:             $advcell{$item} .= '<span class="LC_nobreak"><label>'.
                   2030:                                '<input type="radio" name="crsreq_'.$item.
                   2031:                                '__LC_adv" value=""'.$checked.' />'.
                   2032:                                &mt('No override set').'</label></span>&nbsp; ';
1.101     raeburn  2033:             foreach my $option (@options) {
                   2034:                 my $val = $option;
                   2035:                 if ($option eq 'norequest') {
                   2036:                     $val = 0;
                   2037:                 }
                   2038:                 if ($option eq 'validate') {
                   2039:                     my $canvalidate = 0;
                   2040:                     if (ref($validations{$item}) eq 'HASH') {
                   2041:                         if ($validations{$item}{'_LC_adv'}) {
                   2042:                             $canvalidate = 1;
                   2043:                         }
                   2044:                     }
                   2045:                     next if (!$canvalidate);
                   2046:                 }
                   2047:                 my $checked = '';
1.104     raeburn  2048:                 if ($val eq $curroption) {
1.101     raeburn  2049:                     $checked = ' checked="checked"';
                   2050:                 } elsif ($option eq 'autolimit') {
                   2051:                     if ($curroption =~ /^autolimit/) {
                   2052:                         $checked = ' checked="checked"';
                   2053:                     }
                   2054:                 }
                   2055:                 $advcell{$item} .= '<span class="LC_nobreak"><label>'.
                   2056:                                   '<input type="radio" name="crsreq_'.$item.
                   2057:                                   '__LC_adv" value="'.$val.'"'.$checked.' />'.
                   2058:                                   $titles{$option}.'</label>';
                   2059:                 if ($option eq 'autolimit') {
1.127     raeburn  2060:                     $advcell{$item} .= '&nbsp;<input type="text" name="crsreq_'.
1.101     raeburn  2061:                                        $item.'_limit__LC_adv" size="1" '.
                   2062:                                        'value="'.$currlimit.'" />';
                   2063:                 }
1.127     raeburn  2064:                 $advcell{$item} .= '</span> ';
1.104     raeburn  2065:                 if ($option eq 'autolimit') {
1.127     raeburn  2066:                     $advcell{$item} .= $titles{'unlimited'};
1.104     raeburn  2067:                 }
1.101     raeburn  2068:             }
1.163     raeburn  2069:         } elsif ($context eq 'requestauthor') {
                   2070:             my $curroption;
                   2071:             if (ref($settings) eq 'HASH') {
                   2072:                 $curroption = $settings->{'_LC_adv'};
                   2073:             }
                   2074:             my $checked = '';
                   2075:             if ($curroption eq '') {
                   2076:                 $checked = ' checked="checked"';
                   2077:             }
                   2078:             $datatable .= '<span class="LC_nobreak"><label>'.
                   2079:                           '<input type="radio" name="authorreq__LC_adv"'.
                   2080:                           ' value=""'.$checked.' />'.
                   2081:                           &mt('No override set').'</label></span>&nbsp; ';
                   2082:             foreach my $option (@options) {
                   2083:                 my $val = $option;
                   2084:                 if ($option eq 'norequest') {
                   2085:                     $val = 0;
                   2086:                 }
                   2087:                 my $checked = '';
                   2088:                 if ($val eq $curroption) {
                   2089:                     $checked = ' checked="checked"';
                   2090:                 }
                   2091:                 $datatable .= '<span class="LC_nobreak"><label>'.
1.173     raeburn  2092:                               '<input type="radio" name="authorreq__LC_adv"'.
                   2093:                               ' value="'.$val.'"'.$checked.' />'.
1.163     raeburn  2094:                               $titles{$option}.'</label></span>&nbsp; ';
                   2095:             }
1.101     raeburn  2096:         } else {
                   2097:             my $checked = 'checked="checked" ';
                   2098:             if (ref($settings) eq 'HASH') {
                   2099:                 if (ref($settings->{$item}) eq 'HASH') {
                   2100:                     if ($settings->{$item}->{'_LC_adv'} == 0) {
                   2101:                         $checked = '';
                   2102:                     } elsif ($settings->{$item}->{'_LC_adv'} == 1) {
                   2103:                         $checked = 'checked="checked" ';
                   2104:                     }
1.79      raeburn  2105:                 }
1.72      raeburn  2106:             }
1.101     raeburn  2107:             $datatable .= '<span class="LC_nobreak"><label>'.
                   2108:                           '<input type="checkbox" name="'.$context.'_'.$item.
                   2109:                           '" value="_LC_adv" '.$checked.'/>'.$titles{$item}.
                   2110:                           '</label></span>&nbsp; ';
                   2111:         }
                   2112:     }
                   2113:     if ($context eq 'requestcourses') {
                   2114:         $datatable .= '</tr><tr>';
                   2115:         foreach my $item (@usertools) {
1.106     raeburn  2116:             $datatable .= '<td style="vertical-align: top">'.$advcell{$item}.'</td>';
1.72      raeburn  2117:         }
1.101     raeburn  2118:         $datatable .= '</tr></table>';
1.72      raeburn  2119:     }
1.98      raeburn  2120:     $datatable .= '</td></tr>';
1.30      raeburn  2121:     $$rowtotal += $typecount;
1.3       raeburn  2122:     return $datatable;
                   2123: }
                   2124: 
1.163     raeburn  2125: sub print_requestmail {
                   2126:     my ($dom,$action,$settings,$rowtotal) = @_;
1.208     raeburn  2127:     my ($now,$datatable,%currapp);
1.102     raeburn  2128:     $now = time;
                   2129:     if (ref($settings) eq 'HASH') {
                   2130:         if (ref($settings->{'notify'}) eq 'HASH') {
                   2131:             if ($settings->{'notify'}{'approval'} ne '') {
1.224     raeburn  2132:                 map {$currapp{$_}=1;} split(/,/,$settings->{'notify'}{'approval'});
1.102     raeburn  2133:             }
                   2134:         }
                   2135:     }
1.191     raeburn  2136:     my $numinrow = 2;
1.224     raeburn  2137:     my $css_class;
                   2138:     $css_class = ($$rowtotal%2? ' class="LC_odd_row"':'');
1.163     raeburn  2139:     my $text;
                   2140:     if ($action eq 'requestcourses') {
                   2141:         $text = &mt('Receive notification of course requests requiring approval');
1.224     raeburn  2142:     } elsif ($action eq 'requestauthor') {
                   2143:         $text = &mt('Receive notification of Authoring Space requests requiring approval');
1.163     raeburn  2144:     } else {
1.224     raeburn  2145:        $text = &mt('Receive notification of queued requests for self-created user accounts requiring approval');
1.163     raeburn  2146:     }
1.224     raeburn  2147:     $datatable = '<tr'.$css_class.'>'.
1.163     raeburn  2148:                  ' <td>'.$text.'</td>'.
1.102     raeburn  2149:                  ' <td class="LC_left_item">';
1.191     raeburn  2150:     my ($numdc,$table,$rows) = &active_dc_picker($dom,$numinrow,'checkbox',
1.224     raeburn  2151:                                                  $action.'notifyapproval',%currapp);
1.191     raeburn  2152:     if ($numdc > 0) {
                   2153:         $datatable .= $table;
1.102     raeburn  2154:     } else {
                   2155:         $datatable .= &mt('There are no active Domain Coordinators');
                   2156:     }
                   2157:     $datatable .='</td></tr>';
                   2158:     return $datatable;
                   2159: }
                   2160: 
1.216     raeburn  2161: sub print_studentcode {
                   2162:     my ($settings,$rowtotal) = @_;
                   2163:     my $rownum = 0; 
1.218     raeburn  2164:     my ($output,%current);
                   2165:     my @crstypes = ('official','unofficial','community','textbook');
1.248     raeburn  2166:     if (ref($settings) eq 'HASH') {
                   2167:         if (ref($settings->{'uniquecode'}) eq 'HASH') {
                   2168:             foreach my $type (@crstypes) {
                   2169:                 $current{$type} = $settings->{'uniquecode'}{$type};
                   2170:             }
1.218     raeburn  2171:         }
                   2172:     }
                   2173:     $output .= '<tr>'.
                   2174:                '<td class="LC_left_item">'.&mt('Generate unique six character code as course identifier?').'</td>'.
                   2175:                '<td class="LC_left_item">';
                   2176:     foreach my $type (@crstypes) {
                   2177:         my $check = ' ';
                   2178:         if ($current{$type}) {
                   2179:             $check = ' checked="checked" ';
                   2180:         }
                   2181:         $output .= '<span class="LC_nobreak"><label>'.
                   2182:                    '<input type="checkbox" name="uniquecode" value="'.$type.'"'.$check.'/>'.
                   2183:                    &mt($type).'</label></span>'.('&nbsp;'x2).' ';
                   2184:     }
                   2185:     $output .= '</td></tr>';
                   2186:     $$rowtotal ++;
                   2187:     return $output;
1.216     raeburn  2188: }
                   2189: 
                   2190: sub print_textbookcourses {
1.242     raeburn  2191:     my ($dom,$type,$settings,$rowtotal) = @_;
1.216     raeburn  2192:     my $rownum = 0;
                   2193:     my $css_class;
                   2194:     my $itemcount = 1;
                   2195:     my $maxnum = 0;
                   2196:     my $bookshash;
                   2197:     if (ref($settings) eq 'HASH') {
1.242     raeburn  2198:         $bookshash = $settings->{$type};
1.216     raeburn  2199:     }
                   2200:     my %ordered;
                   2201:     if (ref($bookshash) eq 'HASH') {
                   2202:         foreach my $item (keys(%{$bookshash})) {
                   2203:             if (ref($bookshash->{$item}) eq 'HASH') {
                   2204:                 my $num = $bookshash->{$item}{'order'};
                   2205:                 $ordered{$num} = $item;
                   2206:             }
                   2207:         }
                   2208:     }
                   2209:     my $confname = $dom.'-domainconfig';
                   2210:     my $switchserver = &check_switchserver($dom,$confname);
1.242     raeburn  2211:     my $maxnum = scalar(keys(%ordered));
                   2212:     my $datatable;
1.216     raeburn  2213:     if (keys(%ordered)) {
                   2214:         my @items = sort { $a <=> $b } keys(%ordered);
                   2215:         for (my $i=0; $i<@items; $i++) {
                   2216:             $css_class = $itemcount%2?' class="LC_odd_row"':'';
                   2217:             my $key = $ordered{$items[$i]};
                   2218:             my %coursehash=&Apache::lonnet::coursedescription($key);
                   2219:             my $coursetitle = $coursehash{'description'};
1.243     raeburn  2220:             my ($subject,$title,$author,$publisher,$image,$imgsrc,$cdom,$cnum);
1.216     raeburn  2221:             if (ref($bookshash->{$key}) eq 'HASH') {
                   2222:                 $subject = $bookshash->{$key}->{'subject'};
                   2223:                 $title = $bookshash->{$key}->{'title'};
1.242     raeburn  2224:                 if ($type eq 'textbooks') {
1.243     raeburn  2225:                     $publisher = $bookshash->{$key}->{'publisher'};
1.242     raeburn  2226:                     $author = $bookshash->{$key}->{'author'};
                   2227:                     $image = $bookshash->{$key}->{'image'};
                   2228:                     if ($image ne '') {
                   2229:                         my ($path,$imagefile) = ($image =~ m{^(.+)/([^/]+)$});
                   2230:                         my $imagethumb = "$path/tn-".$imagefile;
                   2231:                         $imgsrc = '<img src="'.$imagethumb.'" alt="'.&mt('Textbook image').'" />';
                   2232:                     }
1.216     raeburn  2233:                 }
                   2234:             }
1.242     raeburn  2235:             my $chgstr = ' onchange="javascript:reorderBooks(this.form,'."'$type".'_'."$key','$type'".');"';
1.216     raeburn  2236:             $datatable .= '<tr '.$css_class.'><td><span class="LC_nobreak">'
1.242     raeburn  2237:                          .'<select name="'.$type.'_'.$key.'"'.$chgstr.'>';
1.216     raeburn  2238:             for (my $k=0; $k<=$maxnum; $k++) {
                   2239:                 my $vpos = $k+1;
                   2240:                 my $selstr;
                   2241:                 if ($k == $i) {
                   2242:                     $selstr = ' selected="selected" ';
                   2243:                 }
                   2244:                 $datatable .= '<option value="'.$k.'"'.$selstr.'>'.$vpos.'</option>';
                   2245:             }
                   2246:             $datatable .= '</select>'.('&nbsp;'x2).
1.242     raeburn  2247:                 '<label><input type="checkbox" name="'.$type.'_del" value="'.$key.'" />'.
1.216     raeburn  2248:                 &mt('Delete?').'</label></span></td>'.
                   2249:                 '<td colspan="2">'.
1.242     raeburn  2250:                 '<span class="LC_nobreak">'.&mt('Subject:').'<input type="text" size="15" name="'.$type.'_subject_'.$i.'" value="'.$subject.'" /></span> '.
1.216     raeburn  2251:                 ('&nbsp;'x2).
1.242     raeburn  2252:                 '<span class="LC_nobreak">'.&mt('Title:').'<input type="text" size="30" name="'.$type.'_title_'.$i.'" value="'.$title.'" /></span> ';
                   2253:             if ($type eq 'textbooks') {
                   2254:                 $datatable .= ('&nbsp;'x2).
1.243     raeburn  2255:                               '<span class="LC_nobreak">'.&mt('Publisher:').'<input type="text" size="10" name="'.$type.'_publisher_'.$i.'" value="'.$publisher.'" /></span> '.
                   2256:                               ('&nbsp;'x2).
1.242     raeburn  2257:                               '<span class="LC_nobreak">'.&mt('Author(s):').'<input type="text" size="25" name="'.$type.'_author_'.$i.'" value="'.$author.'" /></span> '.
                   2258:                               ('&nbsp;'x2).
                   2259:                               '<span class="LC_nobreak">'.&mt('Thumbnail:');
                   2260:                 if ($image) {
                   2261:                     $datatable .= '<span class="LC_nobreak">'.
                   2262:                                   $imgsrc.
                   2263:                                   '<label><input type="checkbox" name="'.$type.'_image_del"'.
                   2264:                                   ' value="'.$key.'" />'.&mt('Delete?').'</label></span> '.
                   2265:                                   '<span class="LC_nobreak">&nbsp;'.&mt('Replace:').'&nbsp;';
                   2266:                 }
                   2267:                 if ($switchserver) {
                   2268:                     $datatable .= &mt('Upload to library server: [_1]',$switchserver);
                   2269:                 } else {
                   2270:                     $datatable .= '<input type="file" name="'.$type.'_image_'.$i.'" value="" />';
                   2271:                 }
1.216     raeburn  2272:             }
1.242     raeburn  2273:             $datatable .= '<input type="hidden" name="'.$type.'_id_'.$i.'" value="'.$type.'_'.$key.'" /></span> '.
1.216     raeburn  2274:                           '<span class="LC_nobreak">'.&mt('LON-CAPA course:').'&nbsp;'.
                   2275:                           $coursetitle.'</span></td></tr>'."\n";
                   2276:             $itemcount ++;
                   2277:         }
                   2278:     }
                   2279:     $css_class = $itemcount%2?' class="LC_odd_row"':'';
1.242     raeburn  2280:     my $chgstr = ' onchange="javascript:reorderBooks(this.form,'."'$type"."_addbook_pos','$type'".');"';
1.216     raeburn  2281:     $datatable .= '<tr '.$css_class.'><td><span class="LC_nobreak">'."\n".
1.242     raeburn  2282:                   '<input type="hidden" name="'.$type.'_maxnum" value="'.$maxnum.'" />'."\n".
                   2283:                   '<select name="'.$type.'_addbook_pos"'.$chgstr.'>';
1.216     raeburn  2284:     for (my $k=0; $k<$maxnum+1; $k++) {
                   2285:         my $vpos = $k+1;
                   2286:         my $selstr;
                   2287:         if ($k == $maxnum) {
                   2288:             $selstr = ' selected="selected" ';
                   2289:         }
                   2290:         $datatable .= '<option value="'.$k.'"'.$selstr.'>'.$vpos.'</option>';
                   2291:     }
                   2292:     $datatable .= '</select>&nbsp;'."\n".
1.242     raeburn  2293:                   '<input type="checkbox" name="'.$type.'_addbook" value="1" />'.&mt('Add').'</td>'."\n".
1.216     raeburn  2294:                   '<td colspan="2">'.
1.242     raeburn  2295:                   '<span class="LC_nobreak">'.&mt('Subject:').'<input type="text" size="15" name="'.$type.'_addbook_subject" value="" /></span> '."\n".
1.216     raeburn  2296:                   ('&nbsp;'x2).
1.242     raeburn  2297:                   '<span class="LC_nobreak">'.&mt('Title:').'<input type="text" size="30" name="'.$type.'_addbook_title" value="" /></span> '."\n".
                   2298:                   ('&nbsp;'x2);
                   2299:     if ($type eq 'textbooks') {
1.243     raeburn  2300:         $datatable .= '<span class="LC_nobreak">'.&mt('Publisher:').'<input type="text" size="10" name="'.$type.'_addbook_publisher" value="" /></span> '."\n".
                   2301:                       ('&nbsp;'x2).
                   2302:                       '<span class="LC_nobreak">'.&mt('Author(s):').'<input type="text" size="25" name="'.$type.'_addbook_author" value="" /></span> '."\n".
1.242     raeburn  2303:                       ('&nbsp;'x2).
                   2304:                       '<span class="LC_nobreak">'.&mt('Image:').'&nbsp;';
                   2305:         if ($switchserver) {
                   2306:             $datatable .= &mt('Upload to library server: [_1]',$switchserver);
                   2307:         } else {
                   2308:             $datatable .= '<input type="file" name="'.$type.'_addbook_image" value="" />';
                   2309:         }
1.216     raeburn  2310:     }
                   2311:     $datatable .= '</span>'."\n".
                   2312:                   '<span class="LC_nobreak">'.&mt('LON-CAPA course:').'&nbsp;'.
1.242     raeburn  2313:                   &Apache::loncommon::select_dom_form($env{'request.role.domain'},$type.'_addbook_cdom').
                   2314:                   '<input type="text" size="25" name="'.$type.'_addbook_cnum" value="" />'.
1.216     raeburn  2315:                   &Apache::loncommon::selectcourse_link
1.242     raeburn  2316:                       ('display',$type.'_addbook_cnum',$type.'_addbook_cdom',undef,undef,undef,'Course');
1.216     raeburn  2317:                   '</span></td>'."\n".
                   2318:                   '</tr>'."\n";
                   2319:     $itemcount ++;
                   2320:     return $datatable;
                   2321: }
                   2322: 
1.217     raeburn  2323: sub textbookcourses_javascript {
1.242     raeburn  2324:     my ($settings) = @_;
                   2325:     return unless(ref($settings) eq 'HASH');
                   2326:     my (%ordered,%total,%jstext);
                   2327:     foreach my $type ('textbooks','templates') {
                   2328:         $total{$type} = 0;
                   2329:         if (ref($settings->{$type}) eq 'HASH') {
                   2330:             foreach my $item (keys(%{$settings->{$type}})) {
                   2331:                 if (ref($settings->{$type}->{$item}) eq 'HASH') {
                   2332:                     my $num = $settings->{$type}->{$item}{'order'};
                   2333:                     $ordered{$type}{$num} = $item;
                   2334:                 }
                   2335:             }
                   2336:             $total{$type} = scalar(keys(%{$settings->{$type}}));
                   2337:         }
                   2338:         my @jsarray = ();
                   2339:         foreach my $item (sort {$a <=> $b } (keys(%{$ordered{$type}}))) {
                   2340:             push(@jsarray,$ordered{$type}{$item});
                   2341:         }
                   2342:         $jstext{$type} = '    var '.$type.' = Array('."'".join("','",@jsarray)."'".');'."\n";
1.217     raeburn  2343:     }
                   2344:     return <<"ENDSCRIPT";
                   2345: <script type="text/javascript">
                   2346: // <![CDATA[
1.242     raeburn  2347: function reorderBooks(form,item,caller) {
1.217     raeburn  2348:     var changedVal;
1.242     raeburn  2349: $jstext{'textbooks'};
                   2350: $jstext{'templates'};
                   2351:     var newpos;
                   2352:     var maxh;
                   2353:     if (caller == 'textbooks') {  
                   2354:         newpos = 'textbooks_addbook_pos';
                   2355:         maxh = 1 + $total{'textbooks'};
                   2356:     } else {
                   2357:         newpos = 'templates_addbook_pos';
                   2358:         maxh = 1 + $total{'templates'};
                   2359:     }
1.217     raeburn  2360:     var current = new Array;
                   2361:     var newitemVal = form.elements[newpos].options[form.elements[newpos].selectedIndex].value;
                   2362:     if (item == newpos) {
                   2363:         changedVal = newitemVal;
                   2364:     } else {
                   2365:         changedVal = form.elements[item].options[form.elements[item].selectedIndex].value;
                   2366:         current[newitemVal] = newpos;
                   2367:     }
1.242     raeburn  2368:     if (caller == 'textbooks') {
                   2369:         for (var i=0; i<textbooks.length; i++) {
                   2370:             var elementName = 'textbooks_'+textbooks[i];
                   2371:             if (elementName != item) {
                   2372:                 if (form.elements[elementName]) {
                   2373:                     var currVal = form.elements[elementName].options[form.elements[elementName].selectedIndex].value;
                   2374:                     current[currVal] = elementName;
                   2375:                 }
                   2376:             }
                   2377:         }
                   2378:     }
                   2379:     if (caller == 'templates') {
                   2380:         for (var i=0; i<templates.length; i++) {
                   2381:             var elementName = 'templates_'+templates[i];
                   2382:             if (elementName != item) {
                   2383:                 if (form.elements[elementName]) {
                   2384:                     var currVal = form.elements[elementName].options[form.elements[elementName].selectedIndex].value;
                   2385:                     current[currVal] = elementName;
                   2386:                 }
1.217     raeburn  2387:             }
                   2388:         }
                   2389:     }
                   2390:     var oldVal;
                   2391:     for (var j=0; j<maxh; j++) {
                   2392:         if (current[j] == undefined) {
                   2393:             oldVal = j;
                   2394:         }
                   2395:     }
                   2396:     if (oldVal < changedVal) {
                   2397:         for (var k=oldVal+1; k<=changedVal ; k++) {
                   2398:            var elementName = current[k];
                   2399:            form.elements[elementName].selectedIndex = form.elements[elementName].selectedIndex - 1;
                   2400:         }
                   2401:     } else {
                   2402:         for (var k=changedVal; k<oldVal; k++) {
                   2403:             var elementName = current[k];
                   2404:             form.elements[elementName].selectedIndex = form.elements[elementName].selectedIndex + 1;
                   2405:         }
                   2406:     }
                   2407:     return;
                   2408: }
                   2409: 
                   2410: // ]]>
                   2411: </script>
                   2412: 
                   2413: ENDSCRIPT
                   2414: }
                   2415: 
1.3       raeburn  2416: sub print_autoenroll {
1.30      raeburn  2417:     my ($dom,$settings,$rowtotal) = @_;
1.3       raeburn  2418:     my $autorun = &Apache::lonnet::auto_run(undef,$dom),
1.129     raeburn  2419:     my ($defdom,$runon,$runoff,$coownerson,$coownersoff);
1.3       raeburn  2420:     if (ref($settings) eq 'HASH') {
                   2421:         if (exists($settings->{'run'})) {
                   2422:             if ($settings->{'run'} eq '0') {
                   2423:                 $runoff = ' checked="checked" ';
                   2424:                 $runon = ' ';
                   2425:             } else {
                   2426:                 $runon = ' checked="checked" ';
                   2427:                 $runoff = ' ';
                   2428:             }
                   2429:         } else {
                   2430:             if ($autorun) {
                   2431:                 $runon = ' checked="checked" ';
                   2432:                 $runoff = ' ';
                   2433:             } else {
                   2434:                 $runoff = ' checked="checked" ';
                   2435:                 $runon = ' ';
                   2436:             }
                   2437:         }
1.129     raeburn  2438:         if (exists($settings->{'co-owners'})) {
                   2439:             if ($settings->{'co-owners'} eq '0') {
                   2440:                 $coownersoff = ' checked="checked" ';
                   2441:                 $coownerson = ' ';
                   2442:             } else {
                   2443:                 $coownerson = ' checked="checked" ';
                   2444:                 $coownersoff = ' ';
                   2445:             }
                   2446:         } else {
                   2447:             $coownersoff = ' checked="checked" ';
                   2448:             $coownerson = ' ';
                   2449:         }
1.3       raeburn  2450:         if (exists($settings->{'sender_domain'})) {
                   2451:             $defdom = $settings->{'sender_domain'};
                   2452:         }
1.14      raeburn  2453:     } else {
                   2454:         if ($autorun) {
                   2455:             $runon = ' checked="checked" ';
                   2456:             $runoff = ' ';
                   2457:         } else {
                   2458:             $runoff = ' checked="checked" ';
                   2459:             $runon = ' ';
                   2460:         }
1.3       raeburn  2461:     }
                   2462:     my $domform = &Apache::loncommon::select_dom_form($defdom,'sender_domain',1);
1.39      raeburn  2463:     my $notif_sender;
                   2464:     if (ref($settings) eq 'HASH') {
                   2465:         $notif_sender = $settings->{'sender_uname'};
                   2466:     }
1.3       raeburn  2467:     my $datatable='<tr class="LC_odd_row">'.
                   2468:                   '<td>'.&mt('Auto-enrollment active?').'</td>'.
1.8       raeburn  2469:                   '<td class="LC_right_item"><span class="LC_nobreak"><label>'.
1.3       raeburn  2470:                   '<input type="radio" name="autoenroll_run"'.
1.8       raeburn  2471:                   $runon.' value="1" />'.&mt('Yes').'</label>&nbsp;'.
                   2472:                   '<label><input type="radio" name="autoenroll_run"'.
1.14      raeburn  2473:                   $runoff.' value="0" />'.&mt('No').'</label></span></td>'.
1.3       raeburn  2474:                   '</tr><tr>'.
                   2475:                   '<td>'.&mt('Notification messages - sender').
1.8       raeburn  2476:                   '</td><td class="LC_right_item"><span class="LC_nobreak">'.
1.3       raeburn  2477:                   &mt('username').':&nbsp;'.
                   2478:                   '<input type="text" name="sender_uname" value="'.
1.39      raeburn  2479:                   $notif_sender.'" size="10" />&nbsp;&nbsp;'.&mt('domain').
1.129     raeburn  2480:                   ':&nbsp;'.$domform.'</span></td></tr>'.
                   2481:                   '<tr class="LC_odd_row">'.
                   2482:                   '<td>'.&mt('Automatically assign co-ownership').'</td>'.
                   2483:                   '<td class="LC_right_item"><span class="LC_nobreak"><label>'.
                   2484:                   '<input type="radio" name="autoassign_coowners"'.
                   2485:                   $coownerson.' value="1" />'.&mt('Yes').'</label>&nbsp;'.
                   2486:                   '<label><input type="radio" name="autoassign_coowners"'.
                   2487:                   $coownersoff.' value="0" />'.&mt('No').'</label></span></td>'.
                   2488:                   '</tr>';
                   2489:     $$rowtotal += 3;
1.3       raeburn  2490:     return $datatable;
                   2491: }
                   2492: 
                   2493: sub print_autoupdate {
1.30      raeburn  2494:     my ($position,$dom,$settings,$rowtotal) = @_;
1.3       raeburn  2495:     my $datatable;
                   2496:     if ($position eq 'top') {
                   2497:         my $updateon = ' ';
                   2498:         my $updateoff = ' checked="checked" ';
                   2499:         my $classlistson = ' ';
                   2500:         my $classlistsoff = ' checked="checked" ';
                   2501:         if (ref($settings) eq 'HASH') {
                   2502:             if ($settings->{'run'} eq '1') {
                   2503:                 $updateon = $updateoff;
                   2504:                 $updateoff = ' ';
                   2505:             }
                   2506:             if ($settings->{'classlists'} eq '1') {
                   2507:                 $classlistson = $classlistsoff;
                   2508:                 $classlistsoff = ' ';
                   2509:             }
                   2510:         }
                   2511:         my %title = (
                   2512:                    run => 'Auto-update active?',
                   2513:                    classlists => 'Update information in classlists?',
                   2514:                     );
                   2515:         $datatable = '<tr class="LC_odd_row">'. 
                   2516:                   '<td>'.&mt($title{'run'}).'</td>'.
1.8       raeburn  2517:                   '<td class="LC_right_item"><span class="LC_nobreak"><label>'.
1.3       raeburn  2518:                   '<input type="radio" name="autoupdate_run"'.
1.8       raeburn  2519:                   $updateon.' value="1" />'.&mt('Yes').'</label>&nbsp;'.
                   2520:                   '<label><input type="radio" name="autoupdate_run"'.
                   2521:                   $updateoff.'value="0" />'.&mt('No').'</label></span></td>'.
1.3       raeburn  2522:                   '</tr><tr>'.
                   2523:                   '<td>'.&mt($title{'classlists'}).'</td>'.
1.8       raeburn  2524:                   '<td class="LC_right_item"><span class="LC_nobreak">'.
                   2525:                   '<label><input type="radio" name="classlists"'.
                   2526:                   $classlistson.' value="1" />'.&mt('Yes').'</label>&nbsp;'.
                   2527:                   '<label><input type="radio" name="classlists"'.
                   2528:                   $classlistsoff.'value="0" />'.&mt('No').'</label></span></td>'.
1.3       raeburn  2529:                   '</tr>';
1.30      raeburn  2530:         $$rowtotal += 2;
1.131     raeburn  2531:     } elsif ($position eq 'middle') {
                   2532:         my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($dom);
                   2533:         my $numinrow = 3;
                   2534:         my $locknamesettings;
                   2535:         $datatable .= &insttypes_row($settings,$types,$usertypes,
                   2536:                                      $dom,$numinrow,$othertitle,
                   2537:                                     'lockablenames');
                   2538:         $$rowtotal ++;
1.3       raeburn  2539:     } else {
1.44      raeburn  2540:         my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($dom);
1.132     raeburn  2541:         my @fields = ('lastname','firstname','middlename','generation',
1.20      raeburn  2542:                       'permanentemail','id');
1.33      raeburn  2543:         my %fieldtitles = &Apache::loncommon::personal_data_fieldtitles();
1.3       raeburn  2544:         my $numrows = 0;
1.26      raeburn  2545:         if (ref($types) eq 'ARRAY') {
                   2546:             if (@{$types} > 0) {
                   2547:                 $datatable = 
                   2548:                     &usertype_update_row($settings,$usertypes,\%fieldtitles,
                   2549:                                          \@fields,$types,\$numrows);
1.30      raeburn  2550:                     $$rowtotal += @{$types}; 
1.26      raeburn  2551:             }
1.3       raeburn  2552:         }
                   2553:         $datatable .= 
                   2554:             &usertype_update_row($settings,{'default' => $othertitle},
                   2555:                                  \%fieldtitles,\@fields,['default'],
                   2556:                                  \$numrows);
1.30      raeburn  2557:         $$rowtotal ++;     
1.3       raeburn  2558:     }
                   2559:     return $datatable;
                   2560: }
                   2561: 
1.125     raeburn  2562: sub print_autocreate {
                   2563:     my ($dom,$settings,$rowtotal) = @_;
1.191     raeburn  2564:     my (%createon,%createoff,%currhash);
1.125     raeburn  2565:     my @types = ('xml','req');
                   2566:     if (ref($settings) eq 'HASH') {
                   2567:         foreach my $item (@types) {
                   2568:             $createoff{$item} = ' checked="checked" ';
                   2569:             $createon{$item} = ' ';
                   2570:             if (exists($settings->{$item})) {
                   2571:                 if ($settings->{$item}) {
                   2572:                     $createon{$item} = ' checked="checked" ';
                   2573:                     $createoff{$item} = ' ';
                   2574:                 }
                   2575:             }
                   2576:         }
1.210     raeburn  2577:         if ($settings->{'xmldc'} ne '') {
1.191     raeburn  2578:             $currhash{$settings->{'xmldc'}} = 1;
                   2579:         }
1.125     raeburn  2580:     } else {
                   2581:         foreach my $item (@types) {
                   2582:             $createoff{$item} = ' checked="checked" ';
                   2583:             $createon{$item} = ' ';
                   2584:         }
                   2585:     }
                   2586:     $$rowtotal += 2;
1.191     raeburn  2587:     my $numinrow = 2;
1.125     raeburn  2588:     my $datatable='<tr class="LC_odd_row">'.
                   2589:                   '<td>'.&mt('Create pending official courses from XML files').'</td>'.
                   2590:                   '<td class="LC_right_item"><span class="LC_nobreak"><label>'.
                   2591:                   '<input type="radio" name="autocreate_xml"'.
                   2592:                   $createon{'xml'}.' value="1" />'.&mt('Yes').'</label>&nbsp;'.
                   2593:                   '<label><input type="radio" name="autocreate_xml"'.
1.143     raeburn  2594:                   $createoff{'xml'}.' value="0" />'.&mt('No').'</label></span>'.
                   2595:                   '</td></tr><tr>'.
                   2596:                   '<td>'.&mt('Create pending requests for official courses (if validated)').'</td>'.
                   2597:                   '<td class="LC_right_item"><span class="LC_nobreak"><label>'.
                   2598:                   '<input type="radio" name="autocreate_req"'.
                   2599:                   $createon{'req'}.' value="1" />'.&mt('Yes').'</label>&nbsp;'.
                   2600:                   '<label><input type="radio" name="autocreate_req"'.
                   2601:                   $createoff{'req'}.' value="0" />'.&mt('No').'</label></span>';
1.191     raeburn  2602:     my ($numdc,$dctable,$rows) = &active_dc_picker($dom,$numinrow,'radio',
                   2603:                                                    'autocreate_xmldc',%currhash);
1.247     raeburn  2604:     $datatable .= '</td></tr><tr class="LC_odd_row"><td>';
1.125     raeburn  2605:     if ($numdc > 1) {
1.247     raeburn  2606:         $datatable .= &mt('Course creation processed as: (choose Dom. Coord.)').
                   2607:                       '</td><td class="LC_left_item">';
1.125     raeburn  2608:     } else {
1.247     raeburn  2609:         $datatable .= &mt('Course creation processed as:').
                   2610:                       '</td><td class="LC_right_item">';
1.125     raeburn  2611:     }
1.247     raeburn  2612:     $datatable .= $dctable.'</td></tr>';
1.191     raeburn  2613:     $$rowtotal += $rows;
1.125     raeburn  2614:     return $datatable;
                   2615: }
                   2616: 
1.23      raeburn  2617: sub print_directorysrch {
1.30      raeburn  2618:     my ($dom,$settings,$rowtotal) = @_;
1.23      raeburn  2619:     my $srchon = ' ';
                   2620:     my $srchoff = ' checked="checked" ';
1.25      raeburn  2621:     my ($exacton,$containson,$beginson);
1.24      raeburn  2622:     my $localon = ' ';
                   2623:     my $localoff = ' checked="checked" ';
1.23      raeburn  2624:     if (ref($settings) eq 'HASH') {
                   2625:         if ($settings->{'available'} eq '1') {
                   2626:             $srchon = $srchoff;
                   2627:             $srchoff = ' ';
                   2628:         }
1.24      raeburn  2629:         if ($settings->{'localonly'} eq '1') {
                   2630:             $localon = $localoff;
                   2631:             $localoff = ' ';
                   2632:         }
1.25      raeburn  2633:         if (ref($settings->{'searchtypes'}) eq 'ARRAY') {
                   2634:             foreach my $type (@{$settings->{'searchtypes'}}) {
                   2635:                 if ($type eq 'exact') {
                   2636:                     $exacton = ' checked="checked" ';
                   2637:                 } elsif ($type eq 'contains') {
                   2638:                     $containson = ' checked="checked" ';
                   2639:                 } elsif ($type eq 'begins') {
                   2640:                     $beginson = ' checked="checked" ';
                   2641:                 }
                   2642:             }
                   2643:         } else {
                   2644:             if ($settings->{'searchtypes'} eq 'exact') {
                   2645:                 $exacton = ' checked="checked" ';
                   2646:             } elsif ($settings->{'searchtypes'} eq 'contains') {
                   2647:                 $containson = ' checked="checked" ';
                   2648:             } elsif ($settings->{'searchtypes'} eq 'specify') {
                   2649:                 $exacton = ' checked="checked" ';
                   2650:                 $containson = ' checked="checked" ';
                   2651:             }
1.23      raeburn  2652:         }
                   2653:     }
                   2654:     my ($searchtitles,$titleorder) = &sorted_searchtitles();
1.45      raeburn  2655:     my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($dom);
1.23      raeburn  2656: 
                   2657:     my $numinrow = 4;
1.26      raeburn  2658:     my $cansrchrow = 0;
1.23      raeburn  2659:     my $datatable='<tr class="LC_odd_row">'.
1.30      raeburn  2660:                   '<td colspan="2"><span class ="LC_nobreak">'.&mt('Directory search available?').'</span></td>'.
1.23      raeburn  2661:                   '<td class="LC_right_item"><span class="LC_nobreak"><label>'.
                   2662:                   '<input type="radio" name="dirsrch_available"'.
                   2663:                   $srchon.' value="1" />'.&mt('Yes').'</label>&nbsp;'.
                   2664:                   '<label><input type="radio" name="dirsrch_available"'.
                   2665:                   $srchoff.' value="0" />'.&mt('No').'</label></span></td>'.
                   2666:                   '</tr><tr>'.
1.30      raeburn  2667:                   '<td colspan="2"><span class ="LC_nobreak">'.&mt('Other domains can search?').'</span></td>'.
1.24      raeburn  2668:                   '<td class="LC_right_item"><span class="LC_nobreak"><label>'.
                   2669:                   '<input type="radio" name="dirsrch_localonly"'.
                   2670:                   $localoff.' value="0" />'.&mt('Yes').'</label>&nbsp;'.
                   2671:                   '<label><input type="radio" name="dirsrch_localonly"'.
                   2672:                   $localon.' value="1" />'.&mt('No').'</label></span></td>'.
1.25      raeburn  2673:                   '</tr>';
1.30      raeburn  2674:     $$rowtotal += 2;
1.26      raeburn  2675:     if (ref($usertypes) eq 'HASH') {
                   2676:         if (keys(%{$usertypes}) > 0) {
1.93      raeburn  2677:             $datatable .= &insttypes_row($settings,$types,$usertypes,$dom,
                   2678:                                          $numinrow,$othertitle,'cansearch');
1.26      raeburn  2679:             $cansrchrow = 1;
                   2680:         }
                   2681:     }
                   2682:     if ($cansrchrow) {
1.30      raeburn  2683:         $$rowtotal ++;
1.26      raeburn  2684:         $datatable .= '<tr>';
                   2685:     } else {
                   2686:         $datatable .= '<tr class="LC_odd_row">';
                   2687:     }
1.30      raeburn  2688:     $datatable .= '<td><span class ="LC_nobreak">'.&mt('Supported search methods').
                   2689:                   '</span></td><td class="LC_left_item" colspan="2"><table><tr>';
1.25      raeburn  2690:     foreach my $title (@{$titleorder}) {
                   2691:         if (defined($searchtitles->{$title})) {
                   2692:             my $check = ' ';
1.93      raeburn  2693:             if (ref($settings) eq 'HASH') {
1.39      raeburn  2694:                 if (ref($settings->{'searchby'}) eq 'ARRAY') {
                   2695:                     if (grep(/^\Q$title\E$/,@{$settings->{'searchby'}})) {
                   2696:                         $check = ' checked="checked" ';
                   2697:                     }
1.25      raeburn  2698:                 }
                   2699:             }
                   2700:             $datatable .= '<td class="LC_left_item">'.
                   2701:                           '<span class="LC_nobreak"><label>'.
                   2702:                           '<input type="checkbox" name="searchby" '.
                   2703:                           'value="'.$title.'"'.$check.'/>'.
                   2704:                           $searchtitles->{$title}.'</label></span></td>';
                   2705:         }
                   2706:     }
1.26      raeburn  2707:     $datatable .= '</tr></table></td></tr>';
1.30      raeburn  2708:     $$rowtotal ++;
1.26      raeburn  2709:     if ($cansrchrow) {
                   2710:         $datatable .= '<tr class="LC_odd_row">';
                   2711:     } else {
                   2712:         $datatable .= '<tr>';
                   2713:     }
1.30      raeburn  2714:     $datatable .= '<td><span class ="LC_nobreak">'.&mt('Search latitude').'</span></td>'.   
1.26      raeburn  2715:                   '<td class="LC_left_item" colspan="2">'.
1.25      raeburn  2716:                   '<span class="LC_nobreak"><label>'.
                   2717:                   '<input type="checkbox" name="searchtypes" '.
                   2718:                   $exacton.' value="exact" />'.&mt('Exact match').
                   2719:                   '</label>&nbsp;'.
                   2720:                   '<label><input type="checkbox" name="searchtypes" '.
                   2721:                   $beginson.' value="begins" />'.&mt('Begins with').
                   2722:                   '</label>&nbsp;'.
                   2723:                   '<label><input type="checkbox" name="searchtypes" '.
                   2724:                   $containson.' value="contains" />'.&mt('Contains').
                   2725:                   '</label></span></td></tr>';
1.30      raeburn  2726:     $$rowtotal ++;
1.25      raeburn  2727:     return $datatable;
                   2728: }
                   2729: 
1.28      raeburn  2730: sub print_contacts {
1.30      raeburn  2731:     my ($dom,$settings,$rowtotal) = @_;
1.28      raeburn  2732:     my $datatable;
                   2733:     my @contacts = ('adminemail','supportemail');
1.134     raeburn  2734:     my (%checked,%to,%otheremails,%bccemails);
1.102     raeburn  2735:     my @mailings = ('errormail','packagesmail','lonstatusmail','helpdeskmail',
1.203     raeburn  2736:                     'requestsmail','updatesmail','idconflictsmail');
1.28      raeburn  2737:     foreach my $type (@mailings) {
                   2738:         $otheremails{$type} = '';
                   2739:     }
1.134     raeburn  2740:     $bccemails{'helpdeskmail'} = '';
1.28      raeburn  2741:     if (ref($settings) eq 'HASH') {
                   2742:         foreach my $item (@contacts) {
                   2743:             if (exists($settings->{$item})) {
                   2744:                 $to{$item} = $settings->{$item};
                   2745:             }
                   2746:         }
                   2747:         foreach my $type (@mailings) {
                   2748:             if (exists($settings->{$type})) {
                   2749:                 if (ref($settings->{$type}) eq 'HASH') {
                   2750:                     foreach my $item (@contacts) {
                   2751:                         if ($settings->{$type}{$item}) {
                   2752:                             $checked{$type}{$item} = ' checked="checked" ';
                   2753:                         }
                   2754:                     }
                   2755:                     $otheremails{$type} = $settings->{$type}{'others'};
1.134     raeburn  2756:                     if ($type eq 'helpdeskmail') {
                   2757:                         $bccemails{$type} = $settings->{$type}{'bcc'};
                   2758:                     }
1.28      raeburn  2759:                 }
1.89      raeburn  2760:             } elsif ($type eq 'lonstatusmail') {
                   2761:                 $checked{'lonstatusmail'}{'adminemail'} = ' checked="checked" ';
1.28      raeburn  2762:             }
                   2763:         }
                   2764:     } else {
                   2765:         $to{'supportemail'} = $Apache::lonnet::perlvar{'lonSupportEMail'};
                   2766:         $to{'adminemail'} = $Apache::lonnet::perlvar{'lonAdmEMail'};
                   2767:         $checked{'errormail'}{'adminemail'} = ' checked="checked" ';
                   2768:         $checked{'packagesmail'}{'adminemail'} = ' checked="checked" ';
1.89      raeburn  2769:         $checked{'helpdeskmail'}{'supportemail'} = ' checked="checked" ';
                   2770:         $checked{'lonstatusmail'}{'adminemail'} = ' checked="checked" '; 
1.102     raeburn  2771:         $checked{'requestsmail'}{'adminemail'} = ' checked="checked" ';
1.190     raeburn  2772:         $checked{'updatesmail'}{'adminemail'} = ' checked="checked" ';
1.203     raeburn  2773:         $checked{'idconflictsmail'}{'adminemail'} = ' checked="checked" ';
1.28      raeburn  2774:     }
                   2775:     my ($titles,$short_titles) = &contact_titles();
                   2776:     my $rownum = 0;
                   2777:     my $css_class;
                   2778:     foreach my $item (@contacts) {
1.69      raeburn  2779:         $css_class = $rownum%2?' class="LC_odd_row"':'';
1.30      raeburn  2780:         $datatable .= '<tr'.$css_class.'>'. 
                   2781:                   '<td><span class="LC_nobreak">'.$titles->{$item}.
                   2782:                   '</span></td><td class="LC_right_item">'.
1.28      raeburn  2783:                   '<input type="text" name="'.$item.'" value="'.
                   2784:                   $to{$item}.'" /></td></tr>';
1.203     raeburn  2785:         $rownum ++;
1.28      raeburn  2786:     }
                   2787:     foreach my $type (@mailings) {
1.69      raeburn  2788:         $css_class = $rownum%2?' class="LC_odd_row"':'';
1.28      raeburn  2789:         $datatable .= '<tr'.$css_class.'>'.
1.30      raeburn  2790:                       '<td><span class="LC_nobreak">'.
                   2791:                       $titles->{$type}.': </span></td>'.
1.28      raeburn  2792:                       '<td class="LC_left_item">'.
                   2793:                       '<span class="LC_nobreak">';
                   2794:         foreach my $item (@contacts) {
                   2795:             $datatable .= '<label>'.
                   2796:                           '<input type="checkbox" name="'.$type.'"'.
                   2797:                           $checked{$type}{$item}.
                   2798:                           ' value="'.$item.'" />'.$short_titles->{$item}.
                   2799:                           '</label>&nbsp;';
                   2800:         }
                   2801:         $datatable .= '</span><br />'.&mt('Others').':&nbsp;&nbsp;'.
                   2802:                       '<input type="text" name="'.$type.'_others" '.
1.134     raeburn  2803:                       'value="'.$otheremails{$type}.'"  />';
                   2804:         if ($type eq 'helpdeskmail') {
1.136     raeburn  2805:             $datatable .= '<br />'.&mt('Bcc:').('&nbsp;'x6).
1.134     raeburn  2806:                           '<input type="text" name="'.$type.'_bcc" '.
                   2807:                           'value="'.$bccemails{$type}.'"  />';
                   2808:         }
                   2809:         $datatable .= '</td></tr>'."\n";
1.203     raeburn  2810:         $rownum ++;
1.28      raeburn  2811:     }
1.203     raeburn  2812:     my %choices;
                   2813:     $choices{'reporterrors'} = &mt('E-mail error reports to [_1]',
                   2814:                                    &Apache::loncommon::modal_link('http://loncapa.org/core.html',
                   2815:                                    &mt('LON-CAPA core group - MSU'),600,500));
                   2816:     $choices{'reportupdates'} = &mt('E-mail record of completed LON-CAPA updates to [_1]',
                   2817:                                     &Apache::loncommon::modal_link('http://loncapa.org/core.html',
                   2818:                                     &mt('LON-CAPA core group - MSU'),600,500));
                   2819:     my @toggles = ('reporterrors','reportupdates');
                   2820:     my %defaultchecked = ('reporterrors'  => 'on',
                   2821:                           'reportupdates' => 'on');
                   2822:     (my $reports,$rownum) = &radiobutton_prefs($settings,\@toggles,\%defaultchecked,
                   2823:                                                \%choices,$rownum);
                   2824:     $datatable .= $reports;
1.30      raeburn  2825:     $$rowtotal += $rownum;
1.28      raeburn  2826:     return $datatable;
                   2827: }
                   2828: 
1.118     jms      2829: sub print_helpsettings {
1.168     raeburn  2830:     my ($dom,$confname,$settings,$rowtotal) = @_;
                   2831:     my ($datatable,$itemcount);
1.166     raeburn  2832:     $itemcount = 1;
1.168     raeburn  2833:     my (%choices,%defaultchecked,@toggles);
                   2834:     $choices{'submitbugs'} = &mt('Display link to: [_1]?',
                   2835:                                  &Apache::loncommon::modal_link('http://bugs.loncapa.org',
                   2836:                                  &mt('LON-CAPA bug tracker'),600,500));
                   2837:     %defaultchecked = ('submitbugs' => 'on');
                   2838:     @toggles = ('submitbugs',);
1.166     raeburn  2839: 
1.168     raeburn  2840:     ($datatable,$itemcount) = &radiobutton_prefs($settings,\@toggles,\%defaultchecked,
                   2841:                                                  \%choices,$itemcount);
1.166     raeburn  2842:     return $datatable;
1.121     raeburn  2843: }
                   2844: 
                   2845: sub radiobutton_prefs {
1.192     raeburn  2846:     my ($settings,$toggles,$defaultchecked,$choices,$itemcount,$onclick,
1.257     raeburn  2847:         $additional,$align) = @_;
1.121     raeburn  2848:     return unless ((ref($toggles) eq 'ARRAY') && (ref($defaultchecked) eq 'HASH') &&
                   2849:                    (ref($choices) eq 'HASH'));
                   2850: 
1.170     raeburn  2851:     my (%checkedon,%checkedoff,$datatable,$css_class);
1.121     raeburn  2852: 
                   2853:     foreach my $item (@{$toggles}) {
                   2854:         if ($defaultchecked->{$item} eq 'on') {
1.118     jms      2855:             $checkedon{$item} = ' checked="checked" ';
                   2856:             $checkedoff{$item} = ' ';
1.121     raeburn  2857:         } elsif ($defaultchecked->{$item} eq 'off') {
1.118     jms      2858:             $checkedoff{$item} = ' checked="checked" ';
                   2859:             $checkedon{$item} = ' ';
                   2860:         }
                   2861:     }
                   2862:     if (ref($settings) eq 'HASH') {
1.121     raeburn  2863:         foreach my $item (@{$toggles}) {
1.118     jms      2864:             if ($settings->{$item} eq '1') {
                   2865:                 $checkedon{$item} =  ' checked="checked" ';
                   2866:                 $checkedoff{$item} = ' ';
                   2867:             } elsif ($settings->{$item} eq '0') {
                   2868:                 $checkedoff{$item} =  ' checked="checked" ';
                   2869:                 $checkedon{$item} = ' ';
                   2870:             }
                   2871:         }
1.121     raeburn  2872:     }
1.192     raeburn  2873:     if ($onclick) {
                   2874:         $onclick = ' onclick="'.$onclick.'"';
                   2875:     }
1.121     raeburn  2876:     foreach my $item (@{$toggles}) {
1.118     jms      2877:         $css_class = $itemcount%2?' class="LC_odd_row"':'';
1.121     raeburn  2878:         $datatable .=
1.192     raeburn  2879:             '<tr'.$css_class.'><td valign="top">'.
                   2880:             '<span class="LC_nobreak">'.$choices->{$item}.
1.257     raeburn  2881:             '</span></td>';
                   2882:         if ($align eq 'left') {
                   2883:             $datatable .= '<td class="LC_left_item">';
                   2884:         } else {
                   2885:             $datatable .= '<td class="LC_right_item">';
                   2886:         }
                   2887:         $datatable .= 
                   2888:             '<span class="LC_nobreak">'.
1.118     jms      2889:             '<label><input type="radio" name="'.
1.192     raeburn  2890:             $item.'" '.$checkedon{$item}.' value="1"'.$onclick.' />'.&mt('Yes').
1.118     jms      2891:             '</label>&nbsp;<label><input type="radio" name="'.$item.'" '.
1.192     raeburn  2892:             $checkedoff{$item}.' value="0"'.$onclick.' />'.&mt('No').'</label>'.
                   2893:             '</span>'.$additional.
                   2894:             '</td>'.
1.118     jms      2895:             '</tr>';
                   2896:         $itemcount ++;
1.121     raeburn  2897:     }
                   2898:     return ($datatable,$itemcount);
                   2899: }
                   2900: 
                   2901: sub print_coursedefaults {
1.139     raeburn  2902:     my ($position,$dom,$settings,$rowtotal) = @_;
1.192     raeburn  2903:     my ($css_class,$datatable,%checkedon,%checkedoff,%defaultchecked,@toggles);
1.121     raeburn  2904:     my $itemcount = 1;
1.192     raeburn  2905:     my %choices =  &Apache::lonlocal::texthash (
                   2906:         canuse_pdfforms      => 'Course/Community users can create/upload PDF forms',
1.198     raeburn  2907:         uploadquota          => 'Default quota for files uploaded directly to course/community using Course Editor (MB)',
1.192     raeburn  2908:         anonsurvey_threshold => 'Responder count needed before showing submissions for anonymous surveys',
                   2909:         coursecredits        => 'Credits can be specified for courses',
1.257     raeburn  2910:         uselcmath            => 'Math preview uses LON-CAPA previewer (javascript) in place of DragMath (Java)',
                   2911:         usejsme              => 'Molecule editor uses JSME (HTML5) in place of JME (Java)',
                   2912:         postsubmit           => 'Disable submit button/keypress following student submission',
1.264     raeburn  2913:         canclone             => "People who may clone a course (besides course's owner and coordinators)",     
1.192     raeburn  2914:     );
1.198     raeburn  2915:     my %staticdefaults = (
                   2916:                            anonsurvey_threshold => 10,
                   2917:                            uploadquota          => 500,
1.257     raeburn  2918:                            postsubmit           => 60,
1.198     raeburn  2919:                          );
1.139     raeburn  2920:     if ($position eq 'top') {
1.257     raeburn  2921:         %defaultchecked = (
                   2922:                             'canuse_pdfforms' => 'off',
                   2923:                             'uselcmath'       => 'on',
                   2924:                             'usejsme'         => 'on',
1.264     raeburn  2925:                             'canclone'        => 'none', 
1.257     raeburn  2926:                           );
                   2927:         @toggles = ('canuse_pdfforms','uselcmath','usejsme');
1.139     raeburn  2928:         ($datatable,$itemcount) = &radiobutton_prefs($settings,\@toggles,\%defaultchecked,
1.257     raeburn  2929:                                                      \%choices,$itemcount);
1.264     raeburn  2930:         $css_class = $itemcount%2?' class="LC_odd_row"':'';
                   2931:         $datatable .=
                   2932:             '<tr'.$css_class.'><td valign="top">'.
                   2933:             '<span class="LC_nobreak">'.$choices{'canclone'}.
                   2934:             '</span></td><td class="LC_left_item">';
                   2935:         my $currcanclone = 'none';
                   2936:         my $onclick;
                   2937:         my @cloneoptions = ('none','domain');
                   2938:         my %clonetitles = (
                   2939:                              none     => 'No additional course requesters',
                   2940:                              domain   => "Any course requester in course's domain",
                   2941:                              instcode => 'Course requests for official courses ...',
                   2942:                           );
                   2943:         my (%codedefaults,@code_order,@posscodes);
                   2944:         if (&Apache::lonnet::auto_instcode_defaults($dom,\%codedefaults,
                   2945:                                                     \@code_order) eq 'ok') {
                   2946:             if (@code_order > 0) {
                   2947:                 push(@cloneoptions,'instcode');
                   2948:                 $onclick = ' onclick="toggleDisplay(this.form,'."'cloneinstcode'".');"';
                   2949:             }
                   2950:         }
                   2951:         if (ref($settings) eq 'HASH') {
                   2952:             if ($settings->{'canclone'}) {
                   2953:                 if (ref($settings->{'canclone'}) eq 'HASH') {
                   2954:                     if (ref($settings->{'canclone'}{'instcode'}) eq 'ARRAY') {
                   2955:                         if (@code_order > 0) {
                   2956:                             $currcanclone = 'instcode';
                   2957:                             @posscodes = @{$settings->{'canclone'}{'instcode'}};
                   2958:                         }
                   2959:                     }
                   2960:                 } elsif ($settings->{'canclone'} eq 'domain') {
                   2961:                     $currcanclone = $settings->{'canclone'};
                   2962:                 }
                   2963:             }
                   2964:         } 
                   2965:         foreach my $option (@cloneoptions) {
                   2966:             my ($checked,$additional);
                   2967:             if ($currcanclone eq $option) {
                   2968:                 $checked = ' checked="checked"';
                   2969:             }
                   2970:             if ($option eq 'instcode') {
                   2971:                 if (@code_order) {
                   2972:                     my $show = 'none';
                   2973:                     if ($checked) {
                   2974:                         $show = 'block';
                   2975:                     }
                   2976:                     $additional = '<div id="cloneinstcode" style="display:'.$show.'" />'.
                   2977:                                   &mt('Institutional codes for new and cloned course have identical:').
                   2978:                                   '<br />';
                   2979:                     foreach my $item (@code_order) {
                   2980:                         my $codechk;
                   2981:                         if ($checked) {
                   2982:                             if (grep(/^\Q$item\E$/,@posscodes)) {
                   2983:                                 $codechk = ' checked="checked"';
                   2984:                             }
                   2985:                         }
                   2986:                         $additional .= '<label>'.
                   2987:                                        '<input type="checkbox" name="clonecode" value="'.$item.'"'.$codechk.' />'.
                   2988:                                        $item.'</label>';
                   2989:                     }
                   2990:                     $additional .= ('&nbsp;'x2).'('.&mt('check as many as needed').')</div>';
                   2991:                 }
                   2992:             }
                   2993:             $datatable .=
                   2994:                 '<span class="LC_nobreak"><label><input type="radio" name="canclone"'.$checked.
                   2995:                 ' value="'.$option.'"'.$onclick.' />'.$clonetitles{$option}.
                   2996:                 '</label>&nbsp;'.$additional.'</span><br />';
                   2997:         }
                   2998:         $datatable .= '</td>'.
                   2999:                       '</tr>';
                   3000:         $itemcount ++;
1.139     raeburn  3001:     } else {
                   3002:         $css_class = $itemcount%2 ? ' class="LC_odd_row"' : '';
1.257     raeburn  3003:         my ($currdefresponder,%defcredits,%curruploadquota,%deftimeout);
1.192     raeburn  3004:         my $currusecredits = 0;
1.257     raeburn  3005:         my $postsubmitclient = 1;
1.216     raeburn  3006:         my @types = ('official','unofficial','community','textbook');
1.139     raeburn  3007:         if (ref($settings) eq 'HASH') {
                   3008:             $currdefresponder = $settings->{'anonsurvey_threshold'};
1.198     raeburn  3009:             if (ref($settings->{'uploadquota'}) eq 'HASH') {
                   3010:                 foreach my $type (keys(%{$settings->{'uploadquota'}})) {
                   3011:                     $curruploadquota{$type} = $settings->{'uploadquota'}{$type};
                   3012:                 }
                   3013:             }
1.192     raeburn  3014:             if (ref($settings->{'coursecredits'}) eq 'HASH') {
1.257     raeburn  3015:                 foreach my $type (@types) {
                   3016:                     next if ($type eq 'community');
                   3017:                     $defcredits{$type} = $settings->{'coursecredits'}->{$type};
                   3018:                     if ($defcredits{$type} ne '') {
                   3019:                         $currusecredits = 1;
                   3020:                     }
                   3021:                 }
                   3022:             }
                   3023:             if (ref($settings->{'postsubmit'}) eq 'HASH') {
                   3024:                 if ($settings->{'postsubmit'}->{'client'} eq 'off') {
                   3025:                     $postsubmitclient = 0;
                   3026:                     foreach my $type (@types) {
                   3027:                         $deftimeout{$type} = $staticdefaults{'postsubmit'};
                   3028:                     }
                   3029:                 } else {
                   3030:                     foreach my $type (@types) {
                   3031:                         if (ref($settings->{'postsubmit'}->{'timeout'}) eq 'HASH') {
                   3032:                             if ($settings->{'postsubmit'}->{'timeout'}->{$type} =~ /^\d+$/) {
                   3033:                                 $deftimeout{$type} = $settings->{'postsubmit'}->{'timeout'}->{$type}; 
                   3034:                             } else {
                   3035:                                 $deftimeout{$type} = $staticdefaults{'postsubmit'};
                   3036:                             }
                   3037:                         } else {
                   3038:                             $deftimeout{$type} = $staticdefaults{'postsubmit'};
                   3039:                         }
                   3040:                     }
                   3041:                 }
                   3042:             } else {
                   3043:                 foreach my $type (@types) {
                   3044:                     $deftimeout{$type} = $staticdefaults{'postsubmit'};
1.192     raeburn  3045:                 }
                   3046:             }
1.258     raeburn  3047:         } else {
                   3048:             foreach my $type (@types) {
                   3049:                 $deftimeout{$type} = $staticdefaults{'postsubmit'};
                   3050:             }
1.139     raeburn  3051:         }
                   3052:         if (!$currdefresponder) {
1.198     raeburn  3053:             $currdefresponder = $staticdefaults{'anonsurvey_threshold'};
1.139     raeburn  3054:         } elsif ($currdefresponder < 1) {
                   3055:             $currdefresponder = 1;
                   3056:         }
1.198     raeburn  3057:         foreach my $type (@types) {
                   3058:             if ($curruploadquota{$type} eq '') {
                   3059:                 $curruploadquota{$type} = $staticdefaults{'uploadquota'};
                   3060:             }
                   3061:         }
1.139     raeburn  3062:         $datatable .=
1.192     raeburn  3063:                 '<tr'.$css_class.'><td><span class="LC_nobreak">'.
                   3064:                 $choices{'anonsurvey_threshold'}.
1.139     raeburn  3065:                 '</span></td>'.
                   3066:                 '<td class="LC_right_item"><span class="LC_nobreak">'.
                   3067:                 '<input type="text" name="anonsurvey_threshold"'.
                   3068:                 ' value="'.$currdefresponder.'" size="5" /></span>'.
1.230     raeburn  3069:                 '</td></tr>'."\n";
                   3070:         $itemcount ++;
                   3071:         $css_class = $itemcount%2 ? ' class="LC_odd_row"' : '';
                   3072:         $datatable .= '<tr'.$css_class.'><td><span class="LC_nobreak">'.
                   3073:                       $choices{'uploadquota'}.
                   3074:                       '</span></td>'.
                   3075:                       '<td align="right" class="LC_right_item">'.
                   3076:                       '<table><tr>';
1.198     raeburn  3077:         foreach my $type (@types) {
                   3078:             $datatable .= '<td align="center">'.&mt($type).'<br />'.
                   3079:                            '<input type="text" name="uploadquota_'.$type.'"'.
                   3080:                            ' value="'.$curruploadquota{$type}.'" size="5" /></td>';
                   3081:         }
                   3082:         $datatable .= '</tr></table></td></tr>'."\n";
1.230     raeburn  3083:         $itemcount ++;
1.236     raeburn  3084:         my $onclick = "toggleDisplay(this.form,'credits');";
1.210     raeburn  3085:         my $display = 'none';
1.192     raeburn  3086:         if ($currusecredits) {
                   3087:             $display = 'block';
                   3088:         }
                   3089:         my $additional = '<div id="credits" style="display: '.$display.'">'.
1.257     raeburn  3090:                          '<i>'.&mt('Default credits').'</i><br /><table><tr>';
                   3091:         foreach my $type (@types) {
                   3092:             next if ($type eq 'community');
                   3093:             $additional .= '<td align="center">'.&mt($type).'<br />'.
                   3094:                            '<input type="text" name="'.$type.'_credits"'.
1.258     raeburn  3095:                            ' value="'.$defcredits{$type}.'" size="3" /></td>';
1.257     raeburn  3096:         }
                   3097:         $additional .= '</tr></table></div>'."\n";
1.192     raeburn  3098:         %defaultchecked = ('coursecredits' => 'off');
                   3099:         @toggles = ('coursecredits');
                   3100:         my $current = {
                   3101:                         'coursecredits' => $currusecredits,
                   3102:                       };
                   3103:         (my $table,$itemcount) =
                   3104:             &radiobutton_prefs($current,\@toggles,\%defaultchecked,
1.257     raeburn  3105:                                \%choices,$itemcount,$onclick,$additional,'left');
                   3106:         $datatable .= $table;
                   3107:         $onclick = "toggleDisplay(this.form,'studentsubmission');";
                   3108:         my $display = 'none';
                   3109:         if ($postsubmitclient) {
                   3110:             $display = 'block';
                   3111:         }
                   3112:         $additional = '<div id="studentsubmission" style="display: '.$display.'">'.
1.259     raeburn  3113:                       &mt('Number of seconds submit is disabled').'<br />'.
                   3114:                       '<i>'.&mt('Enter 0 to remain disabled until page reload.').'</i><br />'.
                   3115:                       '<table><tr>';
1.257     raeburn  3116:         foreach my $type (@types) {
                   3117:             $additional .= '<td align="center">'.&mt($type).'<br />'.
                   3118:                            '<input type="text" name="'.$type.'_timeout" value="'.
                   3119:                            $deftimeout{$type}.'" size="5" /></td>';
                   3120:         }
                   3121:         $additional .= '</tr></table></div>'."\n";
                   3122:         %defaultchecked = ('postsubmit' => 'on');
                   3123:         @toggles = ('postsubmit');
                   3124:         my $current = {
                   3125:                         'postsubmit' => $postsubmitclient,
                   3126:                       };
                   3127:         ($table,$itemcount) =
                   3128:             &radiobutton_prefs($current,\@toggles,\%defaultchecked,
                   3129:                                \%choices,$itemcount,$onclick,$additional,'left');
1.192     raeburn  3130:         $datatable .= $table;
1.139     raeburn  3131:     }
1.192     raeburn  3132:     $$rowtotal += $itemcount;
1.121     raeburn  3133:     return $datatable;
1.118     jms      3134: }
                   3135: 
1.231     raeburn  3136: sub print_selfenrollment {
                   3137:     my ($position,$dom,$settings,$rowtotal) = @_;
                   3138:     my ($css_class,$datatable);
                   3139:     my $itemcount = 1;
                   3140:     my @types = ('official','unofficial','community','textbook');
                   3141:     if (($position eq 'top') || ($position eq 'middle')) {
1.232     raeburn  3142:         my ($rowsref,$titlesref) = &Apache::lonuserutils::get_selfenroll_titles();
                   3143:         my %descs = &Apache::lonuserutils::selfenroll_default_descs();
1.231     raeburn  3144:         my @rows;
                   3145:         my $key;
                   3146:         if ($position eq 'top') {
                   3147:             $key = 'admin'; 
                   3148:             if (ref($rowsref) eq 'ARRAY') {
                   3149:                 @rows = @{$rowsref};
                   3150:             }
                   3151:         } elsif ($position eq 'middle') {
                   3152:             $key = 'default';
                   3153:             @rows = ('types','registered','approval','limit');
                   3154:         }
                   3155:         foreach my $row (@rows) {
                   3156:             if (defined($titlesref->{$row})) {
                   3157:                 $itemcount ++;
                   3158:                 $css_class = $itemcount%2?' class="LC_odd_row"':'';
                   3159:                 $datatable .= '<tr'.$css_class.'>'.
                   3160:                               '<td>'.$titlesref->{$row}.'</td>'.
                   3161:                               '<td class="LC_left_item">'.
                   3162:                               '<table><tr>';
                   3163:                 my (%current,%currentcap);
                   3164:                 if (ref($settings) eq 'HASH') {
                   3165:                     if (ref($settings->{$key}) eq 'HASH') {
                   3166:                         foreach my $type (@types) {
                   3167:                             if (ref($settings->{$key}->{$type}) eq 'HASH') {
                   3168:                                 $current{$type} = $settings->{$key}->{$type}->{$row};
                   3169:                             }
                   3170:                             if (($row eq 'limit') && ($key eq 'default')) {
                   3171:                                 if (ref($settings->{$key}->{$type}) eq 'HASH') {
                   3172:                                     $currentcap{$type} = $settings->{$key}->{$type}->{'cap'};
                   3173:                                 }
                   3174:                             }
                   3175:                         }
                   3176:                     }
                   3177:                 }
                   3178:                 my %roles = (
                   3179:                              '0' => &Apache::lonnet::plaintext('dc'),
                   3180:                             ); 
                   3181:             
                   3182:                 foreach my $type (@types) {
                   3183:                     unless (($row eq 'registered') && ($key eq 'default')) {
                   3184:                         $datatable .= '<th>'.&mt($type).'</th>';
                   3185:                     }
                   3186:                 }
                   3187:                 unless (($row eq 'registered') && ($key eq 'default')) {
                   3188:                     $datatable .= '</tr><tr>';
                   3189:                 }
                   3190:                 foreach my $type (@types) {
                   3191:                     if ($type eq 'community') {
                   3192:                         $roles{'1'} = &mt('Community personnel');
                   3193:                     } else {
                   3194:                         $roles{'1'} = &mt('Course personnel');
                   3195:                     }
                   3196:                     $datatable .= '<td style="vertical-align: top">';
                   3197:                     if ($position eq 'top') {
                   3198:                         my %checked;
                   3199:                         if ($current{$type} eq '0') {
                   3200:                             $checked{'0'} = ' checked="checked"';
                   3201:                         } else {
                   3202:                             $checked{'1'} = ' checked="checked"';
                   3203:                         }
                   3204:                         foreach my $role ('1','0') {
                   3205:                             $datatable .= '<span class="LC_nobreak"><label>'.
                   3206:                                           '<input type="radio" name="selfenrolladmin_'.$row.'_'.$type.'" '.
                   3207:                                           'value="'.$role.'"'.$checked{$role}.' />'.
                   3208:                                           $roles{$role}.'</label></span> ';
                   3209:                         }
                   3210:                     } else {
                   3211:                         if ($row eq 'types') {
                   3212:                             my %checked;
                   3213:                             if ($current{$type} =~ /^(all|dom)$/) {
                   3214:                                 $checked{$1} = ' checked="checked"';
                   3215:                             } else {
                   3216:                                 $checked{''} = ' checked="checked"';
                   3217:                             }
                   3218:                             foreach my $val ('','dom','all') {
                   3219:                                 $datatable .= '<span class="LC_nobreak"><label>'.
                   3220:                                               '<input type ="radio" name="selfenrolldefault_'.$row.'_'.$type.'" '.
                   3221:                                               'value="'.$val.'"'.$checked{$val}.' />'.$descs{$row}{$val}.'</label></span> ';
                   3222:                             }
                   3223:                         } elsif ($row eq 'registered') {
                   3224:                             my %checked;
                   3225:                             if ($current{$type} eq '1') {
                   3226:                                 $checked{'1'} = ' checked="checked"';
                   3227:                             } else {
                   3228:                                 $checked{'0'} = ' checked="checked"';
                   3229:                             }
                   3230:                             foreach my $val ('0','1') {
                   3231:                                 $datatable .= '<span class="LC_nobreak"><label>'.
                   3232:                                               '<input type ="radio" name="selfenrolldefault_'.$row.'_'.$type.'" '.
                   3233:                                               'value="'.$val.'"'.$checked{$val}.' />'.$descs{$row}{$val}.'</label></span> ';
                   3234:                             }
                   3235:                         } elsif ($row eq 'approval') {
                   3236:                             my %checked;
                   3237:                             if ($current{$type} =~ /^([12])$/) {
                   3238:                                 $checked{$1} = ' checked="checked"';
                   3239:                             } else {
                   3240:                                 $checked{'0'} = ' checked="checked"';
                   3241:                             }
                   3242:                             for my $val (0..2) {
                   3243:                                 $datatable .= '<span class="LC_nobreak"><label>'.
                   3244:                                               '<input type="radio" name="selfenrolldefault_'.$row.'_'.$type.'" '.
                   3245:                                               'value="'.$val.'"'.$checked{$val}.' />'.$descs{$row}{$val}.'</label></span> ';
                   3246:                             }
                   3247:                         } elsif ($row eq 'limit') {
                   3248:                             my %checked;
                   3249:                             if ($current{$type} =~ /^(allstudents|selfenrolled)$/) {
                   3250:                                 $checked{$1} = ' checked="checked"';
                   3251:                             } else {
                   3252:                                 $checked{'none'} = ' checked="checked"';
                   3253:                             }
                   3254:                             my $cap;
                   3255:                             if ($currentcap{$type} =~ /^\d+$/) {
                   3256:                                 $cap = $currentcap{$type};
                   3257:                             }
                   3258:                             foreach my $val ('none','allstudents','selfenrolled') {
                   3259:                                 $datatable .= '<span class="LC_nobreak"><label>'.
                   3260:                                               '<input type="radio" name="selfenrolldefault_'.$row.'_'.$type.'" '.
                   3261:                                               'value="'.$val.'"'.$checked{$val}.' />'.$descs{$row}{$val}.'</label></span> ';
                   3262:                             }
                   3263:                             $datatable .= '<br />'.
                   3264:                                           '<span class="LC_nobreak">'.&mt('Maximum allowed: ').
                   3265:                                           '<input type="text" name="selfenrolldefault_cap_'.$type.'" size = "5" value="'.$cap.'" />'.
                   3266:                                           '</span>'; 
                   3267:                         }
                   3268:                     }
                   3269:                     $datatable .= '</td>';
                   3270:                 }
                   3271:                 $datatable .= '</tr>';
                   3272:             }
                   3273:             $datatable .= '</table></td></tr>';
                   3274:         }
                   3275:     } elsif ($position eq 'bottom') {
1.235     raeburn  3276:         $datatable .= &print_validation_rows('selfenroll',$dom,$settings,\$itemcount);
                   3277:     }
                   3278:     $$rowtotal += $itemcount;
                   3279:     return $datatable;
                   3280: }
                   3281: 
                   3282: sub print_validation_rows {
                   3283:     my ($caller,$dom,$settings,$rowtotal) = @_;
                   3284:     my ($itemsref,$namesref,$fieldsref);
                   3285:     if ($caller eq 'selfenroll') { 
                   3286:         ($itemsref,$namesref,$fieldsref) = &Apache::lonuserutils::selfenroll_validation_types();
                   3287:     } elsif ($caller eq 'requestcourses') {
                   3288:         ($itemsref,$namesref,$fieldsref) = &Apache::loncoursequeueadmin::requestcourses_validation_types();
                   3289:     }
                   3290:     my %currvalidation;
                   3291:     if (ref($settings) eq 'HASH') {
                   3292:         if (ref($settings->{'validation'}) eq 'HASH') {
                   3293:             %currvalidation = %{$settings->{'validation'}};
1.231     raeburn  3294:         }
1.235     raeburn  3295:     }
                   3296:     my $datatable;
                   3297:     my $itemcount = 0;
                   3298:     foreach my $item (@{$itemsref}) {
                   3299:         my $css_class = $itemcount%2 ? ' class="LC_odd_row"' : '';
                   3300:         $datatable .= '<tr'.$css_class.'><td><span class="LC_nobreak">'.
                   3301:                       $namesref->{$item}.
                   3302:                       '</span></td>'.
                   3303:                       '<td class="LC_left_item">';
                   3304:         if (($item eq 'url') || ($item eq 'button')) {
                   3305:             $datatable .= '<span class="LC_nobreak">'.
                   3306:                           '<input type="text" name="'.$caller.'_validation_'.$item.'"'.
                   3307:                           ' value="'.$currvalidation{$item}.'" size="50" /></span>';
                   3308:         } elsif ($item eq 'fields') {
                   3309:             my @currfields;
                   3310:             if (ref($currvalidation{$item}) eq 'ARRAY') {
                   3311:                 @currfields = @{$currvalidation{$item}};
                   3312:             }
                   3313:             foreach my $field (@{$fieldsref}) {
                   3314:                 my $check = '';
                   3315:                 if (grep(/^\Q$field\E$/,@currfields)) {
                   3316:                     $check = ' checked="checked"';
                   3317:                 }
                   3318:                 $datatable .= '<span class="LC_nobreak"><label>'.
                   3319:                               '<input type="checkbox" name="'.$caller.'_validation_fields"'.
                   3320:                               ' value="'.$field.'"'.$check.' />'.$field.
                   3321:                               '</label></span> ';
                   3322:             }
                   3323:         } elsif ($item eq 'markup') {
                   3324:             $datatable .= '<textarea name="'.$caller.'_validation_markup" cols="50" rows="5" wrap="soft">'.
                   3325:                            $currvalidation{$item}.
1.231     raeburn  3326:                               '</textarea>';
1.235     raeburn  3327:         }
                   3328:         $datatable .= '</td></tr>'."\n";
                   3329:         if (ref($rowtotal)) {
1.231     raeburn  3330:             $itemcount ++;
                   3331:         }
                   3332:     }
1.235     raeburn  3333:     if ($caller eq 'requestcourses') {
                   3334:         my %currhash;
1.248     raeburn  3335:         if (ref($settings) eq 'HASH') {
                   3336:             if (ref($settings->{'validation'}) eq 'HASH') {
                   3337:                 if ($settings->{'validation'}{'dc'} ne '') {
                   3338:                     $currhash{$settings->{'validation'}{'dc'}} = 1;
                   3339:                 }
1.235     raeburn  3340:             }
                   3341:         }
                   3342:         my $numinrow = 2;
                   3343:         my ($numdc,$dctable,$rows) = &active_dc_picker($dom,$numinrow,'radio',
                   3344:                                                        'validationdc',%currhash);
1.247     raeburn  3345:         my $css_class = $itemcount%2 ? ' class="LC_odd_row"' : '';
                   3346:         $datatable .= '</td></tr><tr'.$css_class.'><td>';
1.235     raeburn  3347:         if ($numdc > 1) {
1.247     raeburn  3348:             $datatable .= &mt('Course creation processed as: (choose Dom. Coord.)');
1.235     raeburn  3349:         } else {
1.247     raeburn  3350:             $datatable .=  &mt('Course creation processed as: ');
1.235     raeburn  3351:         }
1.247     raeburn  3352:         $datatable .= '</td><td class="LC_left_item">'.$dctable.'</td></tr>';
1.235     raeburn  3353:         $itemcount ++;
                   3354:     }
                   3355:     if (ref($rowtotal)) {
                   3356:         $$rowtotal += $itemcount;
                   3357:     }
1.231     raeburn  3358:     return $datatable;
                   3359: }
                   3360: 
1.137     raeburn  3361: sub print_usersessions {
                   3362:     my ($position,$dom,$settings,$rowtotal) = @_;
                   3363:     my ($css_class,$datatable,%checked,%choices);
1.140     raeburn  3364:     my (%by_ip,%by_location,@intdoms);
                   3365:     &build_location_hashes(\@intdoms,\%by_ip,\%by_location);
1.145     raeburn  3366: 
                   3367:     my @alldoms = &Apache::lonnet::all_domains();
1.152     raeburn  3368:     my %serverhomes = %Apache::lonnet::serverhomeIDs;
1.149     raeburn  3369:     my %servers = &Apache::lonnet::internet_dom_servers($dom);
1.152     raeburn  3370:     my %altids = &id_for_thisdom(%servers);
1.145     raeburn  3371:     my $itemcount = 1;
                   3372:     if ($position eq 'top') {
1.152     raeburn  3373:         if (keys(%serverhomes) > 1) {
1.145     raeburn  3374:             my %spareid = &current_offloads_to($dom,$settings,\%servers);
1.261     raeburn  3375:             my $curroffloadnow;
                   3376:             if (ref($settings) eq 'HASH') {
                   3377:                 if (ref($settings->{'offloadnow'}) eq 'HASH') {
                   3378:                     $curroffloadnow = $settings->{'offloadnow'};
                   3379:                 }
                   3380:             }
                   3381:             $datatable .= &spares_row($dom,\%servers,\%spareid,\%serverhomes,\%altids,$curroffloadnow,$rowtotal);
1.145     raeburn  3382:         } else {
1.140     raeburn  3383:             $datatable .= '<tr'.$css_class.'><td colspan="2">'.
1.150     raeburn  3384:                           &mt('Nothing to set here, as the cluster to which this domain belongs only contains one server.');
1.140     raeburn  3385:         }
1.137     raeburn  3386:     } else {
1.145     raeburn  3387:         if (keys(%by_location) == 0) {
                   3388:             $datatable .= '<tr'.$css_class.'><td colspan="2">'.
1.150     raeburn  3389:                           &mt('Nothing to set here, as the cluster to which this domain belongs only contains one institution.');
1.145     raeburn  3390:         } else {
                   3391:             my %lt = &usersession_titles();
                   3392:             my $numinrow = 5;
                   3393:             my $prefix;
                   3394:             my @types;
                   3395:             if ($position eq 'bottom') {
                   3396:                 $prefix = 'remote';
                   3397:                 @types = ('version','excludedomain','includedomain');
                   3398:             } else {
                   3399:                 $prefix = 'hosted';
                   3400:                 @types = ('excludedomain','includedomain');
                   3401:             }
                   3402:             my (%current,%checkedon,%checkedoff);
                   3403:             my @lcversions = &Apache::lonnet::all_loncaparevs();
                   3404:             my @locations = sort(keys(%by_location));
                   3405:             foreach my $type (@types) {
                   3406:                 $checkedon{$type} = '';
                   3407:                 $checkedoff{$type} = ' checked="checked"';
                   3408:             }
                   3409:             if (ref($settings) eq 'HASH') {
                   3410:                 if (ref($settings->{$prefix}) eq 'HASH') {
                   3411:                     foreach my $key (keys(%{$settings->{$prefix}})) {
                   3412:                         $current{$key} = $settings->{$prefix}{$key};
                   3413:                         if ($key eq 'version') {
                   3414:                             if ($current{$key} ne '') {
                   3415:                                 $checkedon{$key} = ' checked="checked"';
                   3416:                                 $checkedoff{$key} = '';
                   3417:                             }
                   3418:                         } elsif (ref($current{$key}) eq 'ARRAY') {
                   3419:                             $checkedon{$key} = ' checked="checked"';
                   3420:                             $checkedoff{$key} = '';
                   3421:                         }
1.137     raeburn  3422:                     }
                   3423:                 }
                   3424:             }
1.145     raeburn  3425:             foreach my $type (@types) {
                   3426:                 next if ($type ne 'version' && !@locations);
                   3427:                 $css_class = $itemcount%2 ? ' class="LC_odd_row"' : '';
                   3428:                 $datatable .= '<tr'.$css_class.'>
                   3429:                                <td><span class="LC_nobreak">'.$lt{$type}.'</span><br />
                   3430:                                <span class="LC_nobreak">&nbsp;
                   3431:                                <label><input type="radio" name="'.$prefix.'_'.$type.'_inuse" '.$checkedoff{$type}.' value="0" />'.&mt('Not in use').'</label>&nbsp;
                   3432:                                <label><input type="radio" name="'.$prefix.'_'.$type.'_inuse" '.$checkedon{$type}.' value="1" />'.&mt('In use').'</label></span></td><td>';
                   3433:                 if ($type eq 'version') {
                   3434:                     my $selector = '<select name="'.$prefix.'_version">';
                   3435:                     foreach my $version (@lcversions) {
                   3436:                         my $selected = '';
                   3437:                         if ($current{'version'} eq $version) {
                   3438:                             $selected = ' selected="selected"';
                   3439:                         }
                   3440:                         $selector .= ' <option value="'.$version.'"'.
                   3441:                                      $selected.'>'.$version.'</option>';
                   3442:                     }
                   3443:                     $selector .= '</select> ';
                   3444:                     $datatable .= &mt('remote server must be version: [_1] or later',$selector);
                   3445:                 } else {
                   3446:                     $datatable.= '<div><input type="button" value="'.&mt('check all').'" '.
                   3447:                                  'onclick="javascript:checkAll(document.display.'.$prefix.'_'.$type.')"'.
                   3448:                                  ' />'.('&nbsp;'x2).
                   3449:                                  '<input type="button" value="'.&mt('uncheck all').'" '.
                   3450:                                  'onclick="javascript:uncheckAll(document.display.'.$prefix.'_'.$type.')" />'.
                   3451:                                  "\n".
                   3452:                                  '</div><div><table>';
                   3453:                     my $rem;
                   3454:                     for (my $i=0; $i<@locations; $i++) {
                   3455:                         my ($showloc,$value,$checkedtype);
                   3456:                         if (ref($by_location{$locations[$i]}) eq 'ARRAY') {
                   3457:                             my $ip = $by_location{$locations[$i]}->[0];
                   3458:                             if (ref($by_ip{$ip}) eq 'ARRAY') {
                   3459:                                  $value = join(':',@{$by_ip{$ip}});
                   3460:                                 $showloc = join(', ',@{$by_ip{$ip}});
                   3461:                                 if (ref($current{$type}) eq 'ARRAY') {
                   3462:                                     foreach my $loc (@{$by_ip{$ip}}) {  
                   3463:                                         if (grep(/^\Q$loc\E$/,@{$current{$type}})) {
                   3464:                                             $checkedtype = ' checked="checked"';
                   3465:                                             last;
                   3466:                                         }
                   3467:                                     }
1.138     raeburn  3468:                                 }
                   3469:                             }
                   3470:                         }
1.145     raeburn  3471:                         $rem = $i%($numinrow);
                   3472:                         if ($rem == 0) {
                   3473:                             if ($i > 0) {
                   3474:                                 $datatable .= '</tr>';
                   3475:                             }
                   3476:                             $datatable .= '<tr>';
                   3477:                         }
                   3478:                         $datatable .= '<td class="LC_left_item">'.
                   3479:                                       '<span class="LC_nobreak"><label>'.
                   3480:                                       '<input type="checkbox" name="'.$prefix.'_'.$type.
                   3481:                                       '" value="'.$value.'"'.$checkedtype.' />'.$showloc.
                   3482:                                       '</label></span></td>';
1.137     raeburn  3483:                     }
1.145     raeburn  3484:                     $rem = @locations%($numinrow);
                   3485:                     my $colsleft = $numinrow - $rem;
                   3486:                     if ($colsleft > 1 ) {
                   3487:                         $datatable .= '<td colspan="'.$colsleft.'" class="LC_left_item">'.
                   3488:                                       '&nbsp;</td>';
                   3489:                     } elsif ($colsleft == 1) {
                   3490:                         $datatable .= '<td class="LC_left_item">&nbsp;</td>';
1.137     raeburn  3491:                     }
1.145     raeburn  3492:                     $datatable .= '</tr></table>';
1.137     raeburn  3493:                 }
1.145     raeburn  3494:                 $datatable .= '</td></tr>';
                   3495:                 $itemcount ++;
1.137     raeburn  3496:             }
                   3497:         }
                   3498:     }
                   3499:     $$rowtotal += $itemcount;
                   3500:     return $datatable;
                   3501: }
                   3502: 
1.138     raeburn  3503: sub build_location_hashes {
                   3504:     my ($intdoms,$by_ip,$by_location) = @_;
                   3505:     return unless((ref($intdoms) eq 'ARRAY') && (ref($by_ip) eq 'HASH') &&
                   3506:                   (ref($by_location) eq 'HASH')); 
                   3507:     my %iphost = &Apache::lonnet::get_iphost();
                   3508:     my $primary_id = &Apache::lonnet::domain($env{'request.role.domain'},'primary');
                   3509:     my $primary_ip = &Apache::lonnet::get_host_ip($primary_id);
                   3510:     if (ref($iphost{$primary_ip}) eq 'ARRAY') {
                   3511:         foreach my $id (@{$iphost{$primary_ip}}) {
                   3512:             my $intdom = &Apache::lonnet::internet_dom($id);
                   3513:             unless(grep(/^\Q$intdom\E$/,@{$intdoms})) {
                   3514:                 push(@{$intdoms},$intdom);
                   3515:             }
                   3516:         }
                   3517:     }
                   3518:     foreach my $ip (keys(%iphost)) {
                   3519:         if (ref($iphost{$ip}) eq 'ARRAY') {
                   3520:             foreach my $id (@{$iphost{$ip}}) {
                   3521:                 my $location = &Apache::lonnet::internet_dom($id);
                   3522:                 if ($location) {
                   3523:                     next if (grep(/^\Q$location\E$/,@{$intdoms}));
                   3524:                     if (ref($by_ip->{$ip}) eq 'ARRAY') {
                   3525:                         unless(grep(/^\Q$location\E$/,@{$by_ip->{$ip}})) {
                   3526:                             push(@{$by_ip->{$ip}},$location);
                   3527:                         }
                   3528:                     } else {
                   3529:                         $by_ip->{$ip} = [$location];
                   3530:                     }
                   3531:                 }
                   3532:             }
                   3533:         }
                   3534:     }
                   3535:     foreach my $ip (sort(keys(%{$by_ip}))) {
                   3536:         if (ref($by_ip->{$ip}) eq 'ARRAY') {
                   3537:             @{$by_ip->{$ip}} = sort(@{$by_ip->{$ip}});
                   3538:             my $first = $by_ip->{$ip}->[0];
                   3539:             if (ref($by_location->{$first}) eq 'ARRAY') {
                   3540:                 unless (grep(/^\Q$ip\E$/,@{$by_location->{$first}})) {
                   3541:                     push(@{$by_location->{$first}},$ip);
                   3542:                 }
                   3543:             } else {
                   3544:                 $by_location->{$first} = [$ip];
                   3545:             }
                   3546:         }
                   3547:     }
                   3548:     return;
                   3549: }
                   3550: 
1.145     raeburn  3551: sub current_offloads_to {
                   3552:     my ($dom,$settings,$servers) = @_;
                   3553:     my (%spareid,%otherdomconfigs);
1.152     raeburn  3554:     if (ref($servers) eq 'HASH') {
1.145     raeburn  3555:         foreach my $lonhost (sort(keys(%{$servers}))) {
                   3556:             my $gotspares;
1.152     raeburn  3557:             if (ref($settings) eq 'HASH') {
                   3558:                 if (ref($settings->{'spares'}) eq 'HASH') {
                   3559:                     if (ref($settings->{'spares'}{$lonhost}) eq 'HASH') {
                   3560:                         $spareid{$lonhost}{'primary'} = $settings->{'spares'}{$lonhost}{'primary'};
                   3561:                         $spareid{$lonhost}{'default'} = $settings->{'spares'}{$lonhost}{'default'};
                   3562:                         $gotspares = 1;
                   3563:                     }
1.145     raeburn  3564:                 }
                   3565:             }
                   3566:             unless ($gotspares) {
                   3567:                 my $gotspares;
                   3568:                 my $serverhomeID =
                   3569:                     &Apache::lonnet::get_server_homeID($servers->{$lonhost});
                   3570:                 my $serverhomedom =
                   3571:                     &Apache::lonnet::host_domain($serverhomeID);
                   3572:                 if ($serverhomedom ne $dom) {
                   3573:                     if (ref($otherdomconfigs{$serverhomedom} eq 'HASH')) {
                   3574:                         if (ref($otherdomconfigs{$serverhomedom}{'usersessions'}) eq 'HASH') {
                   3575:                             if (ref($otherdomconfigs{$serverhomedom}{'usersessions'}{'spares'}) eq 'HASH') {
                   3576:                                 $spareid{$lonhost}{'primary'} = $otherdomconfigs{$serverhomedom}{'usersessions'}{'spares'}{'primary'};
                   3577:                                 $spareid{$lonhost}{'default'} = $otherdomconfigs{$serverhomedom}{'usersessions'}{'spares'}{'default'};
                   3578:                                 $gotspares = 1;
                   3579:                             }
                   3580:                         }
                   3581:                     } else {
                   3582:                         $otherdomconfigs{$serverhomedom} =
                   3583:                             &Apache::lonnet::get_dom('configuration',['usersessions'],$serverhomedom);
                   3584:                         if (ref($otherdomconfigs{$serverhomedom}) eq 'HASH') {
                   3585:                             if (ref($otherdomconfigs{$serverhomedom}{'usersessions'}) eq 'HASH') {
                   3586:                                 if (ref($otherdomconfigs{$serverhomedom}{'usersessions'}{'spares'}) eq 'HASH') {
                   3587:                                     if (ref($otherdomconfigs{$serverhomedom}{'usersessions'}{'spares'}{$lonhost}) eq 'HASH') {
                   3588:                                         $spareid{$lonhost}{'primary'} = $otherdomconfigs{$serverhomedom}{'usersessions'}{'spares'}{'primary'};
                   3589:                                         $spareid{$lonhost}{'default'} = $otherdomconfigs{$serverhomedom}{'usersessions'}{'spares'}{'default'};
                   3590:                                         $gotspares = 1;
                   3591:                                     }
                   3592:                                 }
                   3593:                             }
                   3594:                         }
                   3595:                     }
                   3596:                 }
                   3597:             }
                   3598:             unless ($gotspares) {
                   3599:                 if ($lonhost eq $Apache::lonnet::perlvar{'lonHostID'}) {
                   3600:                     $spareid{$lonhost}{'primary'} = $Apache::lonnet::spareid{'primary'};
                   3601:                     $spareid{$lonhost}{'default'} = $Apache::lonnet::spareid{'default'};
                   3602:                } else {
                   3603:                     my $server_hostname = &Apache::lonnet::hostname($lonhost);
                   3604:                     my $server_homeID = &Apache::lonnet::get_server_homeID($server_hostname);
                   3605:                     if ($server_homeID eq $Apache::lonnet::perlvar{'lonHostID'}) {
                   3606:                         $spareid{$lonhost}{'primary'} = $Apache::lonnet::spareid{'primary'};
                   3607:                         $spareid{$lonhost}{'default'} = $Apache::lonnet::spareid{'default'};
                   3608:                     } else {
1.150     raeburn  3609:                         my %what = (
                   3610:                              spareid => 1,
                   3611:                         );
                   3612:                         my ($result,$returnhash) = 
                   3613:                             &Apache::lonnet::get_remote_globals($lonhost,\%what);
                   3614:                         if ($result eq 'ok') { 
                   3615:                             if (ref($returnhash) eq 'HASH') {
                   3616:                                 if (ref($returnhash->{'spareid'}) eq 'HASH') {
                   3617:                                     $spareid{$lonhost}{'primary'} = $returnhash->{'spareid'}->{'primary'};
                   3618:                                     $spareid{$lonhost}{'default'} = $returnhash->{'spareid'}->{'default'};
                   3619:                                 }
                   3620:                             }
1.145     raeburn  3621:                         }
                   3622:                     }
                   3623:                 }
                   3624:             }
                   3625:         }
                   3626:     }
                   3627:     return %spareid;
                   3628: }
                   3629: 
                   3630: sub spares_row {
1.261     raeburn  3631:     my ($dom,$servers,$spareid,$serverhomes,$altids,$curroffloadnow,$rowtotal) = @_;
1.145     raeburn  3632:     my $css_class;
                   3633:     my $numinrow = 4;
                   3634:     my $itemcount = 1;
                   3635:     my $datatable;
1.152     raeburn  3636:     my %typetitles = &sparestype_titles();
                   3637:     if ((ref($servers) eq 'HASH') && (ref($spareid) eq 'HASH') && (ref($altids) eq 'HASH')) {
1.145     raeburn  3638:         foreach my $server (sort(keys(%{$servers}))) {
1.152     raeburn  3639:             my $serverhome = &Apache::lonnet::get_server_homeID($servers->{$server});
                   3640:             my ($othercontrol,$serverdom);
                   3641:             if ($serverhome ne $server) {
                   3642:                 $serverdom = &Apache::lonnet::host_domain($serverhome);
                   3643:                 $othercontrol = &mt('Session offloading controlled by domain: [_1]','<b>'.$serverdom.'</b>');
                   3644:             } else {
                   3645:                 $serverdom = &Apache::lonnet::host_domain($server);
                   3646:                 if ($serverdom ne $dom) {
                   3647:                     $othercontrol = &mt('Session offloading controlled by domain: [_1]','<b>'.$serverdom.'</b>');
                   3648:                 }
                   3649:             }
                   3650:             next unless (ref($spareid->{$server}) eq 'HASH');
1.261     raeburn  3651:             my $checkednow;
                   3652:             if (ref($curroffloadnow) eq 'HASH') {
                   3653:                 if ($curroffloadnow->{$server}) {
                   3654:                     $checkednow = ' checked="checked"';
                   3655:                 }
                   3656:             }
1.145     raeburn  3657:             $css_class = $itemcount%2 ? ' class="LC_odd_row"' : '';
                   3658:             $datatable .= '<tr'.$css_class.'>
                   3659:                            <td rowspan="2">
1.183     bisitz   3660:                             <span class="LC_nobreak">'.
                   3661:                           &mt('[_1] when busy, offloads to:'
1.261     raeburn  3662:                               ,'<b>'.$server.'</b>').'</span><br />'.
                   3663:                           '<span class="LC_nobreak">'."\n". 
                   3664:                           '<label><input type="checkbox" name="offloadnow" value="'.$server.'"'.$checkednow.' />'.
                   3665:                           '&nbsp;'.&mt('Switch active users on next access').'</label></span>'.
1.183     bisitz   3666:                           "\n";
1.145     raeburn  3667:             my (%current,%canselect);
1.152     raeburn  3668:             my @choices = 
                   3669:                 &possible_newspares($server,$spareid->{$server},$serverhomes,$altids);
                   3670:             foreach my $type ('primary','default') {
                   3671:                 if (ref($spareid->{$server}) eq 'HASH') {
1.145     raeburn  3672:                     if (ref($spareid->{$server}{$type}) eq 'ARRAY') {
                   3673:                         my @spares = @{$spareid->{$server}{$type}};
                   3674:                         if (@spares > 0) {
1.152     raeburn  3675:                             if ($othercontrol) {
                   3676:                                 $current{$type} = join(', ',@spares);
                   3677:                             } else {
                   3678:                                 $current{$type} .= '<table>';
                   3679:                                 my $numspares = scalar(@spares);
                   3680:                                 for (my $i=0;  $i<@spares; $i++) {
                   3681:                                     my $rem = $i%($numinrow);
                   3682:                                     if ($rem == 0) {
                   3683:                                         if ($i > 0) {
                   3684:                                             $current{$type} .= '</tr>';
                   3685:                                         }
                   3686:                                         $current{$type} .= '<tr>';
1.145     raeburn  3687:                                     }
1.152     raeburn  3688:                                     $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;'.
                   3689:                                                        $spareid->{$server}{$type}[$i].
                   3690:                                                        '</label></td>'."\n";
                   3691:                                 }
                   3692:                                 my $rem = @spares%($numinrow);
                   3693:                                 my $colsleft = $numinrow - $rem;
                   3694:                                 if ($colsleft > 1 ) {
                   3695:                                     $current{$type} .= '<td colspan="'.$colsleft.
                   3696:                                                        '" class="LC_left_item">'.
                   3697:                                                        '&nbsp;</td>';
                   3698:                                 } elsif ($colsleft == 1) {
                   3699:                                     $current{$type} .= '<td class="LC_left_item">&nbsp;</td>'."\n";
1.145     raeburn  3700:                                 }
1.152     raeburn  3701:                                 $current{$type} .= '</tr></table>';
1.150     raeburn  3702:                             }
1.145     raeburn  3703:                         }
                   3704:                     }
                   3705:                     if ($current{$type} eq '') {
                   3706:                         $current{$type} = &mt('None specified');
                   3707:                     }
1.152     raeburn  3708:                     if ($othercontrol) {
                   3709:                         if ($type eq 'primary') {
                   3710:                             $canselect{$type} = $othercontrol;
                   3711:                         }
                   3712:                     } else {
                   3713:                         $canselect{$type} = 
                   3714:                             &mt('Add new [_1]'.$type.'[_2]:','<i>','</i>').'&nbsp;'.
                   3715:                             '<select name="newspare_'.$type.'_'.$server.'" '.
                   3716:                             'id="newspare_'.$type.'_'.$server.'" onchange="checkNewSpares('."'$server','$type'".');">'."\n".
                   3717:                             '<option value="" selected ="selected">'.&mt('Select').'</option>'."\n";
                   3718:                         if (@choices > 0) {
                   3719:                             foreach my $lonhost (@choices) {
                   3720:                                 $canselect{$type} .= '<option value="'.$lonhost.'">'.$lonhost.'</option>'."\n";
                   3721:                             }
                   3722:                         }
                   3723:                         $canselect{$type} .= '</select>'."\n";
                   3724:                     }
                   3725:                 } else {
                   3726:                     $current{$type} = &mt('Could not be determined');
                   3727:                     if ($type eq 'primary') {
                   3728:                         $canselect{$type} =  $othercontrol;
                   3729:                     }
1.145     raeburn  3730:                 }
1.152     raeburn  3731:                 if ($type eq 'default') {
                   3732:                     $datatable .= '<tr'.$css_class.'>';
                   3733:                 }
                   3734:                 $datatable .= '<td><i>'.$typetitles{$type}.'</i></td>'."\n".
                   3735:                               '<td>'.$current{$type}.'</td>'."\n".
                   3736:                               '<td>'.$canselect{$type}.'</td></tr>'."\n";
1.145     raeburn  3737:             }
                   3738:             $itemcount ++;
                   3739:         }
                   3740:     }
                   3741:     $$rowtotal += $itemcount;
                   3742:     return $datatable;
                   3743: }
                   3744: 
1.152     raeburn  3745: sub possible_newspares {
                   3746:     my ($server,$currspares,$serverhomes,$altids) = @_;
                   3747:     my $serverhostname = &Apache::lonnet::hostname($server);
                   3748:     my %excluded;
                   3749:     if ($serverhostname ne '') {
                   3750:         %excluded = (
                   3751:                        $serverhostname => 1,
                   3752:                     );
                   3753:     }
                   3754:     if (ref($currspares) eq 'HASH') {
                   3755:         foreach my $type (keys(%{$currspares})) {
                   3756:             if (ref($currspares->{$type}) eq 'ARRAY') {
                   3757:                 if (@{$currspares->{$type}} > 0) {
                   3758:                     foreach my $curr (@{$currspares->{$type}}) {
                   3759:                         my $hostname = &Apache::lonnet::hostname($curr);
                   3760:                         $excluded{$hostname} = 1;
                   3761:                     }
                   3762:                 }
                   3763:             }
                   3764:         }
                   3765:     }
                   3766:     my @choices;
                   3767:     if ((ref($serverhomes) eq 'HASH') && (ref($altids) eq 'HASH')) {
                   3768:         if (keys(%{$serverhomes}) > 1) {
                   3769:             foreach my $name (sort(keys(%{$serverhomes}))) {
                   3770:                 unless ($excluded{$name}) {
                   3771:                     if (exists($altids->{$serverhomes->{$name}})) {
                   3772:                         push(@choices,$altids->{$serverhomes->{$name}});
                   3773:                     } else {
                   3774:                         push(@choices,$serverhomes->{$name});
1.145     raeburn  3775:                     }
                   3776:                 }
                   3777:             }
                   3778:         }
                   3779:     }
1.152     raeburn  3780:     return sort(@choices);
1.145     raeburn  3781: }
                   3782: 
1.150     raeburn  3783: sub print_loadbalancing {
                   3784:     my ($dom,$settings,$rowtotal) = @_;
                   3785:     my $primary_id = &Apache::lonnet::domain($dom,'primary');
                   3786:     my $intdom = &Apache::lonnet::internet_dom($primary_id);
                   3787:     my $numinrow = 1;
                   3788:     my $datatable;
                   3789:     my %servers = &Apache::lonnet::internet_dom_servers($dom);
1.171     raeburn  3790:     my (%currbalancer,%currtargets,%currrules,%existing);
                   3791:     if (ref($settings) eq 'HASH') {
                   3792:         %existing = %{$settings};
                   3793:     }
                   3794:     if ((keys(%servers) > 1) || (keys(%existing) > 0)) {
                   3795:         &get_loadbalancers_config(\%servers,\%existing,\%currbalancer,
                   3796:                                   \%currtargets,\%currrules);
1.150     raeburn  3797:     } else {
                   3798:         return;
                   3799:     }
                   3800:     my ($othertitle,$usertypes,$types) =
                   3801:         &Apache::loncommon::sorted_inst_types($dom);
1.209     raeburn  3802:     my $rownum = 8;
1.150     raeburn  3803:     if (ref($types) eq 'ARRAY') {
                   3804:         $rownum += scalar(@{$types});
                   3805:     }
1.171     raeburn  3806:     my @css_class = ('LC_odd_row','LC_even_row');
                   3807:     my $balnum = 0;
                   3808:     my $islast;
                   3809:     my (@toshow,$disabledtext);
                   3810:     if (keys(%currbalancer) > 0) {
                   3811:         @toshow = sort(keys(%currbalancer));
                   3812:         if (scalar(@toshow) < scalar(keys(%servers)) + 1) {
                   3813:             push(@toshow,'');
                   3814:         }
                   3815:     } else {
                   3816:         @toshow = ('');
                   3817:         $disabledtext = &mt('No existing load balancer');
                   3818:     }
                   3819:     foreach my $lonhost (@toshow) {
                   3820:         if ($balnum == scalar(@toshow)-1) {
                   3821:             $islast = 1;
                   3822:         } else {
                   3823:             $islast = 0;
                   3824:         }
                   3825:         my $cssidx = $balnum%2;
                   3826:         my $targets_div_style = 'display: none';
                   3827:         my $disabled_div_style = 'display: block';
                   3828:         my $homedom_div_style = 'display: none';
                   3829:         $datatable .= '<tr class="'.$css_class[$cssidx].'">'.
                   3830:                       '<td rowspan="'.$rownum.'" valign="top">'.
                   3831:                       '<p>';
                   3832:         if ($lonhost eq '') {
1.210     raeburn  3833:             $datatable .= '<span class="LC_nobreak">';
1.171     raeburn  3834:             if (keys(%currbalancer) > 0) {
                   3835:                 $datatable .= &mt('Add balancer:');
                   3836:             } else {
                   3837:                 $datatable .= &mt('Enable balancer:');
                   3838:             }
                   3839:             $datatable .= '&nbsp;'.
                   3840:                           '<select name="loadbalancing_lonhost_'.$balnum.'"'.
                   3841:                           ' id="loadbalancing_lonhost_'.$balnum.'"'.
                   3842:                           ' onchange="toggleTargets('."'$balnum'".');">'."\n".
                   3843:                           '<option value="" selected="selected">'.&mt('None').
                   3844:                           '</option>'."\n";
                   3845:             foreach my $server (sort(keys(%servers))) {
                   3846:                 next if ($currbalancer{$server});
                   3847:                 $datatable .= '<option value="'.$server.'">'.$server.'</option>'."\n";
                   3848:             }
1.210     raeburn  3849:             $datatable .=
1.171     raeburn  3850:                 '</select>'."\n".
                   3851:                 '<input type="hidden" name="loadbalancing_prevlonhost_'.$balnum.'" id="loadbalancing_prevlonhost_'.$balnum.'" value="" />&nbsp;</span>'."\n";
                   3852:         } else {
                   3853:             $datatable .= '<i>'.$lonhost.'</i><br /><span class="LC_nobreak">'.
                   3854:                           '<label><input type="checkbox" name="loadbalancing_delete" value="'.$balnum.'" id="loadbalancing_delete_'.$balnum.'" onclick="javascript:balancerDeleteChange('."'$balnum'".');" />&nbsp;'.
                   3855:                            &mt('Stop balancing').'</label>'.
                   3856:                            '<input type="hidden" name="loadbalancing_lonhost_'.$balnum.'" value="'.$lonhost.'" id="loadbalancing_lonhost_'.$balnum.'" /></span>';
                   3857:             $targets_div_style = 'display: block';
                   3858:             $disabled_div_style = 'display: none';
                   3859:             if ($dom eq &Apache::lonnet::host_domain($lonhost)) {
                   3860:                 $homedom_div_style = 'display: block';
                   3861:             }
                   3862:         }
                   3863:         $datatable .= '</p></td><td rowspan="'.$rownum.'" valign="top">'.
                   3864:                   '<div id="loadbalancing_disabled_'.$balnum.'" style="'.
                   3865:                   $disabled_div_style.'">'.$disabledtext.'</div>'."\n".
                   3866:                   '<div id="loadbalancing_targets_'.$balnum.'" style="'.$targets_div_style.'">'.&mt('Offloads to:').'<br />';
                   3867:         my ($numspares,@spares) = &count_servers($lonhost,%servers);
                   3868:         my @sparestypes = ('primary','default');
                   3869:         my %typetitles = &sparestype_titles();
                   3870:         foreach my $sparetype (@sparestypes) {
                   3871:             my $targettable;
                   3872:             for (my $i=0; $i<$numspares; $i++) {
                   3873:                 my $checked;
                   3874:                 if (ref($currtargets{$lonhost}) eq 'HASH') {
                   3875:                     if (ref($currtargets{$lonhost}{$sparetype}) eq 'ARRAY') {
                   3876:                         if (grep(/^\Q$spares[$i]\E$/,@{$currtargets{$lonhost}{$sparetype}})) {
                   3877:                             $checked = ' checked="checked"';
                   3878:                         }
                   3879:                     }
                   3880:                 }
                   3881:                 my ($chkboxval,$disabled);
                   3882:                 if (($lonhost ne '') && (exists($servers{$lonhost}))) {
                   3883:                     $chkboxval = $spares[$i];
                   3884:                 }
                   3885:                 if (exists($currbalancer{$spares[$i]})) {
                   3886:                     $disabled = ' disabled="disabled"';
                   3887:                 }
1.210     raeburn  3888:                 $targettable .=
1.253     raeburn  3889:                     '<td><span class="LC_nobreak"><label>'.
                   3890:                     '<input type="checkbox" name="loadbalancing_target_'.$balnum.'_'.$sparetype.'"'.
1.171     raeburn  3891:                     $checked.$disabled.' value="'.$chkboxval.'" id="loadbalancing_target_'.$balnum.'_'.$sparetype.'_'.$i.'" onclick="checkOffloads('."this,'$balnum','$sparetype'".');" /><span id="loadbalancing_targettxt_'.$balnum.'_'.$sparetype.'_'.$i.'">&nbsp;'.$chkboxval.
1.253     raeburn  3892:                     '</span></label></span></td>';
1.171     raeburn  3893:                 my $rem = $i%($numinrow);
                   3894:                 if ($rem == 0) {
                   3895:                     if (($i > 0) && ($i < $numspares-1)) {
                   3896:                         $targettable .= '</tr>';
                   3897:                     }
                   3898:                     if ($i < $numspares-1) {
                   3899:                         $targettable .= '<tr>';
1.150     raeburn  3900:                     }
                   3901:                 }
                   3902:             }
1.171     raeburn  3903:             if ($targettable ne '') {
                   3904:                 my $rem = $numspares%($numinrow);
                   3905:                 my $colsleft = $numinrow - $rem;
                   3906:                 if ($colsleft > 1 ) {
                   3907:                     $targettable .= '<td colspan="'.$colsleft.'" class="LC_left_item">'.
                   3908:                                     '&nbsp;</td>';
                   3909:                 } elsif ($colsleft == 1) {
                   3910:                     $targettable .= '<td class="LC_left_item">&nbsp;</td>';
                   3911:                 }
                   3912:                 $datatable .=  '<i>'.$typetitles{$sparetype}.'</i><br />'.
                   3913:                                '<table><tr>'.$targettable.'</tr></table><br />';
                   3914:             }
                   3915:         }
                   3916:         $datatable .= '</div></td></tr>'.
                   3917:                       &loadbalancing_rules($dom,$intdom,$currrules{$lonhost},
                   3918:                                            $othertitle,$usertypes,$types,\%servers,
                   3919:                                            \%currbalancer,$lonhost,
                   3920:                                            $targets_div_style,$homedom_div_style,
                   3921:                                            $css_class[$cssidx],$balnum,$islast);
                   3922:         $$rowtotal += $rownum;
                   3923:         $balnum ++;
                   3924:     }
                   3925:     $datatable .= '<input type="hidden" name="loadbalancing_total" id="loadbalancing_total" value="'.$balnum.'" />';
                   3926:     return $datatable;
                   3927: }
                   3928: 
                   3929: sub get_loadbalancers_config {
                   3930:     my ($servers,$existing,$currbalancer,$currtargets,$currrules) = @_;
                   3931:     return unless ((ref($servers) eq 'HASH') &&
                   3932:                    (ref($existing) eq 'HASH') && (ref($currbalancer) eq 'HASH') &&
                   3933:                    (ref($currtargets) eq 'HASH') && (ref($currrules) eq 'HASH'));
                   3934:     if (keys(%{$existing}) > 0) {
                   3935:         my $oldlonhost;
                   3936:         foreach my $key (sort(keys(%{$existing}))) {
                   3937:             if ($key eq 'lonhost') {
                   3938:                 $oldlonhost = $existing->{'lonhost'};
                   3939:                 $currbalancer->{$oldlonhost} = 1;
                   3940:             } elsif ($key eq 'targets') {
                   3941:                 if ($oldlonhost) {
                   3942:                     $currtargets->{$oldlonhost} = $existing->{'targets'};
                   3943:                 }
                   3944:             } elsif ($key eq 'rules') {
                   3945:                 if ($oldlonhost) {
                   3946:                     $currrules->{$oldlonhost} = $existing->{'rules'};
                   3947:                 }
                   3948:             } elsif (ref($existing->{$key}) eq 'HASH') {
                   3949:                 $currbalancer->{$key} = 1;
                   3950:                 $currtargets->{$key} = $existing->{$key}{'targets'};
                   3951:                 $currrules->{$key} = $existing->{$key}{'rules'};
1.150     raeburn  3952:             }
                   3953:         }
1.171     raeburn  3954:     } else {
                   3955:         my ($balancerref,$targetsref) =
                   3956:                 &Apache::lonnet::get_lonbalancer_config($servers);
                   3957:         if ((ref($balancerref) eq 'HASH') && (ref($targetsref) eq 'HASH')) {
                   3958:             foreach my $server (sort(keys(%{$balancerref}))) {
                   3959:                 $currbalancer->{$server} = 1;
                   3960:                 $currtargets->{$server} = $targetsref->{$server};
1.150     raeburn  3961:             }
                   3962:         }
                   3963:     }
1.171     raeburn  3964:     return;
1.150     raeburn  3965: }
                   3966: 
                   3967: sub loadbalancing_rules {
                   3968:     my ($dom,$intdom,$currrules,$othertitle,$usertypes,$types,$servers,
1.171     raeburn  3969:         $currbalancer,$lonhost,$targets_div_style,$homedom_div_style,
                   3970:         $css_class,$balnum,$islast) = @_;
1.150     raeburn  3971:     my $output;
1.171     raeburn  3972:     my $num = 0;
1.210     raeburn  3973:     my ($alltypes,$othertypes,$titles) =
1.150     raeburn  3974:         &loadbalancing_titles($dom,$intdom,$usertypes,$types);
                   3975:     if ((ref($alltypes) eq 'ARRAY') && (ref($titles) eq 'HASH'))  {
                   3976:         foreach my $type (@{$alltypes}) {
1.171     raeburn  3977:             $num ++;
1.150     raeburn  3978:             my $current;
                   3979:             if (ref($currrules) eq 'HASH') {
                   3980:                 $current = $currrules->{$type};
                   3981:             }
1.253     raeburn  3982:             if (($type eq '_LC_external') || ($type eq '_LC_internetdom')) {
1.171     raeburn  3983:                 if ($dom ne &Apache::lonnet::host_domain($lonhost)) {
1.150     raeburn  3984:                     $current = '';
                   3985:                 }
                   3986:             }
                   3987:             $output .= &loadbalance_rule_row($type,$titles->{$type},$current,
1.171     raeburn  3988:                                              $servers,$currbalancer,$lonhost,$dom,
                   3989:                                              $targets_div_style,$homedom_div_style,
                   3990:                                              $css_class,$balnum,$num,$islast);
1.150     raeburn  3991:         }
                   3992:     }
                   3993:     return $output;
                   3994: }
                   3995: 
                   3996: sub loadbalancing_titles {
                   3997:     my ($dom,$intdom,$usertypes,$types) = @_;
                   3998:     my %othertypes = (
                   3999:            '_LC_adv'         => &mt('Advanced users from [_1]',$dom),
                   4000:            '_LC_author'      => &mt('Users from [_1] with author role',$dom),
                   4001:            '_LC_internetdom' => &mt('Users not from [_1], but from [_2]',$dom,$intdom),
                   4002:            '_LC_external'    => &mt('Users not from [_1]',$intdom),
1.209     raeburn  4003:            '_LC_ipchangesso' => &mt('SSO users from [_1], with IP mismatch',$dom),
                   4004:            '_LC_ipchange'    => &mt('Non-SSO users with IP mismatch'),
1.150     raeburn  4005:                      );
1.209     raeburn  4006:     my @alltypes = ('_LC_adv','_LC_author','_LC_internetdom','_LC_external','_LC_ipchangesso','_LC_ipchange');
1.150     raeburn  4007:     if (ref($types) eq 'ARRAY') {
                   4008:         unshift(@alltypes,@{$types},'default');
                   4009:     }
                   4010:     my %titles;
                   4011:     foreach my $type (@alltypes) {
                   4012:         if ($type =~ /^_LC_/) {
                   4013:             $titles{$type} = $othertypes{$type};
                   4014:         } elsif ($type eq 'default') {
                   4015:             $titles{$type} = &mt('All users from [_1]',$dom);
                   4016:             if (ref($types) eq 'ARRAY') {
                   4017:                 if (@{$types} > 0) {
                   4018:                     $titles{$type} = &mt('Other users from [_1]',$dom);
                   4019:                 }
                   4020:             }
                   4021:         } elsif (ref($usertypes) eq 'HASH') {
                   4022:             $titles{$type} = $usertypes->{$type};
                   4023:         }
                   4024:     }
                   4025:     return (\@alltypes,\%othertypes,\%titles);
                   4026: }
                   4027: 
                   4028: sub loadbalance_rule_row {
1.171     raeburn  4029:     my ($type,$title,$current,$servers,$currbalancer,$lonhost,$dom,
                   4030:         $targets_div_style,$homedom_div_style,$css_class,$balnum,$num,$islast) = @_;
1.209     raeburn  4031:     my @rulenames;
1.150     raeburn  4032:     my %ruletitles = &offloadtype_text();
1.209     raeburn  4033:     if (($type eq '_LC_ipchangesso') || ($type eq '_LC_ipchange')) {
1.254     raeburn  4034:         @rulenames = ('balancer','offloadedto','specific');
1.150     raeburn  4035:     } else {
1.209     raeburn  4036:         @rulenames = ('default','homeserver');
                   4037:         if ($type eq '_LC_external') {
                   4038:             push(@rulenames,'externalbalancer');
                   4039:         } else {
                   4040:             push(@rulenames,'specific');
                   4041:         }
                   4042:         push(@rulenames,'none');
1.150     raeburn  4043:     }
                   4044:     my $style = $targets_div_style;
1.253     raeburn  4045:     if (($type eq '_LC_external') || ($type eq '_LC_internetdom')) {
1.150     raeburn  4046:         $style = $homedom_div_style;
                   4047:     }
1.171     raeburn  4048:     my $space;
                   4049:     if ($islast && $num == 1) {
                   4050:         $space = '<div display="inline-block">&nbsp;</div>';
                   4051:     }
1.210     raeburn  4052:     my $output =
1.171     raeburn  4053:         '<tr class="'.$css_class.'" id="balanceruletr_'.$balnum.'_'.$num.'"><td valign="top">'.$space.
                   4054:         '<div id="balanceruletitle_'.$balnum.'_'.$type.'" style="'.$style.'">'.$title.'</div></td>'."\n".
                   4055:         '<td valaign="top">'.$space.
                   4056:         '<div id="balancerule_'.$balnum.'_'.$type.'" style="'.$style.'">'."\n";
1.150     raeburn  4057:     for (my $i=0; $i<@rulenames; $i++) {
                   4058:         my $rule = $rulenames[$i];
                   4059:         my ($checked,$extra);
                   4060:         if ($rulenames[$i] eq 'default') {
                   4061:             $rule = '';
                   4062:         }
                   4063:         if ($rulenames[$i] eq 'specific') {
                   4064:             if (ref($servers) eq 'HASH') {
                   4065:                 my $default;
                   4066:                 if (($current ne '') && (exists($servers->{$current}))) {
                   4067:                     $checked = ' checked="checked"';
                   4068:                 }
                   4069:                 unless ($checked) {
                   4070:                     $default = ' selected="selected"';
                   4071:                 }
1.210     raeburn  4072:                 $extra =
1.171     raeburn  4073:                     ':&nbsp;<select name="loadbalancing_singleserver_'.$balnum.'_'.$type.
                   4074:                     '" id="loadbalancing_singleserver_'.$balnum.'_'.$type.
                   4075:                     '" onchange="singleServerToggle('."'$balnum','$type'".')">'."\n".
                   4076:                     '<option value=""'.$default.'></option>'."\n";
                   4077:                 foreach my $server (sort(keys(%{$servers}))) {
                   4078:                     if (ref($currbalancer) eq 'HASH') {
                   4079:                         next if (exists($currbalancer->{$server}));
                   4080:                     }
1.150     raeburn  4081:                     my $selected;
1.171     raeburn  4082:                     if ($server eq $current) {
1.150     raeburn  4083:                         $selected = ' selected="selected"';
                   4084:                     }
1.171     raeburn  4085:                     $extra .= '<option value="'.$server.'"'.$selected.'>'.$server.'</option>';
1.150     raeburn  4086:                 }
                   4087:                 $extra .= '</select>';
                   4088:             }
                   4089:         } elsif ($rule eq $current) {
                   4090:             $checked = ' checked="checked"';
                   4091:         }
                   4092:         $output .= '<span class="LC_nobreak"><label>'.
1.171     raeburn  4093:                    '<input type="radio" name="loadbalancing_rules_'.$balnum.'_'.$type.
                   4094:                    '" id="loadbalancing_rules_'.$balnum.'_'.$type.'_'.$i.'" value="'.
                   4095:                    $rule.'" onclick="balanceruleChange('."this.form,'$balnum','$type'".
1.254     raeburn  4096:                    ')"'.$checked.' />&nbsp;';
                   4097:         if (($rulenames[$i] eq 'specific') && ($type =~ /^_LC_ipchange/)) {
                   4098:             $output .= $ruletitles{'particular'};
                   4099:         } else {
                   4100:             $output .= $ruletitles{$rulenames[$i]};
                   4101:         }
                   4102:         $output .= '</label>'.$extra.'</span><br />'."\n";
1.150     raeburn  4103:     }
                   4104:     $output .= '</div></td></tr>'."\n";
                   4105:     return $output;
                   4106: }
                   4107: 
                   4108: sub offloadtype_text {
                   4109:     my %ruletitles = &Apache::lonlocal::texthash (
                   4110:            'default'          => 'Offloads to default destinations',
                   4111:            'homeserver'       => "Offloads to user's home server",
                   4112:            'externalbalancer' => "Offloads to Load Balancer in user's domain",
                   4113:            'specific'         => 'Offloads to specific server',
1.161     raeburn  4114:            'none'             => 'No offload',
1.209     raeburn  4115:            'balancer'         => 'Session hosted on Load Balancer, after re-authentication',
                   4116:            'offloadedto'      => 'Session hosted on offload server, after re-authentication',
1.254     raeburn  4117:            'particular'       => 'Session hosted (after re-auth) on server:',
1.150     raeburn  4118:     );
                   4119:     return %ruletitles;
                   4120: }
                   4121: 
                   4122: sub sparestype_titles {
                   4123:     my %typestitles = &Apache::lonlocal::texthash (
                   4124:                           'primary' => 'primary',
                   4125:                           'default' => 'default',
                   4126:                       );
                   4127:     return %typestitles;
                   4128: }
                   4129: 
1.28      raeburn  4130: sub contact_titles {
                   4131:     my %titles = &Apache::lonlocal::texthash (
                   4132:                    'supportemail' => 'Support E-mail address',
1.69      raeburn  4133:                    'adminemail'   => 'Default Server Admin E-mail address',
1.28      raeburn  4134:                    'errormail'    => 'Error reports to be e-mailed to',
                   4135:                    'packagesmail' => 'Package update alerts to be e-mailed to',
1.89      raeburn  4136:                    'helpdeskmail' => 'Helpdesk requests to be e-mailed to',
                   4137:                    'lonstatusmail' => 'E-mail from nightly status check (warnings/errors)',
1.102     raeburn  4138:                    'requestsmail' => 'E-mail from course requests requiring approval',
1.190     raeburn  4139:                    'updatesmail'  => 'E-mail from nightly check of LON-CAPA module integrity/updates',
1.203     raeburn  4140:                    'idconflictsmail' => 'E-mail from bi-nightly check for multiple users sharing same student/employee ID',
1.28      raeburn  4141:                  );
                   4142:     my %short_titles = &Apache::lonlocal::texthash (
                   4143:                            adminemail   => 'Admin E-mail address',
                   4144:                            supportemail => 'Support E-mail',
                   4145:                        );   
                   4146:     return (\%titles,\%short_titles);
                   4147: }
                   4148: 
1.72      raeburn  4149: sub tool_titles {
                   4150:     my %titles = &Apache::lonlocal::texthash (
1.162     raeburn  4151:                      aboutme    => 'Personal web page',
1.86      raeburn  4152:                      blog       => 'Blog',
1.162     raeburn  4153:                      webdav     => 'WebDAV',
1.86      raeburn  4154:                      portfolio  => 'Portfolio',
1.88      bisitz   4155:                      official   => 'Official courses (with institutional codes)',
                   4156:                      unofficial => 'Unofficial courses',
1.98      raeburn  4157:                      community  => 'Communities',
1.216     raeburn  4158:                      textbook   => 'Textbook courses',
1.86      raeburn  4159:                  );
1.72      raeburn  4160:     return %titles;
                   4161: }
                   4162: 
1.101     raeburn  4163: sub courserequest_titles {
                   4164:     my %titles = &Apache::lonlocal::texthash (
                   4165:                                    official   => 'Official',
                   4166:                                    unofficial => 'Unofficial',
                   4167:                                    community  => 'Communities',
1.216     raeburn  4168:                                    textbook   => 'Textbook',
1.101     raeburn  4169:                                    norequest  => 'Not allowed',
1.104     raeburn  4170:                                    approval   => 'Approval by Dom. Coord.',
1.101     raeburn  4171:                                    validate   => 'With validation',
                   4172:                                    autolimit  => 'Numerical limit',
1.103     raeburn  4173:                                    unlimited  => '(blank for unlimited)',
1.101     raeburn  4174:                  );
                   4175:     return %titles;
                   4176: }
                   4177: 
1.163     raeburn  4178: sub authorrequest_titles {
                   4179:     my %titles = &Apache::lonlocal::texthash (
                   4180:                                    norequest  => 'Not allowed',
                   4181:                                    approval   => 'Approval by Dom. Coord.',
                   4182:                                    automatic  => 'Automatic approval',
                   4183:                  );
                   4184:     return %titles;
1.210     raeburn  4185: }
1.163     raeburn  4186: 
1.101     raeburn  4187: sub courserequest_conditions {
                   4188:     my %conditions = &Apache::lonlocal::texthash (
1.104     raeburn  4189:        approval    => '(Processing of request subject to approval by Domain Coordinator).',
1.193     bisitz   4190:        validate   => '(Processing of request subject to institutional validation).',
1.101     raeburn  4191:                  );
                   4192:     return %conditions;
                   4193: }
                   4194: 
                   4195: 
1.27      raeburn  4196: sub print_usercreation {
1.30      raeburn  4197:     my ($position,$dom,$settings,$rowtotal) = @_;
1.27      raeburn  4198:     my $numinrow = 4;
1.28      raeburn  4199:     my $datatable;
                   4200:     if ($position eq 'top') {
1.30      raeburn  4201:         $$rowtotal ++;
1.34      raeburn  4202:         my $rowcount = 0;
1.32      raeburn  4203:         my ($rules,$ruleorder) = &Apache::lonnet::inst_userrules($dom,'username');
1.28      raeburn  4204:         if (ref($rules) eq 'HASH') {
                   4205:             if (keys(%{$rules}) > 0) {
1.32      raeburn  4206:                 $datatable .= &user_formats_row('username',$settings,$rules,
                   4207:                                                 $ruleorder,$numinrow,$rowcount);
1.30      raeburn  4208:                 $$rowtotal ++;
1.32      raeburn  4209:                 $rowcount ++;
                   4210:             }
                   4211:         }
                   4212:         my ($idrules,$idruleorder) = &Apache::lonnet::inst_userrules($dom,'id');
                   4213:         if (ref($idrules) eq 'HASH') {
                   4214:             if (keys(%{$idrules}) > 0) {
                   4215:                 $datatable .= &user_formats_row('id',$settings,$idrules,
                   4216:                                                 $idruleorder,$numinrow,$rowcount);
                   4217:                 $$rowtotal ++;
                   4218:                 $rowcount ++;
1.28      raeburn  4219:             }
                   4220:         }
1.39      raeburn  4221:         if ($rowcount == 0) {
                   4222:             $datatable .= '<tr><td colspan="2">'.&mt('No format rules have been defined for usernames or IDs in this domain.').'</td></tr>';  
                   4223:             $$rowtotal ++;
                   4224:             $rowcount ++;
                   4225:         }
1.34      raeburn  4226:     } elsif ($position eq 'middle') {
1.224     raeburn  4227:         my @creators = ('author','course','requestcrs');
1.37      raeburn  4228:         my ($rules,$ruleorder) =
                   4229:             &Apache::lonnet::inst_userrules($dom,'username');
1.34      raeburn  4230:         my %lt = &usercreation_types();
                   4231:         my %checked;
                   4232:         if (ref($settings) eq 'HASH') {
                   4233:             if (ref($settings->{'cancreate'}) eq 'HASH') {
                   4234:                 foreach my $item (@creators) {
                   4235:                     $checked{$item} = $settings->{'cancreate'}{$item};
                   4236:                 }
                   4237:             } elsif (ref($settings->{'cancreate'}) eq 'ARRAY') {
                   4238:                 foreach my $item (@creators) {
                   4239:                     if (grep(/^\Q$item\E$/,@{$settings->{'cancreate'}})) {
                   4240:                         $checked{$item} = 'none';
                   4241:                     }
                   4242:                 }
                   4243:             }
                   4244:         }
                   4245:         my $rownum = 0;
                   4246:         foreach my $item (@creators) {
                   4247:             $rownum ++;
1.224     raeburn  4248:             if ($checked{$item} eq '') {
                   4249:                 $checked{$item} = 'any';
1.34      raeburn  4250:             }
                   4251:             my $css_class;
                   4252:             if ($rownum%2) {
                   4253:                 $css_class = '';
                   4254:             } else {
                   4255:                 $css_class = ' class="LC_odd_row" ';
                   4256:             }
                   4257:             $datatable .= '<tr'.$css_class.'>'.
                   4258:                          '<td><span class="LC_nobreak">'.$lt{$item}.
                   4259:                          '</span></td><td align="right">';
1.224     raeburn  4260:             my @options = ('any');
                   4261:             if (ref($rules) eq 'HASH') {
                   4262:                 if (keys(%{$rules}) > 0) {
                   4263:                     push(@options,('official','unofficial'));
1.37      raeburn  4264:                 }
                   4265:             }
1.224     raeburn  4266:             push(@options,'none');
1.37      raeburn  4267:             foreach my $option (@options) {
1.50      raeburn  4268:                 my $type = 'radio';
1.34      raeburn  4269:                 my $check = ' ';
1.224     raeburn  4270:                 if ($checked{$item} eq $option) {
                   4271:                     $check = ' checked="checked" ';
1.34      raeburn  4272:                 } 
                   4273:                 $datatable .= '<span class="LC_nobreak"><label>'.
1.50      raeburn  4274:                               '<input type="'.$type.'" name="can_createuser_'.
1.34      raeburn  4275:                               $item.'" value="'.$option.'"'.$check.'/>&nbsp;'.
                   4276:                               $lt{$option}.'</label>&nbsp;&nbsp;</span>';
                   4277:             }
                   4278:             $datatable .= '</td></tr>';
                   4279:         }
1.28      raeburn  4280:     } else {
                   4281:         my @contexts = ('author','course','domain');
                   4282:         my @authtypes = ('int','krb4','krb5','loc');
                   4283:         my %checked;
                   4284:         if (ref($settings) eq 'HASH') {
                   4285:             if (ref($settings->{'authtypes'}) eq 'HASH') {
                   4286:                 foreach my $item (@contexts) {
                   4287:                     if (ref($settings->{'authtypes'}{$item}) eq 'HASH') {
                   4288:                         foreach my $auth (@authtypes) {
                   4289:                             if ($settings->{'authtypes'}{$item}{$auth}) {
                   4290:                                 $checked{$item}{$auth} = ' checked="checked" ';
                   4291:                             }
                   4292:                         }
                   4293:                     }
                   4294:                 }
1.27      raeburn  4295:             }
1.35      raeburn  4296:         } else {
                   4297:             foreach my $item (@contexts) {
1.36      raeburn  4298:                 foreach my $auth (@authtypes) {
1.35      raeburn  4299:                     $checked{$item}{$auth} = ' checked="checked" ';
                   4300:                 }
                   4301:             }
1.27      raeburn  4302:         }
1.28      raeburn  4303:         my %title = &context_names();
                   4304:         my %authname = &authtype_names();
                   4305:         my $rownum = 0;
                   4306:         my $css_class; 
                   4307:         foreach my $item (@contexts) {
                   4308:             if ($rownum%2) {
                   4309:                 $css_class = '';
                   4310:             } else {
                   4311:                 $css_class = ' class="LC_odd_row" ';
                   4312:             }
1.30      raeburn  4313:             $datatable .=   '<tr'.$css_class.'>'.
1.28      raeburn  4314:                             '<td>'.$title{$item}.
                   4315:                             '</td><td class="LC_left_item">'.
                   4316:                             '<span class="LC_nobreak">';
                   4317:             foreach my $auth (@authtypes) {
                   4318:                 $datatable .= '<label>'. 
                   4319:                               '<input type="checkbox" name="'.$item.'_auth" '.
                   4320:                               $checked{$item}{$auth}.' value="'.$auth.'" />'.
                   4321:                               $authname{$auth}.'</label>&nbsp;';
                   4322:             }
                   4323:             $datatable .= '</span></td></tr>';
                   4324:             $rownum ++;
1.27      raeburn  4325:         }
1.30      raeburn  4326:         $$rowtotal += $rownum;
1.27      raeburn  4327:     }
                   4328:     return $datatable;
                   4329: }
                   4330: 
1.224     raeburn  4331: sub print_selfcreation {
                   4332:     my ($position,$dom,$settings,$rowtotal) = @_;
1.236     raeburn  4333:     my (@selfcreate,$createsettings,$processing,$datatable);
1.224     raeburn  4334:     if (ref($settings) eq 'HASH') {
                   4335:         if (ref($settings->{'cancreate'}) eq 'HASH') {
                   4336:             $createsettings = $settings->{'cancreate'};
1.236     raeburn  4337:             if (ref($createsettings) eq 'HASH') {
                   4338:                 if (ref($createsettings->{'selfcreate'}) eq 'ARRAY') {
                   4339:                     @selfcreate = @{$createsettings->{'selfcreate'}};
                   4340:                 } elsif ($createsettings->{'selfcreate'} ne '') {
                   4341:                     if ($settings->{'cancreate'}{'selfcreate'} eq 'any') {
                   4342:                         @selfcreate = ('email','login','sso');
                   4343:                     } elsif ($createsettings->{'selfcreate'} ne 'none') {
                   4344:                         @selfcreate = ($createsettings->{'selfcreate'});
                   4345:                     }
                   4346:                 }
                   4347:                 if (ref($createsettings->{'selfcreateprocessing'}) eq 'HASH') {
                   4348:                     $processing = $createsettings->{'selfcreateprocessing'};
1.224     raeburn  4349:                 }
                   4350:             }
                   4351:         }
                   4352:     }
                   4353:     my %radiohash;
                   4354:     my $numinrow = 4;
                   4355:     map { $radiohash{'cancreate_'.$_} = 1; } @selfcreate;
                   4356:     if ($position eq 'top') {
                   4357:         my %choices = &Apache::lonlocal::texthash (
                   4358:                                                       cancreate_login      => 'Institutional Login',
                   4359:                                                       cancreate_sso        => 'Institutional Single Sign On',
                   4360:                                                   );
                   4361:         my @toggles = sort(keys(%choices));
                   4362:         my %defaultchecked = (
                   4363:                                'cancreate_login' => 'off',
                   4364:                                'cancreate_sso'   => 'off',
                   4365:                              );
1.228     raeburn  4366:         my ($onclick,$itemcount);
1.224     raeburn  4367:         ($datatable,$itemcount) = &radiobutton_prefs(\%radiohash,\@toggles,\%defaultchecked,
                   4368:                                                      \%choices,$itemcount,$onclick);
1.228     raeburn  4369:         $$rowtotal += $itemcount;
                   4370:         
1.224     raeburn  4371:         my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($dom);
                   4372: 
                   4373:         if (ref($usertypes) eq 'HASH') {
                   4374:             if (keys(%{$usertypes}) > 0) {
                   4375:                 $datatable .= &insttypes_row($createsettings,$types,$usertypes,
                   4376:                                              $dom,$numinrow,$othertitle,
1.228     raeburn  4377:                                              'statustocreate',$$rowtotal);
1.224     raeburn  4378:                 $$rowtotal ++;
                   4379:             }
                   4380:         }
1.240     raeburn  4381:         my @fields = ('lastname','firstname','middlename','permanentemail','id','inststatus');
                   4382:         my %fieldtitles = &Apache::loncommon::personal_data_fieldtitles();
                   4383:         $fieldtitles{'inststatus'} = &mt('Institutional status');
                   4384:         my $rem;
                   4385:         my $numperrow = 2;
                   4386:         my $css_class = $$rowtotal%2?' class="LC_odd_row"':'';
                   4387:         $datatable .= '<tr'.$css_class.'>'.
1.241     raeburn  4388:                      '<td class="LC_left_item">'.&mt('Mapping of Shibboleth environment variable names to user data fields (SSO auth)').'</td>'.
1.240     raeburn  4389:                      '<td class="LC_left_item">'."\n".
                   4390:                      '<table><tr><td>'."\n";
                   4391:         for (my $i=0; $i<@fields; $i++) {
                   4392:             $rem = $i%($numperrow);
                   4393:             if ($rem == 0) {
                   4394:                 if ($i > 0) {
                   4395:                     $datatable .= '</tr>';
                   4396:                 }
                   4397:                 $datatable .= '<tr>';
                   4398:             }
                   4399:             my $currval;
1.248     raeburn  4400:             if (ref($createsettings) eq 'HASH') {
                   4401:                 if (ref($createsettings->{'shibenv'}) eq 'HASH') {
                   4402:                     $currval = $createsettings->{'shibenv'}{$fields[$i]};
                   4403:                 }
1.240     raeburn  4404:             }
                   4405:             $datatable .= '<td class="LC_left_item">'.
                   4406:                           '<span class="LC_nobreak">'.
                   4407:                           '<input type="text" name="shibenv_'.$fields[$i].'" '.
                   4408:                           'value="'.$currval.'" size="10" />&nbsp;'.
                   4409:                           $fieldtitles{$fields[$i]}.'</span></td>';
                   4410:         }
                   4411:         my $colsleft = $numperrow - $rem;
                   4412:         if ($colsleft > 1 ) {
                   4413:             $datatable .= '<td colspan="'.$colsleft.'" class="LC_left_item">'.
                   4414:                          '&nbsp;</td>';
                   4415:         } elsif ($colsleft == 1) {
                   4416:             $datatable .= '<td class="LC_left_item">&nbsp;</td>';
                   4417:         }
                   4418:         $datatable .= '</tr></table></td></tr>';
                   4419:         $$rowtotal ++;
1.224     raeburn  4420:     } elsif ($position eq 'middle') {
                   4421:         my %domconf = &Apache::lonnet::get_dom('configuration',['usermodification'],$dom);
                   4422:         my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($dom);
                   4423:         $usertypes->{'default'} = $othertitle;
                   4424:         if (ref($types) eq 'ARRAY') {
                   4425:             push(@{$types},'default');
                   4426:             $usertypes->{'default'} = $othertitle;
                   4427:             foreach my $status (@{$types}) {
                   4428:                 $datatable .= &modifiable_userdata_row('selfcreate',$status,$domconf{'usermodification'},
1.228     raeburn  4429:                                                        $numinrow,$$rowtotal,$usertypes);
1.240     raeburn  4430:                 $$rowtotal ++;
1.224     raeburn  4431:             }
                   4432:         }
                   4433:     } else {
1.236     raeburn  4434:         my %choices = &Apache::lonlocal::texthash (
                   4435:                                                       cancreate_email => 'E-mail address as username',
                   4436:                                                   );
                   4437:         my @toggles = sort(keys(%choices));
                   4438:         my %defaultchecked = (
                   4439:                                'cancreate_email' => 'off',
                   4440:                              );
                   4441:         my $itemcount = 0;
                   4442:         my $display = 'none';
                   4443:         if (grep(/^\Qemail\E$/,@selfcreate)) {
                   4444:             $display = 'block';
                   4445:         }
                   4446:         my $onclick = "toggleDisplay(this.form,'emailoptions');";
                   4447:         my $additional = '<div id="emailoptions" style="display: '.$display.'">';
                   4448:         my %domdefaults = &Apache::lonnet::get_domain_defaults($dom);
                   4449:         my $usertypes = {};
                   4450:         my $order = [];
                   4451:         if ((ref($domdefaults{'inststatustypes'}) eq 'HASH') && (ref($domdefaults{'inststatusguest'}) eq 'ARRAY')) {
                   4452:             $usertypes = $domdefaults{'inststatustypes'};
                   4453:             $order = $domdefaults{'inststatusguest'};
                   4454:         }
                   4455:         if (ref($order) eq 'ARRAY') {
                   4456:             push(@{$order},'default');
                   4457:             if (@{$order} > 1) {
                   4458:                 $usertypes->{'default'} = &mt('Other users');
                   4459:                 $additional .= '<table><tr>';
                   4460:                 foreach my $status (@{$order}) {
                   4461:                     $additional .= '<th>'.$usertypes->{$status}.'</th>';
                   4462:                 }
                   4463:                 $additional .= '</tr><tr>';
                   4464:                 foreach my $status (@{$order}) {
                   4465:                     $additional .= '<td>'.&email_as_username($rowtotal,$processing,$status).'</td>';
1.224     raeburn  4466:                 }
1.236     raeburn  4467:                 $additional .= '</tr></table>';
1.224     raeburn  4468:             } else {
1.236     raeburn  4469:                 $usertypes->{'default'} = &mt('All users');
                   4470:                 $additional .= &email_as_username($rowtotal,$processing);
1.224     raeburn  4471:             }
                   4472:         }
1.236     raeburn  4473:         $additional .= '</div>'."\n";
                   4474: 
                   4475:         ($datatable,$itemcount) = &radiobutton_prefs(\%radiohash,\@toggles,\%defaultchecked,
1.240     raeburn  4476:                                                      \%choices,$$rowtotal,$onclick,$additional);
                   4477:         $$rowtotal ++;
1.236     raeburn  4478:         $datatable .= &print_requestmail($dom,'selfcreation',$createsettings,$rowtotal);
1.228     raeburn  4479:         $$rowtotal ++;
1.224     raeburn  4480:         my ($infofields,$infotitles) = &Apache::loncommon::emailusername_info();
1.228     raeburn  4481:         $numinrow = 1;
1.236     raeburn  4482:         if (ref($order) eq 'ARRAY') {
                   4483:             foreach my $status (@{$order}) {
1.228     raeburn  4484:                 $datatable .= &modifiable_userdata_row('cancreate','emailusername_'.$status,$settings,
                   4485:                                                        $numinrow,$$rowtotal,$usertypes,$infofields,$infotitles);
                   4486:                 $$rowtotal ++;
                   4487:             }
                   4488:         }
1.224     raeburn  4489:         my ($emailrules,$emailruleorder) =
                   4490:             &Apache::lonnet::inst_userrules($dom,'email');
                   4491:         if (ref($emailrules) eq 'HASH') {
                   4492:             if (keys(%{$emailrules}) > 0) {
                   4493:                 $datatable .= &user_formats_row('email',$settings,$emailrules,
1.228     raeburn  4494:                                                 $emailruleorder,$numinrow,$$rowtotal);
1.224     raeburn  4495:                 $$rowtotal ++;
                   4496:             }
                   4497:         }
1.228     raeburn  4498:         $datatable .= &captcha_choice('cancreate',$createsettings,$$rowtotal);
1.224     raeburn  4499:     }
                   4500:     return $datatable;
                   4501: }
                   4502: 
1.236     raeburn  4503: sub email_as_username {
                   4504:     my ($rowtotal,$processing,$type) = @_;
                   4505:     my %choices =
                   4506:         &Apache::lonlocal::texthash (
                   4507:                                       automatic => 'Automatic approval',
                   4508:                                       approval  => 'Queued for approval',
                   4509:                                     );
                   4510:     my $output;
                   4511:     foreach my $option ('automatic','approval') {
                   4512:         my $checked;
                   4513:         if (ref($processing) eq 'HASH') {
                   4514:             if ($type eq '') {   
                   4515:                 if (!exists($processing->{'default'})) {
                   4516:                     if ($option eq 'automatic') {
                   4517:                         $checked = ' checked="checked"';
                   4518:                     }
                   4519:                 } else {
                   4520:                     if ($processing->{'default'} eq $option) {
                   4521:                         $checked = ' checked="checked"';
                   4522:                     }
                   4523:                 }
                   4524:             } else {
                   4525:                 if (!exists($processing->{$type})) {
                   4526:                     if ($option eq 'automatic') {
                   4527:                         $checked = ' checked="checked"';
                   4528:                     }
                   4529:                 } else {
                   4530:                     if ($processing->{$type} eq $option) {
                   4531:                         $checked = ' checked="checked"';
                   4532:                     }
                   4533:                 }
                   4534:             }
                   4535:         } elsif ($option eq 'automatic') {
                   4536:             $checked = ' checked="checked"'; 
                   4537:         }
                   4538:         my $name = 'cancreate_emailprocess';
                   4539:         if (($type ne '') && ($type ne 'default')) {
                   4540:             $name .= '_'.$type;
                   4541:         }
                   4542:         $output .= '<span class="LC_nobreak"><label>'.
                   4543:                    '<input type="radio" name="'.$name.'"'.
                   4544:                    $checked.' value="'.$option.'" />'.
                   4545:                    $choices{$option}.'</label></span>';
                   4546:         if ($type eq '') {
                   4547:             $output .= '&nbsp;';
                   4548:         } else {
                   4549:             $output .= '<br />';
                   4550:         }
                   4551:     }
                   4552:     $$rowtotal ++;
                   4553:     return $output;
                   4554: }
                   4555: 
1.165     raeburn  4556: sub captcha_choice {
1.169     raeburn  4557:     my ($context,$settings,$itemcount) = @_;
1.165     raeburn  4558:     my ($keyentry,$currpub,$currpriv,%checked,$rowname,$pubtext,$privtext);
                   4559:     my %lt = &captcha_phrases();
                   4560:     $keyentry = 'hidden';
                   4561:     if ($context eq 'cancreate') {
1.224     raeburn  4562:         $rowname = &mt('CAPTCHA validation');
1.169     raeburn  4563:     } elsif ($context eq 'login') {
                   4564:         $rowname =  &mt('"Contact helpdesk" CAPTCHA validation');
1.165     raeburn  4565:     }
                   4566:     if (ref($settings) eq 'HASH') {
                   4567:         if ($settings->{'captcha'}) {
                   4568:             $checked{$settings->{'captcha'}} = ' checked="checked"';
                   4569:         } else {
                   4570:             $checked{'original'} = ' checked="checked"';
                   4571:         }
                   4572:         if ($settings->{'captcha'} eq 'recaptcha') {
                   4573:             $pubtext = $lt{'pub'};
                   4574:             $privtext = $lt{'priv'};
                   4575:             $keyentry = 'text';
                   4576:         }
                   4577:         if (ref($settings->{'recaptchakeys'}) eq 'HASH') {
                   4578:             $currpub = $settings->{'recaptchakeys'}{'public'};
                   4579:             $currpriv = $settings->{'recaptchakeys'}{'private'};
                   4580:         }
                   4581:     } else {
                   4582:         $checked{'original'} = ' checked="checked"';
                   4583:     }
1.169     raeburn  4584:     my $css_class = $itemcount%2?' class="LC_odd_row"':'';
                   4585:     my $output = '<tr'.$css_class.'>'.
                   4586:                  '<td class="LC_left_item">'.$rowname.'</td><td class="LC_left_item" colspan="2">'."\n".
1.165     raeburn  4587:                  '<table><tr><td>'."\n";
                   4588:     foreach my $option ('original','recaptcha','notused') {
                   4589:         $output .= '<span class="LC_nobreak"><label><input type="radio" name="'.$context.'_captcha" value="'.
                   4590:                    $option.'" '.$checked{$option}.' onchange="javascript:updateCaptcha('."this,'$context'".');" />'.
                   4591:                    $lt{$option}.'</label></span>';
                   4592:         unless ($option eq 'notused') {
                   4593:             $output .= ('&nbsp;'x2)."\n";
                   4594:         }
                   4595:     }
                   4596: #
                   4597: # Note: If reCAPTCHA is to be used for LON-CAPA servers in a domain, a domain coordinator should visit:
                   4598: # https://www.google.com/recaptcha and generate a Public and Private key. For domains with multiple
1.210     raeburn  4599: # servers a single key pair will be used for all servers, so the internet domain (e.g., yourcollege.edu)
1.165     raeburn  4600: # specified for use with the key should be broad enough to accommodate all servers in the LON-CAPA domain.
1.210     raeburn  4601: #
1.165     raeburn  4602:     $output .= '</td></tr>'."\n".
                   4603:                '<tr><td>'."\n".
                   4604:                '<span class="LC_nobreak"><span id="'.$context.'_recaptchapubtxt">'.$pubtext.'</span>&nbsp;'."\n".
                   4605:                '<input type="'.$keyentry.'" id="'.$context.'_recaptchapub" name="'.$context.'_recaptchapub" value="'.
                   4606:                $currpub.'" size="40" /></span><br />'."\n".
                   4607:                '<span class="LC_nobreak"><span id="'.$context.'_recaptchaprivtxt">'.$privtext.'</span>&nbsp;'."\n".
                   4608:                '<input type="'.$keyentry.'" id="'.$context.'_recaptchapriv" name="'.$context.'_recaptchapriv" value="'.
                   4609:                $currpriv.'" size="40" /></span></td></tr></table>'."\n".
                   4610:                '</td></tr>';
                   4611:     return $output;
                   4612: }
                   4613: 
1.32      raeburn  4614: sub user_formats_row {
                   4615:     my ($type,$settings,$rules,$ruleorder,$numinrow,$rowcount) = @_;
                   4616:     my $output;
                   4617:     my %text = (
                   4618:                    'username' => 'new usernames',
                   4619:                    'id'       => 'IDs',
1.45      raeburn  4620:                    'email'    => 'self-created accounts (e-mail)',
1.32      raeburn  4621:                );
                   4622:     my $css_class = $rowcount%2?' class="LC_odd_row"':'';
                   4623:     $output = '<tr '.$css_class.'>'.
1.63      raeburn  4624:               '<td><span class="LC_nobreak">';
                   4625:     if ($type eq 'email') {
                   4626:         $output .= &mt("Formats disallowed for $text{$type}: ");
                   4627:     } else {
                   4628:         $output .= &mt("Format rules to check for $text{$type}: ");
                   4629:     }
                   4630:     $output .= '</span></td>'.
                   4631:                '<td class="LC_left_item" colspan="2"><table>';
1.27      raeburn  4632:     my $rem;
                   4633:     if (ref($ruleorder) eq 'ARRAY') {
                   4634:         for (my $i=0; $i<@{$ruleorder}; $i++) {
                   4635:             if (ref($rules->{$ruleorder->[$i]}) eq 'HASH') {
                   4636:                 my $rem = $i%($numinrow);
                   4637:                 if ($rem == 0) {
                   4638:                     if ($i > 0) {
                   4639:                         $output .= '</tr>';
                   4640:                     }
                   4641:                     $output .= '<tr>';
                   4642:                 }
                   4643:                 my $check = ' ';
1.39      raeburn  4644:                 if (ref($settings) eq 'HASH') {
                   4645:                     if (ref($settings->{$type.'_rule'}) eq 'ARRAY') {
                   4646:                         if (grep(/^\Q$ruleorder->[$i]\E$/,@{$settings->{$type.'_rule'}})) {
                   4647:                             $check = ' checked="checked" ';
                   4648:                         }
1.27      raeburn  4649:                     }
                   4650:                 }
                   4651:                 $output .= '<td class="LC_left_item">'.
                   4652:                            '<span class="LC_nobreak"><label>'.
1.32      raeburn  4653:                            '<input type="checkbox" name="'.$type.'_rule" '.
1.27      raeburn  4654:                            'value="'.$ruleorder->[$i].'"'.$check.'/>'.
                   4655:                            $rules->{$ruleorder->[$i]}{'name'}.'</label></span></td>';
                   4656:             }
                   4657:         }
                   4658:         $rem = @{$ruleorder}%($numinrow);
                   4659:     }
                   4660:     my $colsleft = $numinrow - $rem;
                   4661:     if ($colsleft > 1 ) {
                   4662:         $output .= '<td colspan="'.$colsleft.'" class="LC_left_item">'.
                   4663:                    '&nbsp;</td>';
                   4664:     } elsif ($colsleft == 1) {
                   4665:         $output .= '<td class="LC_left_item">&nbsp;</td>';
                   4666:     }
                   4667:     $output .= '</tr></table></td></tr>';
                   4668:     return $output;
                   4669: }
                   4670: 
1.34      raeburn  4671: sub usercreation_types {
                   4672:     my %lt = &Apache::lonlocal::texthash (
                   4673:                     author     => 'When adding a co-author',
                   4674:                     course     => 'When adding a user to a course',
1.100     raeburn  4675:                     requestcrs => 'When requesting a course',
1.34      raeburn  4676:                     any        => 'Any',
                   4677:                     official   => 'Institutional only ',
                   4678:                     unofficial => 'Non-institutional only',
                   4679:                     none       => 'None',
                   4680:     );
                   4681:     return %lt;
1.48      raeburn  4682: }
1.34      raeburn  4683: 
1.224     raeburn  4684: sub selfcreation_types {
                   4685:     my %lt = &Apache::lonlocal::texthash (
                   4686:                     selfcreate => 'User creates own account',
                   4687:                     any        => 'Any',
                   4688:                     official   => 'Institutional only ',
                   4689:                     unofficial => 'Non-institutional only',
                   4690:                     email      => 'E-mail address',
                   4691:                     login      => 'Institutional Login',
                   4692:                     sso        => 'SSO',
                   4693:              );
                   4694: }
                   4695: 
1.28      raeburn  4696: sub authtype_names {
                   4697:     my %lt = &Apache::lonlocal::texthash(
                   4698:                       int    => 'Internal',
                   4699:                       krb4   => 'Kerberos 4',
                   4700:                       krb5   => 'Kerberos 5',
                   4701:                       loc    => 'Local',
                   4702:                   );
                   4703:     return %lt;
                   4704: }
                   4705: 
                   4706: sub context_names {
                   4707:     my %context_title = &Apache::lonlocal::texthash(
                   4708:        author => 'Creating users when an Author',
                   4709:        course => 'Creating users when in a course',
                   4710:        domain => 'Creating users when a Domain Coordinator',
                   4711:     );
                   4712:     return %context_title;
                   4713: }
                   4714: 
1.33      raeburn  4715: sub print_usermodification {
                   4716:     my ($position,$dom,$settings,$rowtotal) = @_;
                   4717:     my $numinrow = 4;
                   4718:     my ($context,$datatable,$rowcount);
                   4719:     if ($position eq 'top') {
                   4720:         $rowcount = 0;
                   4721:         $context = 'author'; 
                   4722:         foreach my $role ('ca','aa') {
                   4723:             $datatable .= &modifiable_userdata_row($context,$role,$settings,
                   4724:                                                    $numinrow,$rowcount);
                   4725:             $$rowtotal ++;
                   4726:             $rowcount ++;
                   4727:         }
1.230     raeburn  4728:     } elsif ($position eq 'bottom') {
1.33      raeburn  4729:         $context = 'course';
                   4730:         $rowcount = 0;
                   4731:         foreach my $role ('st','ep','ta','in','cr') {
                   4732:             $datatable .= &modifiable_userdata_row($context,$role,$settings,
                   4733:                                                    $numinrow,$rowcount);
                   4734:             $$rowtotal ++;
                   4735:             $rowcount ++;
                   4736:         }
                   4737:     }
                   4738:     return $datatable;
                   4739: }
                   4740: 
1.43      raeburn  4741: sub print_defaults {
1.236     raeburn  4742:     my ($position,$dom,$settings,$rowtotal) = @_;
1.43      raeburn  4743:     my $rownum = 0;
                   4744:     my ($datatable,$css_class);
1.236     raeburn  4745:     if ($position eq 'top') {
                   4746:         my @items = ('auth_def','auth_arg_def','lang_def','timezone_def',
                   4747:                      'datelocale_def','portal_def');
                   4748:         my %defaults;
                   4749:         if (ref($settings) eq 'HASH') {
                   4750:             %defaults = %{$settings};
1.43      raeburn  4751:         } else {
1.236     raeburn  4752:             my %domdefaults = &Apache::lonnet::get_domain_defaults($dom,1);
                   4753:             foreach my $item (@items) {
                   4754:                 $defaults{$item} = $domdefaults{$item};
                   4755:             }
1.43      raeburn  4756:         }
1.236     raeburn  4757:         my $titles = &defaults_titles($dom);
                   4758:         foreach my $item (@items) {
                   4759:             if ($rownum%2) {
                   4760:                 $css_class = '';
                   4761:             } else {
                   4762:                 $css_class = ' class="LC_odd_row" ';
                   4763:             }
                   4764:             $datatable .= '<tr'.$css_class.'>'.
                   4765:                           '<td><span class="LC_nobreak">'.$titles->{$item}.
                   4766:                           '</span></td><td class="LC_right_item" colspan="3">';
                   4767:             if ($item eq 'auth_def') {
                   4768:                 my @authtypes = ('internal','krb4','krb5','localauth');
                   4769:                 my %shortauth = (
                   4770:                                  internal => 'int',
                   4771:                                  krb4 => 'krb4',
                   4772:                                  krb5 => 'krb5',
                   4773:                                  localauth  => 'loc'
                   4774:                                 );
                   4775:                 my %authnames = &authtype_names();
                   4776:                 foreach my $auth (@authtypes) {
                   4777:                     my $checked = ' ';
                   4778:                     if ($defaults{$item} eq $auth) {
                   4779:                         $checked = ' checked="checked" ';
                   4780:                     }
                   4781:                     $datatable .= '<label><input type="radio" name="'.$item.
                   4782:                                   '" value="'.$auth.'"'.$checked.'/>'.
                   4783:                                   $authnames{$shortauth{$auth}}.'</label>&nbsp;&nbsp;';
                   4784:                 }
                   4785:             } elsif ($item eq 'timezone_def') {
                   4786:                 my $includeempty = 1;
                   4787:                 $datatable .= &Apache::loncommon::select_timezone($item,$defaults{$item},undef,$includeempty);
                   4788:             } elsif ($item eq 'datelocale_def') {
                   4789:                 my $includeempty = 1;
                   4790:                 $datatable .= &Apache::loncommon::select_datelocale($item,$defaults{$item},undef,$includeempty);
                   4791:             } elsif ($item eq 'lang_def') {
1.263     raeburn  4792:                 my $includeempty = 1;
                   4793:                 $datatable .= &Apache::loncommon::select_language($item,$defaults{$item},$includeempty);
1.236     raeburn  4794:             } else {
                   4795:                 my $size;
                   4796:                 if ($item eq 'portal_def') {
                   4797:                     $size = ' size="25"';
                   4798:                 }
                   4799:                 $datatable .= '<input type="text" name="'.$item.'" value="'.
                   4800:                               $defaults{$item}.'"'.$size.' />';
1.43      raeburn  4801:             }
1.236     raeburn  4802:             $datatable .= '</td></tr>';
                   4803:             $rownum ++;
                   4804:         }
                   4805:     } else {
                   4806:         my (%defaults);
                   4807:         if (ref($settings) eq 'HASH') {
                   4808:             if ((ref($settings->{'inststatusorder'}) eq 'ARRAY') && (ref($settings->{'inststatustypes'}) eq 'HASH') &&
                   4809:                 (ref($settings->{'inststatusguest'}) eq 'ARRAY')) {
                   4810:                 my $maxnum = @{$settings->{'inststatusorder'}};
                   4811:                 for (my $i=0; $i<$maxnum; $i++) {
                   4812:                     $css_class = $rownum%2?' class="LC_odd_row"':'';
                   4813:                     my $item = $settings->{'inststatusorder'}->[$i];
                   4814:                     my $title = $settings->{'inststatustypes'}->{$item};
                   4815:                     my $guestok;
                   4816:                     if (grep(/^\Q$item\E$/,@{$settings->{'inststatusguest'}})) {
                   4817:                         $guestok = 1;
                   4818:                     }
                   4819:                     my $chgstr = ' onchange="javascript:reorderTypes(this.form,'."'$item'".');"';
                   4820:                     $datatable .= '<tr'.$css_class.'>'.
                   4821:                                   '<td><span class="LC_nobreak">'.
                   4822:                                   '<select name="inststatus_pos_'.$item.'"'.$chgstr.'>';
                   4823:                     for (my $k=0; $k<=$maxnum; $k++) {
                   4824:                         my $vpos = $k+1;
                   4825:                         my $selstr;
                   4826:                         if ($k == $i) {
                   4827:                             $selstr = ' selected="selected" ';
                   4828:                         }
                   4829:                         $datatable .= '<option value="'.$k.'"'.$selstr.'>'.$vpos.'</option>';
                   4830:                     }
                   4831:                     my ($checkedon,$checkedoff);
                   4832:                     $checkedoff = ' checked="checked"';
                   4833:                     if ($guestok) {
                   4834:                         $checkedon = $checkedoff;
                   4835:                         $checkedoff = ''; 
                   4836:                     }
                   4837:                     $datatable .= '</select>&nbsp;'.&mt('Internal ID:').'&nbsp;<b>'.$item.'</b>&nbsp;'.
                   4838:                                   '<input type="checkbox" name="inststatus_delete" value="'.$item.'" />'.
                   4839:                                   &mt('delete').'</span></td>'.
                   4840:                                   '<td class="LC_left_item"><span class="LC_nobreak">'.&mt('Name displayed:').
                   4841:                                   '<input type="text" size="20" name="inststatus_title_'.$item.'" value="'.$title.'" />'.
                   4842:                                   '</span></td>'.
                   4843:                                   '<td class="LC_right_item"><span class="LC_nobreak">'.
                   4844:                                   '<label><input type="radio" value="1" name="inststatus_guest_'.$item.'"'.$checkedon.' />'.
                   4845:                                   &mt('Yes').'</label>'.('&nbsp;'x2).
                   4846:                                   '<label><input type="radio" value="0" name="inststatus_guest_'.$item.'"'.$checkedoff.' />'.
                   4847:                                   &mt('No').'</label></span></td></tr>';
                   4848:                 }
                   4849:                 $css_class = $rownum%2?' class="LC_odd_row"':'';
                   4850:                 my $chgstr = ' onchange="javascript:reorderTypes(this.form,'."'addinststatus_pos'".');"';
                   4851:                 $datatable .= '<tr '.$css_class.'>'.
                   4852:                               '<td><span class="LC_nobreak"><select name="addinststatus_pos"'.$chgstr.'>';
                   4853:                 for (my $k=0; $k<=$maxnum; $k++) {
                   4854:                     my $vpos = $k+1;
                   4855:                     my $selstr;
                   4856:                     if ($k == $maxnum) {
                   4857:                         $selstr = ' selected="selected" ';
                   4858:                     }
                   4859:                     $datatable .= '<option value="'.$k.'"'.$selstr.'>'.$vpos.'</option>';
                   4860:                 }
                   4861:                 $datatable .= '</select>&nbsp;'.&mt('Internal ID:').
1.263     raeburn  4862:                               '<input type="text" size="10" name="addinststatus" value="" />'.
1.236     raeburn  4863:                               '&nbsp;'.&mt('(new)').
                   4864:                               '</span></td><td class="LC_left_item"><span class="LC_nobreak">'.
                   4865:                               &mt('Name displayed:').
                   4866:                               '<input type="text" size="20" name="addinststatus_title" value="" /></span></td>'.
                   4867:                               '<td class="LC_right_item"><span class="LC_nobreak">'.
                   4868:                               '<label><input type="radio" value="1" name="addinststatus_guest" />'.
                   4869:                               &mt('Yes').'</label>'.('&nbsp;'x2).
                   4870:                               '<label><input type="radio" value="0" name="addinststatus_guest" />'.
                   4871:                               &mt('No').'</label></span></td></tr>';
                   4872:                               '</tr>'."\n";
                   4873:                 $rownum ++;
1.141     raeburn  4874:             }
1.43      raeburn  4875:         }
                   4876:     }
                   4877:     $$rowtotal += $rownum;
                   4878:     return $datatable;
                   4879: }
                   4880: 
1.168     raeburn  4881: sub get_languages_hash {
                   4882:     my %langchoices;
                   4883:     foreach my $id (&Apache::loncommon::languageids()) {
                   4884:         my $code = &Apache::loncommon::supportedlanguagecode($id);
                   4885:         if ($code ne '') {
                   4886:             $langchoices{$code} =  &Apache::loncommon::plainlanguagedescription($id);
                   4887:         }
                   4888:     }
                   4889:     return %langchoices;
                   4890: }
                   4891: 
1.43      raeburn  4892: sub defaults_titles {
1.141     raeburn  4893:     my ($dom) = @_;
1.43      raeburn  4894:     my %titles = &Apache::lonlocal::texthash (
                   4895:                    'auth_def'      => 'Default authentication type',
                   4896:                    'auth_arg_def'  => 'Default authentication argument',
                   4897:                    'lang_def'      => 'Default language',
1.54      raeburn  4898:                    'timezone_def'  => 'Default timezone',
1.68      raeburn  4899:                    'datelocale_def' => 'Default locale for dates',
1.141     raeburn  4900:                    'portal_def'     => 'Portal/Default URL',
1.43      raeburn  4901:                  );
1.141     raeburn  4902:     if ($dom) {
                   4903:         my $uprimary_id = &Apache::lonnet::domain($dom,'primary');
                   4904:         my $uint_dom = &Apache::lonnet::internet_dom($uprimary_id);
                   4905:         my $protocol = $Apache::lonnet::protocol{$uprimary_id};
                   4906:         $protocol = 'http' if ($protocol ne 'https');
                   4907:         if ($uint_dom) {
                   4908:             $titles{'portal_def'} .= ' '.&mt('(for example: [_1])',$protocol.'://loncapa.'.
                   4909:                                          $uint_dom);
                   4910:         }
                   4911:     }
1.43      raeburn  4912:     return (\%titles);
                   4913: }
                   4914: 
1.46      raeburn  4915: sub print_scantronformat {
                   4916:     my ($r,$dom,$confname,$settings,$rowtotal) = @_;
                   4917:     my $itemcount = 1;
1.60      raeburn  4918:     my ($datatable,$css_class,$scantronurl,$is_custom,%error,%scantronurls,
                   4919:         %confhash);
1.46      raeburn  4920:     my $switchserver = &check_switchserver($dom,$confname);
                   4921:     my %lt = &Apache::lonlocal::texthash (
1.95      www      4922:                 default => 'Default bubblesheet format file error',
                   4923:                 custom  => 'Custom bubblesheet format file error',
1.46      raeburn  4924:              );
                   4925:     my %scantronfiles = (
                   4926:         default => 'default.tab',
                   4927:         custom => 'custom.tab',
                   4928:     );
                   4929:     foreach my $key (keys(%scantronfiles)) {
                   4930:         $scantronurls{$key} = '/res/'.$dom.'/'.$confname.'/scantron/'
                   4931:                               .$scantronfiles{$key};
                   4932:     }
                   4933:     my @defaultinfo = &Apache::lonnet::stat_file($scantronurls{'default'});
                   4934:     if ((!@defaultinfo) || ($defaultinfo[0] eq 'no_such_dir')) {
                   4935:         if (!$switchserver) {
                   4936:             my $servadm = $r->dir_config('lonAdmEMail');
                   4937:             my ($configuserok,$author_ok) = &config_check($dom,$confname,$servadm);
                   4938:             if ($configuserok eq 'ok') {
                   4939:                 if ($author_ok eq 'ok') {
                   4940:                     my %legacyfile = (
                   4941:  default => $Apache::lonnet::perlvar{'lonTabDir'}.'/default_scantronformat.tab', 
                   4942:  custom  => $Apache::lonnet::perlvar{'lonTabDir'}.'/scantronformat.tab', 
                   4943:                     );
                   4944:                     my %md5chk;
                   4945:                     foreach my $type (keys(%legacyfile)) {
1.60      raeburn  4946:                         ($md5chk{$type}) = split(/ /,`md5sum $legacyfile{$type}`);
                   4947:                         chomp($md5chk{$type});
1.46      raeburn  4948:                     }
                   4949:                     if ($md5chk{'default'} ne $md5chk{'custom'}) {
                   4950:                         foreach my $type (keys(%legacyfile)) {
1.60      raeburn  4951:                             ($scantronurls{$type},my $error) = 
1.46      raeburn  4952:                                 &legacy_scantronformat($r,$dom,$confname,
                   4953:                                                  $type,$legacyfile{$type},
                   4954:                                                  $scantronurls{$type},
                   4955:                                                  $scantronfiles{$type});
1.60      raeburn  4956:                             if ($error ne '') {
                   4957:                                 $error{$type} = $error;
                   4958:                             }
                   4959:                         }
                   4960:                         if (keys(%error) == 0) {
                   4961:                             $is_custom = 1;
                   4962:                             $confhash{'scantron'}{'scantronformat'} = 
                   4963:                                 $scantronurls{'custom'};
                   4964:                             my $putresult = 
                   4965:                                 &Apache::lonnet::put_dom('configuration',
                   4966:                                                          \%confhash,$dom);
                   4967:                             if ($putresult ne 'ok') {
                   4968:                                 $error{'custom'} = 
                   4969:                                     '<span class="LC_error">'.
                   4970:                                     &mt('An error occurred updating the domain configuration: [_1]',$putresult).'</span>';
                   4971:                             }
1.46      raeburn  4972:                         }
                   4973:                     } else {
1.60      raeburn  4974:                         ($scantronurls{'default'},my $error) =
1.46      raeburn  4975:                             &legacy_scantronformat($r,$dom,$confname,
                   4976:                                           'default',$legacyfile{'default'},
                   4977:                                           $scantronurls{'default'},
                   4978:                                           $scantronfiles{'default'});
1.60      raeburn  4979:                         if ($error eq '') {
                   4980:                             $confhash{'scantron'}{'scantronformat'} = ''; 
                   4981:                             my $putresult =
                   4982:                                 &Apache::lonnet::put_dom('configuration',
                   4983:                                                          \%confhash,$dom);
                   4984:                             if ($putresult ne 'ok') {
                   4985:                                 $error{'default'} =
                   4986:                                     '<span class="LC_error">'.
                   4987:                                     &mt('An error occurred updating the domain configuration: [_1]',$putresult).'</span>';
                   4988:                             }
                   4989:                         } else {
                   4990:                             $error{'default'} = $error;
                   4991:                         }
1.46      raeburn  4992:                     }
                   4993:                 }
                   4994:             }
                   4995:         } else {
1.95      www      4996:             $error{'default'} = &mt("Unable to copy default bubblesheet formatfile to domain's RES space: [_1]",$switchserver);
1.46      raeburn  4997:         }
                   4998:     }
                   4999:     if (ref($settings) eq 'HASH') {
                   5000:         if ($settings->{'scantronformat'} eq "/res/$dom/$confname/scantron/custom.tab") {
                   5001:             my @info = &Apache::lonnet::stat_file($settings->{'scantronformat'});
                   5002:             if ((!@info) || ($info[0] eq 'no_such_dir')) {
                   5003:                 $scantronurl = '';
                   5004:             } else {
                   5005:                 $scantronurl = $settings->{'scantronformat'};
                   5006:             }
                   5007:             $is_custom = 1;
                   5008:         } else {
                   5009:             $scantronurl = $scantronurls{'default'};
                   5010:         }
                   5011:     } else {
1.60      raeburn  5012:         if ($is_custom) {
                   5013:             $scantronurl = $scantronurls{'custom'};
                   5014:         } else {
                   5015:             $scantronurl = $scantronurls{'default'};
                   5016:         }
1.46      raeburn  5017:     }
                   5018:     $css_class = $itemcount%2?' class="LC_odd_row"':'';
                   5019:     $datatable .= '<tr'.$css_class.'>';
                   5020:     if (!$is_custom) {
1.65      raeburn  5021:         $datatable .= '<td>'.&mt('Default in use:').'<br />'.
                   5022:                       '<span class="LC_nobreak">';
1.46      raeburn  5023:         if ($scantronurl) {
1.199     raeburn  5024:             $datatable .= &Apache::loncommon::modal_link($scantronurl,&mt('Default bubblesheet format file'),600,500,
                   5025:                                                          undef,undef,undef,undef,'background-color:#ffffff');
1.46      raeburn  5026:         } else {
                   5027:             $datatable = &mt('File unavailable for display');
                   5028:         }
1.65      raeburn  5029:         $datatable .= '</span></td>';
1.60      raeburn  5030:         if (keys(%error) == 0) { 
                   5031:             $datatable .= '<td valign="bottom">';
                   5032:             if (!$switchserver) {
                   5033:                 $datatable .= &mt('Upload:').'<br />';
                   5034:             }
                   5035:         } else {
                   5036:             my $errorstr;
                   5037:             foreach my $key (sort(keys(%error))) {
                   5038:                 $errorstr .= $lt{$key}.': '.$error{$key}.'<br />';
                   5039:             }
                   5040:             $datatable .= '<td>'.$errorstr;
                   5041:         }
1.46      raeburn  5042:     } else {
                   5043:         if (keys(%error) > 0) {
                   5044:             my $errorstr;
                   5045:             foreach my $key (sort(keys(%error))) {
                   5046:                 $errorstr .= $lt{$key}.': '.$error{$key}.'<br />';
                   5047:             } 
1.60      raeburn  5048:             $datatable .= '<td>'.$errorstr.'</td><td>&nbsp;';
1.46      raeburn  5049:         } elsif ($scantronurl) {
1.199     raeburn  5050:             my $link =  &Apache::loncommon::modal_link($scantronurl,&mt('Custom bubblesheet format file'),600,500,
                   5051:                                                        undef,undef,undef,undef,'background-color:#ffffff');
1.65      raeburn  5052:             $datatable .= '<td><span class="LC_nobreak">'.
1.199     raeburn  5053:                           $link.
                   5054:                           '<label><input type="checkbox" name="scantronformat_del"'.
                   5055:                           ' value="1" />'.&mt('Delete?').'</label></span></td>'.
1.65      raeburn  5056:                           '<td><span class="LC_nobreak">&nbsp;'.
                   5057:                           &mt('Replace:').'</span><br />';
1.46      raeburn  5058:         }
                   5059:     }
                   5060:     if (keys(%error) == 0) {
                   5061:         if ($switchserver) {
                   5062:             $datatable .= &mt('Upload to library server: [_1]',$switchserver);
                   5063:         } else {
1.65      raeburn  5064:             $datatable .='<span class="LC_nobreak">&nbsp;'.
                   5065:                          '<input type="file" name="scantronformat" /></span>';
1.46      raeburn  5066:         }
                   5067:     }
                   5068:     $datatable .= '</td></tr>';
                   5069:     $$rowtotal ++;
                   5070:     return $datatable;
                   5071: }
                   5072: 
                   5073: sub legacy_scantronformat {
                   5074:     my ($r,$dom,$confname,$file,$legacyfile,$newurl,$newfile) = @_;
                   5075:     my ($url,$error);
                   5076:     my @statinfo = &Apache::lonnet::stat_file($newurl);
                   5077:     if ((!@statinfo) || ($statinfo[0] eq 'no_such_dir')) {
                   5078:         (my $result,$url) =
                   5079:             &publishlogo($r,'copy',$legacyfile,$dom,$confname,'scantron',
                   5080:                          '','',$newfile);
                   5081:         if ($result ne 'ok') {
1.130     raeburn  5082:             $error = &mt("An error occurred publishing the [_1] bubblesheet format file in RES space. Error was: [_2].",$newfile,$result);
1.46      raeburn  5083:         }
                   5084:     }
                   5085:     return ($url,$error);
                   5086: }
1.43      raeburn  5087: 
1.49      raeburn  5088: sub print_coursecategories {
1.57      raeburn  5089:     my ($position,$dom,$hdritem,$settings,$rowtotal) = @_;
                   5090:     my $datatable;
                   5091:     if ($position eq 'top') {
1.238     raeburn  5092:         my (%checked);
                   5093:         my @catitems = ('unauth','auth');
                   5094:         my @cattypes = ('std','domonly','codesrch','none');
                   5095:         $checked{'unauth'} = 'std';
                   5096:         $checked{'auth'} = 'std';
                   5097:         if (ref($settings) eq 'HASH') {
                   5098:             foreach my $type (@cattypes) {
                   5099:                 if ($type eq $settings->{'unauth'}) {
                   5100:                     $checked{'unauth'} = $type;
                   5101:                 }
                   5102:                 if ($type eq $settings->{'auth'}) {
                   5103:                     $checked{'auth'} = $type;
                   5104:                 }
                   5105:             }
                   5106:         }
                   5107:         my %lt = &Apache::lonlocal::texthash (
                   5108:                                                unauth   => 'Catalog type for unauthenticated users',
                   5109:                                                auth     => 'Catalog type for authenticated users',
                   5110:                                                none     => 'No catalog',
                   5111:                                                std      => 'Standard catalog',
                   5112:                                                domonly  => 'Domain-only catalog',
                   5113:                                                codesrch => "Code search form",
                   5114:                                              );
                   5115:        my $itemcount = 0;
                   5116:        foreach my $item (@catitems) {
                   5117:            my $css_class = $itemcount%2? ' class="LC_odd_row"':'';
                   5118:            $datatable .= '<tr '.$css_class.'>'.
                   5119:                          '<td>'.$lt{$item}.'</td>'.
                   5120:                          '<td class="LC_right_item"><span class="LC_nobreak">';
                   5121:            foreach my $type (@cattypes) {
                   5122:                my $ischecked;
                   5123:                if ($checked{$item} eq $type) {
                   5124:                    $ischecked=' checked="checked"';
                   5125:                }
                   5126:                $datatable .= '<label>'.
                   5127:                              '<input type="radio" name="coursecat_'.$item.'" value="'.$type.'"'.$ischecked.
                   5128:                              ' />'.$lt{$type}.'</label>&nbsp;';
                   5129:            }
                   5130:            $datatable .= '</td></tr>';
                   5131:            $itemcount ++;
                   5132:         }
                   5133:         $$rowtotal += $itemcount;
                   5134:     } elsif ($position eq 'middle') {
1.57      raeburn  5135:         my $toggle_cats_crs = ' ';
                   5136:         my $toggle_cats_dom = ' checked="checked" ';
                   5137:         my $can_cat_crs = ' ';
                   5138:         my $can_cat_dom = ' checked="checked" ';
1.120     raeburn  5139:         my $toggle_catscomm_comm = ' ';
                   5140:         my $toggle_catscomm_dom = ' checked="checked" ';
                   5141:         my $can_catcomm_comm = ' ';
                   5142:         my $can_catcomm_dom = ' checked="checked" ';
                   5143: 
1.57      raeburn  5144:         if (ref($settings) eq 'HASH') {
                   5145:             if ($settings->{'togglecats'} eq 'crs') {
                   5146:                 $toggle_cats_crs = $toggle_cats_dom;
                   5147:                 $toggle_cats_dom = ' ';
                   5148:             }
                   5149:             if ($settings->{'categorize'} eq 'crs') {
                   5150:                 $can_cat_crs = $can_cat_dom;
                   5151:                 $can_cat_dom = ' ';
                   5152:             }
1.120     raeburn  5153:             if ($settings->{'togglecatscomm'} eq 'comm') {
                   5154:                 $toggle_catscomm_comm = $toggle_catscomm_dom;
                   5155:                 $toggle_catscomm_dom = ' ';
                   5156:             }
                   5157:             if ($settings->{'categorizecomm'} eq 'comm') {
                   5158:                 $can_catcomm_comm = $can_catcomm_dom;
                   5159:                 $can_catcomm_dom = ' ';
                   5160:             }
1.57      raeburn  5161:         }
                   5162:         my %title = &Apache::lonlocal::texthash (
1.120     raeburn  5163:                      togglecats     => 'Show/Hide a course in catalog',
                   5164:                      togglecatscomm => 'Show/Hide a community in catalog',
                   5165:                      categorize     => 'Assign a category to a course',
                   5166:                      categorizecomm => 'Assign a category to a community',
1.57      raeburn  5167:                     );
                   5168:         my %level = &Apache::lonlocal::texthash (
1.120     raeburn  5169:                      dom  => 'Set in Domain',
                   5170:                      crs  => 'Set in Course',
                   5171:                      comm => 'Set in Community',
1.57      raeburn  5172:                     );
                   5173:         $datatable = '<tr class="LC_odd_row">'.
                   5174:                   '<td>'.$title{'togglecats'}.'</td>'.
                   5175:                   '<td class="LC_right_item"><span class="LC_nobreak"><label>'.
                   5176:                   '<input type="radio" name="togglecats"'.
                   5177:                   $toggle_cats_dom.' value="dom" />'.$level{'dom'}.'</label>&nbsp;'.
                   5178:                   '<label><input type="radio" name="togglecats"'.
                   5179:                   $toggle_cats_crs.' value="crs" />'.$level{'crs'}.'</label></span></td>'.
                   5180:                   '</tr><tr>'.
                   5181:                   '<td>'.$title{'categorize'}.'</td>'.
                   5182:                   '<td class="LC_right_item"><span class="LC_nobreak">'.
                   5183:                   '<label><input type="radio" name="categorize"'.
                   5184:                   $can_cat_dom.' value="dom" />'.$level{'dom'}.'</label>&nbsp;'.
                   5185:                   '<label><input type="radio" name="categorize"'.
                   5186:                   $can_cat_crs.'value="crs" />'.$level{'crs'}.'</label></span></td>'.
1.120     raeburn  5187:                   '</tr><tr class="LC_odd_row">'.
                   5188:                   '<td>'.$title{'togglecatscomm'}.'</td>'.
                   5189:                   '<td class="LC_right_item"><span class="LC_nobreak"><label>'.
                   5190:                   '<input type="radio" name="togglecatscomm"'.
                   5191:                   $toggle_catscomm_dom.' value="dom" />'.$level{'dom'}.'</label>&nbsp;'.
                   5192:                   '<label><input type="radio" name="togglecatscomm"'.
                   5193:                   $toggle_catscomm_comm.' value="comm" />'.$level{'comm'}.'</label></span></td>'.
                   5194:                   '</tr><tr>'.
                   5195:                   '<td>'.$title{'categorizecomm'}.'</td>'.
                   5196:                   '<td class="LC_right_item"><span class="LC_nobreak">'.
                   5197:                   '<label><input type="radio" name="categorizecomm"'.
                   5198:                   $can_catcomm_dom.' value="dom" />'.$level{'dom'}.'</label>&nbsp;'.
                   5199:                   '<label><input type="radio" name="categorizecomm"'.
                   5200:                   $can_catcomm_comm.'value="comm" />'.$level{'comm'}.'</label></span></td>'.
1.57      raeburn  5201:                   '</tr>';
1.120     raeburn  5202:         $$rowtotal += 4;
1.57      raeburn  5203:     } else {
                   5204:         my $css_class;
                   5205:         my $itemcount = 1;
                   5206:         my $cathash; 
                   5207:         if (ref($settings) eq 'HASH') {
                   5208:             $cathash = $settings->{'cats'};
                   5209:         }
                   5210:         if (ref($cathash) eq 'HASH') {
                   5211:             my (@cats,@trails,%allitems,%idx,@jsarray);
                   5212:             &Apache::loncommon::extract_categories($cathash,\@cats,\@trails,
                   5213:                                                    \%allitems,\%idx,\@jsarray);
                   5214:             my $maxdepth = scalar(@cats);
                   5215:             my $colattrib = '';
                   5216:             if ($maxdepth > 2) {
                   5217:                 $colattrib = ' colspan="2" ';
                   5218:             }
                   5219:             my @path;
                   5220:             if (@cats > 0) {
                   5221:                 if (ref($cats[0]) eq 'ARRAY') {
                   5222:                     my $numtop = @{$cats[0]};
                   5223:                     my $maxnum = $numtop;
1.120     raeburn  5224:                     my %default_names = (
                   5225:                           instcode    => &mt('Official courses'),
                   5226:                           communities => &mt('Communities'),
                   5227:                     );
                   5228: 
                   5229:                     if ((!grep(/^instcode$/,@{$cats[0]})) || 
                   5230:                         ($cathash->{'instcode::0'} eq '') ||
                   5231:                         (!grep(/^communities$/,@{$cats[0]})) || 
                   5232:                         ($cathash->{'communities::0'} eq '')) {
1.57      raeburn  5233:                         $maxnum ++;
                   5234:                     }
                   5235:                     my $lastidx;
                   5236:                     for (my $i=0; $i<$numtop; $i++) {
                   5237:                         my $parent = $cats[0][$i];
                   5238:                         $css_class = $itemcount%2?' class="LC_odd_row"':'';
                   5239:                         my $item = &escape($parent).'::0';
                   5240:                         my $chgstr = ' onchange="javascript:reorderCats(this.form,'."'','$item','$idx{$item}'".');"';
                   5241:                         $lastidx = $idx{$item};
                   5242:                         $datatable .= '<tr '.$css_class.'><td><span class="LC_nobreak">'
                   5243:                                       .'<select name="'.$item.'"'.$chgstr.'>';
                   5244:                         for (my $k=0; $k<=$maxnum; $k++) {
                   5245:                             my $vpos = $k+1;
                   5246:                             my $selstr;
                   5247:                             if ($k == $i) {
                   5248:                                 $selstr = ' selected="selected" ';
                   5249:                             }
                   5250:                             $datatable .= '<option value="'.$k.'"'.$selstr.'>'.$vpos.'</option>';
                   5251:                         }
1.214     raeburn  5252:                         $datatable .= '</select></span></td><td>';
1.120     raeburn  5253:                         if ($parent eq 'instcode' || $parent eq 'communities') {
                   5254:                             $datatable .=  '<span class="LC_nobreak">'
                   5255:                                            .$default_names{$parent}.'</span>';
                   5256:                             if ($parent eq 'instcode') {
                   5257:                                 $datatable .= '<br /><span class="LC_nobreak">('
                   5258:                                               .&mt('with institutional codes')
                   5259:                                               .')</span></td><td'.$colattrib.'>';
                   5260:                             } else {
                   5261:                                 $datatable .= '<table><tr><td>';
                   5262:                             }
                   5263:                             $datatable .= '<span class="LC_nobreak">'
                   5264:                                           .'<label><input type="radio" name="'
                   5265:                                           .$parent.'" value="1" checked="checked" />'
                   5266:                                           .&mt('Display').'</label>';
                   5267:                             if ($parent eq 'instcode') {
                   5268:                                 $datatable .= '&nbsp;';
                   5269:                             } else {
                   5270:                                 $datatable .= '</span></td></tr><tr><td>'
                   5271:                                               .'<span class="LC_nobreak">';
                   5272:                             }
                   5273:                             $datatable .= '<label><input type="radio" name="'
                   5274:                                           .$parent.'" value="0" />'
                   5275:                                           .&mt('Do not display').'</label></span>';
                   5276:                             if ($parent eq 'communities') {
                   5277:                                 $datatable .= '</td></tr></table>';
                   5278:                             }
                   5279:                             $datatable .= '</td>';
1.57      raeburn  5280:                         } else {
                   5281:                             $datatable .= $parent
1.214     raeburn  5282:                                           .'&nbsp;<span class="LC_nobreak"><label>'
                   5283:                                           .'<input type="checkbox" name="deletecategory" '
1.57      raeburn  5284:                                           .'value="'.$item.'" />'.&mt('Delete').'</label></span></td>';
                   5285:                         }
                   5286:                         my $depth = 1;
                   5287:                         push(@path,$parent);
                   5288:                         $datatable .= &build_category_rows($itemcount,\@cats,$depth,$parent,\@path,\%idx);
                   5289:                         pop(@path);
                   5290:                         $datatable .= '</tr><tr><td colspan="'.$maxdepth.'" class="LC_row_separator"></td></tr>';
                   5291:                         $itemcount ++;
                   5292:                     }
1.48      raeburn  5293:                     $css_class = $itemcount%2?' class="LC_odd_row"':'';
1.57      raeburn  5294:                     my $chgstr = ' onchange="javascript:reorderCats(this.form,'."'','addcategory_pos','$lastidx'".');"';
                   5295:                     $datatable .= '<tr '.$css_class.'><td><span class="LC_nobreak"><select name="addcategory_pos"'.$chgstr.'>';
1.48      raeburn  5296:                     for (my $k=0; $k<=$maxnum; $k++) {
                   5297:                         my $vpos = $k+1;
                   5298:                         my $selstr;
1.57      raeburn  5299:                         if ($k == $numtop) {
1.48      raeburn  5300:                             $selstr = ' selected="selected" ';
                   5301:                         }
                   5302:                         $datatable .= '<option value="'.$k.'"'.$selstr.'>'.$vpos.'</option>';
                   5303:                     }
1.59      bisitz   5304:                     $datatable .= '</select></span></td><td colspan="2">'.&mt('Add category:').'&nbsp;'
1.57      raeburn  5305:                                   .'<input type="text" size="20" name="addcategory_name" value="" /></td>'
                   5306:                                   .'</tr>'."\n";
1.48      raeburn  5307:                     $itemcount ++;
1.120     raeburn  5308:                     foreach my $default ('instcode','communities') {
                   5309:                         if ((!grep(/^\Q$default\E$/,@{$cats[0]})) || ($cathash->{$default.'::0'} eq '')) {
                   5310:                             $css_class = $itemcount%2?' class="LC_odd_row"':'';
                   5311:                             my $chgstr = ' onchange="javascript:reorderCats(this.form,'."'','$default"."_pos','$lastidx'".');"';
                   5312:                             $datatable .= '<tr><td colspan="'.$maxdepth.'" class="LC_row_separator"></td></tr><tr '.$css_class.'><td>'.
                   5313:                                           '<span class="LC_nobreak"><select name="'.$default.'_pos"'.$chgstr.'>';
                   5314:                             for (my $k=0; $k<=$maxnum; $k++) {
                   5315:                                 my $vpos = $k+1;
                   5316:                                 my $selstr;
                   5317:                                 if ($k == $maxnum) {
                   5318:                                     $selstr = ' selected="selected" ';
                   5319:                                 }
                   5320:                                 $datatable .= '<option value="'.$k.'"'.$selstr.'>'.$vpos.'</option>';
1.57      raeburn  5321:                             }
1.120     raeburn  5322:                             $datatable .= '</select></span></td>'.
                   5323:                                           '<td><span class="LC_nobreak">'.
                   5324:                                           $default_names{$default}.'</span>';
                   5325:                             if ($default eq 'instcode') {
                   5326:                                 $datatable .= '<br /><span class="LC_nobreak">(' 
                   5327:                                               .&mt('with institutional codes').')</span>';
                   5328:                             }
                   5329:                             $datatable .= '</td>'
                   5330:                                           .'<td><span class="LC_nobreak"><label><input type="radio" name="'.$default.'" value="1" />'
                   5331:                                           .&mt('Display').'</label>&nbsp;'
                   5332:                                           .'<label><input type="radio" name="'.$default.'" value="0" checked="checked"/>'
                   5333:                                           .&mt('Do not display').'</label></span></td></tr>';
1.48      raeburn  5334:                         }
                   5335:                     }
                   5336:                 }
1.57      raeburn  5337:             } else {
                   5338:                 $datatable .= &initialize_categories($itemcount);
1.48      raeburn  5339:             }
                   5340:         } else {
1.238     raeburn  5341:             $datatable .= '<td class="LC_right_item">'.$hdritem->{'header'}->[1]->{'col2'}.'</td>'
1.57      raeburn  5342:                           .&initialize_categories($itemcount);
1.48      raeburn  5343:         }
1.57      raeburn  5344:         $$rowtotal += $itemcount;
1.48      raeburn  5345:     }
                   5346:     return $datatable;
                   5347: }
                   5348: 
1.69      raeburn  5349: sub print_serverstatuses {
                   5350:     my ($dom,$settings,$rowtotal) = @_;
                   5351:     my $datatable;
                   5352:     my @pages = &serverstatus_pages();
                   5353:     my (%namedaccess,%machineaccess);
                   5354:     foreach my $type (@pages) {
                   5355:         $namedaccess{$type} = '';
                   5356:         $machineaccess{$type}= '';
                   5357:     }
                   5358:     if (ref($settings) eq 'HASH') {
                   5359:         foreach my $type (@pages) {
                   5360:             if (exists($settings->{$type})) {
                   5361:                 if (ref($settings->{$type}) eq 'HASH') {
                   5362:                     foreach my $key (keys(%{$settings->{$type}})) {
                   5363:                         if ($key eq 'namedusers') {
                   5364:                             $namedaccess{$type} = $settings->{$type}->{$key};
                   5365:                         } elsif ($key eq 'machines') {
                   5366:                             $machineaccess{$type} = $settings->{$type}->{$key};
                   5367:                         }
                   5368:                     }
                   5369:                 }
                   5370:             }
                   5371:         }
                   5372:     }
1.81      raeburn  5373:     my $titles= &LONCAPA::lonauthcgi::serverstatus_titles();
1.69      raeburn  5374:     my $rownum = 0;
                   5375:     my $css_class;
                   5376:     foreach my $type (@pages) {
                   5377:         $rownum ++;
                   5378:         $css_class = $rownum%2?' class="LC_odd_row"':'';
                   5379:         $datatable .= '<tr'.$css_class.'>'.
                   5380:                       '<td><span class="LC_nobreak">'.
                   5381:                       $titles->{$type}.'</span></td>'.
                   5382:                       '<td class="LC_left_item">'.
                   5383:                       '<input type="text" name="'.$type.'_namedusers" '.
                   5384:                       'value="'.$namedaccess{$type}.'" size="30" /></td>'.
                   5385:                       '<td class="LC_right_item">'.
                   5386:                       '<span class="LC_nobreak">'.
                   5387:                       '<input type="text" name="'.$type.'_machines" '.
                   5388:                       'value="'.$machineaccess{$type}.'" size="10" />'.
                   5389:                       '</td></tr>'."\n";
                   5390:     }
                   5391:     $$rowtotal += $rownum;
                   5392:     return $datatable;
                   5393: }
                   5394: 
                   5395: sub serverstatus_pages {
                   5396:     return ('userstatus','lonstatus','loncron','server-status','codeversions',
1.189     raeburn  5397:             'checksums','clusterstatus','metadata_keywords','metadata_harvest',
1.221     raeburn  5398:             'takeoffline','takeonline','showenv','toggledebug','ping','domconf',
1.262     raeburn  5399:             'uniquecodes','diskusage','coursecatalog');
1.69      raeburn  5400: }
                   5401: 
1.236     raeburn  5402: sub defaults_javascript {
                   5403:     my ($settings) = @_;
1.248     raeburn  5404:     return unless (ref($settings) eq 'HASH'); 
1.236     raeburn  5405:     if ((ref($settings->{'inststatusorder'}) eq 'ARRAY') && (ref($settings->{'inststatustypes'}) eq 'HASH')) {
                   5406:         my $maxnum = scalar(@{$settings->{'inststatusorder'}});
                   5407:         if ($maxnum eq '') {
                   5408:             $maxnum = 0;
                   5409:         }
                   5410:         $maxnum ++;
1.249     raeburn  5411:         my $jstext = '    var inststatuses = Array('."'".join("','",@{$settings->{'inststatusorder'}})."'".');';  
1.236     raeburn  5412:         return <<"ENDSCRIPT";
                   5413: <script type="text/javascript">
                   5414: // <![CDATA[
                   5415: function reorderTypes(form,caller) {
                   5416:     var changedVal;
                   5417: $jstext 
                   5418:     var newpos = 'addinststatus_pos';
                   5419:     var current = new Array;
                   5420:     var maxh = $maxnum;
                   5421:     var newitemVal = form.elements[newpos].options[form.elements[newpos].selectedIndex].value;
                   5422:     var oldVal;
                   5423:     if (caller == newpos) {
                   5424:         changedVal = newitemVal;
                   5425:     } else {
                   5426:         var curritem = 'inststatus_pos_'+caller;
                   5427:         changedVal = form.elements[curritem].options[form.elements[curritem].selectedIndex].value;
                   5428:         current[newitemVal] = newpos;
                   5429:     }
                   5430:     for (var i=0; i<inststatuses.length; i++) {
                   5431:         if (inststatuses[i] != caller) {
                   5432:             var elementName = 'inststatus_pos_'+inststatuses[i];
                   5433:             if (form.elements[elementName]) {
                   5434:                 var currVal = form.elements[elementName].options[form.elements[elementName].selectedIndex].value;
                   5435:                 current[currVal] = elementName;
                   5436:             }
                   5437:         }
                   5438:     }
                   5439:     for (var j=0; j<maxh; j++) {
                   5440:         if (current[j] == undefined) {
                   5441:             oldVal = j;
                   5442:         }
                   5443:     }
                   5444:     if (oldVal < changedVal) {
                   5445:         for (var k=oldVal+1; k<=changedVal ; k++) {
                   5446:            var elementName = current[k];
                   5447:            form.elements[elementName].selectedIndex = form.elements[elementName].selectedIndex - 1;
                   5448:         }
                   5449:     } else {
                   5450:         for (var k=changedVal; k<oldVal; k++) {
                   5451:             var elementName = current[k];
                   5452:             form.elements[elementName].selectedIndex = form.elements[elementName].selectedIndex + 1;
                   5453:         }
                   5454:     }
                   5455:     return;
                   5456: }
                   5457: 
                   5458: // ]]>
                   5459: </script>
                   5460: 
                   5461: ENDSCRIPT
                   5462:     }
                   5463: }
                   5464: 
1.49      raeburn  5465: sub coursecategories_javascript {
                   5466:     my ($settings) = @_;
1.57      raeburn  5467:     my ($output,$jstext,$cathash);
1.49      raeburn  5468:     if (ref($settings) eq 'HASH') {
1.57      raeburn  5469:         $cathash = $settings->{'cats'};
                   5470:     }
                   5471:     if (ref($cathash) eq 'HASH') {
1.49      raeburn  5472:         my (@cats,@jsarray,%idx);
1.57      raeburn  5473:         &Apache::loncommon::gather_categories($cathash,\@cats,\%idx,\@jsarray);
1.49      raeburn  5474:         if (@jsarray > 0) {
                   5475:             $jstext = '    var categories = Array('.scalar(@jsarray).');'."\n";
                   5476:             for (my $i=0; $i<@jsarray; $i++) {
                   5477:                 if (ref($jsarray[$i]) eq 'ARRAY') {
                   5478:                     my $catstr = join('","',@{$jsarray[$i]});
                   5479:                     $jstext .= '    categories['.$i.'] = Array("'.$catstr.'");'."\n";
                   5480:                 }
                   5481:             }
                   5482:         }
                   5483:     } else {
                   5484:         $jstext  = '    var categories = Array(1);'."\n".
                   5485:                    '    categories[0] = Array("instcode_pos");'."\n"; 
                   5486:     }
1.237     bisitz   5487:     my $instcode_reserved = &mt('The name: [_1] is a reserved category.','"instcode"');
                   5488:     my $communities_reserved = &mt('The name: [_1] is a reserved category.','"communities"');
1.265   ! damieng  5489:     my $choose_again = "\n".&mt('Please use a different name for the new top level category.'); 
        !          5490:     &js_escape(\$instcode_reserved);
        !          5491:     &js_escape(\$communities_reserved);
        !          5492:     &js_escape(\$choose_again);
1.49      raeburn  5493:     $output = <<"ENDSCRIPT";
                   5494: <script type="text/javascript">
1.109     raeburn  5495: // <![CDATA[
1.49      raeburn  5496: function reorderCats(form,parent,item,idx) {
                   5497:     var changedVal;
                   5498: $jstext
                   5499:     var newpos = 'addcategory_pos';
                   5500:     if (parent == '') {
                   5501:         var has_instcode = 0;
                   5502:         var maxtop = categories[idx].length;
                   5503:         for (var j=0; j<maxtop; j++) {
                   5504:             if (categories[idx][j] == 'instcode::0') {
                   5505:                 has_instcode == 1;
                   5506:             }
                   5507:         }
                   5508:         if (has_instcode == 0) {
                   5509:             categories[idx][maxtop] = 'instcode_pos';
                   5510:         }
                   5511:     } else {
                   5512:         newpos += '_'+parent;
                   5513:     }
                   5514:     var maxh = 1 + categories[idx].length;
                   5515:     var current = new Array;
                   5516:     var newitemVal = form.elements[newpos].options[form.elements[newpos].selectedIndex].value;
                   5517:     if (item == newpos) {
                   5518:         changedVal = newitemVal;
                   5519:     } else {
                   5520:         changedVal = form.elements[item].options[form.elements[item].selectedIndex].value;
                   5521:         current[newitemVal] = newpos;
                   5522:     }
                   5523:     for (var i=0; i<categories[idx].length; i++) {
                   5524:         var elementName = categories[idx][i];
                   5525:         if (elementName != item) {
                   5526:             if (form.elements[elementName]) {
                   5527:                 var currVal = form.elements[elementName].options[form.elements[elementName].selectedIndex].value;
                   5528:                 current[currVal] = elementName;
                   5529:             }
                   5530:         }
                   5531:     }
                   5532:     var oldVal;
                   5533:     for (var j=0; j<maxh; j++) {
                   5534:         if (current[j] == undefined) {
                   5535:             oldVal = j;
                   5536:         }
                   5537:     }
                   5538:     if (oldVal < changedVal) {
                   5539:         for (var k=oldVal+1; k<=changedVal ; k++) {
                   5540:            var elementName = current[k];
                   5541:            form.elements[elementName].selectedIndex = form.elements[elementName].selectedIndex - 1;
                   5542:         }
                   5543:     } else {
                   5544:         for (var k=changedVal; k<oldVal; k++) {
                   5545:             var elementName = current[k];
                   5546:             form.elements[elementName].selectedIndex = form.elements[elementName].selectedIndex + 1;
                   5547:         }
                   5548:     }
                   5549:     return;
                   5550: }
1.120     raeburn  5551: 
                   5552: function categoryCheck(form) {
                   5553:     if (form.elements['addcategory_name'].value == 'instcode') {
                   5554:         alert('$instcode_reserved\\n$choose_again');
                   5555:         return false;
                   5556:     }
                   5557:     if (form.elements['addcategory_name'].value == 'communities') {
                   5558:         alert('$communities_reserved\\n$choose_again');
                   5559:         return false;
                   5560:     }
                   5561:     return true;
                   5562: }
                   5563: 
1.109     raeburn  5564: // ]]>
1.49      raeburn  5565: </script>
                   5566: 
                   5567: ENDSCRIPT
                   5568:     return $output;
                   5569: }
                   5570: 
1.48      raeburn  5571: sub initialize_categories {
                   5572:     my ($itemcount) = @_;
1.120     raeburn  5573:     my ($datatable,$css_class,$chgstr);
                   5574:     my %default_names = (
                   5575:                       instcode    => 'Official courses (with institutional codes)',
                   5576:                       communities => 'Communities',
                   5577:                         );
                   5578:     my $select0 = ' selected="selected"';
                   5579:     my $select1 = '';
                   5580:     foreach my $default ('instcode','communities') {
                   5581:         $css_class = $itemcount%2?' class="LC_odd_row"':'';
                   5582:         $chgstr = ' onchange="javascript:reorderCats(this.form,'."'',$default"."_pos','0'".');"';
                   5583:         if ($default eq 'communities') {
                   5584:             $select1 = $select0;
                   5585:             $select0 = '';
                   5586:         }
                   5587:         $datatable .= '<tr '.$css_class.'><td><span class="LC_nobreak">'
                   5588:                      .'<select name="'.$default.'_pos">'
                   5589:                      .'<option value="0"'.$select0.'>1</option>'
                   5590:                      .'<option value="1"'.$select1.'>2</option>'
                   5591:                      .'<option value="2">3</option></select>&nbsp;'
                   5592:                      .$default_names{$default}
                   5593:                      .'</span></td><td><span class="LC_nobreak">'
                   5594:                      .'<label><input type="radio" name="'.$default.'" value="1" checked="checked" />'
                   5595:                      .&mt('Display').'</label>&nbsp;<label>'
                   5596:                      .'<input type="radio" name="'.$default.'" value="0" />'.&mt('Do not display')
1.48      raeburn  5597:                  .'</label></span></td></tr>';
1.120     raeburn  5598:         $itemcount ++;
                   5599:     }
1.48      raeburn  5600:     $css_class = $itemcount%2?' class="LC_odd_row"':'';
1.49      raeburn  5601:     $chgstr = ' onchange="javascript:reorderCats(this.form,'."'','addcategory_pos','0'".');"';
1.48      raeburn  5602:     $datatable .= '<tr '.$css_class.'><td><span class="LC_nobreak">'
1.120     raeburn  5603:                   .'<select name="addcategory_pos"'.$chgstr.'>'
                   5604:                   .'<option value="0">1</option>'
                   5605:                   .'<option value="1">2</option>'
                   5606:                   .'<option value="2" selected="selected">3</option></select>&nbsp;'
1.48      raeburn  5607:                   .&mt('Add category').'</td><td>'.&mt('Name:')
                   5608:                   .'&nbsp;<input type="text" size="20" name="addcategory_name" value="" /></td></tr>';
                   5609:     return $datatable;
                   5610: }
                   5611: 
                   5612: sub build_category_rows {
1.49      raeburn  5613:     my ($itemcount,$cats,$depth,$parent,$path,$idx) = @_;
                   5614:     my ($text,$name,$item,$chgstr);
1.48      raeburn  5615:     if (ref($cats) eq 'ARRAY') {
                   5616:         my $maxdepth = scalar(@{$cats});
                   5617:         if (ref($cats->[$depth]) eq 'HASH') {
                   5618:             if (ref($cats->[$depth]{$parent}) eq 'ARRAY') {
                   5619:                 my $numchildren = @{$cats->[$depth]{$parent}};
                   5620:                 my $css_class = $itemcount%2?' class="LC_odd_row"':'';
1.204     raeburn  5621:                 $text .= '<td><table class="LC_data_table">';
1.49      raeburn  5622:                 my ($idxnum,$parent_name,$parent_item);
                   5623:                 my $higher = $depth - 1;
                   5624:                 if ($higher == 0) {
                   5625:                     $parent_name = &escape($parent).'::'.$higher;
                   5626:                 } else {
                   5627:                     if (ref($path) eq 'ARRAY') {
                   5628:                         $parent_name = &escape($parent).':'.&escape($path->[-2]).':'.$higher;
                   5629:                     }
                   5630:                 }
                   5631:                 $parent_item = 'addcategory_pos_'.$parent_name;
1.48      raeburn  5632:                 for (my $j=0; $j<=$numchildren; $j++) {
1.49      raeburn  5633:                     if ($j < $numchildren) {
1.48      raeburn  5634:                         $name = $cats->[$depth]{$parent}[$j];
                   5635:                         $item = &escape($name).':'.&escape($parent).':'.$depth;
1.49      raeburn  5636:                         $idxnum = $idx->{$item};
                   5637:                     } else {
                   5638:                         $name = $parent_name;
                   5639:                         $item = $parent_item;
1.48      raeburn  5640:                     }
1.49      raeburn  5641:                     $chgstr = ' onchange="javascript:reorderCats(this.form,'."'$parent_name','$item','$idxnum'".');"';
                   5642:                     $text .= '<tr '.$css_class.'><td><span class="LC_nobreak"><select name="'.$item.'"'.$chgstr.'>';
1.48      raeburn  5643:                     for (my $i=0; $i<=$numchildren; $i++) {
                   5644:                         my $vpos = $i+1;
                   5645:                         my $selstr;
                   5646:                         if ($j == $i) {
                   5647:                             $selstr = ' selected="selected" ';
                   5648:                         }
                   5649:                         $text .= '<option value="'.$i.'"'.$selstr.'>'.$vpos.'</option>';
                   5650:                     }
                   5651:                     $text .= '</select>&nbsp;';
                   5652:                     if ($j < $numchildren) {
                   5653:                         my $deeper = $depth+1;
                   5654:                         $text .= $name.'&nbsp;'
                   5655:                                  .'<label><input type="checkbox" name="deletecategory" value="'
                   5656:                                  .$item.'" />'.&mt('Delete').'</label></span></td><td>';
                   5657:                         if(ref($path) eq 'ARRAY') {
                   5658:                             push(@{$path},$name);
1.49      raeburn  5659:                             $text .= &build_category_rows($itemcount,$cats,$deeper,$name,$path,$idx);
1.48      raeburn  5660:                             pop(@{$path});
                   5661:                         }
                   5662:                     } else {
1.59      bisitz   5663:                         $text .= &mt('Add subcategory:').'&nbsp;</span><input type="textbox" size="20" name="addcategory_name_';
1.48      raeburn  5664:                         if ($j == $numchildren) {
                   5665:                             $text .= $name;
                   5666:                         } else {
                   5667:                             $text .= $item;
                   5668:                         }
                   5669:                         $text .= '" value="" />';
                   5670:                     }
                   5671:                     $text .= '</td></tr>';
                   5672:                 }
                   5673:                 $text .= '</table></td>';
                   5674:             } else {
                   5675:                 my $higher = $depth-1;
                   5676:                 if ($higher == 0) {
                   5677:                     $name = &escape($parent).'::'.$higher;
                   5678:                 } else {
                   5679:                     if (ref($path) eq 'ARRAY') {
                   5680:                         $name = &escape($parent).':'.&escape($path->[-2]).':'.$higher;
                   5681:                     }
                   5682:                 }
                   5683:                 my $colspan;
                   5684:                 if ($parent ne 'instcode') {
                   5685:                     $colspan = $maxdepth - $depth - 1;
                   5686:                     $text .= '<td colspan="'.$colspan.'">'.&mt('Add subcategory:').'<input type="textbox" size="20" name="subcat_'.$name.'" value="" /></td>';
                   5687:                 }
                   5688:             }
                   5689:         }
                   5690:     }
                   5691:     return $text;
                   5692: }
                   5693: 
1.33      raeburn  5694: sub modifiable_userdata_row {
1.228     raeburn  5695:     my ($context,$item,$settings,$numinrow,$rowcount,$usertypes,$fieldsref,$titlesref) = @_;
                   5696:     my ($role,$rolename,$statustype);
                   5697:     $role = $item;
1.224     raeburn  5698:     if ($context eq 'cancreate') {
1.228     raeburn  5699:         if ($item =~ /^emailusername_(.+)$/) {
                   5700:             $statustype = $1;
                   5701:             $role = 'emailusername';
                   5702:             if (ref($usertypes) eq 'HASH') {
                   5703:                 if ($usertypes->{$statustype}) {
                   5704:                     $rolename = &mt('Data provided by [_1]',$usertypes->{$statustype});
                   5705:                 } else {
                   5706:                     $rolename = &mt('Data provided by user');
                   5707:                 }
                   5708:             }
1.224     raeburn  5709:         }
                   5710:     } elsif ($context eq 'selfcreate') {
1.63      raeburn  5711:         if (ref($usertypes) eq 'HASH') {
                   5712:             $rolename = $usertypes->{$role};
                   5713:         } else {
                   5714:             $rolename = $role;
                   5715:         }
1.33      raeburn  5716:     } else {
1.63      raeburn  5717:         if ($role eq 'cr') {
                   5718:             $rolename = &mt('Custom role');
                   5719:         } else {
                   5720:             $rolename = &Apache::lonnet::plaintext($role);
                   5721:         }
1.33      raeburn  5722:     }
1.224     raeburn  5723:     my (@fields,%fieldtitles);
                   5724:     if (ref($fieldsref) eq 'ARRAY') {
                   5725:         @fields = @{$fieldsref};
                   5726:     } else {
                   5727:         @fields = ('lastname','firstname','middlename','generation',
                   5728:                    'permanentemail','id');
                   5729:     }
                   5730:     if ((ref($titlesref) eq 'HASH')) {
                   5731:         %fieldtitles = %{$titlesref};
                   5732:     } else {
                   5733:         %fieldtitles = &Apache::loncommon::personal_data_fieldtitles();
                   5734:     }
1.33      raeburn  5735:     my $output;
                   5736:     my $css_class = $rowcount%2?' class="LC_odd_row"':'';
                   5737:     $output = '<tr '.$css_class.'>'.
                   5738:               '<td><span class="LC_nobreak">'.$rolename.'</span></td>'.
                   5739:               '<td class="LC_left_item" colspan="2"><table>';
                   5740:     my $rem;
                   5741:     my %checks;
                   5742:     if (ref($settings) eq 'HASH') {
                   5743:         if (ref($settings->{$context}) eq 'HASH') {
                   5744:             if (ref($settings->{$context}->{$role}) eq 'HASH') {
1.228     raeburn  5745:                 my $hashref = $settings->{$context}->{$role};
                   5746:                 if ($role eq 'emailusername') {
                   5747:                     if ($statustype) {
                   5748:                         if (ref($settings->{$context}->{$role}->{$statustype}) eq 'HASH') {
                   5749:                             $hashref = $settings->{$context}->{$role}->{$statustype};
                   5750:                             if (ref($hashref) eq 'HASH') { 
                   5751:                                 foreach my $field (@fields) {
                   5752:                                     if ($hashref->{$field}) {
                   5753:                                         $checks{$field} = $hashref->{$field};
                   5754:                                     }
                   5755:                                 }
                   5756:                             }
                   5757:                         }
                   5758:                     }
                   5759:                 } else {
                   5760:                     if (ref($hashref) eq 'HASH') {
                   5761:                         foreach my $field (@fields) {
                   5762:                             if ($hashref->{$field}) {
                   5763:                                 $checks{$field} = ' checked="checked" ';
                   5764:                             }
                   5765:                         }
1.33      raeburn  5766:                     }
                   5767:                 }
                   5768:             }
                   5769:         }
                   5770:     }
1.228     raeburn  5771:      
1.33      raeburn  5772:     for (my $i=0; $i<@fields; $i++) {
                   5773:         my $rem = $i%($numinrow);
                   5774:         if ($rem == 0) {
                   5775:             if ($i > 0) {
                   5776:                 $output .= '</tr>';
                   5777:             }
                   5778:             $output .= '<tr>';
                   5779:         }
                   5780:         my $check = ' ';
1.228     raeburn  5781:         unless ($role eq 'emailusername') {
                   5782:             if (exists($checks{$fields[$i]})) {
                   5783:                 $check = $checks{$fields[$i]}
                   5784:             } else {
                   5785:                 if ($role eq 'st') {
                   5786:                     if (ref($settings) ne 'HASH') {
                   5787:                         $check = ' checked="checked" '; 
                   5788:                     }
1.33      raeburn  5789:                 }
                   5790:             }
                   5791:         }
                   5792:         $output .= '<td class="LC_left_item">'.
1.228     raeburn  5793:                    '<span class="LC_nobreak">';
                   5794:         if ($role eq 'emailusername') {
                   5795:             unless ($checks{$fields[$i]} =~ /^(required|optional)$/) {
                   5796:                 $checks{$fields[$i]} = 'omit';
                   5797:             }
                   5798:             foreach my $option ('required','optional','omit') {
                   5799:                 my $checked='';
                   5800:                 if ($checks{$fields[$i]} eq $option) {
                   5801:                     $checked='checked="checked" ';
                   5802:                 }
                   5803:                 $output .= '<label>'.
                   5804:                            '<input type="radio" name="canmodify_'.$item.'_'.$fields[$i].'" value="'.$option.'" '.$checked.'/>'.
                   5805:                            &mt($option).'</label>'.('&nbsp;' x2);
                   5806:             }
                   5807:             $output .= '<i>'.$fieldtitles{$fields[$i]}.'</i>';
                   5808:         } else {
                   5809:             $output .= '<label>'.
                   5810:                        '<input type="checkbox" name="canmodify_'.$role.'" '.
                   5811:                        'value="'.$fields[$i].'"'.$check.'/>'.$fieldtitles{$fields[$i]}.
                   5812:                        '</label>';
                   5813:         }
                   5814:         $output .= '</span></td>';
1.33      raeburn  5815:         $rem = @fields%($numinrow);
                   5816:     }
                   5817:     my $colsleft = $numinrow - $rem;
                   5818:     if ($colsleft > 1 ) {
                   5819:         $output .= '<td colspan="'.$colsleft.'" class="LC_left_item">'.
                   5820:                    '&nbsp;</td>';
                   5821:     } elsif ($colsleft == 1) {
                   5822:         $output .= '<td class="LC_left_item">&nbsp;</td>';
                   5823:     }
                   5824:     $output .= '</tr></table></td></tr>';
                   5825:     return $output;
                   5826: }
1.28      raeburn  5827: 
1.93      raeburn  5828: sub insttypes_row {
1.224     raeburn  5829:     my ($settings,$types,$usertypes,$dom,$numinrow,$othertitle,$context,$rownum) = @_;
1.93      raeburn  5830:     my %lt = &Apache::lonlocal::texthash (
                   5831:                       cansearch => 'Users allowed to search',
                   5832:                       statustocreate => 'Institutional affiliation(s) able to create own account (login/SSO)',
1.131     raeburn  5833:                       lockablenames => 'User preference to lock name',
1.93      raeburn  5834:              );
                   5835:     my $showdom;
                   5836:     if ($context eq 'cansearch') {
                   5837:         $showdom = ' ('.$dom.')';
                   5838:     }
1.165     raeburn  5839:     my $class = 'LC_left_item';
                   5840:     if ($context eq 'statustocreate') {
                   5841:         $class = 'LC_right_item';
                   5842:     }
1.224     raeburn  5843:     my $css_class = ' class="LC_odd_row"';
                   5844:     if ($rownum ne '') { 
                   5845:         $css_class = ($rownum%2? ' class="LC_odd_row"':'');
                   5846:     }
                   5847:     my $output = '<tr'.$css_class.'>'.
                   5848:                  '<td>'.$lt{$context}.$showdom.
                   5849:                  '</td><td class="'.$class.'" colspan="2"><table>';
1.26      raeburn  5850:     my $rem;
                   5851:     if (ref($types) eq 'ARRAY') {
                   5852:         for (my $i=0; $i<@{$types}; $i++) {
                   5853:             if (defined($usertypes->{$types->[$i]})) {
                   5854:                 my $rem = $i%($numinrow);
                   5855:                 if ($rem == 0) {
                   5856:                     if ($i > 0) {
                   5857:                         $output .= '</tr>';
                   5858:                     }
                   5859:                     $output .= '<tr>';
1.23      raeburn  5860:                 }
1.26      raeburn  5861:                 my $check = ' ';
1.99      raeburn  5862:                 if (ref($settings) eq 'HASH') {
                   5863:                     if (ref($settings->{$context}) eq 'ARRAY') {
                   5864:                         if (grep(/^\Q$types->[$i]\E$/,@{$settings->{$context}})) {
                   5865:                             $check = ' checked="checked" ';
                   5866:                         }
                   5867:                     } elsif ($context eq 'statustocreate') {
1.26      raeburn  5868:                         $check = ' checked="checked" ';
                   5869:                     }
1.23      raeburn  5870:                 }
1.26      raeburn  5871:                 $output .= '<td class="LC_left_item">'.
                   5872:                            '<span class="LC_nobreak"><label>'.
1.93      raeburn  5873:                            '<input type="checkbox" name="'.$context.'" '.
1.26      raeburn  5874:                            'value="'.$types->[$i].'"'.$check.'/>'.
                   5875:                            $usertypes->{$types->[$i]}.'</label></span></td>';
1.23      raeburn  5876:             }
                   5877:         }
1.26      raeburn  5878:         $rem = @{$types}%($numinrow);
1.23      raeburn  5879:     }
                   5880:     my $colsleft = $numinrow - $rem;
1.131     raeburn  5881:     if (($rem == 0) && (@{$types} > 0)) {
                   5882:         $output .= '<tr>';
                   5883:     }
1.23      raeburn  5884:     if ($colsleft > 1) {
1.25      raeburn  5885:         $output .= '<td colspan="'.$colsleft.'" class="LC_left_item">';
1.23      raeburn  5886:     } else {
1.25      raeburn  5887:         $output .= '<td class="LC_left_item">';
1.23      raeburn  5888:     }
                   5889:     my $defcheck = ' ';
1.99      raeburn  5890:     if (ref($settings) eq 'HASH') {  
                   5891:         if (ref($settings->{$context}) eq 'ARRAY') {
                   5892:             if (grep(/^default$/,@{$settings->{$context}})) {
                   5893:                 $defcheck = ' checked="checked" ';
                   5894:             }
                   5895:         } elsif ($context eq 'statustocreate') {
1.26      raeburn  5896:             $defcheck = ' checked="checked" ';
                   5897:         }
1.23      raeburn  5898:     }
1.25      raeburn  5899:     $output .= '<span class="LC_nobreak"><label>'.
1.93      raeburn  5900:                '<input type="checkbox" name="'.$context.'" '.
1.25      raeburn  5901:                'value="default"'.$defcheck.'/>'.
                   5902:                $othertitle.'</label></span></td>'.
                   5903:                '</tr></table></td></tr>';
                   5904:     return $output;
1.23      raeburn  5905: }
                   5906: 
                   5907: sub sorted_searchtitles {
                   5908:     my %searchtitles = &Apache::lonlocal::texthash(
                   5909:                          'uname' => 'username',
                   5910:                          'lastname' => 'last name',
                   5911:                          'lastfirst' => 'last name, first name',
                   5912:                      );
                   5913:     my @titleorder = ('uname','lastname','lastfirst');
                   5914:     return (\%searchtitles,\@titleorder);
                   5915: }
                   5916: 
1.25      raeburn  5917: sub sorted_searchtypes {
                   5918:     my %srchtypes_desc = (
                   5919:                            exact    => 'is exact match',
                   5920:                            contains => 'contains ..',
                   5921:                            begins   => 'begins with ..',
                   5922:                          );
                   5923:     my @srchtypeorder = ('exact','begins','contains');
                   5924:     return (\%srchtypes_desc,\@srchtypeorder);
                   5925: }
                   5926: 
1.3       raeburn  5927: sub usertype_update_row {
                   5928:     my ($settings,$usertypes,$fieldtitles,$fields,$types,$rownums) = @_;
                   5929:     my $datatable;
                   5930:     my $numinrow = 4;
                   5931:     foreach my $type (@{$types}) {
                   5932:         if (defined($usertypes->{$type})) {
                   5933:             $$rownums ++;
                   5934:             my $css_class = $$rownums%2?' class="LC_odd_row"':'';
                   5935:             $datatable .= '<tr'.$css_class.'><td>'.$usertypes->{$type}.
                   5936:                           '</td><td class="LC_left_item"><table>';
                   5937:             for (my $i=0; $i<@{$fields}; $i++) {
                   5938:                 my $rem = $i%($numinrow);
                   5939:                 if ($rem == 0) {
                   5940:                     if ($i > 0) {
                   5941:                         $datatable .= '</tr>';
                   5942:                     }
                   5943:                     $datatable .= '<tr>';
                   5944:                 }
                   5945:                 my $check = ' ';
1.39      raeburn  5946:                 if (ref($settings) eq 'HASH') {
                   5947:                     if (ref($settings->{'fields'}) eq 'HASH') {
                   5948:                         if (ref($settings->{'fields'}{$type}) eq 'ARRAY') {
                   5949:                             if (grep(/^\Q$fields->[$i]\E$/,@{$settings->{'fields'}{$type}})) {
                   5950:                                 $check = ' checked="checked" ';
                   5951:                             }
1.3       raeburn  5952:                         }
                   5953:                     }
                   5954:                 }
                   5955: 
                   5956:                 if ($i == @{$fields}-1) {
                   5957:                     my $colsleft = $numinrow - $rem;
                   5958:                     if ($colsleft > 1) {
                   5959:                         $datatable .= '<td colspan="'.$colsleft.'">';
                   5960:                     } else {
                   5961:                         $datatable .= '<td>';
                   5962:                     }
                   5963:                 } else {
                   5964:                     $datatable .= '<td>';
                   5965:                 }
1.8       raeburn  5966:                 $datatable .= '<span class="LC_nobreak"><label>'.
                   5967:                               '<input type="checkbox" name="updateable_'.$type.
                   5968:                               '_'.$fields->[$i].'" value="1"'.$check.'/>'.
                   5969:                               $fieldtitles->{$fields->[$i]}.'</label></span></td>';
1.3       raeburn  5970:             }
                   5971:             $datatable .= '</tr></table></td></tr>';
                   5972:         }
                   5973:     }
                   5974:     return $datatable;
1.1       raeburn  5975: }
                   5976: 
                   5977: sub modify_login {
1.205     raeburn  5978:     my ($r,$dom,$confname,$lastactref,%domconfig) = @_;
1.168     raeburn  5979:     my ($resulttext,$errors,$colchgtext,%changes,%colchanges,%newfile,%newurl,
                   5980:         %curr_loginvia,%loginhash,@currlangs,@newlangs,$addedfile,%title,@offon);
                   5981:     %title = ( coursecatalog => 'Display course catalog',
                   5982:                adminmail => 'Display administrator E-mail address',
1.188     raeburn  5983:                helpdesk  => 'Display "Contact Helpdesk" link',
1.168     raeburn  5984:                newuser => 'Link for visitors to create a user account',
                   5985:                loginheader => 'Log-in box header');
                   5986:     @offon = ('off','on');
1.112     raeburn  5987:     if (ref($domconfig{login}) eq 'HASH') {
                   5988:         if (ref($domconfig{login}{loginvia}) eq 'HASH') {
                   5989:             foreach my $lonhost (keys(%{$domconfig{login}{loginvia}})) {
                   5990:                 $curr_loginvia{$lonhost} = $domconfig{login}{loginvia}{$lonhost};
                   5991:             }
                   5992:         }
                   5993:     }
1.9       raeburn  5994:     ($errors,%colchanges) = &modify_colors($r,$dom,$confname,['login'],
                   5995:                                            \%domconfig,\%loginhash);
1.188     raeburn  5996:     my @toggles = ('coursecatalog','adminmail','helpdesk','newuser');
1.42      raeburn  5997:     foreach my $item (@toggles) {
                   5998:         $loginhash{login}{$item} = $env{'form.'.$item};
                   5999:     }
1.41      raeburn  6000:     $loginhash{login}{loginheader} = $env{'form.loginheader'};
1.6       raeburn  6001:     if (ref($colchanges{'login'}) eq 'HASH') {  
                   6002:         $colchgtext = &display_colorchgs($dom,\%colchanges,['login'],
                   6003:                                          \%loginhash);
                   6004:     }
1.110     raeburn  6005: 
1.149     raeburn  6006:     my %servers = &Apache::lonnet::internet_dom_servers($dom);
1.256     raeburn  6007:     my %domservers = &Apache::lonnet::get_servers($dom);
1.128     raeburn  6008:     my @loginvia_attribs = ('serverpath','custompath','exempt');
1.110     raeburn  6009:     if (keys(%servers) > 1) {
                   6010:         foreach my $lonhost (keys(%servers)) {
1.128     raeburn  6011:             next if ($env{'form.'.$lonhost.'_server'} eq $lonhost);
                   6012:             if (ref($curr_loginvia{$lonhost}) eq 'HASH') {
                   6013:                 if ($env{'form.'.$lonhost.'_server'} eq $curr_loginvia{$lonhost}{'server'}) {
                   6014:                     $loginhash{login}{loginvia}{$lonhost}{'server'} = $curr_loginvia{$lonhost}{'server'};
                   6015:                 } elsif ($curr_loginvia{$lonhost}{'server'} ne '') {
                   6016:                     if (defined($servers{$env{'form.'.$lonhost.'_server'}})) {
                   6017:                         $loginhash{login}{loginvia}{$lonhost}{'server'} = $env{'form.'.$lonhost.'_server'};
                   6018:                         $changes{'loginvia'}{$lonhost} = 1;
                   6019:                     } else {
                   6020:                         $loginhash{login}{loginvia}{$lonhost}{'server'} = '';
                   6021:                         $changes{'loginvia'}{$lonhost} = 1;
                   6022:                     }
                   6023:                 } else {
                   6024:                     if (defined($servers{$env{'form.'.$lonhost.'_server'}})) {
                   6025:                         $loginhash{login}{loginvia}{$lonhost}{'server'} = $env{'form.'.$lonhost.'_server'};
                   6026:                         $changes{'loginvia'}{$lonhost} = 1;
                   6027:                     }
                   6028:                 }
                   6029:                 if ($loginhash{login}{loginvia}{$lonhost}{'server'} eq '') {
                   6030:                     foreach my $item (@loginvia_attribs) {
                   6031:                         $loginhash{login}{loginvia}{$lonhost}{$item} = '';
                   6032:                     }
                   6033:                 } else {
                   6034:                     foreach my $item (@loginvia_attribs) {
                   6035:                         my $new = $env{'form.'.$lonhost.'_'.$item};
                   6036:                         if (($item eq 'serverpath') && ($new eq 'custom')) {
                   6037:                             $env{'form.'.$lonhost.'_custompath'} =~ s/\s+//g;
                   6038:                             if ($env{'form.'.$lonhost.'_custompath'} eq '') {
                   6039:                                 $new = '/';
                   6040:                             }
                   6041:                         }
                   6042:                         if (($item eq 'custompath') && 
                   6043:                             ($env{'form.'.$lonhost.'_serverpath'} ne 'custom')) {
                   6044:                             $new = '';
                   6045:                         }
                   6046:                         if ($new ne $curr_loginvia{$lonhost}{$item}) {
                   6047:                             $changes{'loginvia'}{$lonhost} = 1;
                   6048:                         }
                   6049:                         if ($item eq 'exempt') {
1.256     raeburn  6050:                             $new = &check_exempt_addresses($new);
1.128     raeburn  6051:                         }
                   6052:                         $loginhash{login}{loginvia}{$lonhost}{$item} = $new;
                   6053:                     }
                   6054:                 }
1.112     raeburn  6055:             } else {
1.128     raeburn  6056:                 if (defined($servers{$env{'form.'.$lonhost.'_server'}})) {
                   6057:                     $loginhash{login}{loginvia}{$lonhost}{'server'} = $env{'form.'.$lonhost.'_server'};
1.112     raeburn  6058:                     $changes{'loginvia'}{$lonhost} = 1;
1.128     raeburn  6059:                     foreach my $item (@loginvia_attribs) {
                   6060:                         my $new = $env{'form.'.$lonhost.'_'.$item};
                   6061:                         if (($item eq 'serverpath') && ($new eq 'custom')) {
                   6062:                             if ($env{'form.'.$lonhost.'_custompath'} eq '') {
                   6063:                                 $new = '/';
                   6064:                             }
                   6065:                         }
                   6066:                         if (($item eq 'custompath') && 
                   6067:                             ($env{'form.'.$lonhost.'_serverpath'} ne 'custom')) {
                   6068:                             $new = '';
                   6069:                         }
                   6070:                         $loginhash{login}{loginvia}{$lonhost}{$item} = $new;
                   6071:                     }
1.110     raeburn  6072:                 }
                   6073:             }
                   6074:         }
                   6075:     }
1.119     raeburn  6076: 
1.168     raeburn  6077:     my $servadm = $r->dir_config('lonAdmEMail');
                   6078:     my %langchoices = &Apache::lonlocal::texthash(&get_languages_hash());
                   6079:     if (ref($domconfig{'login'}) eq 'HASH') {
                   6080:         if (ref($domconfig{'login'}{'helpurl'}) eq 'HASH') {
                   6081:             foreach my $lang (sort(keys(%{$domconfig{'login'}{'helpurl'}}))) {
                   6082:                 if ($lang eq 'nolang') {
                   6083:                     push(@currlangs,$lang);
                   6084:                 } elsif (defined($langchoices{$lang})) {
                   6085:                     push(@currlangs,$lang);
                   6086:                 } else {
                   6087:                     next;
                   6088:                 }
                   6089:             }
                   6090:         }
                   6091:     }
                   6092:     my @delurls = &Apache::loncommon::get_env_multiple('form.loginhelpurl_del');
                   6093:     if (@currlangs > 0) {
                   6094:         foreach my $lang (@currlangs) {
                   6095:             if (grep(/^\Q$lang\E$/,@delurls)) {
                   6096:                 $changes{'helpurl'}{$lang} = 1;
                   6097:             } elsif ($env{'form.loginhelpurl_'.$lang.'.filename'}) {
                   6098:                 $changes{'helpurl'}{$lang} = 1;
                   6099:                 $newfile{$lang} = $env{'form.loginhelpurl_'.$lang.'.filename'};
                   6100:                 push(@newlangs,$lang);
                   6101:             } else {
                   6102:                 $loginhash{'login'}{'helpurl'}{$lang} = $domconfig{'login'}{'helpurl'}{$lang};
                   6103:             }
                   6104:         }
                   6105:     }
                   6106:     unless (grep(/^nolang$/,@currlangs)) {
                   6107:         if ($env{'form.loginhelpurl_nolang.filename'}) {
                   6108:             $changes{'helpurl'}{'nolang'} = 1;
                   6109:             $newfile{'nolang'} = $env{'form.loginhelpurl_nolang.filename'};
                   6110:             push(@newlangs,'nolang');
                   6111:         }
                   6112:     }
                   6113:     if ($env{'form.loginhelpurl_add_lang'}) {
                   6114:         if ((defined($langchoices{$env{'form.loginhelpurl_add_lang'}})) &&
                   6115:             ($env{'form.loginhelpurl_add_file.filename'})) {
                   6116:             $newfile{$env{'form.loginhelpurl_add_lang'}} = $env{'form.loginhelpurl_add_file.filename'};
                   6117:             $addedfile = $env{'form.loginhelpurl_add_lang'};
                   6118:         }
                   6119:     }
                   6120:     if ((@newlangs > 0) || ($addedfile)) {
                   6121:         my $error;
                   6122:         my ($configuserok,$author_ok,$switchserver) = &config_check($dom,$confname,$servadm);
                   6123:         if ($configuserok eq 'ok') {
                   6124:             if ($switchserver) {
                   6125:                 $error = &mt("Upload of custom help file is not permitted to this server: [_1]",$switchserver);
                   6126:             } elsif ($author_ok eq 'ok') {
                   6127:                 my @allnew = @newlangs;
                   6128:                 if ($addedfile ne '') {
                   6129:                     push(@allnew,$addedfile);
                   6130:                 }
                   6131:                 foreach my $lang (@allnew) {
                   6132:                     my $formelem = 'loginhelpurl_'.$lang;
                   6133:                     if ($lang eq $env{'form.loginhelpurl_add_lang'}) {
                   6134:                         $formelem = 'loginhelpurl_add_file';
                   6135:                     }
                   6136:                     (my $result,$newurl{$lang}) = &publishlogo($r,'upload',$formelem,$dom,$confname,
                   6137:                                                                "help/$lang",'','',$newfile{$lang});
                   6138:                     if ($result eq 'ok') {
                   6139:                         $loginhash{'login'}{'helpurl'}{$lang} = $newurl{$lang};
                   6140:                         $changes{'helpurl'}{$lang} = 1;
                   6141:                     } else {
                   6142:                         my $puberror = &mt("Upload of [_1] failed because an error occurred publishing the file in RES space. Error was: [_2].",$newfile{$lang},$result);
                   6143:                         $errors .= '<li><span class="LC_error">'.$puberror.'</span></li>';
1.210     raeburn  6144:                         if ((grep(/^\Q$lang\E$/,@currlangs)) &&
1.168     raeburn  6145:                             (!grep(/^\Q$lang\E$/,@delurls))) {
                   6146:                             $loginhash{'login'}{'helpurl'}{$lang} = $domconfig{'login'}{'helpurl'}{$lang};
                   6147:                         }
                   6148:                     }
                   6149:                 }
                   6150:             } else {
                   6151:                 $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);
                   6152:             }
                   6153:         } else {
                   6154:             $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);
                   6155:         }
                   6156:         if ($error) {
                   6157:             &Apache::lonnet::logthis($error);
                   6158:             $errors .= '<li><span class="LC_error">'.$error.'</span></li>';
                   6159:         }
                   6160:     }
1.256     raeburn  6161: 
                   6162:     my (%currheadtagurls,%currexempt,@newhosts,%newheadtagurls,%possexempt);
                   6163:     if (ref($domconfig{'login'}) eq 'HASH') {
                   6164:         if (ref($domconfig{'login'}{'headtag'}) eq 'HASH') {
                   6165:             foreach my $lonhost (keys(%{$domconfig{'login'}{'headtag'}})) {
                   6166:                 if ($domservers{$lonhost}) {
                   6167:                     if (ref($domconfig{'login'}{'headtag'}{$lonhost}) eq 'HASH') {
                   6168:                         $currheadtagurls{$lonhost} = $domconfig{'login'}{'headtag'}{$lonhost}{'url'};
                   6169:                         $currexempt{$lonhost} = $domconfig{'login'}{'headtagexempt'}{$lonhost}{'exempt'}
                   6170:                     }
                   6171:                 }
                   6172:             }
                   6173:         }
                   6174:     }
                   6175:     my @delheadtagurls = &Apache::loncommon::get_env_multiple('form.loginheadtag_del');
                   6176:     foreach my $lonhost (sort(keys(%domservers))) {
                   6177:         if (grep(/^\Q$lonhost\E$/,@delheadtagurls)) {
                   6178:             $changes{'headtag'}{$lonhost} = 1;
                   6179:         } else {
                   6180:             if ($env{'form.loginheadtagexempt_'.$lonhost}) {
                   6181:                 $possexempt{$lonhost} = &check_exempt_addresses($env{'form.loginheadtagexempt_'.$lonhost});
                   6182:             }
                   6183:             if ($env{'form.loginheadtag_'.$lonhost.'.filename'}) {
                   6184:                 push(@newhosts,$lonhost);
                   6185:             } elsif ($currheadtagurls{$lonhost}) {
                   6186:                 $loginhash{'login'}{'headtag'}{$lonhost}{'url'} = $currheadtagurls{$lonhost};
                   6187:                 if ($currexempt{$lonhost}) {
                   6188:                     if ((!exists($possexempt{$lonhost})) || ($possexempt{$lonhost} ne $currexempt{$lonhost})) { 
                   6189:                         $changes{'headtag'}{$lonhost} = 1;
                   6190:                     }
                   6191:                 } elsif ($possexempt{$lonhost}) {
                   6192:                     $changes{'headtag'}{$lonhost} = 1;
                   6193:                 }
                   6194:                 if ($possexempt{$lonhost}) {
                   6195:                     $loginhash{'login'}{'headtag'}{$lonhost}{'exempt'} = $possexempt{$lonhost};
                   6196:                 }
                   6197:             }
                   6198:         }
                   6199:     }
                   6200:     if (@newhosts) {
                   6201:         my $error;
                   6202:         my ($configuserok,$author_ok,$switchserver) = &config_check($dom,$confname,$servadm);
                   6203:         if ($configuserok eq 'ok') {
                   6204:             if ($switchserver) {
                   6205:                 $error = &mt("Upload of custom markup is not permitted to this server: [_1]",$switchserver);
                   6206:             } elsif ($author_ok eq 'ok') {
                   6207:                 foreach my $lonhost (@newhosts) {
                   6208:                     my $formelem = 'loginheadtag_'.$lonhost;
                   6209:                     (my $result,$newheadtagurls{$lonhost}) = &publishlogo($r,'upload',$formelem,$dom,$confname,
                   6210:                                                                           "login/headtag/$lonhost",'','',
                   6211:                                                                           $env{'form.loginheadtag_'.$lonhost.'.filename'});
                   6212:                     if ($result eq 'ok') {
                   6213:                         $loginhash{'login'}{'headtag'}{$lonhost}{'url'} = $newheadtagurls{$lonhost};
                   6214:                         $changes{'headtag'}{$lonhost} = 1;
                   6215:                         if ($possexempt{$lonhost}) {
                   6216:                             $loginhash{'login'}{'headtag'}{$lonhost}{'exempt'} = $possexempt{$lonhost};
                   6217:                         }
                   6218:                     } else {
                   6219:                         my $puberror = &mt("Upload of [_1] failed because an error occurred publishing the file in RES space. Error was: [_2].",
                   6220:                                            $newheadtagurls{$lonhost},$result);
                   6221:                         $errors .= '<li><span class="LC_error">'.$puberror.'</span></li>';
                   6222:                         if ((grep(/^\Q$lonhost\E$/,keys(%currheadtagurls))) &&
                   6223:                             (!grep(/^\Q$lonhost\E$/,@delheadtagurls))) {
                   6224:                             $loginhash{'login'}{'headtag'}{$lonhost} = $currheadtagurls{$lonhost};
                   6225:                         }
                   6226:                     }
                   6227:                 }
                   6228:             } else {
                   6229:                 $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);
                   6230:             }
                   6231:         } else {
                   6232:             $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);
                   6233:         }
                   6234:         if ($error) {
                   6235:             &Apache::lonnet::logthis($error);
                   6236:             $errors .= '<li><span class="LC_error">'.$error.'</span></li>';
                   6237:         }
                   6238:     }
1.169     raeburn  6239:     &process_captcha('login',\%changes,$loginhash{'login'},$domconfig{'login'});
1.168     raeburn  6240: 
                   6241:     my $defaulthelpfile = '/adm/loginproblems.html';
                   6242:     my $defaulttext = &mt('Default in use');
                   6243: 
1.1       raeburn  6244:     my $putresult = &Apache::lonnet::put_dom('configuration',\%loginhash,
                   6245:                                              $dom);
                   6246:     if ($putresult eq 'ok') {
1.188     raeburn  6247:         my @toggles = ('coursecatalog','adminmail','helpdesk','newuser');
1.42      raeburn  6248:         my %defaultchecked = (
                   6249:                     'coursecatalog' => 'on',
1.188     raeburn  6250:                     'helpdesk'      => 'on',
1.42      raeburn  6251:                     'adminmail'     => 'off',
1.43      raeburn  6252:                     'newuser'       => 'off',
1.42      raeburn  6253:         );
1.55      raeburn  6254:         if (ref($domconfig{'login'}) eq 'HASH') {
                   6255:             foreach my $item (@toggles) {
                   6256:                 if ($defaultchecked{$item} eq 'on') { 
                   6257:                     if (($domconfig{'login'}{$item} eq '0') &&
                   6258:                         ($env{'form.'.$item} eq '1')) {
                   6259:                         $changes{$item} = 1;
                   6260:                     } elsif (($domconfig{'login'}{$item} eq '' ||
                   6261:                               $domconfig{'login'}{$item} eq '1') &&
                   6262:                              ($env{'form.'.$item} eq '0')) {
                   6263:                         $changes{$item} = 1;
                   6264:                     }
                   6265:                 } elsif ($defaultchecked{$item} eq 'off') {
                   6266:                     if (($domconfig{'login'}{$item} eq '1') &&
                   6267:                         ($env{'form.'.$item} eq '0')) {
                   6268:                         $changes{$item} = 1;
                   6269:                     } elsif (($domconfig{'login'}{$item} eq '' ||
                   6270:                               $domconfig{'login'}{$item} eq '0') &&
                   6271:                              ($env{'form.'.$item} eq '1')) {
                   6272:                         $changes{$item} = 1;
                   6273:                     }
1.42      raeburn  6274:                 }
                   6275:             }
1.41      raeburn  6276:         }
1.6       raeburn  6277:         if (keys(%changes) > 0 || $colchgtext) {
1.41      raeburn  6278:             &Apache::loncommon::devalidate_domconfig_cache($dom);
1.212     raeburn  6279:             if (ref($lastactref) eq 'HASH') {
                   6280:                 $lastactref->{'domainconfig'} = 1;
                   6281:             }
1.1       raeburn  6282:             $resulttext = &mt('Changes made:').'<ul>';
                   6283:             foreach my $item (sort(keys(%changes))) {
1.135     bisitz   6284:                 if ($item eq 'loginvia') {
1.112     raeburn  6285:                     if (ref($changes{$item}) eq 'HASH') {
                   6286:                         $resulttext .= '<li>'.&mt('Log-in page availability:').'<ul>';
                   6287:                         foreach my $lonhost (sort(keys(%{$changes{$item}}))) {
1.128     raeburn  6288:                             if (defined($servers{$loginhash{login}{loginvia}{$lonhost}{'server'}})) {
                   6289:                                 if (ref($loginhash{login}{loginvia}{$lonhost}) eq 'HASH') {
                   6290:                                     my $protocol = $Apache::lonnet::protocol{$env{'form.'.$lonhost.'_server'}};
                   6291:                                     $protocol = 'http' if ($protocol ne 'https');
                   6292:                                     my $target = $protocol.'://'.$servers{$env{'form.'.$lonhost.'_server'}};
                   6293: 
                   6294:                                     if ($loginhash{login}{loginvia}{$lonhost}{'serverpath'} eq 'custom') {
                   6295:                                         $target .= $loginhash{login}{loginvia}{$lonhost}{'custompath'};
                   6296:                                     } else {
                   6297:                                         $target .= $loginhash{login}{loginvia}{$lonhost}{'serverpath'}; 
                   6298:                                     }
                   6299:                                     $resulttext .= '<li>'.&mt('Server: [_1] log-in page redirects to [_2].',$servers{$lonhost},'<a href="'.$target.'">'.$target.'</a>');
                   6300:                                     if ($loginhash{login}{loginvia}{$lonhost}{'exempt'} ne '') {
                   6301:                                         $resulttext .= '&nbsp;'.&mt('No redirection for clients from following IPs:').'&nbsp;'.$loginhash{login}{loginvia}{$lonhost}{'exempt'};
                   6302:                                     }
                   6303:                                     $resulttext .= '</li>';
                   6304:                                 } else {
                   6305:                                     $resulttext .= '<li>'.&mt('Server: [_1] has standard log-in page.',$lonhost).'</li>';
                   6306:                                 }
1.112     raeburn  6307:                             } else {
1.128     raeburn  6308:                                 $resulttext .= '<li>'.&mt('Server: [_1] has standard log-in page.',$servers{$lonhost}).'</li>';
1.112     raeburn  6309:                             }
                   6310:                         }
1.128     raeburn  6311:                         $resulttext .= '</ul></li>';
1.112     raeburn  6312:                     }
1.168     raeburn  6313:                 } elsif ($item eq 'helpurl') {
                   6314:                     if (ref($changes{$item}) eq 'HASH') {
                   6315:                         foreach my $lang (sort(keys(%{$changes{$item}}))) {
                   6316:                             if (grep(/^\Q$lang\E$/,@delurls)) {
                   6317:                                 my ($chg,$link);
                   6318:                                 $link = &Apache::loncommon::modal_link($defaulthelpfile,$defaulttext,600,500);
                   6319:                                 if ($lang eq 'nolang') {
                   6320:                                     $chg = &mt('custom log-in help file removed for no preferred language; [_1]',$link);
                   6321:                                 } else {
                   6322:                                     $chg = &mt('custom log-in help file removed for specific language: [_1]; [_2]',$langchoices{$lang},$link);
                   6323:                                 }
                   6324:                                 $resulttext .= '<li>'.$chg.'</li>';
                   6325:                             } else {
                   6326:                                 my $chg;
                   6327:                                 if ($lang eq 'nolang') {
                   6328:                                     $chg = &mt('custom log-in help file for no preferred language');
                   6329:                                 } else {
                   6330:                                     $chg = &mt('custom log-in help file for specific language: [_1]',$langchoices{$lang});
                   6331:                                 }
                   6332:                                 $resulttext .= '<li>'.&Apache::loncommon::modal_link(
                   6333:                                                       $loginhash{'login'}{'helpurl'}{$lang}.
                   6334:                                                       '?inhibitmenu=yes',$chg,600,500).
                   6335:                                                '</li>';
                   6336:                             }
                   6337:                         }
                   6338:                     }
1.256     raeburn  6339:                 } elsif ($item eq 'headtag') {
                   6340:                     if (ref($changes{$item}) eq 'HASH') {
                   6341:                         foreach my $lonhost (sort(keys(%{$changes{$item}}))) {
                   6342:                             if (grep(/^\Q$lonhost\E$/,@delheadtagurls)) {
                   6343:                                 $resulttext .= '<li>'.&mt('custom markup file removed for [_1]',$domservers{$lonhost}).'</li>';
                   6344:                             } elsif (ref($loginhash{'login'}{'headtag'}{$lonhost}) eq 'HASH') {
                   6345:                                 $resulttext .= '<li><a href="'.
                   6346:                                                "javascript:void(open('$loginhash{'login'}{'headtag'}{$lonhost}{'url'}?inhibitmenu=yes','Custom_HeadTag',
                   6347:                                                'menubar=0,toolbar=1,scrollbars=1,width=600,height=500,resizable=yes'))".
                   6348:                                                '">'.&mt('custom markup').'</a> '.&mt('(for [_1])',$servers{$lonhost}).' ';
                   6349:                                 if ($possexempt{$lonhost}) {
                   6350:                                     $resulttext .= &mt('not included for client IP(s): [_1]',$possexempt{$lonhost});
                   6351:                                 } else {
                   6352:                                     $resulttext .= &mt('included for any client IP');
                   6353:                                 }
                   6354:                                 $resulttext .= '</li>';
                   6355:                             }
                   6356:                         }
                   6357:                     }
1.169     raeburn  6358:                 } elsif ($item eq 'captcha') {
                   6359:                     if (ref($loginhash{'login'}) eq 'HASH') {
1.210     raeburn  6360:                         my $chgtxt;
1.169     raeburn  6361:                         if ($loginhash{'login'}{$item} eq 'notused') {
                   6362:                             $chgtxt .= &mt('No CAPTCHA validation in use for helpdesk form.');
                   6363:                         } else {
                   6364:                             my %captchas = &captcha_phrases();
                   6365:                             if ($captchas{$loginhash{'login'}{$item}}) {
                   6366:                                 $chgtxt .= &mt("Validation for helpdesk form set to $captchas{$loginhash{'login'}{$item}}.");
                   6367:                             } else {
                   6368:                                 $chgtxt .= &mt('Validation for helpdesk form set to unknown type.');
                   6369:                             }
                   6370:                         }
                   6371:                         $resulttext .= '<li>'.$chgtxt.'</li>';
                   6372:                     }
                   6373:                 } elsif ($item eq 'recaptchakeys') {
                   6374:                     if (ref($loginhash{'login'}) eq 'HASH') {
                   6375:                         my ($privkey,$pubkey);
                   6376:                         if (ref($loginhash{'login'}{$item}) eq 'HASH') {
                   6377:                             $pubkey = $loginhash{'login'}{$item}{'public'};
                   6378:                             $privkey = $loginhash{'login'}{$item}{'private'};
                   6379:                         }
                   6380:                         my $chgtxt .= &mt('ReCAPTCHA keys changes').'<ul>';
                   6381:                         if (!$pubkey) {
                   6382:                             $chgtxt .= '<li>'.&mt('Public key deleted').'</li>';
                   6383:                         } else {
                   6384:                             $chgtxt .= '<li>'.&mt('Public key set to [_1]',$pubkey).'</li>';
                   6385:                         }
                   6386:                         if (!$privkey) {
                   6387:                             $chgtxt .= '<li>'.&mt('Private key deleted').'</li>';
                   6388:                         } else {
1.251     raeburn  6389:                             $chgtxt .= '<li>'.&mt('Private key set to [_1]',$privkey).'</li>';
1.169     raeburn  6390:                         }
                   6391:                         $chgtxt .= '</ul>';
                   6392:                         $resulttext .= '<li>'.$chgtxt.'</li>';
                   6393:                     }
1.41      raeburn  6394:                 } else {
                   6395:                     $resulttext .= '<li>'.&mt("$title{$item} set to $offon[$env{'form.'.$item}]").'</li>';
                   6396:                 }
1.1       raeburn  6397:             }
1.6       raeburn  6398:             $resulttext .= $colchgtext.'</ul>';
1.1       raeburn  6399:         } else {
                   6400:             $resulttext = &mt('No changes made to log-in page settings');
                   6401:         }
                   6402:     } else {
1.11      albertel 6403:         $resulttext = '<span class="LC_error">'.
                   6404: 	    &mt('An error occurred: [_1]',$putresult).'</span>';
1.1       raeburn  6405:     }
1.6       raeburn  6406:     if ($errors) {
1.9       raeburn  6407:         $resulttext .= '<br />'.&mt('The following errors occurred: ').'<ul>'.
1.6       raeburn  6408:                        $errors.'</ul>';
                   6409:     }
                   6410:     return $resulttext;
                   6411: }
                   6412: 
1.256     raeburn  6413: 
                   6414: sub check_exempt_addresses {
                   6415:     my ($iplist) = @_;
                   6416:     $iplist =~ s/^\s+//;
                   6417:     $iplist =~ s/\s+$//;
                   6418:     my @poss_ips = split(/\s*[,:]\s*/,$iplist);
                   6419:     my (@okips,$new);
                   6420:     foreach my $ip (@poss_ips) {
                   6421:         if ($ip =~ /^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$/) {
                   6422:             if (($1 <= 255) && ($2 <= 255) && ($3 <= 255) && ($4 <= 255)) {
                   6423:                 push(@okips,$ip);
                   6424:             }
                   6425:         }
                   6426:     }
                   6427:     if (@okips > 0) {
                   6428:         $new = join(',',@okips);
                   6429:     } else {
                   6430:         $new = '';
                   6431:     }
                   6432:     return $new;
                   6433: }
                   6434: 
1.6       raeburn  6435: sub color_font_choices {
                   6436:     my %choices =
                   6437:         &Apache::lonlocal::texthash (
                   6438:             img => "Header",
                   6439:             bgs => "Background colors",
                   6440:             links => "Link colors",
1.55      raeburn  6441:             images => "Images",
1.6       raeburn  6442:             font => "Font color",
1.201     raeburn  6443:             fontmenu => "Font menu",
1.76      raeburn  6444:             pgbg => "Page",
1.6       raeburn  6445:             tabbg => "Header",
                   6446:             sidebg => "Border",
                   6447:             link => "Link",
                   6448:             alink => "Active link",
                   6449:             vlink => "Visited link",
                   6450:         );
                   6451:     return %choices;
                   6452: }
                   6453: 
                   6454: sub modify_rolecolors {
1.205     raeburn  6455:     my ($r,$dom,$confname,$roles,$lastactref,%domconfig) = @_;
1.6       raeburn  6456:     my ($resulttext,%rolehash);
                   6457:     $rolehash{'rolecolors'} = {};
1.55      raeburn  6458:     if (ref($domconfig{'rolecolors'}) ne 'HASH') {
                   6459:         if ($domconfig{'rolecolors'} eq '') {
                   6460:             $domconfig{'rolecolors'} = {};
                   6461:         }
                   6462:     }
1.9       raeburn  6463:     my ($errors,%changes) = &modify_colors($r,$dom,$confname,$roles,
1.6       raeburn  6464:                          $domconfig{'rolecolors'},$rolehash{'rolecolors'});
                   6465:     my $putresult = &Apache::lonnet::put_dom('configuration',\%rolehash,
                   6466:                                              $dom);
                   6467:     if ($putresult eq 'ok') {
                   6468:         if (keys(%changes) > 0) {
1.41      raeburn  6469:             &Apache::loncommon::devalidate_domconfig_cache($dom);
1.212     raeburn  6470:             if (ref($lastactref) eq 'HASH') {
                   6471:                 $lastactref->{'domainconfig'} = 1;
                   6472:             }
1.6       raeburn  6473:             $resulttext = &display_colorchgs($dom,\%changes,$roles,
                   6474:                                              $rolehash{'rolecolors'});
                   6475:         } else {
                   6476:             $resulttext = &mt('No changes made to default color schemes');
                   6477:         }
                   6478:     } else {
1.11      albertel 6479:         $resulttext = '<span class="LC_error">'.
                   6480: 	    &mt('An error occurred: [_1]',$putresult).'</span>';
1.6       raeburn  6481:     }
                   6482:     if ($errors) {
                   6483:         $resulttext .= &mt('The following errors occurred: ').'<ul>'.
                   6484:                        $errors.'</ul>';
                   6485:     }
                   6486:     return $resulttext;
                   6487: }
                   6488: 
                   6489: sub modify_colors {
1.9       raeburn  6490:     my ($r,$dom,$confname,$roles,$domconfig,$confhash) = @_;
1.12      raeburn  6491:     my (%changes,%choices);
1.51      raeburn  6492:     my @bgs;
1.6       raeburn  6493:     my @links = ('link','alink','vlink');
1.41      raeburn  6494:     my @logintext;
1.6       raeburn  6495:     my @images;
                   6496:     my $servadm = $r->dir_config('lonAdmEMail');
                   6497:     my $errors;
1.200     raeburn  6498:     my %defaults;
1.6       raeburn  6499:     foreach my $role (@{$roles}) {
                   6500:         if ($role eq 'login') {
1.12      raeburn  6501:             %choices = &login_choices();
1.41      raeburn  6502:             @logintext = ('textcol','bgcol');
1.12      raeburn  6503:         } else {
                   6504:             %choices = &color_font_choices();
                   6505:         }
                   6506:         if ($role eq 'login') {
1.41      raeburn  6507:             @images = ('img','logo','domlogo','login');
1.51      raeburn  6508:             @bgs = ('pgbg','mainbg','sidebg');
1.6       raeburn  6509:         } else {
                   6510:             @images = ('img');
1.200     raeburn  6511:             @bgs = ('pgbg','tabbg','sidebg');
                   6512:         }
                   6513:         my %defaults = &role_defaults($role,\@bgs,\@links,\@images,\@logintext);
                   6514:         unless ($env{'form.'.$role.'_font'} eq $defaults{'font'}) {
                   6515:             $confhash->{$role}{'font'} = $env{'form.'.$role.'_font'};
                   6516:         }
                   6517:         if ($role eq 'login') {
                   6518:             foreach my $item (@logintext) {
1.234     raeburn  6519:                 $env{'form.'.$role.'_'.$item} = lc($env{'form.'.$role.'_'.$item});
                   6520:                 if ($env{'form.'.$role.'_'.$item} =~ /^\w+/) {
                   6521:                     $env{'form.'.$role.'_'.$item} = '#'.$env{'form.'.$role.'_'.$item};
                   6522:                 }
                   6523:                 unless ($env{'form.'.$role.'_'.$item} eq lc($defaults{'logintext'}{$item})) {
1.200     raeburn  6524:                     $confhash->{$role}{$item} = $env{'form.'.$role.'_'.$item};
                   6525:                 }
                   6526:             }
                   6527:         } else {
1.234     raeburn  6528:             $env{'form.'.$role.'_fontmenu'} = lc($env{'form.'.$role.'_fontmenu'});
                   6529:             if ($env{'form.'.$role.'_fontmenu'} =~ /^\w+/) {
                   6530:                 $env{'form.'.$role.'_fontmenu'} = '#'.$env{'form.'.$role.'_fontmenu'};
                   6531:             }
                   6532:             unless($env{'form.'.$role.'_fontmenu'} eq lc($defaults{'fontmenu'})) {
1.200     raeburn  6533:                 $confhash->{$role}{'fontmenu'} = $env{'form.'.$role.'_fontmenu'};
                   6534:             }
1.6       raeburn  6535:         }
1.200     raeburn  6536:         foreach my $item (@bgs) {
1.234     raeburn  6537:             $env{'form.'.$role.'_'.$item} = lc($env{'form.'.$role.'_'.$item});
                   6538:             if ($env{'form.'.$role.'_'.$item} =~ /^\w+/) {
                   6539:                 $env{'form.'.$role.'_'.$item} = '#'.$env{'form.'.$role.'_'.$item};
                   6540:             }
                   6541:             unless ($env{'form.'.$role.'_'.$item} eq lc($defaults{'bgs'}{$item})) {
1.200     raeburn  6542:                 $confhash->{$role}{$item} = $env{'form.'.$role.'_'.$item};
                   6543:             }
                   6544:         }
                   6545:         foreach my $item (@links) {
1.234     raeburn  6546:             $env{'form.'.$role.'_'.$item} = lc($env{'form.'.$role.'_'.$item});
                   6547:             if ($env{'form.'.$role.'_'.$item} =~ /^\w+/) {
                   6548:                 $env{'form.'.$role.'_'.$item} = '#'.$env{'form.'.$role.'_'.$item};
                   6549:             }
                   6550:             unless ($env{'form.'.$role.'_'.$item} eq lc($defaults{'links'}{$item})) {
1.200     raeburn  6551:                 $confhash->{$role}{$item} = $env{'form.'.$role.'_'.$item};
                   6552:             }
1.6       raeburn  6553:         }
1.46      raeburn  6554:         my ($configuserok,$author_ok,$switchserver) = 
                   6555:             &config_check($dom,$confname,$servadm);
1.9       raeburn  6556:         my ($width,$height) = &thumb_dimensions();
1.40      raeburn  6557:         if (ref($domconfig->{$role}) ne 'HASH') {
                   6558:             $domconfig->{$role} = {};
                   6559:         }
1.8       raeburn  6560:         foreach my $img (@images) {
1.70      raeburn  6561:             if (($role eq 'login') && (($img eq 'img') || ($img eq 'logo'))) {  
                   6562:                 if (defined($env{'form.login_showlogo_'.$img})) {
                   6563:                     $confhash->{$role}{'showlogo'}{$img} = 1;
                   6564:                 } else { 
                   6565:                     $confhash->{$role}{'showlogo'}{$img} = 0;
                   6566:                 }
                   6567:             } 
1.18      albertel 6568: 	    if ( ! $env{'form.'.$role.'_'.$img.'.filename'} 
                   6569: 		 && !defined($domconfig->{$role}{$img})
                   6570: 		 && !$env{'form.'.$role.'_del_'.$img}
                   6571: 		 && $env{'form.'.$role.'_import_'.$img}) {
                   6572: 		# import the old configured image from the .tab setting
                   6573: 		# if they haven't provided a new one 
                   6574: 		$domconfig->{$role}{$img} = 
                   6575: 		    $env{'form.'.$role.'_import_'.$img};
                   6576: 	    }
1.6       raeburn  6577:             if ($env{'form.'.$role.'_'.$img.'.filename'} ne '') {
1.9       raeburn  6578:                 my $error;
1.6       raeburn  6579:                 if ($configuserok eq 'ok') {
1.9       raeburn  6580:                     if ($switchserver) {
1.12      raeburn  6581:                         $error = &mt("Upload of [_1] image for $role page(s) is not permitted to this server: [_2]",$choices{$img},$switchserver);
1.9       raeburn  6582:                     } else {
                   6583:                         if ($author_ok eq 'ok') {
                   6584:                             my ($result,$logourl) = 
                   6585:                                 &publishlogo($r,'upload',$role.'_'.$img,
                   6586:                                            $dom,$confname,$img,$width,$height);
                   6587:                             if ($result eq 'ok') {
                   6588:                                 $confhash->{$role}{$img} = $logourl;
1.12      raeburn  6589:                                 $changes{$role}{'images'}{$img} = 1;
1.9       raeburn  6590:                             } else {
1.12      raeburn  6591:                                 $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);
1.9       raeburn  6592:                             }
                   6593:                         } else {
1.46      raeburn  6594:                             $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);
1.6       raeburn  6595:                         }
                   6596:                     }
                   6597:                 } else {
1.46      raeburn  6598:                     $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);
1.9       raeburn  6599:                 }
                   6600:                 if ($error) {
1.8       raeburn  6601:                     &Apache::lonnet::logthis($error);
1.11      albertel 6602:                     $errors .= '<li><span class="LC_error">'.$error.'</span></li>';
1.8       raeburn  6603:                 }
                   6604:             } elsif ($domconfig->{$role}{$img} ne '') {
1.9       raeburn  6605:                 if ($domconfig->{$role}{$img} !~ m-^(/res/\Q$dom\E/\Q$confname\E/\Q$img\E)/([^/]+)$-) {
                   6606:                     my $error;
                   6607:                     if ($configuserok eq 'ok') {
                   6608: # is confname an author?
                   6609:                         if ($switchserver eq '') {
                   6610:                             if ($author_ok eq 'ok') {
                   6611:                                 my ($result,$logourl) = 
                   6612:                                &publishlogo($r,'copy',$domconfig->{$role}{$img},
                   6613:                                             $dom,$confname,$img,$width,$height);
                   6614:                                 if ($result eq 'ok') {
                   6615:                                     $confhash->{$role}{$img} = $logourl;
1.18      albertel 6616: 				    $changes{$role}{'images'}{$img} = 1;
1.9       raeburn  6617:                                 }
                   6618:                             }
                   6619:                         }
                   6620:                     }
1.6       raeburn  6621:                 }
                   6622:             }
                   6623:         }
                   6624:         if (ref($domconfig) eq 'HASH') {
                   6625:             if (ref($domconfig->{$role}) eq 'HASH') {
                   6626:                 foreach my $img (@images) {
                   6627:                     if ($domconfig->{$role}{$img} ne '') {
                   6628:                         if ($env{'form.'.$role.'_del_'.$img}) {
                   6629:                             $confhash->{$role}{$img} = '';
1.12      raeburn  6630:                             $changes{$role}{'images'}{$img} = 1;
1.6       raeburn  6631:                         } else {
1.9       raeburn  6632:                             if ($confhash->{$role}{$img} eq '') {
                   6633:                                 $confhash->{$role}{$img} = $domconfig->{$role}{$img};
                   6634:                             }
1.6       raeburn  6635:                         }
                   6636:                     } else {
                   6637:                         if ($env{'form.'.$role.'_del_'.$img}) {
                   6638:                             $confhash->{$role}{$img} = '';
1.12      raeburn  6639:                             $changes{$role}{'images'}{$img} = 1;
1.6       raeburn  6640:                         } 
                   6641:                     }
1.70      raeburn  6642:                     if (($role eq 'login') && (($img eq 'logo') || ($img eq 'img'))) {
                   6643:                         if (ref($domconfig->{'login'}{'showlogo'}) eq 'HASH') {
                   6644:                             if ($confhash->{$role}{'showlogo'}{$img} ne 
                   6645:                                 $domconfig->{$role}{'showlogo'}{$img}) {
                   6646:                                 $changes{$role}{'showlogo'}{$img} = 1; 
                   6647:                             }
                   6648:                         } else {
                   6649:                             if ($confhash->{$role}{'showlogo'}{$img} == 0) {
                   6650:                                 $changes{$role}{'showlogo'}{$img} = 1;
                   6651:                             }
                   6652:                         }
                   6653:                     }
                   6654:                 }
1.6       raeburn  6655:                 if ($domconfig->{$role}{'font'} ne '') {
                   6656:                     if ($confhash->{$role}{'font'} ne $domconfig->{$role}{'font'}) {
                   6657:                         $changes{$role}{'font'} = 1;
                   6658:                     }
                   6659:                 } else {
                   6660:                     if ($confhash->{$role}{'font'}) {
                   6661:                         $changes{$role}{'font'} = 1;
                   6662:                     }
                   6663:                 }
1.107     raeburn  6664:                 if ($role ne 'login') {
                   6665:                     if ($domconfig->{$role}{'fontmenu'} ne '') {
                   6666:                         if ($confhash->{$role}{'fontmenu'} ne $domconfig->{$role}{'fontmenu'}) {
                   6667:                             $changes{$role}{'fontmenu'} = 1;
                   6668:                         }
                   6669:                     } else {
                   6670:                         if ($confhash->{$role}{'fontmenu'}) {
                   6671:                             $changes{$role}{'fontmenu'} = 1;
                   6672:                         }
1.97      tempelho 6673:                     }
                   6674:                 }
1.6       raeburn  6675:                 foreach my $item (@bgs) {
                   6676:                     if ($domconfig->{$role}{$item} ne '') {
                   6677:                         if ($confhash->{$role}{$item} ne $domconfig->{$role}{$item}) {
                   6678:                             $changes{$role}{'bgs'}{$item} = 1;
                   6679:                         } 
                   6680:                     } else {
                   6681:                         if ($confhash->{$role}{$item}) {
                   6682:                             $changes{$role}{'bgs'}{$item} = 1;
                   6683:                         }
                   6684:                     }
                   6685:                 }
                   6686:                 foreach my $item (@links) {
                   6687:                     if ($domconfig->{$role}{$item} ne '') {
                   6688:                         if ($confhash->{$role}{$item} ne $domconfig->{$role}{$item}) {
                   6689:                             $changes{$role}{'links'}{$item} = 1;
                   6690:                         }
                   6691:                     } else {
                   6692:                         if ($confhash->{$role}{$item}) {
                   6693:                             $changes{$role}{'links'}{$item} = 1;
                   6694:                         }
                   6695:                     }
                   6696:                 }
1.41      raeburn  6697:                 foreach my $item (@logintext) {
                   6698:                     if ($domconfig->{$role}{$item} ne '') {
                   6699:                         if ($confhash->{$role}{$item} ne $domconfig->{$role}{$item}) {
                   6700:                             $changes{$role}{'logintext'}{$item} = 1;
                   6701:                         }
                   6702:                     } else {
                   6703:                         if ($confhash->{$role}{$item}) {
                   6704:                             $changes{$role}{'logintext'}{$item} = 1;
                   6705:                         }
                   6706:                     }
                   6707:                 }
1.6       raeburn  6708:             } else {
                   6709:                 &default_change_checker($role,\@images,\@links,\@bgs,
1.41      raeburn  6710:                                         \@logintext,$confhash,\%changes); 
1.6       raeburn  6711:             }
                   6712:         } else {
                   6713:             &default_change_checker($role,\@images,\@links,\@bgs,
1.41      raeburn  6714:                                     \@logintext,$confhash,\%changes); 
1.6       raeburn  6715:         }
                   6716:     }
                   6717:     return ($errors,%changes);
                   6718: }
                   6719: 
1.46      raeburn  6720: sub config_check {
                   6721:     my ($dom,$confname,$servadm) = @_;
                   6722:     my ($configuserok,$author_ok,$switchserver,%currroles);
                   6723:     my $uhome = &Apache::lonnet::homeserver($confname,$dom,1);
                   6724:     ($configuserok,%currroles) = &check_configuser($uhome,$dom,
                   6725:                                                    $confname,$servadm);
                   6726:     if ($configuserok eq 'ok') {
                   6727:         $switchserver = &check_switchserver($dom,$confname);
                   6728:         if ($switchserver eq '') {
                   6729:             $author_ok = &check_authorstatus($dom,$confname,%currroles);
                   6730:         }
                   6731:     }
                   6732:     return ($configuserok,$author_ok,$switchserver);
                   6733: }
                   6734: 
1.6       raeburn  6735: sub default_change_checker {
1.41      raeburn  6736:     my ($role,$images,$links,$bgs,$logintext,$confhash,$changes) = @_;
1.6       raeburn  6737:     foreach my $item (@{$links}) {
                   6738:         if ($confhash->{$role}{$item}) {
                   6739:             $changes->{$role}{'links'}{$item} = 1;
                   6740:         }
                   6741:     }
                   6742:     foreach my $item (@{$bgs}) {
                   6743:         if ($confhash->{$role}{$item}) {
                   6744:             $changes->{$role}{'bgs'}{$item} = 1;
                   6745:         }
                   6746:     }
1.41      raeburn  6747:     foreach my $item (@{$logintext}) {
                   6748:         if ($confhash->{$role}{$item}) {
                   6749:             $changes->{$role}{'logintext'}{$item} = 1;
                   6750:         }
                   6751:     }
1.6       raeburn  6752:     foreach my $img (@{$images}) {
                   6753:         if ($env{'form.'.$role.'_del_'.$img}) {
                   6754:             $confhash->{$role}{$img} = '';
1.12      raeburn  6755:             $changes->{$role}{'images'}{$img} = 1;
1.6       raeburn  6756:         }
1.70      raeburn  6757:         if ($role eq 'login') {
                   6758:             if ($confhash->{$role}{'showlogo'}{$img} == 0) {
                   6759:                 $changes->{$role}{'showlogo'}{$img} = 1;
                   6760:             }
                   6761:         }
1.6       raeburn  6762:     }
                   6763:     if ($confhash->{$role}{'font'}) {
                   6764:         $changes->{$role}{'font'} = 1;
                   6765:     }
1.48      raeburn  6766: }
1.6       raeburn  6767: 
                   6768: sub display_colorchgs {
                   6769:     my ($dom,$changes,$roles,$confhash) = @_;
                   6770:     my (%choices,$resulttext);
                   6771:     if (!grep(/^login$/,@{$roles})) {
                   6772:         $resulttext = &mt('Changes made:').'<br />';
                   6773:     }
                   6774:     foreach my $role (@{$roles}) {
                   6775:         if ($role eq 'login') {
                   6776:             %choices = &login_choices();
                   6777:         } else {
                   6778:             %choices = &color_font_choices();
                   6779:         }
                   6780:         if (ref($changes->{$role}) eq 'HASH') {
                   6781:             if ($role ne 'login') {
                   6782:                 $resulttext .= '<h4>'.&mt($role).'</h4>';
                   6783:             }
                   6784:             foreach my $key (sort(keys(%{$changes->{$role}}))) {
                   6785:                 if ($role ne 'login') {
                   6786:                     $resulttext .= '<ul>';
                   6787:                 }
                   6788:                 if (ref($changes->{$role}{$key}) eq 'HASH') {
                   6789:                     if ($role ne 'login') {
                   6790:                         $resulttext .= '<li>'.&mt($choices{$key}).':<ul>';
                   6791:                     }
                   6792:                     foreach my $item (sort(keys(%{$changes->{$role}{$key}}))) {
1.70      raeburn  6793:                         if (($role eq 'login') && ($key eq 'showlogo')) {
                   6794:                             if ($confhash->{$role}{$key}{$item}) {
                   6795:                                 $resulttext .= '<li>'.&mt("$choices{$item} set to be displayed").'</li>';
                   6796:                             } else {
                   6797:                                 $resulttext .= '<li>'.&mt("$choices{$item} set to not be displayed").'</li>';
                   6798:                             }
                   6799:                         } elsif ($confhash->{$role}{$item} eq '') {
1.6       raeburn  6800:                             $resulttext .= '<li>'.&mt("$choices{$item} set to default").'</li>';
                   6801:                         } else {
1.12      raeburn  6802:                             my $newitem = $confhash->{$role}{$item};
                   6803:                             if ($key eq 'images') {
                   6804:                                 $newitem = '<img src="'.$confhash->{$role}{$item}.'" alt="'.$choices{$item}.'" valign="bottom" />';
                   6805:                             }
                   6806:                             $resulttext .= '<li>'.&mt("$choices{$item} set to [_1]",$newitem).'</li>';
1.6       raeburn  6807:                         }
                   6808:                     }
                   6809:                     if ($role ne 'login') {
                   6810:                         $resulttext .= '</ul></li>';
                   6811:                     }
                   6812:                 } else {
                   6813:                     if ($confhash->{$role}{$key} eq '') {
                   6814:                         $resulttext .= '<li>'.&mt("$choices{$key} set to default").'</li>';
                   6815:                     } else {
                   6816:                         $resulttext .= '<li>'.&mt("$choices{$key} set to [_1]",$confhash->{$role}{$key}).'</li>';
                   6817:                     }
                   6818:                 }
                   6819:                 if ($role ne 'login') {
                   6820:                     $resulttext .= '</ul>';
                   6821:                 }
                   6822:             }
                   6823:         }
                   6824:     }
1.3       raeburn  6825:     return $resulttext;
1.1       raeburn  6826: }
                   6827: 
1.9       raeburn  6828: sub thumb_dimensions {
                   6829:     return ('200','50');
                   6830: }
                   6831: 
1.16      raeburn  6832: sub check_dimensions {
                   6833:     my ($inputfile) = @_;
                   6834:     my ($fullwidth,$fullheight);
                   6835:     if ($inputfile =~ m|^[/\w.\-]+$|) {
                   6836:         if (open(PIPE,"identify $inputfile 2>&1 |")) {
                   6837:             my $imageinfo = <PIPE>;
                   6838:             if (!close(PIPE)) {
                   6839:                 &Apache::lonnet::logthis("Failed to close PIPE opened to retrieve image information for $inputfile");
                   6840:             }
                   6841:             chomp($imageinfo);
                   6842:             my ($fullsize) = 
1.21      raeburn  6843:                 ($imageinfo =~ /^\Q$inputfile\E\s+\w+\s+(\d+x\d+)/);
1.16      raeburn  6844:             if ($fullsize) {
                   6845:                 ($fullwidth,$fullheight) = split(/x/,$fullsize);
                   6846:             }
                   6847:         }
                   6848:     }
                   6849:     return ($fullwidth,$fullheight);
                   6850: }
                   6851: 
1.9       raeburn  6852: sub check_configuser {
                   6853:     my ($uhome,$dom,$confname,$servadm) = @_;
                   6854:     my ($configuserok,%currroles);
                   6855:     if ($uhome eq 'no_host') {
                   6856:         srand( time() ^ ($$ + ($$ << 15))  ); # Seed rand.
                   6857:         my $configpass = &LONCAPA::Enrollment::create_password();
                   6858:         $configuserok = 
                   6859:             &Apache::lonnet::modifyuser($dom,$confname,'','internal',
                   6860:                              $configpass,'','','','','',undef,$servadm);
                   6861:     } else {
                   6862:         $configuserok = 'ok';
                   6863:         %currroles = 
                   6864:             &Apache::lonnet::get_my_roles($confname,$dom,'userroles');
                   6865:     }
                   6866:     return ($configuserok,%currroles);
                   6867: }
                   6868: 
                   6869: sub check_authorstatus {
                   6870:     my ($dom,$confname,%currroles) = @_;
                   6871:     my $author_ok;
1.40      raeburn  6872:     if (!$currroles{':'.$dom.':au'}) {
1.9       raeburn  6873:         my $start = time;
                   6874:         my $end = 0;
                   6875:         $author_ok = 
                   6876:             &Apache::lonnet::assignrole($dom,$confname,'/'.$dom.'/',
1.47      raeburn  6877:                                         'au',$end,$start,'','','domconfig');
1.9       raeburn  6878:     } else {
                   6879:         $author_ok = 'ok';
                   6880:     }
                   6881:     return $author_ok;
                   6882: }
                   6883: 
                   6884: sub publishlogo {
1.46      raeburn  6885:     my ($r,$action,$formname,$dom,$confname,$subdir,$thumbwidth,$thumbheight,$savefileas) = @_;
1.9       raeburn  6886:     my ($output,$fname,$logourl);
                   6887:     if ($action eq 'upload') {
                   6888:         $fname=$env{'form.'.$formname.'.filename'};
                   6889:         chop($env{'form.'.$formname});
                   6890:     } else {
                   6891:         ($fname) = ($formname =~ /([^\/]+)$/);
                   6892:     }
1.46      raeburn  6893:     if ($savefileas ne '') {
                   6894:         $fname = $savefileas;
                   6895:     }
1.9       raeburn  6896:     $fname=&Apache::lonnet::clean_filename($fname);
                   6897: # See if there is anything left
                   6898:     unless ($fname) { return ('error: no uploaded file'); }
                   6899:     $fname="$subdir/$fname";
1.210     raeburn  6900:     my $docroot=$r->dir_config('lonDocRoot');
1.164     raeburn  6901:     my $filepath="$docroot/priv";
                   6902:     my $relpath = "$dom/$confname";
1.9       raeburn  6903:     my ($fnamepath,$file,$fetchthumb);
                   6904:     $file=$fname;
                   6905:     if ($fname=~m|/|) {
                   6906:         ($fnamepath,$file) = ($fname =~ m|^(.*)/([^/]+)$|);
                   6907:     }
1.164     raeburn  6908:     my @parts=split(/\//,"$filepath/$relpath/$fnamepath");
1.9       raeburn  6909:     my $count;
1.164     raeburn  6910:     for ($count=5;$count<=$#parts;$count++) {
1.9       raeburn  6911:         $filepath.="/$parts[$count]";
                   6912:         if ((-e $filepath)!=1) {
                   6913:             mkdir($filepath,02770);
                   6914:         }
                   6915:     }
                   6916:     # Check for bad extension and disallow upload
                   6917:     if ($file=~/\.(\w+)$/ &&
                   6918:         (&Apache::loncommon::fileembstyle($1) eq 'hdn')) {
                   6919:         $output = 
1.207     bisitz   6920:             &mt('Invalid file extension ([_1]) - reserved for internal use.',$1); 
1.9       raeburn  6921:     } elsif ($file=~/\.(\w+)$/ &&
                   6922:         !defined(&Apache::loncommon::fileembstyle($1))) {
                   6923:         $output = &mt('Unrecognized file extension ([_1]) - rename the file with a proper extension and re-upload.',$1);
                   6924:     } elsif ($file=~/\.(\d+)\.(\w+)$/) {
1.195     bisitz   6925:         $output = &mt('Filename not allowed - rename the file to remove the number immediately before the file extension([_1]) and re-upload.',$2);
1.9       raeburn  6926:     } elsif (-d "$filepath/$file") {
1.195     bisitz   6927:         $output = &mt('Filename is a directory name - rename the file and re-upload');
1.9       raeburn  6928:     } else {
                   6929:         my $source = $filepath.'/'.$file;
                   6930:         my $logfile;
                   6931:         if (!open($logfile,">>$source".'.log')) {
1.196     raeburn  6932:             return (&mt('No write permission to Authoring Space'));
1.9       raeburn  6933:         }
                   6934:         print $logfile
                   6935: "\n================= Publish ".localtime()." ================\n".
                   6936: $env{'user.name'}.':'.$env{'user.domain'}."\n";
                   6937: # Save the file
                   6938:         if (!open(FH,'>'.$source)) {
                   6939:             &Apache::lonnet::logthis('Failed to create '.$source);
                   6940:             return (&mt('Failed to create file'));
                   6941:         }
                   6942:         if ($action eq 'upload') {
                   6943:             if (!print FH ($env{'form.'.$formname})) {
                   6944:                 &Apache::lonnet::logthis('Failed to write to '.$source);
                   6945:                 return (&mt('Failed to write file'));
                   6946:             }
                   6947:         } else {
                   6948:             my $original = &Apache::lonnet::filelocation('',$formname);
                   6949:             if(!copy($original,$source)) {
                   6950:                 &Apache::lonnet::logthis('Failed to copy '.$original.' to '.$source);
                   6951:                 return (&mt('Failed to write file'));
                   6952:             }
                   6953:         }
                   6954:         close(FH);
                   6955:         chmod(0660, $source); # Permissions to rw-rw---.
                   6956: 
                   6957:         my $targetdir=$docroot.'/res/'.$dom.'/'.$confname .'/'.$fnamepath;
                   6958:         my $copyfile=$targetdir.'/'.$file;
                   6959: 
                   6960:         my @parts=split(/\//,$targetdir);
                   6961:         my $path="/$parts[1]/$parts[2]/$parts[3]/$parts[4]";
                   6962:         for (my $count=5;$count<=$#parts;$count++) {
                   6963:             $path.="/$parts[$count]";
                   6964:             if (!-e $path) {
                   6965:                 print $logfile "\nCreating directory ".$path;
                   6966:                 mkdir($path,02770);
                   6967:             }
                   6968:         }
                   6969:         my $versionresult;
                   6970:         if (-e $copyfile) {
                   6971:             $versionresult = &logo_versioning($targetdir,$file,$logfile);
                   6972:         } else {
                   6973:             $versionresult = 'ok';
                   6974:         }
                   6975:         if ($versionresult eq 'ok') {
                   6976:             if (copy($source,$copyfile)) {
                   6977:                 print $logfile "\nCopied original source to ".$copyfile."\n";
                   6978:                 $output = 'ok';
                   6979:                 $logourl = '/res/'.$dom.'/'.$confname.'/'.$fname;
1.155     raeburn  6980:                 push(@{$modified_urls},[$copyfile,$source]);
                   6981:                 my $metaoutput = 
                   6982:                     &write_metadata($dom,$confname,$formname,$targetdir,$file,$logfile);
                   6983:                 unless ($registered_cleanup) {
                   6984:                     my $handlers = $r->get_handlers('PerlCleanupHandler');
                   6985:                     $r->set_handlers('PerlCleanupHandler' => [\&notifysubscribed,@{$handlers}]);
                   6986:                     $registered_cleanup=1;
                   6987:                 }
1.9       raeburn  6988:             } else {
                   6989:                 print $logfile "\nUnable to write ".$copyfile.':'.$!."\n";
                   6990:                 $output = &mt('Failed to copy file to RES space').", $!";
                   6991:             }
                   6992:             if (($thumbwidth =~ /^\d+$/) && ($thumbheight =~ /^\d+$/)) {
                   6993:                 my $inputfile = $filepath.'/'.$file;
                   6994:                 my $outfile = $filepath.'/'.'tn-'.$file;
1.16      raeburn  6995:                 my ($fullwidth,$fullheight) = &check_dimensions($inputfile);
                   6996:                 if ($fullwidth ne '' && $fullheight ne '') { 
                   6997:                     if ($fullwidth > $thumbwidth && $fullheight > $thumbheight) {
                   6998:                         my $thumbsize = $thumbwidth.'x'.$thumbheight;
                   6999:                         system("convert -sample $thumbsize $inputfile $outfile");
                   7000:                         chmod(0660, $filepath.'/tn-'.$file);
                   7001:                         if (-e $outfile) {
                   7002:                             my $copyfile=$targetdir.'/tn-'.$file;
                   7003:                             if (copy($outfile,$copyfile)) {
                   7004:                                 print $logfile "\nCopied source to ".$copyfile."\n";
1.155     raeburn  7005:                                 my $thumb_metaoutput = 
                   7006:                                     &write_metadata($dom,$confname,$formname,
                   7007:                                                     $targetdir,'tn-'.$file,$logfile);
                   7008:                                 push(@{$modified_urls},[$copyfile,$outfile]);
                   7009:                                 unless ($registered_cleanup) {
                   7010:                                     my $handlers = $r->get_handlers('PerlCleanupHandler');
                   7011:                                     $r->set_handlers('PerlCleanupHandler' => [\&notifysubscribed,@{$handlers}]);
                   7012:                                     $registered_cleanup=1;
                   7013:                                 }
1.16      raeburn  7014:                             } else {
                   7015:                                 print $logfile "\nUnable to write ".$copyfile.
                   7016:                                                ':'.$!."\n";
                   7017:                             }
                   7018:                         }
1.9       raeburn  7019:                     }
                   7020:                 }
                   7021:             }
                   7022:         } else {
                   7023:             $output = $versionresult;
                   7024:         }
                   7025:     }
                   7026:     return ($output,$logourl);
                   7027: }
                   7028: 
                   7029: sub logo_versioning {
                   7030:     my ($targetdir,$file,$logfile) = @_;
                   7031:     my $target = $targetdir.'/'.$file;
                   7032:     my ($maxversion,$fn,$extn,$output);
                   7033:     $maxversion = 0;
                   7034:     if ($file =~ /^(.+)\.(\w+)$/) {
                   7035:         $fn=$1;
                   7036:         $extn=$2;
                   7037:     }
                   7038:     opendir(DIR,$targetdir);
                   7039:     while (my $filename=readdir(DIR)) {
                   7040:         if ($filename=~/\Q$fn\E\.(\d+)\.\Q$extn\E$/) {
                   7041:             $maxversion=($1>$maxversion)?$1:$maxversion;
                   7042:         }
                   7043:     }
                   7044:     $maxversion++;
                   7045:     print $logfile "\nCreating old version ".$maxversion."\n";
                   7046:     my $copyfile=$targetdir.'/'.$fn.'.'.$maxversion.'.'.$extn;
                   7047:     if (copy($target,$copyfile)) {
                   7048:         print $logfile "Copied old target to ".$copyfile."\n";
                   7049:         $copyfile=$copyfile.'.meta';
                   7050:         if (copy($target.'.meta',$copyfile)) {
                   7051:             print $logfile "Copied old target metadata to ".$copyfile."\n";
                   7052:             $output = 'ok';
                   7053:         } else {
                   7054:             print $logfile "Unable to write metadata ".$copyfile.':'.$!."\n";
                   7055:             $output = &mt('Failed to copy old meta').", $!, ";
                   7056:         }
                   7057:     } else {
                   7058:         print $logfile "Unable to write ".$copyfile.':'.$!."\n";
                   7059:         $output = &mt('Failed to copy old target').", $!, ";
                   7060:     }
                   7061:     return $output;
                   7062: }
                   7063: 
                   7064: sub write_metadata {
                   7065:     my ($dom,$confname,$formname,$targetdir,$file,$logfile) = @_;
                   7066:     my (%metadatafields,%metadatakeys,$output);
                   7067:     $metadatafields{'title'}=$formname;
                   7068:     $metadatafields{'creationdate'}=time;
                   7069:     $metadatafields{'lastrevisiondate'}=time;
                   7070:     $metadatafields{'copyright'}='public';
                   7071:     $metadatafields{'modifyinguser'}=$env{'user.name'}.':'.
                   7072:                                          $env{'user.domain'};
                   7073:     $metadatafields{'authorspace'}=$confname.':'.$dom;
                   7074:     $metadatafields{'domain'}=$dom;
                   7075:     {
                   7076:         print $logfile "\nWrite metadata file for ".$targetdir.'/'.$file;
                   7077:         my $mfh;
1.155     raeburn  7078:         if (open($mfh,'>'.$targetdir.'/'.$file.'.meta')) {
1.184     raeburn  7079:             foreach (sort(keys(%metadatafields))) {
1.155     raeburn  7080:                 unless ($_=~/\./) {
                   7081:                     my $unikey=$_;
                   7082:                     $unikey=~/^([A-Za-z]+)/;
                   7083:                     my $tag=$1;
                   7084:                     $tag=~tr/A-Z/a-z/;
                   7085:                     print $mfh "\n\<$tag";
                   7086:                     foreach (split(/\,/,$metadatakeys{$unikey})) {
                   7087:                         my $value=$metadatafields{$unikey.'.'.$_};
                   7088:                         $value=~s/\"/\'\'/g;
                   7089:                         print $mfh ' '.$_.'="'.$value.'"';
                   7090:                     }
                   7091:                     print $mfh '>'.
                   7092:                         &HTML::Entities::encode($metadatafields{$unikey},'<>&"')
                   7093:                             .'</'.$tag.'>';
                   7094:                 }
                   7095:             }
                   7096:             $output = 'ok';
                   7097:             print $logfile "\nWrote metadata";
                   7098:             close($mfh);
                   7099:         } else {
                   7100:             print $logfile "\nFailed to open metadata file";
1.9       raeburn  7101:             $output = &mt('Could not write metadata');
                   7102:         }
                   7103:     }
1.155     raeburn  7104:     return $output;
                   7105: }
                   7106: 
                   7107: sub notifysubscribed {
                   7108:     foreach my $targetsource (@{$modified_urls}){
                   7109:         next unless (ref($targetsource) eq 'ARRAY');
                   7110:         my ($target,$source)=@{$targetsource};
                   7111:         if ($source ne '') {
                   7112:             if (open(my $logfh,'>>'.$source.'.log')) {
                   7113:                 print $logfh "\nCleanup phase: Notifications\n";
                   7114:                 my @subscribed=&subscribed_hosts($target);
                   7115:                 foreach my $subhost (@subscribed) {
                   7116:                     print $logfh "\nNotifying host ".$subhost.':';
                   7117:                     my $reply=&Apache::lonnet::critical('update:'.$target,$subhost);
                   7118:                     print $logfh $reply;
                   7119:                 }
                   7120:                 my @subscribedmeta=&subscribed_hosts("$target.meta");
                   7121:                 foreach my $subhost (@subscribedmeta) {
                   7122:                     print $logfh "\nNotifying host for metadata only ".$subhost.':';
                   7123:                     my $reply=&Apache::lonnet::critical('update:'.$target.'.meta',
                   7124:                                                         $subhost);
                   7125:                     print $logfh $reply;
                   7126:                 }
                   7127:                 print $logfh "\n============ Done ============\n";
1.160     raeburn  7128:                 close($logfh);
1.155     raeburn  7129:             }
                   7130:         }
                   7131:     }
                   7132:     return OK;
                   7133: }
                   7134: 
                   7135: sub subscribed_hosts {
                   7136:     my ($target) = @_;
                   7137:     my @subscribed;
                   7138:     if (open(my $fh,"<$target.subscription")) {
                   7139:         while (my $subline=<$fh>) {
                   7140:             if ($subline =~ /^($match_lonid):/) {
                   7141:                 my $host = $1;
                   7142:                 if ($host ne $Apache::lonnet::perlvar{'lonHostID'}) {
                   7143:                     unless (grep(/^\Q$host\E$/,@subscribed)) {
                   7144:                         push(@subscribed,$host);
                   7145:                     }
                   7146:                 }
                   7147:             }
                   7148:         }
                   7149:     }
                   7150:     return @subscribed;
1.9       raeburn  7151: }
                   7152: 
                   7153: sub check_switchserver {
                   7154:     my ($dom,$confname) = @_;
                   7155:     my ($allowed,$switchserver);
                   7156:     my $home = &Apache::lonnet::homeserver($confname,$dom);
                   7157:     if ($home eq 'no_host') {
                   7158:         $home = &Apache::lonnet::domain($dom,'primary');
                   7159:     }
                   7160:     my @ids=&Apache::lonnet::current_machine_ids();
1.10      albertel 7161:     foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
                   7162:     if (!$allowed) {
1.180     raeburn  7163: 	$switchserver='<a href="/adm/switchserver?otherserver='.$home.'&amp;role=dc./'.$dom.'/&amp;destinationurl=/adm/domainprefs">'.&mt('Switch Server').'</a>';
1.9       raeburn  7164:     }
                   7165:     return $switchserver;
                   7166: }
                   7167: 
1.1       raeburn  7168: sub modify_quotas {
1.216     raeburn  7169:     my ($r,$dom,$action,$lastactref,%domconfig) = @_;
1.101     raeburn  7170:     my ($context,@usertools,@options,%validations,%titles,%confhash,%toolshash,
1.216     raeburn  7171:         %limithash,$toolregexp,%conditions,$resulttext,%changes,$confname,$configuserok,
1.235     raeburn  7172:         $author_ok,$switchserver,$errors,$validationitemsref,$validationnamesref,
                   7173:         $validationfieldsref);
1.86      raeburn  7174:     if ($action eq 'quotas') {
                   7175:         $context = 'tools'; 
1.163     raeburn  7176:     } else {
1.86      raeburn  7177:         $context = $action;
                   7178:     }
                   7179:     if ($context eq 'requestcourses') {
1.216     raeburn  7180:         @usertools = ('official','unofficial','community','textbook');
1.106     raeburn  7181:         @options =('norequest','approval','validate','autolimit');
1.101     raeburn  7182:         %validations = &Apache::lonnet::auto_courserequest_checks($dom);
                   7183:         %titles = &courserequest_titles();
                   7184:         $toolregexp = join('|',@usertools);
                   7185:         %conditions = &courserequest_conditions();
1.216     raeburn  7186:         $confname = $dom.'-domainconfig';
                   7187:         my $servadm = $r->dir_config('lonAdmEMail');
                   7188:         ($configuserok,$author_ok,$switchserver) = &config_check($dom,$confname,$servadm);
1.235     raeburn  7189:         ($validationitemsref,$validationnamesref,$validationfieldsref) = 
                   7190:             &Apache::loncoursequeueadmin::requestcourses_validation_types();
1.163     raeburn  7191:     } elsif ($context eq 'requestauthor') {
                   7192:         @usertools = ('author');
                   7193:         %titles = &authorrequest_titles();
1.86      raeburn  7194:     } else {
1.162     raeburn  7195:         @usertools = ('aboutme','blog','webdav','portfolio');
1.101     raeburn  7196:         %titles = &tool_titles();
1.86      raeburn  7197:     }
1.212     raeburn  7198:     my %domdefaults = &Apache::lonnet::get_domain_defaults($dom,1);
1.44      raeburn  7199:     my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($dom);
1.1       raeburn  7200:     foreach my $key (keys(%env)) {
1.101     raeburn  7201:         if ($context eq 'requestcourses') {
                   7202:             if ($key =~ /^form\.crsreq_($toolregexp)_(.+)$/) {
                   7203:                 my $item = $1;
                   7204:                 my $type = $2;
                   7205:                 if ($type =~ /^limit_(.+)/) {
                   7206:                     $limithash{$item}{$1} = $env{$key};
                   7207:                 } else {
                   7208:                     $confhash{$item}{$type} = $env{$key};
                   7209:                 }
                   7210:             }
1.163     raeburn  7211:         } elsif ($context eq 'requestauthor') {
                   7212:             if ($key =~ /^\Qform.authorreq_\E(.+)$/) {
                   7213:                 $confhash{$1} = $env{$key};
                   7214:             }
1.101     raeburn  7215:         } else {
1.86      raeburn  7216:             if ($key =~ /^form\.quota_(.+)$/) {
                   7217:                 $confhash{'defaultquota'}{$1} = $env{$key};
1.197     raeburn  7218:             } elsif ($key =~ /^form\.authorquota_(.+)$/) {
                   7219:                 $confhash{'authorquota'}{$1} = $env{$key};
                   7220:             } elsif ($key =~ /^form\.\Q$context\E_(.+)$/) {
1.101     raeburn  7221:                 @{$toolshash{$1}} = &Apache::loncommon::get_env_multiple($key);
                   7222:             }
1.72      raeburn  7223:         }
                   7224:     }
1.163     raeburn  7225:     if (($context eq 'requestcourses') || ($context eq 'requestauthor')) {
1.224     raeburn  7226:         my @approvalnotify = &Apache::loncommon::get_env_multiple('form.'.$context.'notifyapproval');
1.102     raeburn  7227:         @approvalnotify = sort(@approvalnotify);
                   7228:         $confhash{'notify'}{'approval'} = join(',',@approvalnotify);
1.218     raeburn  7229:         my @crstypes = ('official','unofficial','community','textbook');
                   7230:         my @hasuniquecode = &Apache::loncommon::get_env_multiple('form.uniquecode');
                   7231:         foreach my $type (@hasuniquecode) {
                   7232:             if (grep(/^\Q$type\E$/,@crstypes)) {
                   7233:                 $confhash{'uniquecode'}{$type} = 1;
                   7234:             }
1.216     raeburn  7235:         }
1.242     raeburn  7236:         my (%newbook,%allpos);
1.216     raeburn  7237:         if ($context eq 'requestcourses') {
1.242     raeburn  7238:             foreach my $type ('textbooks','templates') {
                   7239:                 @{$allpos{$type}} = (); 
                   7240:                 my $invalid;
                   7241:                 if ($type eq 'textbooks') {
                   7242:                     $invalid = &mt('Invalid LON-CAPA course for textbook');
                   7243:                 } else {
                   7244:                     $invalid = &mt('Invalid LON-CAPA course for template');
                   7245:                 }
                   7246:                 if ($env{'form.'.$type.'_addbook'}) {
                   7247:                     if (($env{'form.'.$type.'_addbook_cnum'} =~ /^$match_courseid$/) &&
                   7248:                         ($env{'form.'.$type.'_addbook_cdom'} =~ /^$match_domain$/)) {
                   7249:                         if (&Apache::lonnet::homeserver($env{'form.'.$type.'_addbook_cnum'},
                   7250:                                                         $env{'form.'.$type.'_addbook_cdom'}) eq 'no_host') {
                   7251:                             $errors .= '<li><span class="LC_error">'.$invalid.'</span></li>';
                   7252:                         } else {
                   7253:                             $newbook{$type} = $env{'form.'.$type.'_addbook_cdom'}.'_'.$env{'form.'.$type.'_addbook_cnum'};
                   7254:                             my $position = $env{'form.'.$type.'_addbook_pos'};
                   7255:                             $position =~ s/\D+//g;
                   7256:                             if ($position ne '') {
                   7257:                                 $allpos{$type}[$position] = $newbook{$type};
                   7258:                             }
1.216     raeburn  7259:                         }
1.242     raeburn  7260:                     } else {
                   7261:                         $errors .= '<li><span class="LC_error">'.$invalid.'</span></li>';
1.216     raeburn  7262:                     }
                   7263:                 }
1.242     raeburn  7264:             } 
1.216     raeburn  7265:         }
1.102     raeburn  7266:         if (ref($domconfig{$action}) eq 'HASH') {
                   7267:             if (ref($domconfig{$action}{'notify'}) eq 'HASH') {
                   7268:                 if ($domconfig{$action}{'notify'}{'approval'} ne $confhash{'notify'}{'approval'}) {
                   7269:                     $changes{'notify'}{'approval'} = 1;
                   7270:                 }
                   7271:             } else {
1.144     raeburn  7272:                 if ($confhash{'notify'}{'approval'}) {
1.102     raeburn  7273:                     $changes{'notify'}{'approval'} = 1;
                   7274:                 }
                   7275:             }
1.218     raeburn  7276:             if (ref($domconfig{$action}{'uniquecode'}) eq 'HASH') {
                   7277:                 if (ref($confhash{'uniquecode'}) eq 'HASH') {
                   7278:                     foreach my $crstype (keys(%{$domconfig{$action}{'uniquecode'}})) {
                   7279:                         unless ($confhash{'uniquecode'}{$crstype}) {
                   7280:                             $changes{'uniquecode'} = 1;
                   7281:                         }
                   7282:                     }
                   7283:                     unless ($changes{'uniquecode'}) {
                   7284:                         foreach my $crstype (keys(%{$confhash{'uniquecode'}})) {
                   7285:                             unless ($domconfig{$action}{'uniquecode'}{$crstype}) {
                   7286:                                 $changes{'uniquecode'} = 1;
                   7287:                             }
                   7288:                         }
                   7289:                     }
                   7290:                } else {
                   7291:                    $changes{'uniquecode'} = 1;
                   7292:                }
                   7293:             } elsif (ref($confhash{'uniquecode'}) eq 'HASH') {
                   7294:                 $changes{'uniquecode'} = 1;
1.216     raeburn  7295:             }
                   7296:             if ($context eq 'requestcourses') {
1.242     raeburn  7297:                 foreach my $type ('textbooks','templates') {
                   7298:                     if (ref($domconfig{$action}{$type}) eq 'HASH') {
                   7299:                         my %deletions;
                   7300:                         my @todelete = &Apache::loncommon::get_env_multiple('form.'.$type.'_del');
                   7301:                         if (@todelete) {
                   7302:                             map { $deletions{$_} = 1; } @todelete;
                   7303:                         }
                   7304:                         my %imgdeletions;
                   7305:                         my @todeleteimages = &Apache::loncommon::get_env_multiple('form.'.$type.'_image_del');
                   7306:                         if (@todeleteimages) {
                   7307:                             map { $imgdeletions{$_} = 1; } @todeleteimages;
                   7308:                         }
                   7309:                         my $maxnum = $env{'form.'.$type.'_maxnum'};
                   7310:                         for (my $i=0; $i<=$maxnum; $i++) {
                   7311:                             my $itemid = $env{'form.'.$type.'_id_'.$i};
                   7312:                             my ($key) = ($itemid =~ /^\Q$type\E_(\w+)$/); 
                   7313:                             if (ref($domconfig{$action}{$type}{$key}) eq 'HASH') {
                   7314:                                 if ($deletions{$key}) {
                   7315:                                     if ($domconfig{$action}{$type}{$key}{'image'}) {
                   7316:                                         #FIXME need to obsolete item in RES space
                   7317:                                     }
                   7318:                                     next;
                   7319:                                 } else {
                   7320:                                     my $newpos = $env{'form.'.$itemid};
                   7321:                                     $newpos =~ s/\D+//g;
1.243     raeburn  7322:                                     foreach my $item ('subject','title','publisher','author') {
                   7323:                                         next if ((($item eq 'author') || ($item eq 'publisher')) && 
                   7324:                                                  ($type eq 'templates'));
1.242     raeburn  7325:                                         $confhash{$type}{$key}{$item} = $env{'form.'.$type.'_'.$item.'_'.$i};
                   7326:                                         if ($domconfig{$action}{$type}{$key}{$item} ne $confhash{$type}{$key}{$item}) {
                   7327:                                             $changes{$type}{$key} = 1;
                   7328:                                         }
                   7329:                                     }
                   7330:                                     $allpos{$type}[$newpos] = $key;
                   7331:                                 }
                   7332:                                 if ($imgdeletions{$key}) {
                   7333:                                     $changes{$type}{$key} = 1;
1.216     raeburn  7334:                                     #FIXME need to obsolete item in RES space
1.242     raeburn  7335:                                 } elsif ($env{'form.'.$type.'_image_'.$i.'.filename'}) {
                   7336:                                     my ($cdom,$cnum) = split(/_/,$key);
                   7337:                                     my ($imgurl,$error) = &process_textbook_image($r,$dom,$confname,$type.'_image_'.$i,
                   7338:                                                                                   $cdom,$cnum,$type,$configuserok,
                   7339:                                                                                   $switchserver,$author_ok);
                   7340:                                     if ($imgurl) {
                   7341:                                         $confhash{$type}{$key}{'image'} = $imgurl;
                   7342:                                         $changes{$type}{$key} = 1; 
1.216     raeburn  7343:                                     }
1.242     raeburn  7344:                                     if ($error) {
                   7345:                                         &Apache::lonnet::logthis($error);
                   7346:                                         $errors .= '<li><span class="LC_error">'.$error.'</span></li>';
                   7347:                                     } 
                   7348:                                 } elsif ($domconfig{$action}{$type}{$key}{'image'}) {
                   7349:                                     $confhash{$type}{$key}{'image'} = 
                   7350:                                         $domconfig{$action}{$type}{$key}{'image'};
1.216     raeburn  7351:                                 }
                   7352:                             }
                   7353:                         }
                   7354:                     }
                   7355:                 }
                   7356:             }
1.102     raeburn  7357:         } else {
1.144     raeburn  7358:             if ($confhash{'notify'}{'approval'}) {
1.102     raeburn  7359:                 $changes{'notify'}{'approval'} = 1;
                   7360:             }
1.218     raeburn  7361:             if (ref($confhash{'uniquecode'} eq 'HASH')) {
1.216     raeburn  7362:                 $changes{'uniquecode'} = 1;
                   7363:             }
                   7364:         }
                   7365:         if ($context eq 'requestcourses') {
1.242     raeburn  7366:             foreach my $type ('textbooks','templates') {
                   7367:                 if ($newbook{$type}) {
                   7368:                     $changes{$type}{$newbook{$type}} = 1;
1.243     raeburn  7369:                     foreach my $item ('subject','title','publisher','author') {
                   7370:                         next if ((($item eq 'author') || ($item eq 'publisher')) &&
                   7371:                                  ($type eq 'template'));
1.242     raeburn  7372:                         $env{'form.'.$type.'_addbook_'.$item} =~ s/(`)/'/g;
                   7373:                         if ($env{'form.'.$type.'_addbook_'.$item}) {
                   7374:                             $confhash{$type}{$newbook{$type}}{$item} = $env{'form.'.$type.'_addbook_'.$item};
                   7375:                         }
                   7376:                     }
                   7377:                     if ($type eq 'textbooks') {
                   7378:                         if ($env{'form.'.$type.'_addbook_image.filename'} ne '') {
                   7379:                             my ($cdom,$cnum) = split(/_/,$newbook{$type});
                   7380:                             my ($imageurl,$error) =
                   7381:                                 &process_textbook_image($r,$dom,$confname,$type.'_addbook_image',$cdom,$cnum,$type,
                   7382:                                                         $configuserok,$switchserver,$author_ok);
                   7383:                             if ($imageurl) {
                   7384:                                 $confhash{$type}{$newbook{$type}}{'image'} = $imageurl;
                   7385:                             }
                   7386:                             if ($error) {
                   7387:                                 &Apache::lonnet::logthis($error);
                   7388:                                 $errors .= '<li><span class="LC_error">'.$error.'</span></li>';
                   7389:                             }
                   7390:                         }
1.216     raeburn  7391:                     }
                   7392:                 }
1.242     raeburn  7393:                 if (@{$allpos{$type}} > 0) {
                   7394:                     my $idx = 0;
                   7395:                     foreach my $item (@{$allpos{$type}}) {
                   7396:                         if ($item ne '') {
                   7397:                             $confhash{$type}{$item}{'order'} = $idx;
                   7398:                             if (ref($domconfig{$action}) eq 'HASH') {
                   7399:                                 if (ref($domconfig{$action}{$type}) eq 'HASH') {
                   7400:                                     if (ref($domconfig{$action}{$type}{$item}) eq 'HASH') {
                   7401:                                         if ($domconfig{$action}{$type}{$item}{'order'} ne $idx) {
                   7402:                                             $changes{$type}{$item} = 1;
                   7403:                                         }
1.216     raeburn  7404:                                     }
                   7405:                                 }
                   7406:                             }
1.242     raeburn  7407:                             $idx ++;
1.216     raeburn  7408:                         }
                   7409:                     }
                   7410:                 }
                   7411:             }
1.235     raeburn  7412:             if (ref($validationitemsref) eq 'ARRAY') {
                   7413:                 foreach my $item (@{$validationitemsref}) {
                   7414:                     if ($item eq 'fields') {
                   7415:                         my @changed;
                   7416:                         @{$confhash{'validation'}{$item}} = &Apache::loncommon::get_env_multiple('form.requestcourses_validation_'.$item);
                   7417:                         if (@{$confhash{'validation'}{$item}} > 0) {
                   7418:                             @{$confhash{'validation'}{$item}} = sort(@{$confhash{'validation'}{$item}});
                   7419:                         }
                   7420:                         if (ref($domconfig{'requestcourses'}{'validation'}) eq 'HASH') {
                   7421:                             if (ref($domconfig{'requestcourses'}{'validation'}{$item}) eq 'ARRAY') {
                   7422:                                 @changed = &Apache::loncommon::compare_arrays($confhash{'validation'}{$item},
                   7423:                                                                               $domconfig{'requestcourses'}{'validation'}{$item});
                   7424:                             } else {
                   7425:                                 @changed = @{$confhash{'validation'}{$item}};
                   7426:                             }
                   7427:                         } else {
                   7428:                             @changed = @{$confhash{'validation'}{$item}};
                   7429:                         }
                   7430:                         if (@changed) {
                   7431:                             if ($confhash{'validation'}{$item}) {
                   7432:                                 $changes{'validation'}{$item} = join(', ',@{$confhash{'validation'}{$item}});
                   7433:                             } else {
                   7434:                                 $changes{'validation'}{$item} = &mt('None');
                   7435:                             }
                   7436:                         }
                   7437:                     } else {
                   7438:                         $confhash{'validation'}{$item} = $env{'form.requestcourses_validation_'.$item};
                   7439:                         if ($item eq 'markup') {
                   7440:                             if ($env{'form.requestcourses_validation_'.$item}) {
                   7441:                                 $env{'form.requestcourses_validation_'.$item} =~ s/[\n\r\f]+/\s/gs;
                   7442:                             }
                   7443:                         }
                   7444:                         if (ref($domconfig{'requestcourses'}{'validation'}) eq 'HASH') {
                   7445:                             if ($domconfig{'requestcourses'}{'validation'}{$item} ne $confhash{'validation'}{$item}) {
                   7446:                                 $changes{'validation'}{$item} = $confhash{'validation'}{$item};
                   7447:                             }
                   7448:                         } else {
                   7449:                             if ($confhash{'validation'}{$item} ne '') {
                   7450:                                 $changes{'validation'}{$item} = $confhash{'validation'}{$item};
                   7451:                             }
                   7452:                         }
                   7453:                     }
                   7454:                 }
                   7455:             }
                   7456:             if ($env{'form.validationdc'}) {
                   7457:                 my $newval = $env{'form.validationdc'};
                   7458:                 my %domcoords = &get_active_dcs($dom);
                   7459:                 if (exists($domcoords{$newval})) {
                   7460:                     $confhash{'validation'}{'dc'} = $newval;
                   7461:                 }
                   7462:             }
                   7463:             if (ref($confhash{'validation'}) eq 'HASH') {
                   7464:                 if (ref($domconfig{'requestcourses'}{'validation'}) eq 'HASH') {
                   7465:                     if ($domconfig{'requestcourses'}{'validation'}{'dc'}) {
                   7466:                         unless ($confhash{'validation'}{'dc'} eq $domconfig{'requestcourses'}{'validation'}{'dc'}) {
                   7467:                             if ($confhash{'validation'}{'dc'} eq '') {
                   7468:                                 $changes{'validation'}{'dc'} = &mt('None');
                   7469:                             } else {
                   7470:                                 $changes{'validation'}{'dc'} = $confhash{'validation'}{'dc'};
                   7471:                             }
                   7472:                         }
                   7473:                     } elsif ($confhash{'validation'}{'dc'} ne '') {
                   7474:                         $changes{'validation'}{'dc'} = $confhash{'validation'}{'dc'};
                   7475:                     }
                   7476:                 } elsif ($confhash{'validation'}{'dc'} ne '') {
                   7477:                     $changes{'validation'}{'dc'} = $confhash{'validation'}{'dc'};
                   7478:                 }
                   7479:             } elsif (ref($domconfig{'requestcourses'}{'validation'}) eq 'HASH') {
                   7480:                 if ($domconfig{'requestcourses'}{'validation'}{'dc'}) {
                   7481:                     $changes{'validation'}{'dc'} = &mt('None');
                   7482:                 }
                   7483:             }
1.102     raeburn  7484:         }
                   7485:     } else {
1.86      raeburn  7486:         $confhash{'defaultquota'}{'default'} = $env{'form.defaultquota'};
1.197     raeburn  7487:         $confhash{'authorquota'}{'default'} = $env{'form.authorquota'};
1.86      raeburn  7488:     }
1.72      raeburn  7489:     foreach my $item (@usertools) {
                   7490:         foreach my $type (@{$types},'default','_LC_adv') {
1.104     raeburn  7491:             my $unset; 
1.101     raeburn  7492:             if ($context eq 'requestcourses') {
1.104     raeburn  7493:                 $unset = '0';
                   7494:                 if ($type eq '_LC_adv') {
                   7495:                     $unset = '';
                   7496:                 }
1.101     raeburn  7497:                 if ($confhash{$item}{$type} eq 'autolimit') {
                   7498:                     $confhash{$item}{$type} .= '=';
                   7499:                     unless ($limithash{$item}{$type} =~ /\D/) {
                   7500:                         $confhash{$item}{$type} .= $limithash{$item}{$type};
                   7501:                     }
                   7502:                 }
1.163     raeburn  7503:             } elsif ($context eq 'requestauthor') {
                   7504:                 $unset = '0';
                   7505:                 if ($type eq '_LC_adv') {
                   7506:                     $unset = '';
                   7507:                 }
1.72      raeburn  7508:             } else {
1.101     raeburn  7509:                 if (grep(/^\Q$type\E$/,@{$toolshash{$item}})) {
                   7510:                     $confhash{$item}{$type} = 1;
                   7511:                 } else {
                   7512:                     $confhash{$item}{$type} = 0;
                   7513:                 }
1.72      raeburn  7514:             }
1.86      raeburn  7515:             if (ref($domconfig{$action}) eq 'HASH') {
1.163     raeburn  7516:                 if ($action eq 'requestauthor') {
                   7517:                     if ($domconfig{$action}{$type} ne $confhash{$type}) {
                   7518:                         $changes{$type} = 1;
                   7519:                     }
                   7520:                 } elsif (ref($domconfig{$action}{$item}) eq 'HASH') {
1.86      raeburn  7521:                     if ($domconfig{$action}{$item}{$type} ne $confhash{$item}{$type}) {
                   7522:                         $changes{$item}{$type} = 1;
                   7523:                     }
                   7524:                 } else {
                   7525:                     if ($context eq 'requestcourses') {
1.104     raeburn  7526:                         if ($confhash{$item}{$type} ne $unset) {
1.86      raeburn  7527:                             $changes{$item}{$type} = 1;
                   7528:                         }
                   7529:                     } else {
                   7530:                         if (!$confhash{$item}{$type}) {
                   7531:                             $changes{$item}{$type} = 1;
                   7532:                         }
                   7533:                     }
                   7534:                 }
                   7535:             } else {
                   7536:                 if ($context eq 'requestcourses') {
1.104     raeburn  7537:                     if ($confhash{$item}{$type} ne $unset) {
1.72      raeburn  7538:                         $changes{$item}{$type} = 1;
                   7539:                     }
1.163     raeburn  7540:                 } elsif ($context eq 'requestauthor') {
                   7541:                     if ($confhash{$type} ne $unset) {
                   7542:                         $changes{$type} = 1;
                   7543:                     }
1.72      raeburn  7544:                 } else {
                   7545:                     if (!$confhash{$item}{$type}) {
                   7546:                         $changes{$item}{$type} = 1;
                   7547:                     }
                   7548:                 }
                   7549:             }
1.1       raeburn  7550:         }
                   7551:     }
1.163     raeburn  7552:     unless (($context eq 'requestcourses') || ($context eq 'requestauthor')) {
1.86      raeburn  7553:         if (ref($domconfig{'quotas'}) eq 'HASH') {
                   7554:             if (ref($domconfig{'quotas'}{'defaultquota'}) eq 'HASH') {
                   7555:                 foreach my $key (keys(%{$domconfig{'quotas'}{'defaultquota'}})) {
                   7556:                     if (exists($confhash{'defaultquota'}{$key})) {
                   7557:                         if ($confhash{'defaultquota'}{$key} ne $domconfig{'quotas'}{'defaultquota'}{$key}) {
                   7558:                             $changes{'defaultquota'}{$key} = 1;
                   7559:                         }
                   7560:                     } else {
                   7561:                         $confhash{'defaultquota'}{$key} = $domconfig{'quotas'}{'defaultquota'}{$key};
1.72      raeburn  7562:                     }
                   7563:                 }
1.86      raeburn  7564:             } else {
                   7565:                 foreach my $key (keys(%{$domconfig{'quotas'}})) {
                   7566:                     if (exists($confhash{'defaultquota'}{$key})) {
                   7567:                         if ($confhash{'defaultquota'}{$key} ne $domconfig{'quotas'}{$key}) {
                   7568:                             $changes{'defaultquota'}{$key} = 1;
                   7569:                         }
                   7570:                     } else {
                   7571:                         $confhash{'defaultquota'}{$key} = $domconfig{'quotas'}{$key};
1.72      raeburn  7572:                     }
1.1       raeburn  7573:                 }
                   7574:             }
1.197     raeburn  7575:             if (ref($domconfig{'quotas'}{'authorquota'}) eq 'HASH') {
                   7576:                 foreach my $key (keys(%{$domconfig{'quotas'}{'authorquota'}})) {
                   7577:                     if (exists($confhash{'authorquota'}{$key})) {
                   7578:                         if ($confhash{'authorquota'}{$key} ne $domconfig{'quotas'}{'authorquota'}{$key}) {
                   7579:                             $changes{'authorquota'}{$key} = 1;
                   7580:                         }
                   7581:                     } else {
                   7582:                         $confhash{'authorquota'}{$key} = $domconfig{'quotas'}{'authorquota'}{$key};
                   7583:                     }
                   7584:                 }
                   7585:             }
1.1       raeburn  7586:         }
1.86      raeburn  7587:         if (ref($confhash{'defaultquota'}) eq 'HASH') {
                   7588:             foreach my $key (keys(%{$confhash{'defaultquota'}})) {
                   7589:                 if (ref($domconfig{'quotas'}) eq 'HASH') {
                   7590:                     if (ref($domconfig{'quotas'}{'defaultquota'}) eq 'HASH') {
                   7591:                         if (!exists($domconfig{'quotas'}{'defaultquota'}{$key})) {
                   7592:                             $changes{'defaultquota'}{$key} = 1;
                   7593:                         }
                   7594:                     } else {
                   7595:                         if (!exists($domconfig{'quotas'}{$key})) {
                   7596:                             $changes{'defaultquota'}{$key} = 1;
                   7597:                         }
1.72      raeburn  7598:                     }
                   7599:                 } else {
1.86      raeburn  7600:                     $changes{'defaultquota'}{$key} = 1;
1.55      raeburn  7601:                 }
1.1       raeburn  7602:             }
                   7603:         }
1.197     raeburn  7604:         if (ref($confhash{'authorquota'}) eq 'HASH') {
                   7605:             foreach my $key (keys(%{$confhash{'authorquota'}})) {
                   7606:                 if (ref($domconfig{'quotas'}) eq 'HASH') {
                   7607:                     if (ref($domconfig{'quotas'}{'authorquota'}) eq 'HASH') {
                   7608:                         if (!exists($domconfig{'quotas'}{'authorquota'}{$key})) {
                   7609:                             $changes{'authorquota'}{$key} = 1;
                   7610:                         }
                   7611:                     } else {
                   7612:                         $changes{'authorquota'}{$key} = 1;
                   7613:                     }
                   7614:                 } else {
                   7615:                     $changes{'authorquota'}{$key} = 1;
                   7616:                 }
                   7617:             }
                   7618:         }
1.1       raeburn  7619:     }
1.72      raeburn  7620: 
1.163     raeburn  7621:     if ($context eq 'requestauthor') {
                   7622:         $domdefaults{'requestauthor'} = \%confhash;
                   7623:     } else {
                   7624:         foreach my $key (keys(%confhash)) {
1.242     raeburn  7625:             unless (($context eq 'requestcourses') && (($key eq 'textbooks') || ($key eq 'templates'))) {
1.216     raeburn  7626:                 $domdefaults{$key} = $confhash{$key};
                   7627:             }
1.163     raeburn  7628:         }
1.72      raeburn  7629:     }
1.163     raeburn  7630: 
1.1       raeburn  7631:     my %quotahash = (
1.86      raeburn  7632:                       $action => { %confhash }
1.1       raeburn  7633:                     );
                   7634:     my $putresult = &Apache::lonnet::put_dom('configuration',\%quotahash,
                   7635:                                              $dom);
                   7636:     if ($putresult eq 'ok') {
                   7637:         if (keys(%changes) > 0) {
1.72      raeburn  7638:             my $cachetime = 24*60*60;
                   7639:             &Apache::lonnet::do_cache_new('domdefaults',$dom,\%domdefaults,$cachetime);
1.212     raeburn  7640:             if (ref($lastactref) eq 'HASH') {
                   7641:                 $lastactref->{'domdefaults'} = 1;
                   7642:             }
1.1       raeburn  7643:             $resulttext = &mt('Changes made:').'<ul>';
1.210     raeburn  7644:             unless (($context eq 'requestcourses') ||
1.163     raeburn  7645:                     ($context eq 'requestauthor')) {
1.86      raeburn  7646:                 if (ref($changes{'defaultquota'}) eq 'HASH') {
                   7647:                     $resulttext .= '<li>'.&mt('Portfolio default quotas').'<ul>';
                   7648:                     foreach my $type (@{$types},'default') {
                   7649:                         if (defined($changes{'defaultquota'}{$type})) {
                   7650:                             my $typetitle = $usertypes->{$type};
                   7651:                             if ($type eq 'default') {
                   7652:                                 $typetitle = $othertitle;
                   7653:                             }
1.213     raeburn  7654:                             $resulttext .= '<li>'.&mt('[_1] set to [_2] MB',$typetitle,$confhash{'defaultquota'}{$type}).'</li>';
1.72      raeburn  7655:                         }
                   7656:                     }
1.86      raeburn  7657:                     $resulttext .= '</ul></li>';
1.72      raeburn  7658:                 }
1.197     raeburn  7659:                 if (ref($changes{'authorquota'}) eq 'HASH') {
1.223     bisitz   7660:                     $resulttext .= '<li>'.&mt('Authoring Space default quotas').'<ul>';
1.197     raeburn  7661:                     foreach my $type (@{$types},'default') {
                   7662:                         if (defined($changes{'authorquota'}{$type})) {
                   7663:                             my $typetitle = $usertypes->{$type};
                   7664:                             if ($type eq 'default') {
                   7665:                                 $typetitle = $othertitle;
                   7666:                             }
1.213     raeburn  7667:                             $resulttext .= '<li>'.&mt('[_1] set to [_2] MB',$typetitle,$confhash{'authorquota'}{$type}).'</li>';
1.197     raeburn  7668:                         }
                   7669:                     }
                   7670:                     $resulttext .= '</ul></li>';
                   7671:                 }
1.72      raeburn  7672:             }
1.80      raeburn  7673:             my %newenv;
1.72      raeburn  7674:             foreach my $item (@usertools) {
1.163     raeburn  7675:                 my (%haschgs,%inconf);
                   7676:                 if ($context eq 'requestauthor') {
                   7677:                     %haschgs = %changes;
1.210     raeburn  7678:                     %inconf = %confhash;
1.163     raeburn  7679:                 } else {
                   7680:                     if (ref($changes{$item}) eq 'HASH') {
                   7681:                         %haschgs = %{$changes{$item}};
                   7682:                     }
                   7683:                     if (ref($confhash{$item}) eq 'HASH') {
                   7684:                         %inconf = %{$confhash{$item}};
                   7685:                     }
                   7686:                 }
                   7687:                 if (keys(%haschgs) > 0) {
1.80      raeburn  7688:                     my $newacc = 
                   7689:                         &Apache::lonnet::usertools_access($env{'user.name'},
                   7690:                                                           $env{'user.domain'},
1.86      raeburn  7691:                                                           $item,'reload',$context);
1.210     raeburn  7692:                     if (($context eq 'requestcourses') ||
1.163     raeburn  7693:                         ($context eq 'requestauthor')) {
1.108     raeburn  7694:                         if ($env{'environment.canrequest.'.$item} ne $newacc) {
                   7695:                             $newenv{'environment.canrequest.'.$item} = $newacc;
1.86      raeburn  7696:                         }
                   7697:                     } else {
                   7698:                         if ($env{'environment.availabletools.'.$item} ne $newacc) { 
                   7699:                             $newenv{'environment.availabletools.'.$item} = $newacc;
                   7700:                         }
1.80      raeburn  7701:                     }
1.163     raeburn  7702:                     unless ($context eq 'requestauthor') {
                   7703:                         $resulttext .= '<li>'.$titles{$item}.'<ul>';
                   7704:                     }
1.72      raeburn  7705:                     foreach my $type (@{$types},'default','_LC_adv') {
1.163     raeburn  7706:                         if ($haschgs{$type}) {
1.72      raeburn  7707:                             my $typetitle = $usertypes->{$type};
                   7708:                             if ($type eq 'default') {
                   7709:                                 $typetitle = $othertitle;
                   7710:                             } elsif ($type eq '_LC_adv') {
                   7711:                                 $typetitle = 'LON-CAPA Advanced Users'; 
                   7712:                             }
1.163     raeburn  7713:                             if ($inconf{$type}) {
1.101     raeburn  7714:                                 if ($context eq 'requestcourses') {
                   7715:                                     my $cond;
1.163     raeburn  7716:                                     if ($inconf{$type} =~ /^autolimit=(\d*)$/) {
1.101     raeburn  7717:                                         if ($1 eq '') {
                   7718:                                             $cond = &mt('(Automatic processing of any request).');
                   7719:                                         } else {
                   7720:                                             $cond = &mt('(Automatic processing of requests up to limit of [quant,_1,request] per user).',$1);
                   7721:                                         }
                   7722:                                     } else { 
1.163     raeburn  7723:                                         $cond = $conditions{$inconf{$type}};
1.101     raeburn  7724:                                     }
                   7725:                                     $resulttext .= '<li>'.&mt('Set to be available to [_1].',$typetitle).' '.$cond.'</li>';
1.172     raeburn  7726:                                 } elsif ($context eq 'requestauthor') {
                   7727:                                     $resulttext .= '<li>'.&mt('Set to "[_1]" for "[_2]".',
                   7728:                                                              $titles{$inconf{$type}},$typetitle);
                   7729: 
1.101     raeburn  7730:                                 } else {
                   7731:                                     $resulttext .= '<li>'.&mt('Set to be available to [_1]',$typetitle).'</li>';
                   7732:                                 }
1.72      raeburn  7733:                             } else {
1.104     raeburn  7734:                                 if ($type eq '_LC_adv') {
1.163     raeburn  7735:                                     if ($inconf{$type} eq '0') {
1.104     raeburn  7736:                                         $resulttext .= '<li>'.&mt('Set to be unavailable to [_1]',$typetitle).'</li>';
                   7737:                                     } else { 
                   7738:                                         $resulttext .= '<li>'.&mt('No override set for [_1]',$typetitle).'</li>';
                   7739:                                     }
                   7740:                                 } else {
                   7741:                                     $resulttext .= '<li>'.&mt('Set to be unavailable to [_1]',$typetitle).'</li>';
                   7742:                                 }
1.72      raeburn  7743:                             }
                   7744:                         }
1.26      raeburn  7745:                     }
1.163     raeburn  7746:                     unless ($context eq 'requestauthor') {
                   7747:                         $resulttext .= '</ul></li>';
                   7748:                     }
1.26      raeburn  7749:                 }
1.1       raeburn  7750:             }
1.163     raeburn  7751:             if (($action eq 'requestcourses') || ($action eq 'requestauthor')) {
1.102     raeburn  7752:                 if (ref($changes{'notify'}) eq 'HASH') {
                   7753:                     if ($changes{'notify'}{'approval'}) {
                   7754:                         if (ref($confhash{'notify'}) eq 'HASH') {
                   7755:                             if ($confhash{'notify'}{'approval'}) {
                   7756:                                 $resulttext .= '<li>'.&mt('Notification of requests requiring approval will be sent to: ').$confhash{'notify'}{'approval'}.'</li>';
                   7757:                             } else {
1.163     raeburn  7758:                                 $resulttext .= '<li>'.&mt('No Domain Coordinators will receive notification of requests requiring approval.').'</li>';
1.102     raeburn  7759:                             }
                   7760:                         }
                   7761:                     }
                   7762:                 }
                   7763:             }
1.216     raeburn  7764:             if ($action eq 'requestcourses') {
                   7765:                 my @offon = ('off','on');
                   7766:                 if ($changes{'uniquecode'}) {
1.218     raeburn  7767:                     if (ref($confhash{'uniquecode'}) eq 'HASH') {
                   7768:                         my $codestr = join(' ',map{ &mt($_); } sort(keys(%{$confhash{'uniquecode'}})));
                   7769:                         $resulttext .= '<li>'.
                   7770:                                        &mt('Generation of six character code as course identifier for distribution to students set to on for: [_1].','<b>'.$codestr.'</b>').
                   7771:                                        '</li>';
                   7772:                     } else {
                   7773:                         $resulttext .= '<li>'.&mt('Generation of six character code as course identifier for distribution to students set to off.').
                   7774:                                        '</li>';
                   7775:                     }
1.216     raeburn  7776:                 }
1.242     raeburn  7777:                 foreach my $type ('textbooks','templates') {
                   7778:                     if (ref($changes{$type}) eq 'HASH') {
                   7779:                         $resulttext .= '<li>'.&mt("Available $type updated").'<ul>';
                   7780:                         foreach my $key (sort(keys(%{$changes{$type}}))) {
                   7781:                             my %coursehash = &Apache::lonnet::coursedescription($key);
                   7782:                             my $coursetitle = $coursehash{'description'};
                   7783:                             my $position = $confhash{$type}{$key}{'order'} + 1;
                   7784:                             $resulttext .= '<li>';
1.243     raeburn  7785:                             foreach my $item ('subject','title','publisher','author') {
                   7786:                                 next if ((($item eq 'author') || ($item eq 'publisher')) &&
                   7787:                                          ($type eq 'templates'));
1.242     raeburn  7788:                                 my $name = $item.':';
                   7789:                                 $name =~ s/^(\w)/\U$1/;
                   7790:                                 $resulttext .= &mt($name).' '.$confhash{$type}{$key}{$item}.'<br />';
                   7791:                             }
                   7792:                             $resulttext .= ' '.&mt('Order: [_1]',$position).'<br />';
                   7793:                             if ($type eq 'textbooks') {
                   7794:                                 if ($confhash{$type}{$key}{'image'}) {
                   7795:                                     $resulttext .= ' '.&mt('Image: [_1]',
                   7796:                                                    '<img src="'.$confhash{$type}{$key}{'image'}.'"'.
                   7797:                                                    ' alt="Textbook cover" />').'<br />';
                   7798:                                 }
                   7799:                             }
                   7800:                             $resulttext .= ' '.&mt('LON-CAPA Course: [_1]',$coursetitle).'</li>';
1.216     raeburn  7801:                         }
1.242     raeburn  7802:                         $resulttext .= '</ul></li>';
1.216     raeburn  7803:                     }
                   7804:                 }
1.235     raeburn  7805:                 if (ref($changes{'validation'}) eq 'HASH') {
                   7806:                     if ((ref($validationitemsref) eq 'ARRAY') && (ref($validationnamesref) eq 'HASH')) {
                   7807:                         $resulttext .= '<li>'.&mt('Validation of courses/communities updated').'<ul>';
                   7808:                         foreach my $item (@{$validationitemsref}) {
                   7809:                             if (exists($changes{'validation'}{$item})) {
                   7810:                                 if ($item eq 'markup') {
                   7811:                                     $resulttext .= '<li>'.&mt('[_1] set to: [_2]',$validationnamesref->{$item},
                   7812:                                                               '<br /><pre>'.$changes{'validation'}{$item}.'</pre>').'</li>';
                   7813:                                 } else {
                   7814:                                     $resulttext .= '<li>'.&mt('[_1] set to: [_2]',$validationnamesref->{$item},
                   7815:                                                               '<b>'.$changes{'validation'}{$item}.'</b>').'</li>';
                   7816:                                 }
                   7817:                             }
                   7818:                         }
                   7819:                         if (exists($changes{'validation'}{'dc'})) {
                   7820:                             $resulttext .= '<li>'.&mt('Validated course requests identified as processed by: [_1]',
                   7821:                                                      '<b>'.$changes{'validation'}{'dc'}.'</b>').'</li>';
                   7822:                         }
                   7823:                     }
                   7824:                 }
1.216     raeburn  7825:             }
1.1       raeburn  7826:             $resulttext .= '</ul>';
1.80      raeburn  7827:             if (keys(%newenv)) {
                   7828:                 &Apache::lonnet::appenv(\%newenv);
                   7829:             }
1.1       raeburn  7830:         } else {
1.86      raeburn  7831:             if ($context eq 'requestcourses') {
                   7832:                 $resulttext = &mt('No changes made to rights to request creation of courses.');
1.163     raeburn  7833:             } elsif ($context eq 'requestauthor') {
                   7834:                 $resulttext = &mt('No changes made to rights to request author space.');
1.86      raeburn  7835:             } else {
1.90      weissno  7836:                 $resulttext = &mt('No changes made to availability of personal information pages, blogs, portfolios or default quotas');
1.86      raeburn  7837:             }
1.1       raeburn  7838:         }
                   7839:     } else {
1.11      albertel 7840:         $resulttext = '<span class="LC_error">'.
                   7841: 	    &mt('An error occurred: [_1]',$putresult).'</span>';
1.1       raeburn  7842:     }
1.216     raeburn  7843:     if ($errors) {
                   7844:         $resulttext .= '<p>'.&mt('The following errors occurred when modifying Textbook settings.').
                   7845:                        '<ul>'.$errors.'</ul></p>';
                   7846:     }
1.3       raeburn  7847:     return $resulttext;
1.1       raeburn  7848: }
                   7849: 
1.216     raeburn  7850: sub process_textbook_image {
1.242     raeburn  7851:     my ($r,$dom,$confname,$caller,$cdom,$cnum,$type,$configuserok,$switchserver,$author_ok) = @_;
1.216     raeburn  7852:     my $filename = $env{'form.'.$caller.'.filename'};
                   7853:     my ($error,$url);
                   7854:     my ($width,$height) = (50,50);
                   7855:     if ($configuserok eq 'ok') {
                   7856:         if ($switchserver) {
                   7857:             $error = &mt('Upload of textbook image is not permitted to this server: [_1]',
                   7858:                          $switchserver);
                   7859:         } elsif ($author_ok eq 'ok') {
                   7860:             my ($result,$imageurl) =
                   7861:                 &publishlogo($r,'upload',$caller,$dom,$confname,
1.242     raeburn  7862:                              "$type/$dom/$cnum/cover",$width,$height);
1.216     raeburn  7863:             if ($result eq 'ok') {
                   7864:                 $url = $imageurl;
                   7865:             } else {
                   7866:                 $error = &mt("Upload of [_1] failed because an error occurred publishing the file in RES space. Error was: [_2].",$filename,$result);
                   7867:             }
                   7868:         } else {
                   7869:             $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);
                   7870:         }
                   7871:     } else {
                   7872:         $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);
                   7873:     }
                   7874:     return ($url,$error);
                   7875: }
                   7876: 
1.3       raeburn  7877: sub modify_autoenroll {
1.205     raeburn  7878:     my ($dom,$lastactref,%domconfig) = @_;
1.1       raeburn  7879:     my ($resulttext,%changes);
                   7880:     my %currautoenroll;
                   7881:     if (ref($domconfig{'autoenroll'}) eq 'HASH') {
                   7882:         foreach my $key (keys(%{$domconfig{'autoenroll'}})) {
                   7883:             $currautoenroll{$key} = $domconfig{'autoenroll'}{$key};
                   7884:         }
                   7885:     }
                   7886:     my $autorun = &Apache::lonnet::auto_run(undef,$dom),
                   7887:     my %title = ( run => 'Auto-enrollment active',
1.129     raeburn  7888:                   sender => 'Sender for notification messages',
                   7889:                   coowners => 'Automatic assignment of co-ownership to instructors of record (institutional data)');
1.1       raeburn  7890:     my @offon = ('off','on');
1.17      raeburn  7891:     my $sender_uname = $env{'form.sender_uname'};
                   7892:     my $sender_domain = $env{'form.sender_domain'};
                   7893:     if ($sender_domain eq '') {
                   7894:         $sender_uname = '';
                   7895:     } elsif ($sender_uname eq '') {
                   7896:         $sender_domain = '';
                   7897:     }
1.129     raeburn  7898:     my $coowners = $env{'form.autoassign_coowners'};
1.1       raeburn  7899:     my %autoenrollhash =  (
1.129     raeburn  7900:                        autoenroll => { 'run' => $env{'form.autoenroll_run'},
                   7901:                                        'sender_uname' => $sender_uname,
                   7902:                                        'sender_domain' => $sender_domain,
                   7903:                                        'co-owners' => $coowners,
1.1       raeburn  7904:                                 }
                   7905:                      );
1.4       raeburn  7906:     my $putresult = &Apache::lonnet::put_dom('configuration',\%autoenrollhash,
                   7907:                                              $dom);
1.1       raeburn  7908:     if ($putresult eq 'ok') {
                   7909:         if (exists($currautoenroll{'run'})) {
                   7910:              if ($currautoenroll{'run'} ne $env{'form.autoenroll_run'}) {
                   7911:                  $changes{'run'} = 1;
                   7912:              }
                   7913:         } elsif ($autorun) {
                   7914:             if ($env{'form.autoenroll_run'} ne '1') {
1.23      raeburn  7915:                  $changes{'run'} = 1;
1.1       raeburn  7916:             }
                   7917:         }
1.17      raeburn  7918:         if ($currautoenroll{'sender_uname'} ne $sender_uname) {
1.1       raeburn  7919:             $changes{'sender'} = 1;
                   7920:         }
1.17      raeburn  7921:         if ($currautoenroll{'sender_domain'} ne $sender_domain) {
1.1       raeburn  7922:             $changes{'sender'} = 1;
                   7923:         }
1.129     raeburn  7924:         if ($currautoenroll{'co-owners'} ne '') {
                   7925:             if ($currautoenroll{'co-owners'} ne $coowners) {
                   7926:                 $changes{'coowners'} = 1;
                   7927:             }
                   7928:         } elsif ($coowners) {
                   7929:             $changes{'coowners'} = 1;
                   7930:         }      
1.1       raeburn  7931:         if (keys(%changes) > 0) {
                   7932:             $resulttext = &mt('Changes made:').'<ul>';
1.3       raeburn  7933:             if ($changes{'run'}) {
1.1       raeburn  7934:                 $resulttext .= '<li>'.&mt("$title{'run'} set to $offon[$env{'form.autoenroll_run'}]").'</li>';
                   7935:             }
                   7936:             if ($changes{'sender'}) {
1.17      raeburn  7937:                 if ($sender_uname eq '' || $sender_domain eq '') {
                   7938:                     $resulttext .= '<li>'.&mt("$title{'sender'} set to default (course owner).").'</li>';
                   7939:                 } else {
                   7940:                     $resulttext .= '<li>'.&mt("$title{'sender'} set to [_1]",$sender_uname.':'.$sender_domain).'</li>';
                   7941:                 }
1.1       raeburn  7942:             }
1.129     raeburn  7943:             if ($changes{'coowners'}) {
                   7944:                 $resulttext .= '<li>'.&mt("$title{'coowners'} set to $offon[$env{'form.autoassign_coowners'}]").'</li>';
                   7945:                 &Apache::loncommon::devalidate_domconfig_cache($dom);
1.212     raeburn  7946:                 if (ref($lastactref) eq 'HASH') {
                   7947:                     $lastactref->{'domainconfig'} = 1;
                   7948:                 }
1.129     raeburn  7949:             }
1.1       raeburn  7950:             $resulttext .= '</ul>';
                   7951:         } else {
                   7952:             $resulttext = &mt('No changes made to auto-enrollment settings');
                   7953:         }
                   7954:     } else {
1.11      albertel 7955:         $resulttext = '<span class="LC_error">'.
                   7956: 	    &mt('An error occurred: [_1]',$putresult).'</span>';
1.1       raeburn  7957:     }
1.3       raeburn  7958:     return $resulttext;
1.1       raeburn  7959: }
                   7960: 
                   7961: sub modify_autoupdate {
1.3       raeburn  7962:     my ($dom,%domconfig) = @_;
1.1       raeburn  7963:     my ($resulttext,%currautoupdate,%fields,%changes);
                   7964:     if (ref($domconfig{'autoupdate'}) eq 'HASH') {
                   7965:         foreach my $key (keys(%{$domconfig{'autoupdate'}})) {
                   7966:             $currautoupdate{$key} = $domconfig{'autoupdate'}{$key};
                   7967:         }
                   7968:     }
                   7969:     my @offon = ('off','on');
                   7970:     my %title = &Apache::lonlocal::texthash (
                   7971:                    run => 'Auto-update:',
                   7972:                    classlists => 'Updates to user information in classlists?'
                   7973:                 );
1.44      raeburn  7974:     my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($dom);
1.1       raeburn  7975:     my %fieldtitles = &Apache::lonlocal::texthash (
                   7976:                         id => 'Student/Employee ID',
1.20      raeburn  7977:                         permanentemail => 'E-mail address',
1.1       raeburn  7978:                         lastname => 'Last Name',
                   7979:                         firstname => 'First Name',
                   7980:                         middlename => 'Middle Name',
1.132     raeburn  7981:                         generation => 'Generation',
1.1       raeburn  7982:                       );
1.142     raeburn  7983:     $othertitle = &mt('All users');
1.1       raeburn  7984:     if (keys(%{$usertypes}) >  0) {
1.26      raeburn  7985:         $othertitle = &mt('Other users');
1.1       raeburn  7986:     }
                   7987:     foreach my $key (keys(%env)) {
                   7988:         if ($key =~ /^form\.updateable_(.+)_([^_]+)$/) {
1.132     raeburn  7989:             my ($usertype,$item) = ($1,$2);
                   7990:             if (grep(/^\Q$item\E$/,keys(%fieldtitles))) {
                   7991:                 if ($usertype eq 'default') {   
                   7992:                     push(@{$fields{$1}},$2);
                   7993:                 } elsif (ref($types) eq 'ARRAY') {
                   7994:                     if (grep(/^\Q$usertype\E$/,@{$types})) {
                   7995:                         push(@{$fields{$1}},$2);
                   7996:                     }
                   7997:                 }
                   7998:             }
1.1       raeburn  7999:         }
                   8000:     }
1.131     raeburn  8001:     my @lockablenames = &Apache::loncommon::get_env_multiple('form.lockablenames');
                   8002:     @lockablenames = sort(@lockablenames);
                   8003:     if (ref($currautoupdate{'lockablenames'}) eq 'ARRAY') {
                   8004:         my @changed = &Apache::loncommon::compare_arrays($currautoupdate{'lockablenames'},\@lockablenames);
                   8005:         if (@changed) {
                   8006:             $changes{'lockablenames'} = 1;
                   8007:         }
                   8008:     } else {
                   8009:         if (@lockablenames) {
                   8010:             $changes{'lockablenames'} = 1;
                   8011:         }
                   8012:     }
1.1       raeburn  8013:     my %updatehash = (
                   8014:                       autoupdate => { run => $env{'form.autoupdate_run'},
                   8015:                                       classlists => $env{'form.classlists'},
                   8016:                                       fields => {%fields},
1.131     raeburn  8017:                                       lockablenames => \@lockablenames,
1.1       raeburn  8018:                                     }
                   8019:                      );
                   8020:     foreach my $key (keys(%currautoupdate)) {
                   8021:         if (($key eq 'run') || ($key eq 'classlists')) {
                   8022:             if (exists($updatehash{autoupdate}{$key})) {
                   8023:                 if ($currautoupdate{$key} ne $updatehash{autoupdate}{$key}) {
                   8024:                     $changes{$key} = 1;
                   8025:                 }
                   8026:             }
                   8027:         } elsif ($key eq 'fields') {
                   8028:             if (ref($currautoupdate{$key}) eq 'HASH') {
1.26      raeburn  8029:                 foreach my $item (@{$types},'default') {
1.1       raeburn  8030:                     if (ref($currautoupdate{$key}{$item}) eq 'ARRAY') {
                   8031:                         my $change = 0;
                   8032:                         foreach my $type (@{$currautoupdate{$key}{$item}}) {
                   8033:                             if (!exists($fields{$item})) {
                   8034:                                 $change = 1;
1.132     raeburn  8035:                                 last;
1.1       raeburn  8036:                             } elsif (ref($fields{$item}) eq 'ARRAY') {
1.26      raeburn  8037:                                 if (!grep(/^\Q$type\E$/,@{$fields{$item}})) {
1.1       raeburn  8038:                                     $change = 1;
1.132     raeburn  8039:                                     last;
1.1       raeburn  8040:                                 }
                   8041:                             }
                   8042:                         }
                   8043:                         if ($change) {
                   8044:                             push(@{$changes{$key}},$item);
                   8045:                         }
1.26      raeburn  8046:                     } 
1.1       raeburn  8047:                 }
                   8048:             }
1.131     raeburn  8049:         } elsif ($key eq 'lockablenames') {
                   8050:             if (ref($currautoupdate{$key}) eq 'ARRAY') {
                   8051:                 my @changed = &Apache::loncommon::compare_arrays($currautoupdate{'lockablenames'},\@lockablenames);
                   8052:                 if (@changed) {
                   8053:                     $changes{'lockablenames'} = 1;
                   8054:                 }
                   8055:             } else {
                   8056:                 if (@lockablenames) {
                   8057:                     $changes{'lockablenames'} = 1;
                   8058:                 }
                   8059:             }
                   8060:         }
                   8061:     }
                   8062:     unless (grep(/^\Qlockablenames\E$/,keys(%currautoupdate))) {
                   8063:         if (@lockablenames) {
                   8064:             $changes{'lockablenames'} = 1;
1.1       raeburn  8065:         }
                   8066:     }
1.26      raeburn  8067:     foreach my $item (@{$types},'default') {
                   8068:         if (defined($fields{$item})) {
                   8069:             if (ref($currautoupdate{'fields'}) eq 'HASH') {
1.132     raeburn  8070:                 if (ref($currautoupdate{'fields'}{$item}) eq 'ARRAY') {
                   8071:                     my $change = 0;
                   8072:                     if (ref($fields{$item}) eq 'ARRAY') {
                   8073:                         foreach my $type (@{$fields{$item}}) {
                   8074:                             if (!grep(/^\Q$type\E$/,@{$currautoupdate{'fields'}{$item}})) {
                   8075:                                 $change = 1;
                   8076:                                 last;
                   8077:                             }
                   8078:                         }
                   8079:                     }
                   8080:                     if ($change) {
                   8081:                         push(@{$changes{'fields'}},$item);
                   8082:                     }
                   8083:                 } else {
1.26      raeburn  8084:                     push(@{$changes{'fields'}},$item);
                   8085:                 }
                   8086:             } else {
                   8087:                 push(@{$changes{'fields'}},$item);
1.1       raeburn  8088:             }
                   8089:         }
                   8090:     }
                   8091:     my $putresult = &Apache::lonnet::put_dom('configuration',\%updatehash,
                   8092:                                              $dom);
                   8093:     if ($putresult eq 'ok') {
                   8094:         if (keys(%changes) > 0) {
                   8095:             $resulttext = &mt('Changes made:').'<ul>';
                   8096:             foreach my $key (sort(keys(%changes))) {
1.131     raeburn  8097:                 if ($key eq 'lockablenames') {
                   8098:                     $resulttext .= '<li>';
                   8099:                     if (@lockablenames) {
                   8100:                         $usertypes->{'default'} = $othertitle;
                   8101:                         $resulttext .= &mt("User preference to disable replacement of user's name with institutional data (by auto-update), available for the following affiliations:").' '.
                   8102:                                    join(', ', map { $usertypes->{$_}; } @lockablenames).'</li>';
                   8103:                     } else {
                   8104:                         $resulttext .= &mt("User preference to disable replacement of user's name with institutional data (by auto-update) is unavailable.");
                   8105:                     }
                   8106:                     $resulttext .= '</li>';
                   8107:                 } elsif (ref($changes{$key}) eq 'ARRAY') {
1.1       raeburn  8108:                     foreach my $item (@{$changes{$key}}) {
                   8109:                         my @newvalues;
                   8110:                         foreach my $type (@{$fields{$item}}) {
                   8111:                             push(@newvalues,$fieldtitles{$type});
                   8112:                         }
1.3       raeburn  8113:                         my $newvaluestr;
                   8114:                         if (@newvalues > 0) {
                   8115:                             $newvaluestr = join(', ',@newvalues);
                   8116:                         } else {
                   8117:                             $newvaluestr = &mt('none');
1.6       raeburn  8118:                         }
1.1       raeburn  8119:                         if ($item eq 'default') {
1.26      raeburn  8120:                             $resulttext .= '<li>'.&mt("Updates for '[_1]' set to: '[_2]'",$othertitle,$newvaluestr).'</li>';
1.1       raeburn  8121:                         } else {
1.26      raeburn  8122:                             $resulttext .= '<li>'.&mt("Updates for '[_1]' set to: '[_2]'",$usertypes->{$item},$newvaluestr).'</li>';
1.1       raeburn  8123:                         }
                   8124:                     }
                   8125:                 } else {
                   8126:                     my $newvalue;
                   8127:                     if ($key eq 'run') {
                   8128:                         $newvalue = $offon[$env{'form.autoupdate_run'}];
                   8129:                     } else {
                   8130:                         $newvalue = $offon[$env{'form.'.$key}];
1.3       raeburn  8131:                     }
1.1       raeburn  8132:                     $resulttext .= '<li>'.&mt("[_1] set to $newvalue",$title{$key}).'</li>';
                   8133:                 }
                   8134:             }
                   8135:             $resulttext .= '</ul>';
                   8136:         } else {
1.3       raeburn  8137:             $resulttext = &mt('No changes made to autoupdates');
1.1       raeburn  8138:         }
                   8139:     } else {
1.11      albertel 8140:         $resulttext = '<span class="LC_error">'.
                   8141: 	    &mt('An error occurred: [_1]',$putresult).'</span>';
1.1       raeburn  8142:     }
1.3       raeburn  8143:     return $resulttext;
1.1       raeburn  8144: }
                   8145: 
1.125     raeburn  8146: sub modify_autocreate {
                   8147:     my ($dom,%domconfig) = @_;
                   8148:     my ($resulttext,%changes,%currautocreate,%newvals,%autocreatehash);
                   8149:     if (ref($domconfig{'autocreate'}) eq 'HASH') {
                   8150:         foreach my $key (keys(%{$domconfig{'autocreate'}})) {
                   8151:             $currautocreate{$key} = $domconfig{'autocreate'}{$key};
                   8152:         }
                   8153:     }
                   8154:     my %title= ( xml => 'Auto-creation of courses in XML course description files',
                   8155:                  req => 'Auto-creation of validated requests for official courses',
                   8156:                  xmldc => 'Identity of course creator of courses from XML files',
                   8157:                );
                   8158:     my @types = ('xml','req');
                   8159:     foreach my $item (@types) {
                   8160:         $newvals{$item} = $env{'form.autocreate_'.$item};
                   8161:         $newvals{$item} =~ s/\D//g;
                   8162:         $newvals{$item} = 0 if ($newvals{$item} eq '');
                   8163:     }
                   8164:     $newvals{'xmldc'} = $env{'form.autocreate_xmldc'};
                   8165:     my %domcoords = &get_active_dcs($dom);
                   8166:     unless (exists($domcoords{$newvals{'xmldc'}})) {
                   8167:         $newvals{'xmldc'} = '';
                   8168:     } 
                   8169:     %autocreatehash =  (
                   8170:                         autocreate => { xml => $newvals{'xml'},
                   8171:                                         req => $newvals{'req'},
                   8172:                                       }
                   8173:                        );
                   8174:     if ($newvals{'xmldc'} ne '') {
                   8175:         $autocreatehash{'autocreate'}{'xmldc'} = $newvals{'xmldc'};
                   8176:     }
                   8177:     my $putresult = &Apache::lonnet::put_dom('configuration',\%autocreatehash,
                   8178:                                              $dom);
                   8179:     if ($putresult eq 'ok') {
                   8180:         my @items = @types;
                   8181:         if ($newvals{'xml'}) {
                   8182:             push(@items,'xmldc');
                   8183:         }
                   8184:         foreach my $item (@items) {
                   8185:             if (exists($currautocreate{$item})) {
                   8186:                 if ($currautocreate{$item} ne $newvals{$item}) {
                   8187:                     $changes{$item} = 1;
                   8188:                 }
                   8189:             } elsif ($newvals{$item}) {
                   8190:                 $changes{$item} = 1;
                   8191:             }
                   8192:         }
                   8193:         if (keys(%changes) > 0) {
                   8194:             my @offon = ('off','on'); 
                   8195:             $resulttext = &mt('Changes made:').'<ul>';
                   8196:             foreach my $item (@types) {
                   8197:                 if ($changes{$item}) {
                   8198:                     my $newtxt = $offon[$newvals{$item}];
1.178     raeburn  8199:                     $resulttext .= '<li>'.
                   8200:                                    &mt("$title{$item} set to [_1]$newtxt [_2]",
                   8201:                                        '<b>','</b>').
                   8202:                                    '</li>';
1.125     raeburn  8203:                 }
                   8204:             }
                   8205:             if ($changes{'xmldc'}) {
                   8206:                 my ($dcname,$dcdom) = split(':',$newvals{'xmldc'});
                   8207:                 my $newtxt = &Apache::loncommon::plainname($dcname,$dcdom);
1.178     raeburn  8208:                 $resulttext .= '<li>'.&mt("$title{'xmldc'} set to [_1]",'<b>'.$newtxt.'</b>').'</li>'; 
1.125     raeburn  8209:             }
                   8210:             $resulttext .= '</ul>';
                   8211:         } else {
                   8212:             $resulttext = &mt('No changes made to auto-creation settings');
                   8213:         }
                   8214:     } else {
                   8215:         $resulttext = '<span class="LC_error">'.
                   8216:             &mt('An error occurred: [_1]',$putresult).'</span>';
                   8217:     }
                   8218:     return $resulttext;
                   8219: }
                   8220: 
1.23      raeburn  8221: sub modify_directorysrch {
                   8222:     my ($dom,%domconfig) = @_;
                   8223:     my ($resulttext,%changes);
                   8224:     my %currdirsrch;
                   8225:     if (ref($domconfig{'directorysrch'}) eq 'HASH') {
                   8226:         foreach my $key (keys(%{$domconfig{'directorysrch'}})) {
                   8227:             $currdirsrch{$key} = $domconfig{'directorysrch'}{$key};
                   8228:         }
                   8229:     }
                   8230:     my %title = ( available => 'Directory search available',
1.24      raeburn  8231:                   localonly => 'Other domains can search',
1.23      raeburn  8232:                   searchby => 'Search types',
                   8233:                   searchtypes => 'Search latitude');
                   8234:     my @offon = ('off','on');
1.24      raeburn  8235:     my @otherdoms = ('Yes','No');
1.23      raeburn  8236: 
1.25      raeburn  8237:     my @searchtypes = &Apache::loncommon::get_env_multiple('form.searchtypes');  
1.23      raeburn  8238:     my @cansearch = &Apache::loncommon::get_env_multiple('form.cansearch');
                   8239:     my @searchby = &Apache::loncommon::get_env_multiple('form.searchby');
                   8240: 
1.44      raeburn  8241:     my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($dom);
1.26      raeburn  8242:     if (keys(%{$usertypes}) == 0) {
                   8243:         @cansearch = ('default');
                   8244:     } else {
                   8245:         if (ref($currdirsrch{'cansearch'}) eq 'ARRAY') {
                   8246:             foreach my $type (@{$currdirsrch{'cansearch'}}) {
                   8247:                 if (!grep(/^\Q$type\E$/,@cansearch)) {
                   8248:                     push(@{$changes{'cansearch'}},$type);
                   8249:                 }
1.23      raeburn  8250:             }
1.26      raeburn  8251:             foreach my $type (@cansearch) {
                   8252:                 if (!grep(/^\Q$type\E$/,@{$currdirsrch{'cansearch'}})) {
                   8253:                     push(@{$changes{'cansearch'}},$type);
                   8254:                 }
1.23      raeburn  8255:             }
1.26      raeburn  8256:         } else {
                   8257:             push(@{$changes{'cansearch'}},@cansearch);
1.23      raeburn  8258:         }
                   8259:     }
                   8260: 
                   8261:     if (ref($currdirsrch{'searchby'}) eq 'ARRAY') {
                   8262:         foreach my $by (@{$currdirsrch{'searchby'}}) {
                   8263:             if (!grep(/^\Q$by\E$/,@searchby)) {
                   8264:                 push(@{$changes{'searchby'}},$by);
                   8265:             }
                   8266:         }
                   8267:         foreach my $by (@searchby) {
                   8268:             if (!grep(/^\Q$by\E$/,@{$currdirsrch{'searchby'}})) {
                   8269:                 push(@{$changes{'searchby'}},$by);
                   8270:             }
                   8271:         }
                   8272:     } else {
                   8273:         push(@{$changes{'searchby'}},@searchby);
                   8274:     }
1.25      raeburn  8275: 
                   8276:     if (ref($currdirsrch{'searchtypes'}) eq 'ARRAY') {
                   8277:         foreach my $type (@{$currdirsrch{'searchtypes'}}) {
                   8278:             if (!grep(/^\Q$type\E$/,@searchtypes)) {
                   8279:                 push(@{$changes{'searchtypes'}},$type);
                   8280:             }
                   8281:         }
                   8282:         foreach my $type (@searchtypes) {
                   8283:             if (!grep(/^\Q$type\E$/,@{$currdirsrch{'searchtypes'}})) {
                   8284:                 push(@{$changes{'searchtypes'}},$type);
                   8285:             }
                   8286:         }
                   8287:     } else {
                   8288:         if (exists($currdirsrch{'searchtypes'})) {
                   8289:             foreach my $type (@searchtypes) {  
                   8290:                 if ($type ne $currdirsrch{'searchtypes'}) { 
                   8291:                     push(@{$changes{'searchtypes'}},$type);
                   8292:                 }
                   8293:             }
                   8294:             if (!grep(/^\Q$currdirsrch{'searchtypes'}\E/,@searchtypes)) {
                   8295:                 push(@{$changes{'searchtypes'}},$currdirsrch{'searchtypes'});
                   8296:             }   
                   8297:         } else {
                   8298:             push(@{$changes{'searchtypes'}},@searchtypes); 
                   8299:         }
                   8300:     }
                   8301: 
1.23      raeburn  8302:     my %dirsrch_hash =  (
                   8303:             directorysrch => { available => $env{'form.dirsrch_available'},
                   8304:                                cansearch => \@cansearch,
1.24      raeburn  8305:                                localonly => $env{'form.dirsrch_localonly'},
1.23      raeburn  8306:                                searchby => \@searchby,
1.25      raeburn  8307:                                searchtypes => \@searchtypes,
1.23      raeburn  8308:                              }
                   8309:             );
                   8310:     my $putresult = &Apache::lonnet::put_dom('configuration',\%dirsrch_hash,
                   8311:                                              $dom);
                   8312:     if ($putresult eq 'ok') {
                   8313:         if (exists($currdirsrch{'available'})) {
                   8314:              if ($currdirsrch{'available'} ne $env{'form.dirsrch_available'}) {
                   8315:                  $changes{'available'} = 1;
                   8316:              }
                   8317:         } else {
                   8318:             if ($env{'form.dirsrch_available'} eq '1') {
                   8319:                 $changes{'available'} = 1;
                   8320:             }
                   8321:         }
1.24      raeburn  8322:         if (exists($currdirsrch{'localonly'})) {
                   8323:              if ($currdirsrch{'localonly'} ne $env{'form.dirsrch_localonly'}) {
                   8324:                  $changes{'localonly'} = 1;
                   8325:              }
                   8326:         } else {
                   8327:             if ($env{'form.dirsrch_localonly'} eq '1') {
                   8328:                 $changes{'localonly'} = 1;
                   8329:             }
                   8330:         }
1.23      raeburn  8331:         if (keys(%changes) > 0) {
                   8332:             $resulttext = &mt('Changes made:').'<ul>';
                   8333:             if ($changes{'available'}) {
                   8334:                 $resulttext .= '<li>'.&mt("$title{'available'} set to: $offon[$env{'form.dirsrch_available'}]").'</li>';
                   8335:             }
1.24      raeburn  8336:             if ($changes{'localonly'}) {
                   8337:                 $resulttext .= '<li>'.&mt("$title{'localonly'} set to: $otherdoms[$env{'form.dirsrch_localonly'}]").'</li>';
                   8338:             }
                   8339: 
1.23      raeburn  8340:             if (ref($changes{'cansearch'}) eq 'ARRAY') {
                   8341:                 my $chgtext;
1.26      raeburn  8342:                 if (ref($usertypes) eq 'HASH') {
                   8343:                     if (keys(%{$usertypes}) > 0) {
                   8344:                         foreach my $type (@{$types}) {
                   8345:                             if (grep(/^\Q$type\E$/,@cansearch)) {
                   8346:                                 $chgtext .= $usertypes->{$type}.'; ';
                   8347:                             }
                   8348:                         }
                   8349:                         if (grep(/^default$/,@cansearch)) {
                   8350:                             $chgtext .= $othertitle;
                   8351:                         } else {
                   8352:                             $chgtext =~ s/\; $//;
                   8353:                         }
1.210     raeburn  8354:                         $resulttext .=
1.178     raeburn  8355:                             '<li>'.
                   8356:                             &mt("Users from domain '[_1]' permitted to search the institutional directory set to: [_2]",
                   8357:                                 '<span class="LC_cusr_emph">'.$dom.'</span>',$chgtext).
                   8358:                             '</li>';
1.23      raeburn  8359:                     }
                   8360:                 }
                   8361:             }
                   8362:             if (ref($changes{'searchby'}) eq 'ARRAY') {
                   8363:                 my ($searchtitles,$titleorder) = &sorted_searchtitles();
                   8364:                 my $chgtext;
                   8365:                 foreach my $type (@{$titleorder}) {
                   8366:                     if (grep(/^\Q$type\E$/,@searchby)) {
                   8367:                         if (defined($searchtitles->{$type})) {
                   8368:                             $chgtext .= $searchtitles->{$type}.'; ';
                   8369:                         }
                   8370:                     }
                   8371:                 }
                   8372:                 $chgtext =~ s/\; $//;
                   8373:                 $resulttext .= '<li>'.&mt("$title{'searchby'} set to: [_1]",$chgtext).'</li>';
                   8374:             }
1.25      raeburn  8375:             if (ref($changes{'searchtypes'}) eq 'ARRAY') {
                   8376:                 my ($srchtypes_desc,$srchtypeorder) = &sorted_searchtypes(); 
                   8377:                 my $chgtext;
                   8378:                 foreach my $type (@{$srchtypeorder}) {
                   8379:                     if (grep(/^\Q$type\E$/,@searchtypes)) {
                   8380:                         if (defined($srchtypes_desc->{$type})) {
                   8381:                             $chgtext .= $srchtypes_desc->{$type}.'; ';
                   8382:                         }
                   8383:                     }
                   8384:                 }
                   8385:                 $chgtext =~ s/\; $//;
1.178     raeburn  8386:                 $resulttext .= '<li>'.&mt($title{'searchtypes'}.' set to: "[_1]"',$chgtext).'</li>';
1.23      raeburn  8387:             }
                   8388:             $resulttext .= '</ul>';
                   8389:         } else {
                   8390:             $resulttext = &mt('No changes made to institution directory search settings');
                   8391:         }
                   8392:     } else {
                   8393:         $resulttext = '<span class="LC_error">'.
1.27      raeburn  8394:                       &mt('An error occurred: [_1]',$putresult).'</span>';
                   8395:     }
                   8396:     return $resulttext;
                   8397: }
                   8398: 
1.28      raeburn  8399: sub modify_contacts {
1.205     raeburn  8400:     my ($dom,$lastactref,%domconfig) = @_;
1.28      raeburn  8401:     my ($resulttext,%currsetting,%newsetting,%changes,%contacts_hash);
                   8402:     if (ref($domconfig{'contacts'}) eq 'HASH') {
                   8403:         foreach my $key (keys(%{$domconfig{'contacts'}})) {
                   8404:             $currsetting{$key} = $domconfig{'contacts'}{$key};
                   8405:         }
                   8406:     }
1.134     raeburn  8407:     my (%others,%to,%bcc);
1.28      raeburn  8408:     my @contacts = ('supportemail','adminemail');
1.102     raeburn  8409:     my @mailings = ('errormail','packagesmail','helpdeskmail','lonstatusmail',
1.203     raeburn  8410:                     'requestsmail','updatesmail','idconflictsmail');
                   8411:     my @toggles = ('reporterrors','reportupdates');
1.28      raeburn  8412:     foreach my $type (@mailings) {
                   8413:         @{$newsetting{$type}} = 
                   8414:             &Apache::loncommon::get_env_multiple('form.'.$type);
                   8415:         foreach my $item (@contacts) {
                   8416:             if (grep(/^\Q$item\E$/,@{$newsetting{$type}})) {
                   8417:                 $contacts_hash{contacts}{$type}{$item} = 1;
                   8418:             } else {
                   8419:                 $contacts_hash{contacts}{$type}{$item} = 0;
                   8420:             }
                   8421:         }  
                   8422:         $others{$type} = $env{'form.'.$type.'_others'};
                   8423:         $contacts_hash{contacts}{$type}{'others'} = $others{$type};
1.134     raeburn  8424:         if ($type eq 'helpdeskmail') {
                   8425:             $bcc{$type} = $env{'form.'.$type.'_bcc'};
                   8426:             $contacts_hash{contacts}{$type}{'bcc'} = $bcc{$type};
                   8427:         }
1.28      raeburn  8428:     }
                   8429:     foreach my $item (@contacts) {
                   8430:         $to{$item} = $env{'form.'.$item};
                   8431:         $contacts_hash{'contacts'}{$item} = $to{$item};
                   8432:     }
1.203     raeburn  8433:     foreach my $item (@toggles) {
                   8434:         if ($env{'form.'.$item} =~ /^(0|1)$/) {
                   8435:             $contacts_hash{'contacts'}{$item} = $env{'form.'.$item};
                   8436:         }
                   8437:     }
1.28      raeburn  8438:     if (keys(%currsetting) > 0) {
                   8439:         foreach my $item (@contacts) {
                   8440:             if ($to{$item} ne $currsetting{$item}) {
                   8441:                 $changes{$item} = 1;
                   8442:             }
                   8443:         }
                   8444:         foreach my $type (@mailings) {
                   8445:             foreach my $item (@contacts) {
                   8446:                 if (ref($currsetting{$type}) eq 'HASH') {
                   8447:                     if ($currsetting{$type}{$item} ne $contacts_hash{contacts}{$type}{$item}) {
                   8448:                         push(@{$changes{$type}},$item);
                   8449:                     }
                   8450:                 } else {
                   8451:                     push(@{$changes{$type}},@{$newsetting{$type}});
                   8452:                 }
                   8453:             }
                   8454:             if ($others{$type} ne $currsetting{$type}{'others'}) {
                   8455:                 push(@{$changes{$type}},'others');
                   8456:             }
1.134     raeburn  8457:             if ($type eq 'helpdeskmail') {   
                   8458:                 if ($bcc{$type} ne $currsetting{$type}{'bcc'}) {
                   8459:                     push(@{$changes{$type}},'bcc'); 
                   8460:                 }
                   8461:             }
1.28      raeburn  8462:         }
                   8463:     } else {
                   8464:         my %default;
                   8465:         $default{'supportemail'} = $Apache::lonnet::perlvar{'lonSupportEMail'};
                   8466:         $default{'adminemail'} = $Apache::lonnet::perlvar{'lonAdmEMail'};
                   8467:         $default{'errormail'} = 'adminemail';
                   8468:         $default{'packagesmail'} = 'adminemail';
                   8469:         $default{'helpdeskmail'} = 'supportemail';
1.89      raeburn  8470:         $default{'lonstatusmail'} = 'adminemail';
1.102     raeburn  8471:         $default{'requestsmail'} = 'adminemail';
1.190     raeburn  8472:         $default{'updatesmail'} = 'adminemail';
1.28      raeburn  8473:         foreach my $item (@contacts) {
                   8474:            if ($to{$item} ne $default{$item}) {
                   8475:               $changes{$item} = 1;
1.203     raeburn  8476:            }
1.28      raeburn  8477:         }
                   8478:         foreach my $type (@mailings) {
                   8479:             if ((@{$newsetting{$type}} != 1) || ($newsetting{$type}[0] ne $default{$type})) {
                   8480:                
                   8481:                 push(@{$changes{$type}},@{$newsetting{$type}});
                   8482:             }
                   8483:             if ($others{$type} ne '') {
                   8484:                 push(@{$changes{$type}},'others');
1.134     raeburn  8485:             }
                   8486:             if ($type eq 'helpdeskmail') {
                   8487:                 if ($bcc{$type} ne '') {
                   8488:                     push(@{$changes{$type}},'bcc');
                   8489:                 }
                   8490:             }
1.28      raeburn  8491:         }
                   8492:     }
1.203     raeburn  8493:     foreach my $item (@toggles) {
                   8494:         if (($env{'form.'.$item} == 1) && ($currsetting{$item} == 0)) {
                   8495:             $changes{$item} = 1;
                   8496:         } elsif ((!$env{'form.'.$item}) &&
                   8497:                  (($currsetting{$item} eq '') || ($currsetting{$item} == 1))) {
                   8498:             $changes{$item} = 1;
                   8499:         }
                   8500:     }
1.28      raeburn  8501:     my $putresult = &Apache::lonnet::put_dom('configuration',\%contacts_hash,
                   8502:                                              $dom);
                   8503:     if ($putresult eq 'ok') {
                   8504:         if (keys(%changes) > 0) {
1.205     raeburn  8505:             &Apache::loncommon::devalidate_domconfig_cache($dom);
1.212     raeburn  8506:             if (ref($lastactref) eq 'HASH') {
                   8507:                 $lastactref->{'domainconfig'} = 1;
                   8508:             }
1.28      raeburn  8509:             my ($titles,$short_titles)  = &contact_titles();
                   8510:             $resulttext = &mt('Changes made:').'<ul>';
                   8511:             foreach my $item (@contacts) {
                   8512:                 if ($changes{$item}) {
                   8513:                     $resulttext .= '<li>'.$titles->{$item}.
                   8514:                                     &mt(' set to: ').
                   8515:                                     '<span class="LC_cusr_emph">'.
                   8516:                                     $to{$item}.'</span></li>';
                   8517:                 }
                   8518:             }
                   8519:             foreach my $type (@mailings) {
                   8520:                 if (ref($changes{$type}) eq 'ARRAY') {
                   8521:                     $resulttext .= '<li>'.$titles->{$type}.': ';
                   8522:                     my @text;
                   8523:                     foreach my $item (@{$newsetting{$type}}) {
                   8524:                         push(@text,$short_titles->{$item});
                   8525:                     }
                   8526:                     if ($others{$type} ne '') {
                   8527:                         push(@text,$others{$type});
                   8528:                     }
                   8529:                     $resulttext .= '<span class="LC_cusr_emph">'.
1.134     raeburn  8530:                                    join(', ',@text).'</span>';
                   8531:                     if ($type eq 'helpdeskmail') {
                   8532:                         if ($bcc{$type} ne '') {
                   8533:                             $resulttext .= '&nbsp;'.&mt('with Bcc to').': <span class="LC_cusr_emph">'.$bcc{$type}.'</span>';
                   8534:                         }
                   8535:                     }
                   8536:                     $resulttext .= '</li>';
1.28      raeburn  8537:                 }
                   8538:             }
1.203     raeburn  8539:             my @offon = ('off','on');
                   8540:             if ($changes{'reporterrors'}) {
                   8541:                 $resulttext .= '<li>'.
                   8542:                                &mt('E-mail error reports to [_1] set to "'.
                   8543:                                    $offon[$env{'form.reporterrors'}].'".',
                   8544:                                    &Apache::loncommon::modal_link('http://loncapa.org/core.html',
                   8545:                                        &mt('LON-CAPA core group - MSU'),600,500)).
                   8546:                                '</li>';
                   8547:             }
                   8548:             if ($changes{'reportupdates'}) {
                   8549:                 $resulttext .= '<li>'.
                   8550:                                 &mt('E-mail record of completed LON-CAPA updates to [_1] set to "'.
                   8551:                                     $offon[$env{'form.reportupdates'}].'".',
                   8552:                                     &Apache::loncommon::modal_link('http://loncapa.org/core.html',
                   8553:                                         &mt('LON-CAPA core group - MSU'),600,500)).
                   8554:                                 '</li>';
                   8555:             }
1.28      raeburn  8556:             $resulttext .= '</ul>';
                   8557:         } else {
1.34      raeburn  8558:             $resulttext = &mt('No changes made to contact information');
1.28      raeburn  8559:         }
                   8560:     } else {
                   8561:         $resulttext = '<span class="LC_error">'.
                   8562:             &mt('An error occurred: [_1].',$putresult).'</span>';
                   8563:     }
                   8564:     return $resulttext;
                   8565: }
                   8566: 
                   8567: sub modify_usercreation {
1.27      raeburn  8568:     my ($dom,%domconfig) = @_;
1.224     raeburn  8569:     my ($resulttext,%curr_usercreation,%changes,%authallowed,%cancreate,%save_usercreate);
1.43      raeburn  8570:     my $warningmsg;
1.27      raeburn  8571:     if (ref($domconfig{'usercreation'}) eq 'HASH') {
                   8572:         foreach my $key (keys(%{$domconfig{'usercreation'}})) {
1.224     raeburn  8573:             if ($key eq 'cancreate') {
                   8574:                 if (ref($domconfig{'usercreation'}{$key}) eq 'HASH') {
                   8575:                     foreach my $item (keys(%{$domconfig{'usercreation'}{$key}})) {
                   8576:                         if (($item eq 'selfcreate') || ($item eq 'statustocreate') ||
                   8577:                             ($item eq 'captcha') || ($item eq 'recaptchakeys')) {
                   8578:                             $save_usercreate{$key}{$item} = $domconfig{'usercreation'}{$key}{$item};
                   8579:                         } else {
                   8580:                             $curr_usercreation{$key}{$item} = $domconfig{'usercreation'}{$key}{$item};
                   8581:                         }
                   8582:                     }
                   8583:                 }
                   8584:             } elsif ($key eq 'email_rule') {
                   8585:                 $save_usercreate{$key} = $domconfig{'usercreation'}{$key};
                   8586:             } else {
                   8587:                 $curr_usercreation{$key} = $domconfig{'usercreation'}{$key};
                   8588:             }
1.27      raeburn  8589:         }
                   8590:     }
                   8591:     my @username_rule = &Apache::loncommon::get_env_multiple('form.username_rule');
1.32      raeburn  8592:     my @id_rule = &Apache::loncommon::get_env_multiple('form.id_rule');
1.224     raeburn  8593:     my @contexts = ('author','course','requestcrs');
1.34      raeburn  8594:     foreach my $item(@contexts) {
1.224     raeburn  8595:         $cancreate{$item} = $env{'form.can_createuser_'.$item};
1.93      raeburn  8596:     }
1.34      raeburn  8597:     if (ref($curr_usercreation{'cancreate'}) eq 'HASH') {
                   8598:         foreach my $item (@contexts) {
1.224     raeburn  8599:             if ($curr_usercreation{'cancreate'}{$item} ne $cancreate{$item}) {
                   8600:                 push(@{$changes{'cancreate'}},$item);
1.50      raeburn  8601:             }
1.27      raeburn  8602:         }
1.34      raeburn  8603:     } elsif (ref($curr_usercreation{'cancreate'}) eq 'ARRAY') {
                   8604:         foreach my $item (@contexts) {
1.43      raeburn  8605:             if (!grep(/^\Q$item\E$/,@{$curr_usercreation{'cancreate'}})) {
1.34      raeburn  8606:                 if ($cancreate{$item} ne 'any') {
                   8607:                     push(@{$changes{'cancreate'}},$item);
                   8608:                 }
                   8609:             } else {
                   8610:                 if ($cancreate{$item} ne 'none') {
                   8611:                     push(@{$changes{'cancreate'}},$item);
                   8612:                 }
1.27      raeburn  8613:             }
                   8614:         }
                   8615:     } else {
1.43      raeburn  8616:         foreach my $item (@contexts)  {
1.34      raeburn  8617:             push(@{$changes{'cancreate'}},$item);
                   8618:         }
1.27      raeburn  8619:     }
1.34      raeburn  8620: 
1.27      raeburn  8621:     if (ref($curr_usercreation{'username_rule'}) eq 'ARRAY') {
                   8622:         foreach my $type (@{$curr_usercreation{'username_rule'}}) {
                   8623:             if (!grep(/^\Q$type\E$/,@username_rule)) {
                   8624:                 push(@{$changes{'username_rule'}},$type);
                   8625:             }
                   8626:         }
                   8627:         foreach my $type (@username_rule) {
                   8628:             if (!grep(/^\Q$type\E$/,@{$curr_usercreation{'username_rule'}})) {
                   8629:                 push(@{$changes{'username_rule'}},$type);
                   8630:             }
                   8631:         }
                   8632:     } else {
                   8633:         push(@{$changes{'username_rule'}},@username_rule);
                   8634:     }
                   8635: 
1.32      raeburn  8636:     if (ref($curr_usercreation{'id_rule'}) eq 'ARRAY') {
                   8637:         foreach my $type (@{$curr_usercreation{'id_rule'}}) {
                   8638:             if (!grep(/^\Q$type\E$/,@id_rule)) {
                   8639:                 push(@{$changes{'id_rule'}},$type);
                   8640:             }
                   8641:         }
                   8642:         foreach my $type (@id_rule) {
                   8643:             if (!grep(/^\Q$type\E$/,@{$curr_usercreation{'id_rule'}})) {
                   8644:                 push(@{$changes{'id_rule'}},$type);
                   8645:             }
                   8646:         }
                   8647:     } else {
                   8648:         push(@{$changes{'id_rule'}},@id_rule);
                   8649:     }
                   8650: 
1.43      raeburn  8651:     my @authen_contexts = ('author','course','domain');
1.28      raeburn  8652:     my @authtypes = ('int','krb4','krb5','loc');
                   8653:     my %authhash;
1.43      raeburn  8654:     foreach my $item (@authen_contexts) {
1.28      raeburn  8655:         my @authallowed =  &Apache::loncommon::get_env_multiple('form.'.$item.'_auth');
                   8656:         foreach my $auth (@authtypes) {
                   8657:             if (grep(/^\Q$auth\E$/,@authallowed)) {
                   8658:                 $authhash{$item}{$auth} = 1;
                   8659:             } else {
                   8660:                 $authhash{$item}{$auth} = 0;
                   8661:             }
                   8662:         }
                   8663:     }
                   8664:     if (ref($curr_usercreation{'authtypes'}) eq 'HASH') {
1.43      raeburn  8665:         foreach my $item (@authen_contexts) {
1.28      raeburn  8666:             if (ref($curr_usercreation{'authtypes'}{$item}) eq 'HASH') {
                   8667:                 foreach my $auth (@authtypes) {
                   8668:                     if ($authhash{$item}{$auth} ne $curr_usercreation{'authtypes'}{$item}{$auth}) {
                   8669:                         push(@{$changes{'authtypes'}},$item);
                   8670:                         last;
                   8671:                     }
                   8672:                 }
                   8673:             }
                   8674:         }
                   8675:     } else {
1.43      raeburn  8676:         foreach my $item (@authen_contexts) {
1.28      raeburn  8677:             push(@{$changes{'authtypes'}},$item);
                   8678:         }
                   8679:     }
                   8680: 
1.224     raeburn  8681:     $save_usercreate{'cancreate'}{'course'} = $cancreate{'course'}; 
                   8682:     $save_usercreate{'cancreate'}{'author'} = $cancreate{'author'};
                   8683:     $save_usercreate{'cancreate'}{'requestcrs'} = $cancreate{'requestcrs'};
                   8684:     $save_usercreate{'id_rule'} = \@id_rule;
                   8685:     $save_usercreate{'username_rule'} = \@username_rule,
                   8686:     $save_usercreate{'authtypes'} = \%authhash;
                   8687: 
1.27      raeburn  8688:     my %usercreation_hash =  (
1.224     raeburn  8689:         usercreation     => \%save_usercreate,
                   8690:     );
1.27      raeburn  8691: 
                   8692:     my $putresult = &Apache::lonnet::put_dom('configuration',\%usercreation_hash,
                   8693:                                              $dom);
1.50      raeburn  8694: 
1.224     raeburn  8695:     if ($putresult eq 'ok') {
                   8696:         if (keys(%changes) > 0) {
                   8697:             $resulttext = &mt('Changes made:').'<ul>';
                   8698:             if (ref($changes{'cancreate'}) eq 'ARRAY') {
                   8699:                 my %lt = &usercreation_types();
                   8700:                 foreach my $type (@{$changes{'cancreate'}}) {
                   8701:                     my $chgtext = $lt{$type}.', ';
                   8702:                     if ($cancreate{$type} eq 'none') {
                   8703:                         $chgtext .= &mt('creation of new users is not permitted, except by a Domain Coordinator.');
                   8704:                     } elsif ($cancreate{$type} eq 'any') {
                   8705:                         $chgtext .= &mt('creation of new users is permitted for both institutional and non-institutional usernames.');
                   8706:                     } elsif ($cancreate{$type} eq 'official') {
                   8707:                         $chgtext .= &mt('creation of new users is only permitted for institutional usernames.');
                   8708:                     } elsif ($cancreate{$type} eq 'unofficial') {
                   8709:                         $chgtext .= &mt('creation of new users is only permitted for non-institutional usernames.');
                   8710:                     }
                   8711:                     $resulttext .= '<li>'.$chgtext.'</li>';
                   8712:                 }
                   8713:             }
                   8714:             if (ref($changes{'username_rule'}) eq 'ARRAY') {
                   8715:                 my ($rules,$ruleorder) = 
                   8716:                     &Apache::lonnet::inst_userrules($dom,'username');
                   8717:                 my $chgtext = '<ul>';
                   8718:                 foreach my $type (@username_rule) {
                   8719:                     if (ref($rules->{$type}) eq 'HASH') {
                   8720:                         $chgtext .= '<li>'.$rules->{$type}{'name'}.'</li>';
                   8721:                     }
                   8722:                 }
                   8723:                 $chgtext .= '</ul>';
                   8724:                 if (@username_rule > 0) {
                   8725:                     $resulttext .= '<li>'.&mt('Usernames with the following formats are restricted to verified users in the institutional directory: ').$chgtext.'</li>';     
                   8726:                 } else {
                   8727:                     $resulttext .= '<li>'.&mt('There are now no username formats restricted to verified users in the institutional directory.').'</li>'; 
                   8728:                 }
                   8729:             }
                   8730:             if (ref($changes{'id_rule'}) eq 'ARRAY') {
                   8731:                 my ($idrules,$idruleorder) = 
                   8732:                     &Apache::lonnet::inst_userrules($dom,'id');
                   8733:                 my $chgtext = '<ul>';
                   8734:                 foreach my $type (@id_rule) {
                   8735:                     if (ref($idrules->{$type}) eq 'HASH') {
                   8736:                         $chgtext .= '<li>'.$idrules->{$type}{'name'}.'</li>';
                   8737:                     }
                   8738:                 }
                   8739:                 $chgtext .= '</ul>';
                   8740:                 if (@id_rule > 0) {
                   8741:                     $resulttext .= '<li>'.&mt('IDs with the following formats are restricted to verified users in the institutional directory: ').$chgtext.'</li>';
                   8742:                 } else {
                   8743:                     $resulttext .= '<li>'.&mt('There are now no ID formats restricted to verified users in the institutional directory.').'</li>';
                   8744:                 }
                   8745:             }
                   8746:             my %authname = &authtype_names();
                   8747:             my %context_title = &context_names();
                   8748:             if (ref($changes{'authtypes'}) eq 'ARRAY') {
                   8749:                 my $chgtext = '<ul>';
                   8750:                 foreach my $type (@{$changes{'authtypes'}}) {
                   8751:                     my @allowed;
                   8752:                     $chgtext .= '<li><span class="LC_cusr_emph">'.$context_title{$type}.'</span> - '.&mt('assignable authentication types: ');
                   8753:                     foreach my $auth (@authtypes) {
                   8754:                         if ($authhash{$type}{$auth}) {
                   8755:                             push(@allowed,$authname{$auth});
                   8756:                         }
                   8757:                     }
                   8758:                     if (@allowed > 0) {
                   8759:                         $chgtext .= join(', ',@allowed).'</li>';
                   8760:                     } else {
                   8761:                         $chgtext .= &mt('none').'</li>';
                   8762:                     }
                   8763:                 }
                   8764:                 $chgtext .= '</ul>';
                   8765:                 $resulttext .= '<li>'.&mt('Authentication types available for assignment to new users').'<br />'.$chgtext;
                   8766:                 $resulttext .= '</li>';
                   8767:             }
                   8768:             $resulttext .= '</ul>';
                   8769:         } else {
                   8770:             $resulttext = &mt('No changes made to user creation settings');
                   8771:         }
                   8772:     } else {
                   8773:         $resulttext = '<span class="LC_error">'.
                   8774:             &mt('An error occurred: [_1]',$putresult).'</span>';
                   8775:     }
                   8776:     if ($warningmsg ne '') {
                   8777:         $resulttext .= '<br /><span class="LC_warning">'.$warningmsg.'</span><br />';
                   8778:     }
                   8779:     return $resulttext;
                   8780: }
                   8781: 
                   8782: sub modify_selfcreation {
                   8783:     my ($dom,%domconfig) = @_;
                   8784:     my ($resulttext,$warningmsg,%curr_usercreation,%curr_usermodify,%changes,%cancreate);
                   8785:     my (%save_usercreate,%save_usermodify);
1.228     raeburn  8786:     my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($dom);
                   8787:     if (ref($types) eq 'ARRAY') {
                   8788:         $usertypes->{'default'} = $othertitle;
                   8789:         push(@{$types},'default');
                   8790:     }
1.224     raeburn  8791: #
                   8792: # Retrieve current domain configuration for self-creation of usernames from $domconfig{'usercreation'}.
                   8793: #
                   8794:     if (ref($domconfig{'usercreation'}) eq 'HASH') {
                   8795:         foreach my $key (keys(%{$domconfig{'usercreation'}})) {
                   8796:             if ($key eq 'cancreate') {
                   8797:                 if (ref($domconfig{'usercreation'}{$key}) eq 'HASH') {
                   8798:                     foreach my $item (keys(%{$domconfig{'usercreation'}{$key}})) {
                   8799:                         if (($item eq 'selfcreate') || ($item eq 'statustocreate') ||
                   8800:                             ($item eq 'captcha') || ($item eq 'recaptchakeys') || 
1.236     raeburn  8801:                             ($item eq 'emailusername') || ($item eq 'notify') ||
1.240     raeburn  8802:                             ($item eq 'selfcreateprocessing') || ($item eq 'shibenv')) {
1.224     raeburn  8803:                             $curr_usercreation{$key}{$item} = $domconfig{'usercreation'}{$key}{$item};
                   8804:                         } else {
                   8805:                             $save_usercreate{$key}{$item} = $domconfig{'usercreation'}{$key}{$item};
                   8806:                         }
                   8807:                     }
                   8808:                 }
                   8809:             } elsif ($key eq 'email_rule') {
                   8810:                 $curr_usercreation{$key} = $domconfig{'usercreation'}{$key};
                   8811:             } else {
                   8812:                 $save_usercreate{$key} = $domconfig{'usercreation'}{$key};
                   8813:             }
                   8814:         }
                   8815:     }
                   8816: #
                   8817: # Retrieve current domain configuration for self-creation of usernames from $domconfig{'usermodification'}.
                   8818: #
                   8819:     if (ref($domconfig{'usermodification'}) eq 'HASH') {
                   8820:         foreach my $key (keys(%{$domconfig{'usermodification'}})) {
                   8821:             if ($key eq 'selfcreate') {
                   8822:                 $curr_usermodify{$key} = $domconfig{'usermodification'}{$key};
                   8823:             } else {
                   8824:                 $save_usermodify{$key} = $domconfig{'usermodification'}{$key};
                   8825:             }
                   8826:         }
                   8827:     }
                   8828: 
                   8829:     my @contexts = ('selfcreate');
                   8830:     @{$cancreate{'selfcreate'}} = ();
                   8831:     %{$cancreate{'emailusername'}} = ();
                   8832:     @{$cancreate{'statustocreate'}} = ();
1.236     raeburn  8833:     %{$cancreate{'selfcreateprocessing'}} = ();
1.240     raeburn  8834:     %{$cancreate{'shibenv'}} = ();
1.50      raeburn  8835:     my %selfcreatetypes = (
                   8836:                              sso   => 'users authenticated by institutional single sign on',
                   8837:                              login => 'users authenticated by institutional log-in',
1.236     raeburn  8838:                              email => 'users who provide a valid e-mail address for use as username',
1.50      raeburn  8839:                           );
1.224     raeburn  8840: #
                   8841: # Populate $cancreate{'selfcreate'} array reference with types of user, for which self-creation of user accounts
                   8842: # is permitted.
                   8843: #
1.236     raeburn  8844: 
                   8845:     my @statuses;
                   8846:     if (ref($domconfig{'inststatus'}) eq 'HASH') {
                   8847:         if (ref($domconfig{'inststatus'}{'inststatusguest'}) eq 'ARRAY') {
                   8848:             @statuses = @{$domconfig{'inststatus'}{'inststatusguest'}};
                   8849:         }
                   8850:     }
                   8851:     push(@statuses,'default');
                   8852: 
1.228     raeburn  8853:     foreach my $item ('login','sso','email') {
1.224     raeburn  8854:         if ($item eq 'email') {
1.236     raeburn  8855:             if ($env{'form.cancreate_email'}) {
1.224     raeburn  8856:                 push(@{$cancreate{'selfcreate'}},'email');
1.236     raeburn  8857:                 push(@contexts,'selfcreateprocessing');
                   8858:                 foreach my $type (@statuses) {
                   8859:                     if ($type eq 'default') {
                   8860:                         $cancreate{'selfcreateprocessing'}{$type} = $env{'form.cancreate_emailprocess'};
                   8861:                     } else { 
                   8862:                         $cancreate{'selfcreateprocessing'}{$type} = $env{'form.cancreate_emailprocess_'.$type};
                   8863:                     }
                   8864:                 }
1.224     raeburn  8865:             }
                   8866:         } else {
                   8867:             if ($env{'form.cancreate_'.$item}) {
                   8868:                 push(@{$cancreate{'selfcreate'}},$item);
                   8869:             }
                   8870:         }
                   8871:     }
                   8872:     my (@email_rule,%userinfo,%savecaptcha);
                   8873:     my ($infofields,$infotitles) = &Apache::loncommon::emailusername_info();
                   8874: #
1.228     raeburn  8875: # Populate $cancreate{'emailusername'}{$type} hash ref with information fields (if new user will provide data
                   8876: # value set to one), if self-creation with e-mail address permitted, where $type is user type: faculty, staff, student etc.
1.224     raeburn  8877: #
1.236     raeburn  8878: 
1.244     raeburn  8879:     if ($env{'form.cancreate_email'}) {
1.228     raeburn  8880:         push(@contexts,'emailusername');
                   8881:         if (ref($types) eq 'ARRAY') {
                   8882:             foreach my $type (@{$types}) {
                   8883:                 if (ref($infofields) eq 'ARRAY') {
                   8884:                     foreach my $field (@{$infofields}) {
                   8885:                         if ($env{'form.canmodify_emailusername_'.$type.'_'.$field} =~ /^(required|optional)$/) {
                   8886:                             $cancreate{'emailusername'}{$type}{$field} = $1;
                   8887:                         }
                   8888:                     }
1.224     raeburn  8889:                 }
                   8890:             }
                   8891:         }
                   8892: #
                   8893: # Populate $cancreate{'notify'} hash ref with names of Domain Coordinators who are to be notified of
                   8894: # queued requests for self-creation of account using e-mail address as username
                   8895: #
                   8896: 
                   8897:         my @approvalnotify = &Apache::loncommon::get_env_multiple('form.selfcreationnotifyapproval');
                   8898:         @approvalnotify = sort(@approvalnotify);
                   8899:         $cancreate{'notify'}{'approval'} = join(',',@approvalnotify);
                   8900:         if (ref($curr_usercreation{'cancreate'}) eq 'HASH') {
                   8901:             if (ref($curr_usercreation{'cancreate'}{'notify'}) eq 'HASH') {
                   8902:                 if ($curr_usercreation{'cancreate'}{'notify'}{'approval'} ne $cancreate{'notify'}{'approval'}) {
                   8903:                     push(@{$changes{'cancreate'}},'notify');
                   8904:                 }
                   8905:             } else {
                   8906:                 if ($cancreate{'notify'}{'approval'}) {
                   8907:                     push(@{$changes{'cancreate'}},'notify');
                   8908:                 }
                   8909:             }
                   8910:         } elsif ($cancreate{'notify'}{'approval'}) {
                   8911:             push(@{$changes{'cancreate'}},'notify');
                   8912:         }
                   8913: 
                   8914: #
                   8915: # Retrieve rules (if any) governing types of e-mail address which may be used as a username
                   8916: #
                   8917:         @email_rule = &Apache::loncommon::get_env_multiple('form.email_rule');
                   8918:         &process_captcha('cancreate',\%changes,\%savecaptcha,$curr_usercreation{'cancreate'});
                   8919:         if (ref($curr_usercreation{'email_rule'}) eq 'ARRAY') {
                   8920:             if (@{$curr_usercreation{'email_rule'}} > 0) {
                   8921:                 foreach my $type (@{$curr_usercreation{'email_rule'}}) {
                   8922:                     if (!grep(/^\Q$type\E$/,@email_rule)) {
                   8923:                         push(@{$changes{'email_rule'}},$type);
                   8924:                     }
                   8925:                 }
                   8926:             }
                   8927:             if (@email_rule > 0) {
                   8928:                 foreach my $type (@email_rule) {
                   8929:                     if (!grep(/^\Q$type\E$/,@{$curr_usercreation{'email_rule'}})) {
                   8930:                         push(@{$changes{'email_rule'}},$type);
                   8931:                     }
                   8932:                 }
                   8933:             }
                   8934:         } elsif (@email_rule > 0) {
                   8935:             push(@{$changes{'email_rule'}},@email_rule);
                   8936:         }
                   8937:     }
                   8938: #  
1.236     raeburn  8939: # Check if domain default is set appropriately, if self-creation of accounts is to be available for
1.224     raeburn  8940: # institutional log-in.
                   8941: #
                   8942:     if (grep(/^login$/,@{$cancreate{'selfcreate'}})) {
                   8943:         my %domdefaults = &Apache::lonnet::get_domain_defaults($dom,1);
                   8944:         if (!((($domdefaults{'auth_def'} =~/^krb/) && ($domdefaults{'auth_arg_def'} ne '')) || 
                   8945:                ($domdefaults{'auth_def'} eq 'localauth'))) {
                   8946:             $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.').' '.
                   8947:                           &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.');
                   8948:         }
                   8949:     }
                   8950:     my @fields = ('lastname','firstname','middlename','generation',
                   8951:                   'permanentemail','id');
1.240     raeburn  8952:     my @shibfields = (@fields,'inststatus');
1.224     raeburn  8953:     my %fieldtitles = &Apache::loncommon::personal_data_fieldtitles();
                   8954: #
                   8955: # Where usernames may created for institutional log-in and/or institutional single sign on:
                   8956: # (a) populate $cancreate{'statustocreate'} array reference with institutional status types who
                   8957: # may self-create accounts 
                   8958: # (b) populate $save_usermodify{'selfcreate'} hash reference with status types, and information fields
                   8959: # which the user may supply, if institutional data is unavailable.
                   8960: #
                   8961:     if (($env{'form.cancreate_login'}) || ($env{'form.cancreate_sso'})) {
                   8962:         if (ref($types) eq 'ARRAY') {
1.228     raeburn  8963:             if (@{$types} > 1) {
1.224     raeburn  8964:                 @{$cancreate{'statustocreate'}} = &Apache::loncommon::get_env_multiple('form.statustocreate');
                   8965:                 push(@contexts,'statustocreate');
                   8966:             } else {
                   8967:                 undef($cancreate{'statustocreate'});
                   8968:             } 
                   8969:             foreach my $type (@{$types}) {
                   8970:                 my @modifiable =  &Apache::loncommon::get_env_multiple('form.canmodify_'.$type);
                   8971:                 foreach my $field (@fields) {
                   8972:                     if (grep(/^\Q$field\E$/,@modifiable)) {
                   8973:                         $save_usermodify{'selfcreate'}{$type}{$field} = 1;
                   8974:                     } else {
                   8975:                         $save_usermodify{'selfcreate'}{$type}{$field} = 0;
                   8976:                     }
                   8977:                 }
                   8978:             }
                   8979:             if (ref($curr_usermodify{'selfcreate'}) eq 'HASH') {
                   8980:                 foreach my $type (@{$types}) {
                   8981:                     if (ref($curr_usermodify{'selfcreate'}{$type}) eq 'HASH') {
                   8982:                         foreach my $field (@fields) {
                   8983:                             if ($save_usermodify{'selfcreate'}{$type}{$field} ne
                   8984:                                 $curr_usermodify{'selfcreate'}{$type}{$field}) {
                   8985:                                 push(@{$changes{'selfcreate'}},$type);
                   8986:                                 last;
                   8987:                             }
                   8988:                         }
                   8989:                     }
                   8990:                 }
                   8991:             } else {
                   8992:                 foreach my $type (@{$types}) {
                   8993:                     push(@{$changes{'selfcreate'}},$type);
                   8994:                 }
                   8995:             }
                   8996:         }
1.240     raeburn  8997:         foreach my $field (@shibfields) {
                   8998:             if ($env{'form.shibenv_'.$field} ne '') {
                   8999:                 $cancreate{'shibenv'}{$field} = $env{'form.shibenv_'.$field};
                   9000:             }
                   9001:         }
                   9002:         if (ref($curr_usercreation{'cancreate'}) eq 'HASH') {
                   9003:             if (ref($curr_usercreation{'cancreate'}{'shibenv'}) eq 'HASH') {
                   9004:                 foreach my $field (@shibfields) {
                   9005:                     if ($env{'form.shibenv_'.$field} ne $curr_usercreation{'cancreate'}{'shibenv'}{$field}) {
                   9006:                         push(@{$changes{'cancreate'}},'shibenv');
                   9007:                     }
                   9008:                 }
                   9009:             } else {
                   9010:                 foreach my $field (@shibfields) {
                   9011:                     if ($env{'form.shibenv_'.$field}) {
                   9012:                         push(@{$changes{'cancreate'}},'shibenv');
                   9013:                         last;
                   9014:                     }
                   9015:                 }
                   9016:             }
                   9017:         }
1.224     raeburn  9018:     }
                   9019:     foreach my $item (@contexts) {
                   9020:         if (ref($curr_usercreation{'cancreate'}{$item}) eq 'ARRAY') {
                   9021:             foreach my $curr (@{$curr_usercreation{'cancreate'}{$item}}) {
                   9022:                 if (ref($cancreate{$item}) eq 'ARRAY') {
                   9023:                     if (!grep(/^$curr$/,@{$cancreate{$item}})) {
                   9024:                         if (!grep(/^$item$/,@{$changes{'cancreate'}})) {
                   9025:                             push(@{$changes{'cancreate'}},$item);
                   9026:                         }
                   9027:                     }
                   9028:                 }
                   9029:             }
                   9030:             if (ref($cancreate{$item}) eq 'ARRAY') {
                   9031:                 foreach my $type (@{$cancreate{$item}}) {
                   9032:                     if (!grep(/^$type$/,@{$curr_usercreation{'cancreate'}{$item}})) {
                   9033:                         if (!grep(/^$item$/,@{$changes{'cancreate'}})) {
                   9034:                             push(@{$changes{'cancreate'}},$item);
                   9035:                         }
                   9036:                     }
                   9037:                 }
                   9038:             }
                   9039:         } elsif (ref($curr_usercreation{'cancreate'}{$item}) eq 'HASH') {
                   9040:             if (ref($cancreate{$item}) eq 'HASH') {
                   9041:                 foreach my $curr (keys(%{$curr_usercreation{'cancreate'}{$item}})) {
1.228     raeburn  9042:                     if (ref($curr_usercreation{'cancreate'}{$item}{$curr}) eq 'HASH') {
                   9043:                         foreach my $field (keys(%{$curr_usercreation{'cancreate'}{$item}{$curr}})) {
                   9044:                             unless ($curr_usercreation{'cancreate'}{$item}{$curr}{$field} eq $cancreate{$item}{$curr}{$field}) {
                   9045:                                 if (!grep(/^$item$/,@{$changes{'cancreate'}})) {
                   9046:                                     push(@{$changes{'cancreate'}},$item);
                   9047:                                 }
                   9048:                             }
                   9049:                         }
1.236     raeburn  9050:                     } elsif ($item eq 'selfcreateprocessing') {
                   9051:                         if ($cancreate{$item}{$curr} ne $curr_usercreation{'cancreate'}{$item}{$curr}) {
                   9052:                             if (!grep(/^$item$/,@{$changes{'cancreate'}})) {
                   9053:                                 push(@{$changes{'cancreate'}},$item);
                   9054:                             }
                   9055:                         }
1.228     raeburn  9056:                     } else {
                   9057:                         if (!$cancreate{$item}{$curr}) {
                   9058:                             if (!grep(/^$item$/,@{$changes{'cancreate'}})) {
                   9059:                                 push(@{$changes{'cancreate'}},$item);
                   9060:                             }
1.224     raeburn  9061:                         }
                   9062:                     }
                   9063:                 }
                   9064:                 foreach my $field (keys(%{$cancreate{$item}})) {
1.228     raeburn  9065:                     if (ref($cancreate{$item}{$field}) eq 'HASH') {
                   9066:                         foreach my $inner (keys(%{$cancreate{$item}{$field}})) {
                   9067:                             if (ref($curr_usercreation{'cancreate'}{$item}{$field}) eq 'HASH') {
                   9068:                                 unless ($curr_usercreation{'cancreate'}{$item}{$field}{$inner} eq $cancreate{$item}{$field}{$inner}) {
                   9069:                                     if (!grep(/^$item$/,@{$changes{'cancreate'}})) {
                   9070:                                         push(@{$changes{'cancreate'}},$item);
                   9071:                                     }
                   9072:                                 }
                   9073:                             } else {
                   9074:                                 if (!grep(/^$item$/,@{$changes{'cancreate'}})) {
                   9075:                                     push(@{$changes{'cancreate'}},$item);
                   9076:                                 }
                   9077:                             }
                   9078:                         }
1.236     raeburn  9079:                     } elsif ($item eq 'selfcreateprocessing') {
                   9080:                         if ($cancreate{$item}{$field} ne $curr_usercreation{'cancreate'}{$item}{$field}) {
                   9081:                             if (!grep(/^$item$/,@{$changes{'cancreate'}})) {
                   9082:                                 push(@{$changes{'cancreate'}},$item);
                   9083:                             }
                   9084:                         }
1.228     raeburn  9085:                     } else {
                   9086:                         if (!$curr_usercreation{'cancreate'}{$item}{$field}) {
                   9087:                             if (!grep(/^$item$/,@{$changes{'cancreate'}})) {
                   9088:                                 push(@{$changes{'cancreate'}},$item);
                   9089:                             }
1.224     raeburn  9090:                         }
                   9091:                     }
                   9092:                 }
                   9093:             }
                   9094:         } elsif ($curr_usercreation{'cancreate'}{$item}) {
                   9095:             if (ref($cancreate{$item}) eq 'ARRAY') {
                   9096:                 if (!grep(/^\Q$curr_usercreation{'cancreate'}{$item}\E$/,@{$cancreate{$item}})) {
                   9097:                     if (!grep(/^$item$/,@{$changes{'cancreate'}})) {
                   9098:                         push(@{$changes{'cancreate'}},$item);
                   9099:                     }
                   9100:                 }
                   9101:             } elsif (ref($cancreate{$item}) eq 'HASH') {
                   9102:                 if (!$cancreate{$item}{$curr_usercreation{'cancreate'}{$item}}) {
                   9103:                     if (!grep(/^$item$/,@{$changes{'cancreate'}})) {
                   9104:                         push(@{$changes{'cancreate'}},$item);
                   9105:                     }
                   9106:                 }
                   9107:             }
                   9108:         } elsif ($item eq 'emailusername') {
1.228     raeburn  9109:             if (ref($cancreate{$item}) eq 'HASH') {
                   9110:                 foreach my $type (keys(%{$cancreate{$item}})) {
                   9111:                     if (ref($cancreate{$item}{$type}) eq 'HASH') {
                   9112:                         foreach my $field (keys(%{$cancreate{$item}{$type}})) {
                   9113:                             if ($cancreate{$item}{$type}{$field}) {
                   9114:                                 if (!grep(/^$item$/,@{$changes{'cancreate'}})) {
                   9115:                                     push(@{$changes{'cancreate'}},$item);
                   9116:                                 }
                   9117:                                 last;
                   9118:                             }
                   9119:                         }
                   9120:                     }
                   9121:                 }
1.224     raeburn  9122:             }
                   9123:         }
                   9124:     }
                   9125: #
                   9126: # Populate %save_usercreate hash with updates to self-creation configuration.
                   9127: #
                   9128:     $save_usercreate{'cancreate'}{'captcha'} = $savecaptcha{'captcha'};
                   9129:     $save_usercreate{'cancreate'}{'recaptchakeys'} = $savecaptcha{'recaptchakeys'};
                   9130:     $save_usercreate{'cancreate'}{'selfcreate'} = $cancreate{'selfcreate'};
                   9131:     if (ref($cancreate{'notify'}) eq 'HASH') {
                   9132:         $save_usercreate{'cancreate'}{'notify'} = $cancreate{'notify'};
                   9133:     }
1.236     raeburn  9134:     if (ref($cancreate{'selfcreateprocessing'}) eq 'HASH') {
                   9135:         $save_usercreate{'cancreate'}{'selfcreateprocessing'} = $cancreate{'selfcreateprocessing'};
                   9136:     }
1.224     raeburn  9137:     if (ref($cancreate{'statustocreate'}) eq 'ARRAY') {
                   9138:         $save_usercreate{'cancreate'}{'statustocreate'} = $cancreate{'statustocreate'};
                   9139:     }
1.240     raeburn  9140:     if (ref($cancreate{'shibenv'}) eq 'HASH') {
                   9141:         $save_usercreate{'cancreate'}{'shibenv'} = $cancreate{'shibenv'};
                   9142:     }
1.224     raeburn  9143:     $save_usercreate{'cancreate'}{'emailusername'} = $cancreate{'emailusername'};
                   9144:     $save_usercreate{'emailrule'} = \@email_rule;
                   9145: 
                   9146:     my %userconfig_hash = (
                   9147:             usercreation     => \%save_usercreate,
                   9148:             usermodification => \%save_usermodify,
                   9149:     );
                   9150:     my $putresult = &Apache::lonnet::put_dom('configuration',\%userconfig_hash,
                   9151:                                              $dom);
                   9152: #
                   9153: # Accumulate details of changes to domain cofiguration for self-creation of usernames in $resulttext
                   9154: #
1.27      raeburn  9155:     if ($putresult eq 'ok') {
                   9156:         if (keys(%changes) > 0) {
                   9157:             $resulttext = &mt('Changes made:').'<ul>';
                   9158:             if (ref($changes{'cancreate'}) eq 'ARRAY') {
1.224     raeburn  9159:                 my %lt = &selfcreation_types();
1.34      raeburn  9160:                 foreach my $type (@{$changes{'cancreate'}}) {
1.100     raeburn  9161:                     my $chgtext;
1.45      raeburn  9162:                     if ($type eq 'selfcreate') {
1.50      raeburn  9163:                         if (@{$cancreate{$type}} == 0) {
1.224     raeburn  9164:                             $chgtext .= &mt('Self creation of a new user account is not permitted.');
1.50      raeburn  9165:                         } else {
1.224     raeburn  9166:                             $chgtext .= &mt('Self-creation of a new account is permitted for:').
                   9167:                                         '<ul>';
1.50      raeburn  9168:                             foreach my $case (@{$cancreate{$type}}) {
                   9169:                                 $chgtext .= '<li>'.$selfcreatetypes{$case}.'</li>';
                   9170:                             }
                   9171:                             $chgtext .= '</ul>';
1.100     raeburn  9172:                             if (ref($cancreate{$type}) eq 'ARRAY') {
                   9173:                                 if (grep(/^(login|sso)$/,@{$cancreate{$type}})) {
                   9174:                                     if (ref($cancreate{'statustocreate'}) eq 'ARRAY') {
                   9175:                                         if (@{$cancreate{'statustocreate'}} == 0) {
1.224     raeburn  9176:                                             $chgtext .= '<br />'.
                   9177:                                                         '<span class="LC_warning">'.
                   9178:                                                         &mt("However, no institutional affiliations (including 'other') are currently permitted to create accounts.").
                   9179:                                                         '</span>';
1.100     raeburn  9180:                                         }
                   9181:                                     }
                   9182:                                 }
                   9183:                             }
1.43      raeburn  9184:                         }
1.240     raeburn  9185:                     } elsif ($type eq 'shibenv') {
                   9186:                         if (keys(%{$cancreate{$type}}) == 0) {
                   9187:                             $chgtext .= &mt('Shibboleth-autheticated user does not use environment variables to set user information'); 
                   9188:                         } else {
                   9189:                             $chgtext .= &mt('Shibboleth-autheticated user information set from environment variables, as follows:').
                   9190:                                         '<ul>';
                   9191:                             foreach my $field (@shibfields) {
                   9192:                                 next if ($cancreate{$type}{$field} eq '');
                   9193:                                 if ($field eq 'inststatus') {
                   9194:                                     $chgtext .= '<li>'.&mt('Institutional status').' -- '.$cancreate{$type}{$field}.'</li>';
                   9195:                                 } else {
                   9196:                                     $chgtext .= '<li>'.$fieldtitles{$field}.' -- '.$cancreate{$type}{$field}.'</li>';
                   9197:                                 }
                   9198:                             }
                   9199:                             $chgtext .= '</ul>';
                   9200:                         }  
1.93      raeburn  9201:                     } elsif ($type eq 'statustocreate') {
1.96      raeburn  9202:                         if ((ref($cancreate{'selfcreate'}) eq 'ARRAY') &&
                   9203:                             (ref($cancreate{'statustocreate'}) eq 'ARRAY')) {
                   9204:                             if (@{$cancreate{'selfcreate'}} > 0) {
                   9205:                                 if (@{$cancreate{'statustocreate'}} == 0) {
1.100     raeburn  9206:                                     $chgtext .= &mt("Institutional affiliations permitted to create accounts set to 'None'.");
1.96      raeburn  9207:                                     if (!grep(/^email$/,@{$cancreate{'selfcreate'}})) {
1.224     raeburn  9208:                                         $chgtext .= '<br />'.
                   9209:                                                     '<span class="LC_warning">'.
                   9210:                                                     &mt("However, no institutional affiliations (including 'other') are currently permitted to create accounts.").
                   9211:                                                     '</span>';
                   9212:                                     }
1.96      raeburn  9213:                                 } elsif (ref($usertypes) eq 'HASH') {
                   9214:                                     if (grep(/^(login|sso)$/,@{$cancreate{'selfcreate'}})) {
1.100     raeburn  9215:                                         $chgtext .= &mt('Creation of a new account for an institutional user is restricted to the following institutional affiliation(s):');
                   9216:                                     } else {
                   9217:                                         $chgtext .= &mt('Institutional affiliations permitted to create accounts with institutional authentication were set as follows:');
                   9218:                                     }
                   9219:                                     $chgtext .= '<ul>';
                   9220:                                     foreach my $case (@{$cancreate{$type}}) {
                   9221:                                         if ($case eq 'default') {
                   9222:                                             $chgtext .= '<li>'.$othertitle.'</li>';
                   9223:                                         } else {
                   9224:                                             $chgtext .= '<li>'.$usertypes->{$case}.'</li>';
1.93      raeburn  9225:                                         }
                   9226:                                     }
1.100     raeburn  9227:                                     $chgtext .= '</ul>';
                   9228:                                     if (!grep(/^(login|sso)$/,@{$cancreate{'selfcreate'}})) {
1.224     raeburn  9229:                                         $chgtext .= '<br /><span class="LC_warning">'.
                   9230:                                                     &mt('However, users authenticated by institutional login/single sign on are not currently permitted to create accounts.').
                   9231:                                                     '</span>';
1.100     raeburn  9232:                                     }
                   9233:                                 }
                   9234:                             } else {
                   9235:                                 if (@{$cancreate{$type}} == 0) {
                   9236:                                     $chgtext .= &mt("Institutional affiliations permitted to create accounts were set to 'none'.");
                   9237:                                 } else {
                   9238:                                     $chgtext .= &mt('Although institutional affiliations permitted to create accounts were changed, self creation of accounts is not currently permitted for any authentication types.');
1.93      raeburn  9239:                                 }
                   9240:                             }
                   9241:                         }
1.236     raeburn  9242:                     } elsif ($type eq 'selfcreateprocessing') {
                   9243:                         my %choices = &Apache::lonlocal::texthash (
                   9244:                                                                     automatic => 'Automatic approval',
                   9245:                                                                     approval  => 'Queued for approval',
                   9246:                                                                   );
                   9247:                         if (@statuses > 1) {
                   9248:                             $chgtext .= &mt('Processing of requests to create account with e-mail address as username set as follows:'). 
                   9249:                                         '<ul>';
                   9250:                            foreach my $type (@statuses) {
                   9251:                                if ($type eq 'default') {
                   9252:                                    $chgtext .= '<li>'.$othertitle.' -- '.$choices{$cancreate{'selfcreateprocessing'}{$type}}.'</li>';
                   9253:                                } else {
                   9254:                                    $chgtext .= '<li>'.$usertypes->{$type}.' -- '.$choices{$cancreate{'selfcreateprocessing'}{$type}}.'</li>';
                   9255:                                }
                   9256:                            }
                   9257:                            $chgtext .= '</ul>';
                   9258:                         } else {
                   9259:                            $chgtext .= &mt('Processing of requests to create account with e-mail address as username set to: "[_1]"',
                   9260:                                          $choices{$cancreate{'selfcreateprocessing'}{'default'}});
                   9261:                         }
1.165     raeburn  9262:                     } elsif ($type eq 'captcha') {
1.224     raeburn  9263:                         if ($savecaptcha{$type} eq 'notused') {
1.165     raeburn  9264:                             $chgtext .= &mt('No CAPTCHA validation in use for self-creation screen.');
                   9265:                         } else {
                   9266:                             my %captchas = &captcha_phrases();
1.224     raeburn  9267:                             if ($captchas{$savecaptcha{$type}}) {
                   9268:                                 $chgtext .= &mt("Validation for self-creation screen set to $captchas{$savecaptcha{$type}}.");
1.165     raeburn  9269:                             } else {
1.210     raeburn  9270:                                 $chgtext .= &mt('Validation for self-creation screen set to unknown type.');
1.165     raeburn  9271:                             }
                   9272:                         }
                   9273:                     } elsif ($type eq 'recaptchakeys') {
                   9274:                         my ($privkey,$pubkey);
1.224     raeburn  9275:                         if (ref($savecaptcha{$type}) eq 'HASH') {
                   9276:                             $pubkey = $savecaptcha{$type}{'public'};
                   9277:                             $privkey = $savecaptcha{$type}{'private'};
1.165     raeburn  9278:                         }
                   9279:                         $chgtext .= &mt('ReCAPTCHA keys changes').'<ul>';
                   9280:                         if (!$pubkey) {
                   9281:                             $chgtext .= '<li>'.&mt('Public key deleted').'</li>';
                   9282:                         } else {
                   9283:                             $chgtext .= '<li>'.&mt('Public key set to [_1]',$pubkey).'</li>';
                   9284:                         }
                   9285:                         if (!$privkey) {
                   9286:                             $chgtext .= '<li>'.&mt('Private key deleted').'</li>';
                   9287:                         } else {
                   9288:                             $chgtext .= '<li>'.&mt('Private key set to [_1]',$pubkey).'</li>';
                   9289:                         }
                   9290:                         $chgtext .= '</ul>';
1.224     raeburn  9291:                     } elsif ($type eq 'emailusername') {
                   9292:                         if (ref($cancreate{'emailusername'}) eq 'HASH') {
1.228     raeburn  9293:                             if (ref($types) eq 'ARRAY') {
                   9294:                                 foreach my $type (@{$types}) {
                   9295:                                     if (ref($cancreate{'emailusername'}{$type}) eq 'HASH') {
                   9296:                                         if (keys(%{$cancreate{'emailusername'}{$type}}) > 0) {
1.245     raeburn  9297:                                             $chgtext .= &mt('When self-creating account with e-mail as username, the following information will be provided by [_1]:',"'$usertypes->{$type}'").
1.228     raeburn  9298:                                                     '<ul>';
                   9299:                                             foreach my $field (@{$infofields}) {
                   9300:                                                 if ($cancreate{'emailusername'}{$type}{$field}) {
                   9301:                                                     $chgtext .= '<li>'.$infotitles->{$field}.'</li>';
                   9302:                                                 }
                   9303:                                             }
1.245     raeburn  9304:                                             $chgtext .= '</ul>';
                   9305:                                         } else {
                   9306:                                             $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 />';
1.228     raeburn  9307:                                         }
                   9308:                                     } else {
1.245     raeburn  9309:                                         $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 />';
1.224     raeburn  9310:                                     }
                   9311:                                 }
                   9312:                             }
                   9313:                         }
                   9314:                     } elsif ($type eq 'notify') {
                   9315:                         $chgtext = &mt('No Domain Coordinators will receive notification of username requests requiring approval.');
                   9316:                         if (ref($changes{'cancreate'}) eq 'ARRAY') {
                   9317:                             if ((grep(/^notify$/,@{$changes{'cancreate'}})) && (ref($cancreate{'notify'}) eq 'HASH')) {
                   9318:                                 if ($cancreate{'notify'}{'approval'}) {
                   9319:                                     $chgtext = &mt('Notification of username requests requiring approval will be sent to: ').$cancreate{'notify'}{'approval'};
                   9320:                                 }
                   9321:                             }
1.43      raeburn  9322:                         }
1.34      raeburn  9323:                     }
1.224     raeburn  9324:                     if ($chgtext) {
                   9325:                         $resulttext .= '<li>'.$chgtext.'</li>';
1.32      raeburn  9326:                     }
                   9327:                 }
                   9328:             }
1.43      raeburn  9329:             if (ref($changes{'email_rule'}) eq 'ARRAY') {
                   9330:                 my ($emailrules,$emailruleorder) =
                   9331:                     &Apache::lonnet::inst_userrules($dom,'email');
                   9332:                 my $chgtext = '<ul>';
                   9333:                 foreach my $type (@email_rule) {
                   9334:                     if (ref($emailrules->{$type}) eq 'HASH') {
                   9335:                         $chgtext .= '<li>'.$emailrules->{$type}{'name'}.'</li>';
                   9336:                     }
                   9337:                 }
                   9338:                 $chgtext .= '</ul>';
                   9339:                 if (@email_rule > 0) {
1.224     raeburn  9340:                     $resulttext .= '<li>'.
                   9341:                                    &mt('Accounts may not be created by users self-enrolling with e-mail addresses of the following types: ').
                   9342:                                        $chgtext.
                   9343:                                    '</li>';
1.43      raeburn  9344:                 } else {
1.224     raeburn  9345:                     $resulttext .= '<li>'.
                   9346:                                    &mt('There are now no restrictions on e-mail addresses which may be used as a username when self-enrolling.').
                   9347:                                    '</li>';
1.43      raeburn  9348:                 }
                   9349:             }
1.224     raeburn  9350:             if (ref($changes{'selfcreate'}) eq 'ARRAY') {
                   9351:                 $resulttext .= '<li>'.&mt('When self-creating institutional account:').'<ul>';
                   9352:                 my %fieldtitles = &Apache::loncommon::personal_data_fieldtitles();
                   9353:                 foreach my $type (@{$changes{'selfcreate'}}) {
                   9354:                     my $typename = $type;
                   9355:                     if (ref($usertypes) eq 'HASH') {
                   9356:                         if ($usertypes->{$type} ne '') {
                   9357:                             $typename = $usertypes->{$type};
                   9358:                         }
                   9359:                     }
                   9360:                     my @modifiable;
                   9361:                     $resulttext .= '<li>'.
                   9362:                                     &mt('Self-creation of account by users with status: [_1]',
                   9363:                                         '<span class="LC_cusr_emph">'.$typename.'</span>').
                   9364:                                     ' - '.&mt('modifiable fields (if institutional data blank): ');
                   9365:                     foreach my $field (@fields) {
                   9366:                         if ($save_usermodify{'selfcreate'}{$type}{$field}) {
                   9367:                             push(@modifiable,'<b>'.$fieldtitles{$field}.'</b>');
1.28      raeburn  9368:                         }
                   9369:                     }
1.224     raeburn  9370:                     if (@modifiable > 0) {
                   9371:                         $resulttext .= join(', ',@modifiable);
1.43      raeburn  9372:                     } else {
1.224     raeburn  9373:                         $resulttext .= &mt('none');
1.43      raeburn  9374:                     }
1.224     raeburn  9375:                     $resulttext .= '</li>';
1.28      raeburn  9376:                 }
1.224     raeburn  9377:                 $resulttext .= '</ul></li>';
1.28      raeburn  9378:             }
1.27      raeburn  9379:             $resulttext .= '</ul>';
                   9380:         } else {
1.224     raeburn  9381:             $resulttext = &mt('No changes made to self-creation settings');
1.27      raeburn  9382:         }
                   9383:     } else {
                   9384:         $resulttext = '<span class="LC_error">'.
1.23      raeburn  9385:             &mt('An error occurred: [_1]',$putresult).'</span>';
                   9386:     }
1.43      raeburn  9387:     if ($warningmsg ne '') {
                   9388:         $resulttext .= '<br /><span class="LC_warning">'.$warningmsg.'</span><br />';
                   9389:     }
1.23      raeburn  9390:     return $resulttext;
                   9391: }
                   9392: 
1.165     raeburn  9393: sub process_captcha {
                   9394:     my ($container,$changes,$newsettings,$current) = @_;
                   9395:     return unless ((ref($changes) eq 'HASH') && (ref($newsettings) eq 'HASH') || (ref($current) eq 'HASH'));
                   9396:     $newsettings->{'captcha'} = $env{'form.'.$container.'_captcha'};
                   9397:     unless ($newsettings->{'captcha'} eq 'recaptcha' || $newsettings->{'captcha'} eq 'notused') {
                   9398:         $newsettings->{'captcha'} = 'original';
                   9399:     }
                   9400:     if ($current->{'captcha'} ne $newsettings->{'captcha'}) {
1.210     raeburn  9401:         if ($container eq 'cancreate') {
1.169     raeburn  9402:             if (ref($changes->{'cancreate'}) eq 'ARRAY') {
                   9403:                 push(@{$changes->{'cancreate'}},'captcha');
                   9404:             } elsif (!defined($changes->{'cancreate'})) {
                   9405:                 $changes->{'cancreate'} = ['captcha'];
                   9406:             }
                   9407:         } else {
                   9408:             $changes->{'captcha'} = 1;
1.165     raeburn  9409:         }
                   9410:     }
                   9411:     my ($newpub,$newpriv,$currpub,$currpriv);
                   9412:     if ($newsettings->{'captcha'} eq 'recaptcha') {
                   9413:         $newpub = $env{'form.'.$container.'_recaptchapub'};
                   9414:         $newpriv = $env{'form.'.$container.'_recaptchapriv'};
1.250     raeburn  9415:         $newpub =~ s/[^\w\-]//g;
                   9416:         $newpriv =~ s/[^\w\-]//g;
1.169     raeburn  9417:         $newsettings->{'recaptchakeys'} = {
                   9418:                                              public  => $newpub,
                   9419:                                              private => $newpriv,
                   9420:                                           };
1.165     raeburn  9421:     }
                   9422:     if (ref($current->{'recaptchakeys'}) eq 'HASH') {
                   9423:         $currpub = $current->{'recaptchakeys'}{'public'};
                   9424:         $currpriv = $current->{'recaptchakeys'}{'private'};
1.179     raeburn  9425:         unless ($newsettings->{'captcha'} eq 'recaptcha') {
                   9426:             $newsettings->{'recaptchakeys'} = {
                   9427:                                                  public  => '',
                   9428:                                                  private => '',
                   9429:                                               }
                   9430:         }
1.165     raeburn  9431:     }
                   9432:     if (($newpub ne $currpub) || ($newpriv ne $currpriv)) {
1.169     raeburn  9433:         if ($container eq 'cancreate') {
                   9434:             if (ref($changes->{'cancreate'}) eq 'ARRAY') {
                   9435:                 push(@{$changes->{'cancreate'}},'recaptchakeys');
                   9436:             } elsif (!defined($changes->{'cancreate'})) {
                   9437:                 $changes->{'cancreate'} = ['recaptchakeys'];
                   9438:             }
                   9439:         } else {
1.210     raeburn  9440:             $changes->{'recaptchakeys'} = 1;
1.165     raeburn  9441:         }
                   9442:     }
                   9443:     return;
                   9444: }
                   9445: 
1.33      raeburn  9446: sub modify_usermodification {
                   9447:     my ($dom,%domconfig) = @_;
1.224     raeburn  9448:     my ($resulttext,%curr_usermodification,%changes,%modifyhash);
1.33      raeburn  9449:     if (ref($domconfig{'usermodification'}) eq 'HASH') {
                   9450:         foreach my $key (keys(%{$domconfig{'usermodification'}})) {
1.224     raeburn  9451:             if ($key eq 'selfcreate') {
                   9452:                 $modifyhash{$key} = $domconfig{'usermodification'}{$key};
                   9453:             } else {  
                   9454:                 $curr_usermodification{$key} = $domconfig{'usermodification'}{$key};
                   9455:             }
1.33      raeburn  9456:         }
                   9457:     }
1.224     raeburn  9458:     my @contexts = ('author','course');
1.33      raeburn  9459:     my %context_title = (
                   9460:                            author => 'In author context',
                   9461:                            course => 'In course context',
                   9462:                         );
                   9463:     my @fields = ('lastname','firstname','middlename','generation',
                   9464:                   'permanentemail','id');
                   9465:     my %roles = (
                   9466:                   author => ['ca','aa'],
                   9467:                   course => ['st','ep','ta','in','cr'],
                   9468:                 );
                   9469:     my %fieldtitles = &Apache::loncommon::personal_data_fieldtitles();
                   9470:     foreach my $context (@contexts) {
                   9471:         foreach my $role (@{$roles{$context}}) {
                   9472:             my @modifiable =  &Apache::loncommon::get_env_multiple('form.canmodify_'.$role);
                   9473:             foreach my $item (@fields) {
                   9474:                 if (grep(/^\Q$item\E$/,@modifiable)) {
                   9475:                     $modifyhash{$context}{$role}{$item} = 1;
                   9476:                 } else {
                   9477:                     $modifyhash{$context}{$role}{$item} = 0;
                   9478:                 }
                   9479:             }
                   9480:         }
                   9481:         if (ref($curr_usermodification{$context}) eq 'HASH') {
                   9482:             foreach my $role (@{$roles{$context}}) {
                   9483:                 if (ref($curr_usermodification{$context}{$role}) eq 'HASH') {
                   9484:                     foreach my $field (@fields) {
                   9485:                         if ($modifyhash{$context}{$role}{$field} ne 
                   9486:                                 $curr_usermodification{$context}{$role}{$field}) {
                   9487:                             push(@{$changes{$context}},$role);
                   9488:                             last;
                   9489:                         }
                   9490:                     }
                   9491:                 }
                   9492:             }
                   9493:         } else {
                   9494:             foreach my $context (@contexts) {
                   9495:                 foreach my $role (@{$roles{$context}}) {
                   9496:                     push(@{$changes{$context}},$role);
                   9497:                 }
                   9498:             }
                   9499:         }
                   9500:     }
                   9501:     my %usermodification_hash =  (
                   9502:                                    usermodification => \%modifyhash,
                   9503:                                  );
                   9504:     my $putresult = &Apache::lonnet::put_dom('configuration',
                   9505:                                              \%usermodification_hash,$dom);
                   9506:     if ($putresult eq 'ok') {
                   9507:         if (keys(%changes) > 0) {
                   9508:             $resulttext = &mt('Changes made: ').'<ul>';
                   9509:             foreach my $context (@contexts) {
                   9510:                 if (ref($changes{$context}) eq 'ARRAY') {
                   9511:                     $resulttext .= '<li>'.$context_title{$context}.':<ul>';
                   9512:                     if (ref($changes{$context}) eq 'ARRAY') {
                   9513:                         foreach my $role (@{$changes{$context}}) {
                   9514:                             my $rolename;
1.224     raeburn  9515:                             if ($role eq 'cr') {
                   9516:                                 $rolename = &mt('Custom');
1.33      raeburn  9517:                             } else {
1.224     raeburn  9518:                                 $rolename = &Apache::lonnet::plaintext($role);
1.33      raeburn  9519:                             }
                   9520:                             my @modifiable;
1.224     raeburn  9521:                             $resulttext .= '<li><span class="LC_cusr_emph">'.&mt('Target user with [_1] role',$rolename).'</span> - '.&mt('modifiable fields: ');
1.33      raeburn  9522:                             foreach my $field (@fields) {
                   9523:                                 if ($modifyhash{$context}{$role}{$field}) {
                   9524:                                     push(@modifiable,$fieldtitles{$field});
                   9525:                                 }
                   9526:                             }
                   9527:                             if (@modifiable > 0) {
                   9528:                                 $resulttext .= join(', ',@modifiable);
                   9529:                             } else {
                   9530:                                 $resulttext .= &mt('none'); 
                   9531:                             }
                   9532:                             $resulttext .= '</li>';
                   9533:                         }
                   9534:                         $resulttext .= '</ul></li>';
                   9535:                     }
                   9536:                 }
                   9537:             }
                   9538:             $resulttext .= '</ul>';
                   9539:         } else {
                   9540:             $resulttext = &mt('No changes made to user modification settings');
                   9541:         }
                   9542:     } else {
                   9543:         $resulttext = '<span class="LC_error">'.
                   9544:             &mt('An error occurred: [_1]',$putresult).'</span>';
                   9545:     }
                   9546:     return $resulttext;
                   9547: }
                   9548: 
1.43      raeburn  9549: sub modify_defaults {
1.212     raeburn  9550:     my ($dom,$lastactref,%domconfig) = @_;
1.43      raeburn  9551:     my ($resulttext,$mailmsgtxt,%newvalues,%changes,@errors);
1.212     raeburn  9552:     my %domdefaults = &Apache::lonnet::get_domain_defaults($dom,1);
1.141     raeburn  9553:     my @items = ('auth_def','auth_arg_def','lang_def','timezone_def','datelocale_def','portal_def');
1.43      raeburn  9554:     my @authtypes = ('internal','krb4','krb5','localauth');
                   9555:     foreach my $item (@items) {
                   9556:         $newvalues{$item} = $env{'form.'.$item};
                   9557:         if ($item eq 'auth_def') {
                   9558:             if ($newvalues{$item} ne '') {
                   9559:                 if (!grep(/^\Q$newvalues{$item}\E$/,@authtypes)) {
                   9560:                     push(@errors,$item);
                   9561:                 }
                   9562:             }
                   9563:         } elsif ($item eq 'lang_def') {
                   9564:             if ($newvalues{$item} ne '') {
                   9565:                 if ($newvalues{$item} =~ /^(\w+)/) {
                   9566:                     my $langcode = $1;
1.103     raeburn  9567:                     if ($langcode ne 'x_chef') {
                   9568:                         if (code2language($langcode) eq '') {
                   9569:                             push(@errors,$item);
                   9570:                         }
1.43      raeburn  9571:                     }
                   9572:                 } else {
                   9573:                     push(@errors,$item);
                   9574:                 }
                   9575:             }
1.54      raeburn  9576:         } elsif ($item eq 'timezone_def') {
                   9577:             if ($newvalues{$item} ne '') {
1.62      raeburn  9578:                 if (!DateTime::TimeZone->is_valid_name($newvalues{$item})) {
1.54      raeburn  9579:                     push(@errors,$item);   
                   9580:                 }
                   9581:             }
1.68      raeburn  9582:         } elsif ($item eq 'datelocale_def') {
                   9583:             if ($newvalues{$item} ne '') {
                   9584:                 my @datelocale_ids = DateTime::Locale->ids();
                   9585:                 if (!grep(/^\Q$newvalues{$item}\E$/,@datelocale_ids)) {
                   9586:                     push(@errors,$item);
                   9587:                 }
                   9588:             }
1.141     raeburn  9589:         } elsif ($item eq 'portal_def') {
                   9590:             if ($newvalues{$item} ne '') {
                   9591:                 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])\/?$/) {
                   9592:                     push(@errors,$item);
                   9593:                 }
                   9594:             }
1.43      raeburn  9595:         }
                   9596:         if (grep(/^\Q$item\E$/,@errors)) {
                   9597:             $newvalues{$item} = $domdefaults{$item};
                   9598:         } elsif ($domdefaults{$item} ne $newvalues{$item}) {
                   9599:             $changes{$item} = 1;
                   9600:         }
1.72      raeburn  9601:         $domdefaults{$item} = $newvalues{$item};
1.43      raeburn  9602:     }
                   9603:     my %defaults_hash = (
1.72      raeburn  9604:                          defaults => \%newvalues,
                   9605:                         );
1.43      raeburn  9606:     my $title = &defaults_titles();
1.236     raeburn  9607: 
                   9608:     my $currinststatus;
                   9609:     if (ref($domconfig{'inststatus'}) eq 'HASH') {
                   9610:         $currinststatus = $domconfig{'inststatus'};
                   9611:     } else {
                   9612:         my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($dom);
                   9613:         $currinststatus = {
                   9614:                              inststatustypes => $usertypes,
                   9615:                              inststatusorder => $types,
                   9616:                              inststatusguest => [],
                   9617:                           };
                   9618:     }
                   9619:     my @todelete = &Apache::loncommon::get_env_multiple('form.inststatus_delete');
                   9620:     my @allpos;
                   9621:     my %guests;
                   9622:     my %alltypes;
                   9623:     my ($currtitles,$currguests,$currorder);
                   9624:     if (ref($currinststatus) eq 'HASH') {
                   9625:         if (ref($currinststatus->{'inststatusorder'}) eq 'ARRAY') {
                   9626:             foreach my $type (@{$currinststatus->{'inststatusorder'}}) {
                   9627:                 if (ref($currinststatus->{inststatustypes}) eq 'HASH') {
                   9628:                     if ($currinststatus->{inststatustypes}->{$type} ne '') {
                   9629:                         $currtitles .= $currinststatus->{inststatustypes}->{$type}.',';
                   9630:                     }
                   9631:                 }
                   9632:                 unless (grep(/^\Q$type\E$/,@todelete)) { 
                   9633:                     my $position = $env{'form.inststatus_pos_'.$type};
                   9634:                     $position =~ s/\D+//g;
                   9635:                     $allpos[$position] = $type;
                   9636:                     $alltypes{$type} = $env{'form.inststatus_title_'.$type};
                   9637:                     $alltypes{$type} =~ s/`//g;
                   9638:                     if ($env{'form.inststatus_guest_'.$type}) {
                   9639:                         $guests{$type} = 1;
                   9640:                     }
                   9641:                 }
                   9642:             }
                   9643:             if (ref($currinststatus->{'inststatusguest'}) eq 'ARRAY') {
                   9644:                 $currguests = join(',',@{$currinststatus->{'inststatusguest'}});
                   9645:             }
                   9646:             $currorder = join(',',@{$currinststatus->{'inststatusorder'}});
                   9647:             $currtitles =~ s/,$//;
                   9648:         }
                   9649:     }
                   9650:     if ($env{'form.addinststatus'}) {
                   9651:         my $newtype = $env{'form.addinststatus'};
                   9652:         $newtype =~ s/\W//g;
                   9653:         unless (exists($alltypes{$newtype})) {
                   9654:             if ($env{'form.addinststatus_guest'}) {
                   9655:                 $guests{$newtype} = 1;
                   9656:             }
                   9657:             $alltypes{$newtype} = $env{'form.addinststatus_title'};
                   9658:             $alltypes{$newtype} =~ s/`//g; 
                   9659:             my $position = $env{'form.addinststatus_pos'};
                   9660:             $position =~ s/\D+//g;
                   9661:             if ($position ne '') {
                   9662:                 $allpos[$position] = $newtype;
                   9663:             }
                   9664:         }
                   9665:     }
                   9666:     my (@orderedstatus,@orderedguests);
                   9667:     foreach my $type (@allpos) {
                   9668:         unless (($type eq '') || (grep(/^\Q$type\E$/,@orderedstatus))) {
                   9669:             push(@orderedstatus,$type);
                   9670:             if ($guests{$type}) {
                   9671:                 push(@orderedguests,$type);
                   9672:             }
                   9673:         }
                   9674:     }
                   9675:     foreach my $type (keys(%alltypes)) {
                   9676:         unless (grep(/^\Q$type\E$/,@orderedstatus)) {
                   9677:             delete($alltypes{$type});
                   9678:         }
                   9679:     }
                   9680:     $defaults_hash{'inststatus'} = {
                   9681:                                      inststatustypes => \%alltypes,
                   9682:                                      inststatusorder => \@orderedstatus,
                   9683:                                      inststatusguest => \@orderedguests,
                   9684:                                    };
                   9685:     if (ref($defaults_hash{'inststatus'}) eq 'HASH') {
                   9686:         foreach my $item ('inststatustypes','inststatusorder','inststatusguest') {
                   9687:             $domdefaults{$item} = $defaults_hash{'inststatus'}{$item};
                   9688:         }
                   9689:     }
                   9690:     if ($currorder ne join(',',@orderedstatus)) {
                   9691:         $changes{'inststatus'}{'inststatusorder'} = 1;
                   9692:     }
                   9693:     if ($currguests ne join(',',@orderedguests)) {
                   9694:         $changes{'inststatus'}{'inststatusguest'} = 1;
                   9695:     }
                   9696:     my $newtitles;
                   9697:     foreach my $item (@orderedstatus) {
                   9698:         $newtitles .= $alltypes{$item}.',';
                   9699:     }
                   9700:     $newtitles =~ s/,$//;
                   9701:     if ($currtitles ne $newtitles) {
                   9702:         $changes{'inststatus'}{'inststatustypes'} = 1;
                   9703:     }
1.43      raeburn  9704:     my $putresult = &Apache::lonnet::put_dom('configuration',\%defaults_hash,
                   9705:                                              $dom);
                   9706:     if ($putresult eq 'ok') {
                   9707:         if (keys(%changes) > 0) {
                   9708:             $resulttext = &mt('Changes made:').'<ul>';
1.212     raeburn  9709:             my $version = &Apache::lonnet::get_server_loncaparev($dom);
1.43      raeburn  9710:             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";
                   9711:             foreach my $item (sort(keys(%changes))) {
1.236     raeburn  9712:                 if ($item eq 'inststatus') {
                   9713:                     if (ref($changes{'inststatus'}) eq 'HASH') {
                   9714:                         if (($changes{'inststatus'}{'inststatustypes'}) || $changes{'inststatus'}{'inststatusorder'}) {
                   9715:                             $resulttext .= '<li>'.&mt('Institutional user status types set to:').' ';
                   9716:                             foreach my $type (@orderedstatus) { 
                   9717:                                 $resulttext .= $alltypes{$type}.', ';
                   9718:                             }
                   9719:                             $resulttext =~ s/, $//;
                   9720:                             $resulttext .= '</li>';
                   9721:                         }
                   9722:                         if ($changes{'inststatus'}{'inststatusguest'}) {
                   9723:                             $resulttext .= '<li>'; 
                   9724:                             if (@orderedguests) {
                   9725:                                 $resulttext .= &mt('Types assignable to "non-institutional" usernames set to:').' ';
                   9726:                                 foreach my $type (@orderedguests) {
                   9727:                                     $resulttext .= $alltypes{$type}.', ';
                   9728:                                 }
                   9729:                                 $resulttext =~ s/, $//;
                   9730:                             } else {
                   9731:                                 $resulttext .= &mt('Types assignable to "non-institutional" usernames set to none.');
                   9732:                             }
                   9733:                             $resulttext .= '</li>';
                   9734:                         }
                   9735:                     }
                   9736:                 } else {
                   9737:                     my $value = $env{'form.'.$item};
                   9738:                     if ($value eq '') {
                   9739:                         $value = &mt('none');
                   9740:                     } elsif ($item eq 'auth_def') {
                   9741:                         my %authnames = &authtype_names();
                   9742:                         my %shortauth = (
                   9743:                                           internal   => 'int',
                   9744:                                           krb4       => 'krb4',
                   9745:                                           krb5       => 'krb5',
                   9746:                                           localauth  => 'loc',
                   9747:                         );
                   9748:                         $value = $authnames{$shortauth{$value}};
                   9749:                     }
                   9750:                     $resulttext .= '<li>'.&mt('[_1] set to "[_2]"',$title->{$item},$value).'</li>';
                   9751:                     $mailmsgtext .= "$title->{$item} set to $value\n";  
1.43      raeburn  9752:                 }
                   9753:             }
                   9754:             $resulttext .= '</ul>';
                   9755:             $mailmsgtext .= "\n";
                   9756:             my $cachetime = 24*60*60;
1.72      raeburn  9757:             &Apache::lonnet::do_cache_new('domdefaults',$dom,\%domdefaults,$cachetime);
1.212     raeburn  9758:             if (ref($lastactref) eq 'HASH') {
                   9759:                 $lastactref->{'domdefaults'} = 1;
                   9760:             }
1.68      raeburn  9761:             if ($changes{'auth_def'} || $changes{'auth_arg_def'} || $changes{'lang_def'} || $changes{'datelocale_def'}) {
1.203     raeburn  9762:                 my $notify = 1;
                   9763:                 if (ref($domconfig{'contacts'}) eq 'HASH') {
                   9764:                     if ($domconfig{'contacts'}{'reportupdates'} == 0) {
                   9765:                         $notify = 0;
                   9766:                     }
                   9767:                 }
                   9768:                 if ($notify) {
                   9769:                     &Apache::lonmsg::sendemail('installrecord@loncapa.org',
                   9770:                                                "LON-CAPA Domain Settings Change - $dom",
                   9771:                                                $mailmsgtext);
                   9772:                 }
1.54      raeburn  9773:             }
1.43      raeburn  9774:         } else {
1.54      raeburn  9775:             $resulttext = &mt('No changes made to default authentication/language/timezone settings');
1.43      raeburn  9776:         }
                   9777:     } else {
                   9778:         $resulttext = '<span class="LC_error">'.
                   9779:             &mt('An error occurred: [_1]',$putresult).'</span>';
                   9780:     }
                   9781:     if (@errors > 0) {
                   9782:         $resulttext .= '<br />'.&mt('The following were left unchanged because the values entered were invalid:');
                   9783:         foreach my $item (@errors) {
                   9784:             $resulttext .= ' "'.$title->{$item}.'",';
                   9785:         }
                   9786:         $resulttext =~ s/,$//;
                   9787:     }
                   9788:     return $resulttext;
                   9789: }
                   9790: 
1.46      raeburn  9791: sub modify_scantron {
1.205     raeburn  9792:     my ($r,$dom,$confname,$lastactref,%domconfig) = @_;
1.46      raeburn  9793:     my ($resulttext,%confhash,%changes,$errors);
                   9794:     my $custom = 'custom.tab';
                   9795:     my $default = 'default.tab';
                   9796:     my $servadm = $r->dir_config('lonAdmEMail');
                   9797:     my ($configuserok,$author_ok,$switchserver) = 
                   9798:         &config_check($dom,$confname,$servadm);
                   9799:     if ($env{'form.scantronformat.filename'} ne '') {
                   9800:         my $error;
                   9801:         if ($configuserok eq 'ok') {
                   9802:             if ($switchserver) {
1.130     raeburn  9803:                 $error = &mt("Upload of bubblesheet format file is not permitted to this server: [_1]",$switchserver);
1.46      raeburn  9804:             } else {
                   9805:                 if ($author_ok eq 'ok') {
                   9806:                     my ($result,$scantronurl) =
                   9807:                         &publishlogo($r,'upload','scantronformat',$dom,
                   9808:                                      $confname,'scantron','','',$custom);
                   9809:                     if ($result eq 'ok') {
                   9810:                         $confhash{'scantron'}{'scantronformat'} = $scantronurl;
1.48      raeburn  9811:                         $changes{'scantronformat'} = 1;
1.46      raeburn  9812:                     } else {
                   9813:                         $error = &mt("Upload of [_1] failed because an error occurred publishing the file in RES space. Error was: [_2].",$custom,$result);
                   9814:                     }
                   9815:                 } else {
                   9816:                     $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);
                   9817:                 }
                   9818:             }
                   9819:         } else {
                   9820:             $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);
                   9821:         }
                   9822:         if ($error) {
                   9823:             &Apache::lonnet::logthis($error);
                   9824:             $errors .= '<li><span class="LC_error">'.$error.'</span></li>';
                   9825:         }
                   9826:     }
1.48      raeburn  9827:     if (ref($domconfig{'scantron'}) eq 'HASH') {
                   9828:         if ($domconfig{'scantron'}{'scantronformat'} ne '') {
                   9829:             if ($env{'form.scantronformat_del'}) {
                   9830:                 $confhash{'scantron'}{'scantronformat'} = '';
                   9831:                 $changes{'scantronformat'} = 1;
1.46      raeburn  9832:             }
                   9833:         }
                   9834:     }
                   9835:     if (keys(%confhash) > 0) {
                   9836:         my $putresult = &Apache::lonnet::put_dom('configuration',\%confhash,
                   9837:                                                  $dom);
                   9838:         if ($putresult eq 'ok') {
                   9839:             if (keys(%changes) > 0) {
1.48      raeburn  9840:                 if (ref($confhash{'scantron'}) eq 'HASH') {
                   9841:                     $resulttext = &mt('Changes made:').'<ul>';
                   9842:                     if ($confhash{'scantron'}{'scantronformat'} eq '') {
1.130     raeburn  9843:                         $resulttext .= '<li>'.&mt('[_1] bubblesheet format file removed; [_2] file will be used for courses in this domain.',$custom,$default).'</li>';
1.48      raeburn  9844:                     } else {
1.130     raeburn  9845:                         $resulttext .= '<li>'.&mt('Custom bubblesheet format file ([_1]) uploaded for use with courses in this domain.',$custom).'</li>';
1.46      raeburn  9846:                     }
1.48      raeburn  9847:                     $resulttext .= '</ul>';
                   9848:                 } else {
1.130     raeburn  9849:                     $resulttext = &mt('Changes made to bubblesheet format file.');
1.46      raeburn  9850:                 }
                   9851:                 $resulttext .= '</ul>';
                   9852:                 &Apache::loncommon::devalidate_domconfig_cache($dom);
1.212     raeburn  9853:                 if (ref($lastactref) eq 'HASH') {
                   9854:                     $lastactref->{'domainconfig'} = 1;
                   9855:                 }
1.46      raeburn  9856:             } else {
1.130     raeburn  9857:                 $resulttext = &mt('No changes made to bubblesheet format file');
1.46      raeburn  9858:             }
                   9859:         } else {
                   9860:             $resulttext = '<span class="LC_error">'.
                   9861:                 &mt('An error occurred: [_1]',$putresult).'</span>';
                   9862:         }
                   9863:     } else {
1.130     raeburn  9864:         $resulttext = &mt('No changes made to bubblesheet format file'); 
1.46      raeburn  9865:     }
                   9866:     if ($errors) {
                   9867:         $resulttext .= &mt('The following errors occurred: ').'<ul>'.
                   9868:                        $errors.'</ul>';
                   9869:     }
                   9870:     return $resulttext;
                   9871: }
                   9872: 
1.48      raeburn  9873: sub modify_coursecategories {
1.239     raeburn  9874:     my ($dom,$lastactref,%domconfig) = @_;
1.57      raeburn  9875:     my ($resulttext,%deletions,%reorderings,%needreordering,%adds,%changes,$errors,
                   9876:         $cathash);
1.48      raeburn  9877:     my @deletecategory = &Apache::loncommon::get_env_multiple('form.deletecategory');
1.238     raeburn  9878:     my @catitems = ('unauth','auth');
                   9879:     my @cattypes = ('std','domonly','codesrch','none');
1.55      raeburn  9880:     if (ref($domconfig{'coursecategories'}) eq 'HASH') {
1.57      raeburn  9881:         $cathash = $domconfig{'coursecategories'}{'cats'};
                   9882:         if ($domconfig{'coursecategories'}{'togglecats'} ne $env{'form.togglecats'}) {
                   9883:             $changes{'togglecats'} = 1;
                   9884:             $domconfig{'coursecategories'}{'togglecats'} = $env{'form.togglecats'};
                   9885:         }
                   9886:         if ($domconfig{'coursecategories'}{'categorize'} ne $env{'form.categorize'}) {
                   9887:             $changes{'categorize'} = 1;
                   9888:             $domconfig{'coursecategories'}{'categorize'} = $env{'form.categorize'};
                   9889:         }
1.120     raeburn  9890:         if ($domconfig{'coursecategories'}{'togglecatscomm'} ne $env{'form.togglecatscomm'}) {
                   9891:             $changes{'togglecatscomm'} = 1;
                   9892:             $domconfig{'coursecategories'}{'togglecatscomm'} = $env{'form.togglecatscomm'};
                   9893:         }
                   9894:         if ($domconfig{'coursecategories'}{'categorizecomm'} ne $env{'form.categorizecomm'}) {
                   9895:             $changes{'categorizecomm'} = 1;
                   9896:             $domconfig{'coursecategories'}{'categorizecomm'} = $env{'form.categorizecomm'};
                   9897:         }
1.238     raeburn  9898:         foreach my $item (@catitems) {
                   9899:             if (grep(/^\Q$env{'form.coursecat_'.$item}\E$/,@cattypes)) {
                   9900:                 if ($domconfig{'coursecategories'}{$item} ne $env{'form.coursecat_'.$item}) {
                   9901:                     $changes{$item} = 1;
                   9902:                     $domconfig{'coursecategories'}{$item} = $env{'form.coursecat_'.$item};
                   9903:                 }
                   9904:             }
                   9905:         }
1.57      raeburn  9906:     } else {
                   9907:         $changes{'togglecats'} = 1;
                   9908:         $changes{'categorize'} = 1;
1.124     raeburn  9909:         $changes{'togglecatscomm'} = 1;
                   9910:         $changes{'categorizecomm'} = 1;
1.87      raeburn  9911:         $domconfig{'coursecategories'} = {
                   9912:                                              togglecats => $env{'form.togglecats'},
                   9913:                                              categorize => $env{'form.categorize'},
1.124     raeburn  9914:                                              togglecatscomm => $env{'form.togglecatscomm'},
                   9915:                                              categorizecomm => $env{'form.categorizecomm'},
1.120     raeburn  9916:                                          };
1.238     raeburn  9917:         foreach my $item (@catitems) {
                   9918:             if ($env{'form.coursecat_'.$item} ne 'std') {
                   9919:                 $changes{$item} = 1;
                   9920:             }
                   9921:             if (grep(/^\Q$env{'form.coursecat_'.$item}\E$/,@cattypes)) {
                   9922:                 $domconfig{'coursecategories'}{$item} = $env{'form.coursecat_'.$item};
                   9923:             }
                   9924:         }
1.57      raeburn  9925:     }
                   9926:     if (ref($cathash) eq 'HASH') {
                   9927:         if (($domconfig{'coursecategories'}{'cats'}{'instcode::0'} ne '')  && ($env{'form.instcode'} == 0)) {
1.55      raeburn  9928:             push (@deletecategory,'instcode::0');
                   9929:         }
1.120     raeburn  9930:         if (($domconfig{'coursecategories'}{'cats'}{'communities::0'} ne '')  && ($env{'form.communities'} == 0)) {
                   9931:             push(@deletecategory,'communities::0');
                   9932:         }
1.48      raeburn  9933:     }
1.57      raeburn  9934:     my (@predelcats,@predeltrails,%predelallitems,%sort_by_deltrail);
                   9935:     if (ref($cathash) eq 'HASH') {
1.48      raeburn  9936:         if (@deletecategory > 0) {
                   9937:             #FIXME Need to remove category from all courses using a deleted category 
1.57      raeburn  9938:             &Apache::loncommon::extract_categories($cathash,\@predelcats,\@predeltrails,\%predelallitems);
1.48      raeburn  9939:             foreach my $item (@deletecategory) {
1.57      raeburn  9940:                 if ($domconfig{'coursecategories'}{'cats'}{$item} ne '') {
                   9941:                     delete($domconfig{'coursecategories'}{'cats'}{$item});
1.48      raeburn  9942:                     $deletions{$item} = 1;
1.57      raeburn  9943:                     &recurse_cat_deletes($item,$cathash,\%deletions);
1.48      raeburn  9944:                 }
                   9945:             }
                   9946:         }
1.57      raeburn  9947:         foreach my $item (keys(%{$cathash})) {
1.48      raeburn  9948:             my ($cat,$container,$depth) = map { &unescape($_); } split(/:/,$item);
1.57      raeburn  9949:             if ($cathash->{$item} ne $env{'form.'.$item}) {
1.48      raeburn  9950:                 $reorderings{$item} = 1;
1.57      raeburn  9951:                 $domconfig{'coursecategories'}{'cats'}{$item} = $env{'form.'.$item};
1.48      raeburn  9952:             }
                   9953:             if ($env{'form.addcategory_name_'.$item} ne '') {
                   9954:                 my $newcat = $env{'form.addcategory_name_'.$item};
                   9955:                 my $newdepth = $depth+1;
                   9956:                 my $newitem = &escape($newcat).':'.&escape($cat).':'.$newdepth;
1.57      raeburn  9957:                 $domconfig{'coursecategories'}{'cats'}{$newitem} = $env{'form.addcategory_pos_'.$item};
1.48      raeburn  9958:                 $adds{$newitem} = 1; 
                   9959:             }
                   9960:             if ($env{'form.subcat_'.$item} ne '') {
                   9961:                 my $newcat = $env{'form.subcat_'.$item};
                   9962:                 my $newdepth = $depth+1;
                   9963:                 my $newitem = &escape($newcat).':'.&escape($cat).':'.$newdepth;
1.57      raeburn  9964:                 $domconfig{'coursecategories'}{'cats'}{$newitem} = 0;
1.48      raeburn  9965:                 $adds{$newitem} = 1;
                   9966:             }
                   9967:         }
                   9968:     }
                   9969:     if ($env{'form.instcode'} eq '1') {
1.57      raeburn  9970:         if (ref($cathash) eq 'HASH') {
1.48      raeburn  9971:             my $newitem = 'instcode::0';
1.57      raeburn  9972:             if ($cathash->{$newitem} eq '') {  
                   9973:                 $domconfig{'coursecategories'}{'cats'}{$newitem} = $env{'form.instcode_pos'};
1.48      raeburn  9974:                 $adds{$newitem} = 1;
                   9975:             }
                   9976:         } else {
                   9977:             my $newitem = 'instcode::0';
1.57      raeburn  9978:             $domconfig{'coursecategories'}{'cats'}{$newitem} = $env{'form.instcode_pos'};
1.48      raeburn  9979:             $adds{$newitem} = 1;
                   9980:         }
                   9981:     }
1.120     raeburn  9982:     if ($env{'form.communities'} eq '1') {
                   9983:         if (ref($cathash) eq 'HASH') {
                   9984:             my $newitem = 'communities::0';
                   9985:             if ($cathash->{$newitem} eq '') {
                   9986:                 $domconfig{'coursecategories'}{'cats'}{$newitem} = $env{'form.communities_pos'};
                   9987:                 $adds{$newitem} = 1;
                   9988:             }
                   9989:         } else {
                   9990:             my $newitem = 'communities::0';
                   9991:             $domconfig{'coursecategories'}{'cats'}{$newitem} = $env{'form.communities_pos'};
                   9992:             $adds{$newitem} = 1;
                   9993:         }
                   9994:     }
1.48      raeburn  9995:     if ($env{'form.addcategory_name'} ne '') {
1.120     raeburn  9996:         if (($env{'form.addcategory_name'} ne 'instcode') &&
                   9997:             ($env{'form.addcategory_name'} ne 'communities')) {
                   9998:             my $newitem = &escape($env{'form.addcategory_name'}).'::0';
                   9999:             $domconfig{'coursecategories'}{'cats'}{$newitem} = $env{'form.addcategory_pos'};
                   10000:             $adds{$newitem} = 1;
                   10001:         }
1.48      raeburn  10002:     }
1.57      raeburn  10003:     my $putresult;
1.48      raeburn  10004:     if ((keys(%deletions) > 0) || (keys(%reorderings) > 0) || (keys(%adds) > 0)) {
                   10005:         if (keys(%deletions) > 0) {
                   10006:             foreach my $key (keys(%deletions)) {
                   10007:                 if ($predelallitems{$key} ne '') {
                   10008:                     $sort_by_deltrail{$predelallitems{$key}} = $predeltrails[$predelallitems{$key}];
                   10009:                 }
                   10010:             }
                   10011:         }
                   10012:         my (@chkcats,@chktrails,%chkallitems);
1.57      raeburn  10013:         &Apache::loncommon::extract_categories($domconfig{'coursecategories'}{'cats'},\@chkcats,\@chktrails,\%chkallitems);
1.48      raeburn  10014:         if (ref($chkcats[0]) eq 'ARRAY') {
                   10015:             my $depth = 0;
                   10016:             my $chg = 0;
                   10017:             for (my $i=0; $i<@{$chkcats[0]}; $i++) {
                   10018:                 my $name = $chkcats[0][$i];
                   10019:                 my $item;
                   10020:                 if ($name eq '') {
                   10021:                     $chg ++;
                   10022:                 } else {
                   10023:                     $item = &escape($name).'::0';
                   10024:                     if ($chg) {
1.57      raeburn  10025:                         $domconfig{'coursecategories'}{'cats'}{$item} -= $chg;
1.48      raeburn  10026:                     }
                   10027:                     $depth ++; 
1.57      raeburn  10028:                     &recurse_check(\@chkcats,$domconfig{'coursecategories'}{'cats'},$depth,$name);
1.48      raeburn  10029:                     $depth --;
                   10030:                 }
                   10031:             }
                   10032:         }
1.57      raeburn  10033:     }
                   10034:     if ((keys(%changes) > 0) || (keys(%deletions) > 0) || (keys(%reorderings) > 0) || (keys(%adds) > 0)) {
                   10035:         $putresult = &Apache::lonnet::put_dom('configuration',\%domconfig,$dom);
1.48      raeburn  10036:         if ($putresult eq 'ok') {
1.57      raeburn  10037:             my %title = (
1.120     raeburn  10038:                          togglecats     => 'Show/Hide a course in catalog',
                   10039:                          categorize     => 'Assign a category to a course',
                   10040:                          togglecatscomm => 'Show/Hide a community in catalog',
                   10041:                          categorizecomm => 'Assign a category to a community',
1.57      raeburn  10042:                         );
                   10043:             my %level = (
1.120     raeburn  10044:                          dom  => 'set in Domain ("Modify Course/Community")',
                   10045:                          crs  => 'set in Course ("Course Configuration")',
                   10046:                          comm => 'set in Community ("Community Configuration")',
1.238     raeburn  10047:                          none     => 'No catalog',
                   10048:                          std      => 'Standard catalog',
                   10049:                          domonly  => 'Domain-only catalog',
                   10050:                          codesrch => 'Code search form',
1.57      raeburn  10051:                         );
1.48      raeburn  10052:             $resulttext = &mt('Changes made:').'<ul>';
1.57      raeburn  10053:             if ($changes{'togglecats'}) {
                   10054:                 $resulttext .= '<li>'.&mt("$title{'togglecats'} $level{$env{'form.togglecats'}}").'</li>'; 
                   10055:             }
                   10056:             if ($changes{'categorize'}) {
                   10057:                 $resulttext .= '<li>'.&mt("$title{'categorize'} $level{$env{'form.categorize'}}").'</li>';
1.48      raeburn  10058:             }
1.120     raeburn  10059:             if ($changes{'togglecatscomm'}) {
                   10060:                 $resulttext .= '<li>'.&mt("$title{'togglecatscomm'} $level{$env{'form.togglecatscomm'}}").'</li>';
                   10061:             }
                   10062:             if ($changes{'categorizecomm'}) {
                   10063:                 $resulttext .= '<li>'.&mt("$title{'categorizecomm'} $level{$env{'form.categorizecomm'}}").'</li>';
                   10064:             }
1.238     raeburn  10065:             if ($changes{'unauth'}) {
                   10066:                 $resulttext .= '<li>'.&mt('Catalog type for unauthenticated users set to "'.$level{$env{'form.coursecat_unauth'}}.'"').'</li>';
                   10067:             }
                   10068:             if ($changes{'auth'}) {
                   10069:                 $resulttext .= '<li>'.&mt('Catalog type for authenticated users set to "'.$level{$env{'form.coursecat_auth'}}.'"').'</li>';
                   10070:             }
1.57      raeburn  10071:             if ((keys(%deletions) > 0) || (keys(%reorderings) > 0) || (keys(%adds) > 0)) {
                   10072:                 my $cathash;
                   10073:                 if (ref($domconfig{'coursecategories'}) eq 'HASH') {
                   10074:                     $cathash = $domconfig{'coursecategories'}{'cats'};
                   10075:                 } else {
                   10076:                     $cathash = {};
                   10077:                 } 
                   10078:                 my (@cats,@trails,%allitems);
                   10079:                     &Apache::loncommon::extract_categories($cathash,\@cats,\@trails,\%allitems);
                   10080:                 if (keys(%deletions) > 0) {
                   10081:                     $resulttext .= '<li>'.&mt('Deleted categories:').'<ul>';
                   10082:                     foreach my $predeltrail (sort {$a <=> $b } (keys(%sort_by_deltrail))) { 
                   10083:                         $resulttext .= '<li>'.$predeltrails[$predeltrail].'</li>';
                   10084:                     }
                   10085:                     $resulttext .= '</ul></li>';
                   10086:                 }
                   10087:                 if (keys(%reorderings) > 0) {
                   10088:                     my %sort_by_trail;
                   10089:                     $resulttext .= '<li>'.&mt('Reordered categories:').'<ul>';
                   10090:                     foreach my $key (keys(%reorderings)) {
                   10091:                         if ($allitems{$key} ne '') {
                   10092:                             $sort_by_trail{$allitems{$key}} = $trails[$allitems{$key}];
                   10093:                         }
1.48      raeburn  10094:                     }
1.57      raeburn  10095:                     foreach my $trail (sort {$a <=> $b } (keys(%sort_by_trail))) {
                   10096:                         $resulttext .= '<li>'.$trails[$trail].'</li>';
                   10097:                     }
                   10098:                     $resulttext .= '</ul></li>';
1.48      raeburn  10099:                 }
1.57      raeburn  10100:                 if (keys(%adds) > 0) {
                   10101:                     my %sort_by_trail;
                   10102:                     $resulttext .= '<li>'.&mt('Added categories:').'<ul>';
                   10103:                     foreach my $key (keys(%adds)) {
                   10104:                         if ($allitems{$key} ne '') {
                   10105:                             $sort_by_trail{$allitems{$key}} = $trails[$allitems{$key}];
                   10106:                         }
                   10107:                     }
                   10108:                     foreach my $trail (sort {$a <=> $b } (keys(%sort_by_trail))) {
                   10109:                         $resulttext .= '<li>'.$trails[$trail].'</li>';
1.48      raeburn  10110:                     }
1.57      raeburn  10111:                     $resulttext .= '</ul></li>';
1.48      raeburn  10112:                 }
                   10113:             }
                   10114:             $resulttext .= '</ul>';
1.239     raeburn  10115:             if ($changes{'unauth'} || $changes{'auth'}) {
1.246     raeburn  10116:                 my %domdefaults = &Apache::lonnet::get_domain_defaults($dom);
                   10117:                 if ($changes{'auth'}) {
                   10118:                     $domdefaults{'catauth'} = $domconfig{'coursecategories'}{'auth'};
                   10119:                 }
                   10120:                 if ($changes{'unauth'}) {
                   10121:                     $domdefaults{'catunauth'} = $domconfig{'coursecategories'}{'unauth'};
                   10122:                 }
                   10123:                 my $cachetime = 24*60*60;
                   10124:                 &Apache::lonnet::do_cache_new('domdefaults',$dom,\%domdefaults,$cachetime);
1.239     raeburn  10125:                 if (ref($lastactref) eq 'HASH') {
1.246     raeburn  10126:                     $lastactref->{'domdefaults'} = 1;
1.239     raeburn  10127:                 }
                   10128:             }
1.48      raeburn  10129:         } else {
                   10130:             $resulttext = '<span class="LC_error">'.
1.57      raeburn  10131:                           &mt('An error occurred: [_1]',$putresult).'</span>';
1.48      raeburn  10132:         }
                   10133:     } else {
1.120     raeburn  10134:         $resulttext = &mt('No changes made to course and community categories');
1.48      raeburn  10135:     }
                   10136:     return $resulttext;
                   10137: }
                   10138: 
1.69      raeburn  10139: sub modify_serverstatuses {
                   10140:     my ($dom,%domconfig) = @_;
                   10141:     my ($resulttext,%changes,%currserverstatus,%newserverstatus);
                   10142:     if (ref($domconfig{'serverstatuses'}) eq 'HASH') {
                   10143:         %currserverstatus = %{$domconfig{'serverstatuses'}};
                   10144:     }
                   10145:     my @pages = &serverstatus_pages();
                   10146:     foreach my $type (@pages) {
                   10147:         $newserverstatus{$type}{'namedusers'} = '';
                   10148:         $newserverstatus{$type}{'machines'} = '';
                   10149:         if (defined($env{'form.'.$type.'_namedusers'})) {
                   10150:             my @users = split(/,/,$env{'form.'.$type.'_namedusers'});
                   10151:             my @okusers;
                   10152:             foreach my $user (@users) {
                   10153:                 my ($uname,$udom) = split(/:/,$user);
                   10154:                 if (($udom =~ /^$match_domain$/) &&   
                   10155:                     (&Apache::lonnet::domain($udom)) &&
                   10156:                     ($uname =~ /^$match_username$/)) {
                   10157:                     if (!grep(/^\Q$user\E/,@okusers)) {
                   10158:                         push(@okusers,$user);
                   10159:                     }
                   10160:                 }
                   10161:             }
                   10162:             if (@okusers > 0) {
                   10163:                  @okusers = sort(@okusers);
                   10164:                  $newserverstatus{$type}{'namedusers'} = join(',',@okusers);
                   10165:             }
                   10166:         }
                   10167:         if (defined($env{'form.'.$type.'_machines'})) {
                   10168:             my @machines = split(/,/,$env{'form.'.$type.'_machines'});
                   10169:             my @okmachines;
                   10170:             foreach my $ip (@machines) {
                   10171:                 my @parts = split(/\./,$ip);
                   10172:                 next if (@parts < 4);
                   10173:                 my $badip = 0;
                   10174:                 for (my $i=0; $i<4; $i++) {
                   10175:                     if (!(($parts[$i] >= 0) && ($parts[$i] <= 255))) {
                   10176:                         $badip = 1;
                   10177:                         last;
                   10178:                     }
                   10179:                 }
                   10180:                 if (!$badip) {
                   10181:                     push(@okmachines,$ip);     
                   10182:                 }
                   10183:             }
                   10184:             @okmachines = sort(@okmachines);
                   10185:             $newserverstatus{$type}{'machines'} = join(',',@okmachines);
                   10186:         }
                   10187:     }
                   10188:     my %serverstatushash =  (
                   10189:                                 serverstatuses => \%newserverstatus,
                   10190:                             );
                   10191:     foreach my $type (@pages) {
1.83      raeburn  10192:         foreach my $setting ('namedusers','machines') {
1.84      raeburn  10193:             my (@current,@new);
1.83      raeburn  10194:             if (ref($currserverstatus{$type}) eq 'HASH') {
1.84      raeburn  10195:                 if ($currserverstatus{$type}{$setting} ne '') { 
                   10196:                     @current = split(/,/,$currserverstatus{$type}{$setting});
                   10197:                 }
                   10198:             }
                   10199:             if ($newserverstatus{$type}{$setting} ne '') {
                   10200:                 @new = split(/,/,$newserverstatus{$type}{$setting});
1.83      raeburn  10201:             }
                   10202:             if (@current > 0) {
                   10203:                 if (@new > 0) {
                   10204:                     foreach my $item (@current) {
                   10205:                         if (!grep(/^\Q$item\E$/,@new)) {
                   10206:                             $changes{$type}{$setting} = 1;
1.82      raeburn  10207:                             last;
                   10208:                         }
                   10209:                     }
1.84      raeburn  10210:                     foreach my $item (@new) {
                   10211:                         if (!grep(/^\Q$item\E$/,@current)) {
                   10212:                             $changes{$type}{$setting} = 1;
                   10213:                             last;
1.82      raeburn  10214:                         }
                   10215:                     }
                   10216:                 } else {
1.83      raeburn  10217:                     $changes{$type}{$setting} = 1;
1.69      raeburn  10218:                 }
1.83      raeburn  10219:             } elsif (@new > 0) {
                   10220:                 $changes{$type}{$setting} = 1;
1.69      raeburn  10221:             }
                   10222:         }
                   10223:     }
                   10224:     if (keys(%changes) > 0) {
1.81      raeburn  10225:         my $titles= &LONCAPA::lonauthcgi::serverstatus_titles();
1.69      raeburn  10226:         my $putresult = &Apache::lonnet::put_dom('configuration',
                   10227:                                                  \%serverstatushash,$dom);
                   10228:         if ($putresult eq 'ok') {
                   10229:             $resulttext .= &mt('Changes made:').'<ul>';
                   10230:             foreach my $type (@pages) {
1.84      raeburn  10231:                 if (ref($changes{$type}) eq 'HASH') {
1.69      raeburn  10232:                     $resulttext .= '<li>'.$titles->{$type}.'<ul>';
1.84      raeburn  10233:                     if ($changes{$type}{'namedusers'}) {
1.69      raeburn  10234:                         if ($newserverstatus{$type}{'namedusers'} eq '') {
                   10235:                             $resulttext .= '<li>'.&mt("Access terminated for all specific (named) users").'</li>'."\n";
                   10236:                         } else {
                   10237:                             $resulttext .= '<li>'.&mt("Access available for the following specified users: ").$newserverstatus{$type}{'namedusers'}.'</li>'."\n";
                   10238:                         }
1.84      raeburn  10239:                     }
                   10240:                     if ($changes{$type}{'machines'}) {
1.69      raeburn  10241:                         if ($newserverstatus{$type}{'machines'} eq '') {
                   10242:                             $resulttext .= '<li>'.&mt("Access terminated for all specific IP addresses").'</li>'."\n";
                   10243:                         } else {
                   10244:                             $resulttext .= '<li>'.&mt("Access available for the following specified IP addresses: ").$newserverstatus{$type}{'machines'}.'</li>'."\n";
                   10245:                         }
                   10246: 
                   10247:                     }
                   10248:                     $resulttext .= '</ul></li>';
                   10249:                 }
                   10250:             }
                   10251:             $resulttext .= '</ul>';
                   10252:         } else {
                   10253:             $resulttext = '<span class="LC_error">'.
                   10254:                           &mt('An error occurred saving access settings for server status pages: [_1].',$putresult).'</span>';
                   10255: 
                   10256:         }
                   10257:     } else {
                   10258:         $resulttext = &mt('No changes made to access to server status pages');
                   10259:     }
                   10260:     return $resulttext;
                   10261: }
                   10262: 
1.118     jms      10263: sub modify_helpsettings {
1.122     jms      10264:     my ($r,$dom,$confname,%domconfig) = @_;
1.166     raeburn  10265:     my ($resulttext,$errors,%changes,%helphash);
                   10266:     my %defaultchecked = ('submitbugs' => 'on');
                   10267:     my @offon = ('off','on');
1.118     jms      10268:     my @toggles = ('submitbugs');
                   10269:     if (ref($domconfig{'helpsettings'}) eq 'HASH') {
                   10270:         foreach my $item (@toggles) {
1.166     raeburn  10271:             if ($defaultchecked{$item} eq 'on') { 
                   10272:                 if ($domconfig{'helpsettings'}{$item} eq '') {
                   10273:                     if ($env{'form.'.$item} eq '0') {
                   10274:                         $changes{$item} = 1;
                   10275:                     }
                   10276:                 } elsif ($domconfig{'helpsettings'}{$item} ne $env{'form.'.$item}) {
                   10277:                     $changes{$item} = 1;
                   10278:                 }
                   10279:             } elsif ($defaultchecked{$item} eq 'off') {
                   10280:                 if ($domconfig{'helpsettings'}{$item} eq '') {
                   10281:                     if ($env{'form.'.$item} eq '1') {
                   10282:                         $changes{$item} = 1;
                   10283:                     }
                   10284:                 } elsif ($domconfig{'helpsettings'}{$item} ne $env{'form.'.$item}) {
                   10285:                     $changes{$item} = 1;
                   10286:                 }
                   10287:             }
1.210     raeburn  10288:             if (($env{'form.'.$item} eq '0') || ($env{'form.'.$item} eq '1')) {
1.166     raeburn  10289:                 $helphash{'helpsettings'}{$item} = $env{'form.'.$item};
                   10290:             }
                   10291:         }
1.118     jms      10292:     }
1.123     jms      10293:     my $putresult;
                   10294:     if (keys(%changes) > 0) {
1.166     raeburn  10295:         $putresult = &Apache::lonnet::put_dom('configuration',\%helphash,$dom);
1.168     raeburn  10296:         if ($putresult eq 'ok') {
1.166     raeburn  10297:             $resulttext = &mt('Changes made:').'<ul>';
                   10298:             foreach my $item (sort(keys(%changes))) {
                   10299:                 if ($item eq 'submitbugs') {
                   10300:                     $resulttext .= '<li>'.&mt('Display link to: [_1] set to "'.$offon[$env{'form.'.$item}].'".',
                   10301:                                               &Apache::loncommon::modal_link('http://bugs.loncapa.org',
                   10302:                                               &mt('LON-CAPA bug tracker'),600,500)).'</li>';
                   10303:                 }
                   10304:             }
                   10305:             $resulttext .= '</ul>';
                   10306:         } else {
                   10307:             $resulttext = &mt('No changes made to help settings');
1.168     raeburn  10308:             $errors .= '<li><span class="LC_error">'.
                   10309:                        &mt('An error occurred storing the settings: [_1]',
                   10310:                            $putresult).'</span></li>';
1.166     raeburn  10311:         }
1.118     jms      10312:     }
                   10313:     if ($errors) {
1.168     raeburn  10314:         $resulttext .= '<br />'.&mt('The following errors occurred: ').'<ul>'.
1.118     jms      10315:                        $errors.'</ul>';
                   10316:     }
                   10317:     return $resulttext;
                   10318: }
                   10319: 
1.121     raeburn  10320: sub modify_coursedefaults {
1.212     raeburn  10321:     my ($dom,$lastactref,%domconfig) = @_;
1.121     raeburn  10322:     my ($resulttext,$errors,%changes,%defaultshash);
1.257     raeburn  10323:     my %defaultchecked = (
                   10324:                            'canuse_pdfforms' => 'off',
                   10325:                            'uselcmath'       => 'on',
                   10326:                            'usejsme'         => 'on'
                   10327:                          );
                   10328:     my @toggles = ('canuse_pdfforms','uselcmath','usejsme');
1.198     raeburn  10329:     my @numbers = ('anonsurvey_threshold','uploadquota_official','uploadquota_unofficial',
1.216     raeburn  10330:                    'uploadquota_community','uploadquota_textbook');
                   10331:     my @types = ('official','unofficial','community','textbook');
1.198     raeburn  10332:     my %staticdefaults = (
                   10333:                            anonsurvey_threshold => 10,
                   10334:                            uploadquota          => 500,
1.257     raeburn  10335:                            postsubmit           => 60,
1.198     raeburn  10336:                          );
1.121     raeburn  10337: 
                   10338:     $defaultshash{'coursedefaults'} = {};
                   10339: 
                   10340:     if (ref($domconfig{'coursedefaults'}) ne 'HASH') {
                   10341:         if ($domconfig{'coursedefaults'} eq '') {
                   10342:             $domconfig{'coursedefaults'} = {};
                   10343:         }
                   10344:     }
                   10345: 
                   10346:     if (ref($domconfig{'coursedefaults'}) eq 'HASH') {
                   10347:         foreach my $item (@toggles) {
                   10348:             if ($defaultchecked{$item} eq 'on') {
                   10349:                 if (($domconfig{'coursedefaults'}{$item} eq '') &&
                   10350:                     ($env{'form.'.$item} eq '0')) {
                   10351:                     $changes{$item} = 1;
1.192     raeburn  10352:                 } elsif ($domconfig{'coursedefaults'}{$item} ne $env{'form.'.$item}) {
1.121     raeburn  10353:                     $changes{$item} = 1;
                   10354:                 }
                   10355:             } elsif ($defaultchecked{$item} eq 'off') {
                   10356:                 if (($domconfig{'coursedefaults'}{$item} eq '') &&
                   10357:                     ($env{'form.'.$item} eq '1')) {
                   10358:                     $changes{$item} = 1;
                   10359:                 } elsif ($domconfig{'coursedefaults'}{$item} ne $env{'form.'.$item}) {
                   10360:                     $changes{$item} = 1;
                   10361:                 }
                   10362:             }
                   10363:             $defaultshash{'coursedefaults'}{$item} = $env{'form.'.$item};
                   10364:         }
1.198     raeburn  10365:         foreach my $item (@numbers) {
                   10366:             my ($currdef,$newdef);
1.208     raeburn  10367:             $newdef = $env{'form.'.$item};
1.198     raeburn  10368:             if ($item eq 'anonsurvey_threshold') {
                   10369:                 $currdef = $domconfig{'coursedefaults'}{$item};
                   10370:                 $newdef =~ s/\D//g;
                   10371:                 if ($newdef eq '' || $newdef < 1) {
                   10372:                     $newdef = 1;
                   10373:                 }
                   10374:                 $defaultshash{'coursedefaults'}{$item} = $newdef;
                   10375:             } else {
                   10376:                 my ($type) = ($item =~ /^\Quploadquota_\E(\w+)$/);
                   10377:                 if (ref($domconfig{'coursedefaults'}{'uploadquota'}) eq 'HASH') {
                   10378:                     $currdef = $domconfig{'coursedefaults'}{'uploadquota'}{$type};
                   10379:                 }
                   10380:                 $newdef =~ s/[^\w.\-]//g;
                   10381:                 $defaultshash{'coursedefaults'}{'uploadquota'}{$type} = $newdef;
                   10382:             }
                   10383:             if ($currdef ne $newdef) {
                   10384:                 my $staticdef;
                   10385:                 if ($item eq 'anonsurvey_threshold') {
                   10386:                     unless (($currdef eq '') && ($newdef == $staticdefaults{$item})) {
                   10387:                         $changes{$item} = 1;
                   10388:                     }
                   10389:                 } else {
                   10390:                     unless (($currdef eq '') && ($newdef == $staticdefaults{'uploadquota'})) {
                   10391:                         $changes{'uploadquota'} = 1;
                   10392:                     }
                   10393:                 }
1.139     raeburn  10394:             }
                   10395:         }
1.264     raeburn  10396:         my $currclone = $domconfig{'coursedefaults'}{'canclone'};
                   10397:         my @currclonecode;
                   10398:         if (ref($currclone) eq 'HASH') {
                   10399:             if (ref($currclone->{'instcode'}) eq 'ARRAY') {
                   10400:                 @currclonecode = @{$currclone->{'instcode'}};
                   10401:             }
                   10402:         }
                   10403:         my $newclone;
                   10404:         if ($env{'form.canclone'} =~ /^(none|domain|instcode)$/) { 
                   10405:             $newclone = $env{'form.canclone'};
                   10406:         }
                   10407:         if ($newclone eq 'instcode') {
                   10408:             my @newcodes = &Apache::loncommon::get_env_multiple('form.clonecode');
                   10409:             my (%codedefaults,@code_order,@clonecode);
                   10410:             &Apache::lonnet::auto_instcode_defaults($dom,\%codedefaults,
                   10411:                                                     \@code_order);
                   10412:             foreach my $item (@code_order) {
                   10413:                 if (grep(/^\Q$item\E$/,@newcodes)) {
                   10414:                     push(@clonecode,$item);
                   10415:                 }
                   10416:             }
                   10417:             if (@clonecode) {
                   10418:                 $defaultshash{'coursedefaults'}{'canclone'} = { $newclone => \@clonecode };
                   10419:                 my @diffs = &Apache::loncommon::compare_arrays(\@currclonecode,\@clonecode);
                   10420:                 if (@diffs) {
                   10421:                     $changes{'canclone'} = 1;
                   10422:                 }
                   10423:             } else {
                   10424:                 $newclone eq '';
                   10425:             }
                   10426:         } elsif ($newclone ne '') {
                   10427:             $defaultshash{'coursedefaults'}{'canclone'} = $newclone; 
                   10428:         } 
                   10429:         if ($newclone ne $currclone) {
                   10430:             $changes{'canclone'} = 1;
                   10431:         }
1.257     raeburn  10432:         my %credits;
                   10433:         foreach my $type (@types) {
                   10434:             unless ($type eq 'community') {
                   10435:                 $credits{$type} = $env{'form.'.$type.'_credits'};
                   10436:                 $credits{$type} =~ s/[^\d.]+//g;
                   10437:             }
                   10438:         }
                   10439:         if ((ref($domconfig{'coursedefaults'}{'coursecredits'}) ne 'HASH') &&
                   10440:             ($env{'form.coursecredits'} eq '1')) {
                   10441:             $changes{'coursecredits'} = 1;
                   10442:             foreach my $type (keys(%credits)) {
                   10443:                 $defaultshash{'coursedefaults'}{'coursecredits'}{$type} = $credits{$type};
                   10444:             }
                   10445:         } else {
                   10446:             if ($env{'form.coursecredits'} eq '1') { 
                   10447:                 foreach my $type (@types) {
                   10448:                     unless ($type eq 'community') {
                   10449:                         if ($domconfig{'coursedefaults'}{'coursecredits'}{$type} ne $credits{$type}) {        
                   10450:                             $changes{'coursecredits'} = 1;
                   10451:                         }
                   10452:                         $defaultshash{'coursedefaults'}{'coursecredits'}{$type} = $credits{$type};
                   10453:                     }
                   10454:                 }
                   10455:             } elsif (ref($domconfig{'coursedefaults'}{'coursecredits'}) eq 'HASH') {
                   10456:                 foreach my $type (@types) {
                   10457:                     unless ($type eq 'community') {
                   10458:                         if ($domconfig{'coursedefaults'}{'coursecredits'}{$type}) {
                   10459:                             $changes{'coursecredits'} = 1;
                   10460:                             last;
                   10461:                         }
                   10462:                     }
                   10463:                 }
                   10464:             }
                   10465:         }
                   10466:         if ($env{'form.postsubmit'} eq '1') {
                   10467:             $defaultshash{'coursedefaults'}{'postsubmit'}{'client'} = 'on';
                   10468:             my %currtimeout;
                   10469:             if (ref($domconfig{'coursedefaults'}{'postsubmit'}) eq 'HASH') {
                   10470:                 if ($domconfig{'coursedefaults'}{'postsubmit'}{'client'} eq 'off') {
                   10471:                     $changes{'postsubmit'} = 1;
                   10472:                 }
                   10473:                 if (ref($domconfig{'coursedefaults'}{'postsubmit'}{'timeout'}) eq 'HASH') {
                   10474:                     %currtimeout = %{$domconfig{'coursedefaults'}{'postsubmit'}{'timeout'}};
                   10475:                 }
                   10476:             } else {
                   10477:                 $changes{'postsubmit'} = 1;
                   10478:             }
                   10479:             foreach my $type (@types) {
                   10480:                 my $timeout = $env{'form.'.$type.'_timeout'};
                   10481:                 $timeout =~ s/\D//g;
                   10482:                 if ($timeout == $staticdefaults{'postsubmit'}) {
                   10483:                     $timeout = '';
                   10484:                 } elsif (($timeout eq '') || ($timeout =~ /^0+$/)) {
                   10485:                     $timeout = '0';
                   10486:                 }
                   10487:                 unless ($timeout eq '') {
                   10488:                     $defaultshash{'coursedefaults'}{'postsubmit'}{'timeout'}{$type} = $timeout;
                   10489:                 }
                   10490:                 if (exists($currtimeout{$type})) {
                   10491:                     if ($timeout ne $currtimeout{$type}) {
                   10492:                         $changes{'postsubmit'} = 1; 
                   10493:                     }
                   10494:                 } elsif ($timeout ne '') {
                   10495:                     $changes{'postsubmit'} = 1;
                   10496:                 }
                   10497:             }
                   10498:         } else {
                   10499:             $defaultshash{'coursedefaults'}{'postsubmit'}{'client'} = 'off';
                   10500:             if (ref($domconfig{'coursedefaults'}{'postsubmit'}) eq 'HASH') {
                   10501:                 if ($domconfig{'coursedefaults'}{'postsubmit'}{'client'} eq 'on') {
                   10502:                     $changes{'postsubmit'} = 1;
                   10503:                 }
                   10504:             } else {
                   10505:                 $changes{'postsubmit'} = 1;
                   10506:             }
1.192     raeburn  10507:         }
1.121     raeburn  10508:     }
                   10509:     my $putresult = &Apache::lonnet::put_dom('configuration',\%defaultshash,
                   10510:                                              $dom);
                   10511:     if ($putresult eq 'ok') {
                   10512:         if (keys(%changes) > 0) {
1.213     raeburn  10513:             my %domdefaults = &Apache::lonnet::get_domain_defaults($dom,1);
1.257     raeburn  10514:             if (($changes{'canuse_pdfforms'}) || ($changes{'uploadquota'}) || ($changes{'postsubmit'}) ||
1.264     raeburn  10515:                 ($changes{'coursecredits'}) || ($changes{'uselcmath'}) || ($changes{'usejsme'}) ||
                   10516:                 ($changes{'canclone'})) {
1.257     raeburn  10517:                 foreach my $item ('canuse_pdfforms','uselcmath','usejsme') { 
                   10518:                     if ($changes{$item}) {
                   10519:                         $domdefaults{$item}=$defaultshash{'coursedefaults'}{$item};
                   10520:                     }
                   10521:                 } 
1.192     raeburn  10522:                 if ($changes{'coursecredits'}) {
                   10523:                     if (ref($defaultshash{'coursedefaults'}{'coursecredits'}) eq 'HASH') {
1.257     raeburn  10524:                         foreach my $type (keys(%{$defaultshash{'coursedefaults'}{'coursecredits'}})) {
                   10525:                             $domdefaults{$type.'credits'} =
                   10526:                                 $defaultshash{'coursedefaults'}{'coursecredits'}{$type};
                   10527:                         }
                   10528:                     }
                   10529:                 }
                   10530:                 if ($changes{'postsubmit'}) {
                   10531:                     if (ref($defaultshash{'coursedefaults'}{'postsubmit'}) eq 'HASH') {
                   10532:                         $domdefaults{'postsubmit'} = $defaultshash{'coursedefaults'}{'postsubmit'}{'client'};
                   10533:                         if (ref($defaultshash{'coursedefaults'}{'postsubmit'}{'timeout'}) eq 'HASH') {
                   10534:                             foreach my $type (keys(%{$defaultshash{'coursedefaults'}{'postsubmit'}{'timeout'}})) {
                   10535:                                 $domdefaults{$type.'postsubtimeout'} =
                   10536:                                     $defaultshash{'coursedefaults'}{'postsubmit'}{'timeout'}{$type};
                   10537:                             }
                   10538:                         }
1.192     raeburn  10539:                     }
                   10540:                 }
1.198     raeburn  10541:                 if ($changes{'uploadquota'}) {
                   10542:                     if (ref($defaultshash{'coursedefaults'}{'uploadquota'}) eq 'HASH') {
                   10543:                         foreach my $type (@types) {
                   10544:                             $domdefaults{$type.'quota'}=$defaultshash{'coursedefaults'}{'uploadquota'}{$type};
                   10545:                         }
                   10546:                     }
                   10547:                 }
1.264     raeburn  10548:                 if ($changes{'canclone'}) {
                   10549:                     if (ref($defaultshash{'coursedefaults'}{'canclone'}) eq 'HASH') {
                   10550:                         if (ref($defaultshash{'coursedefaults'}{'canclone'}{'instcode'}) eq 'ARRAY') {
                   10551:                             my @clonecodes = @{$defaultshash{'coursedefaults'}{'canclone'}{'instcode'}};
                   10552:                             if (@clonecodes) {
                   10553:                                 $domdefaults{'canclone'} = join('+',@clonecodes);
                   10554:                             }
                   10555:                         }
                   10556:                     } else {
                   10557:                         $domdefaults{'canclone'}=$defaultshash{'coursedefaults'}{'canclone'};
                   10558:                     }
                   10559:                 }
1.121     raeburn  10560:                 my $cachetime = 24*60*60;
                   10561:                 &Apache::lonnet::do_cache_new('domdefaults',$dom,\%domdefaults,$cachetime);
1.212     raeburn  10562:                 if (ref($lastactref) eq 'HASH') {
                   10563:                     $lastactref->{'domdefaults'} = 1;
                   10564:                 }
1.121     raeburn  10565:             }
                   10566:             $resulttext = &mt('Changes made:').'<ul>';
                   10567:             foreach my $item (sort(keys(%changes))) {
                   10568:                 if ($item eq 'canuse_pdfforms') {
                   10569:                     if ($env{'form.'.$item} eq '1') {
                   10570:                         $resulttext .= '<li>'.&mt("Course/Community users can create/upload PDF forms set to 'on'").'</li>';
                   10571:                     } else {
                   10572:                         $resulttext .= '<li>'.&mt('Course/Community users can create/upload PDF forms set to "off"').'</li>';
                   10573:                     }
1.257     raeburn  10574:                 } elsif ($item eq 'uselcmath') {
                   10575:                     if ($env{'form.'.$item} eq '1') {
                   10576:                         $resulttext .= '<li>'.&mt('Math preview uses LON-CAPA previewer (javascript), if supported by browser.').'</li>';
                   10577:                     } else {
                   10578:                         $resulttext .= '<li>'.&mt('Math preview uses DragMath (Java), if supported by client OS.').'</li>';
                   10579:                     }
                   10580:                 } elsif ($item eq 'usejsme') {
                   10581:                     if ($env{'form.'.$item} eq '1') {
                   10582:                         $resulttext .= '<li>'.&mt('Molecule editor uses JSME (HTML5), if supported by browser.').'</li>';
                   10583:                     } else {
                   10584:                         $resulttext .= '<li>'.&mt('Molecule editor uses JME (Java), if supported by client OS.').'</li>'; 
                   10585:                     }
1.139     raeburn  10586:                 } elsif ($item eq 'anonsurvey_threshold') {
1.192     raeburn  10587:                     $resulttext .= '<li>'.&mt('Responder count required for display of anonymous survey submissions set to [_1].',$defaultshash{'coursedefaults'}{'anonsurvey_threshold'}).'</li>';
1.198     raeburn  10588:                 } elsif ($item eq 'uploadquota') {
                   10589:                     if (ref($defaultshash{'coursedefaults'}{'uploadquota'}) eq 'HASH') {
                   10590:                         $resulttext .= '<li>'.&mt('Default quota for content uploaded to a course/community via Course Editor set as follows:').'<ul>'.
                   10591:                                        '<li>'.&mt('Official courses: [_1] MB','<b>'.$defaultshash{'coursedefaults'}{'uploadquota'}{'official'}.'</b>').'</li>'.
                   10592:                                        '<li>'.&mt('Unofficial courses: [_1] MB','<b>'.$defaultshash{'coursedefaults'}{'uploadquota'}{'unofficial'}.'</b>').'</li>'.
1.216     raeburn  10593:                                        '<li>'.&mt('Textbook courses: [_1] MB','<b>'.$defaultshash{'coursedefaults'}{'uploadquota'}{'textbook'}.'</b>').'</li>'.
                   10594: 
1.198     raeburn  10595:                                        '<li>'.&mt('Communities: [_1] MB','<b>'.$defaultshash{'coursedefaults'}{'uploadquota'}{'community'}.'</b>').'</li>'.
                   10596:                                        '</ul>'.
                   10597:                                        '</li>';
                   10598:                     } else {
                   10599:                         $resulttext .= '<li>'.&mt('Default quota for content uploaded via Course Editor remains default: [_1] MB',$staticdefaults{'uploadquota'}).'</li>';
                   10600:                     }
1.257     raeburn  10601:                 } elsif ($item eq 'postsubmit') {
                   10602:                     if ($domdefaults{'postsubmit'} eq 'off') {
                   10603:                         $resulttext .= '<li>'.&mt('Submit button(s) remain enabled on page after student makes submission.');
                   10604:                     } else {
                   10605:                         $resulttext .= '<li>'.&mt('Submit button(s) disabled on page after student makes submission').'; ';
                   10606:                         if (ref($defaultshash{'coursedefaults'}{'postsubmit'}) eq 'HASH') { 
                   10607:                             $resulttext .= &mt('durations:').'<ul>';
                   10608:                             foreach my $type (@types) {
                   10609:                                 $resulttext .= '<li>';
                   10610:                                 my $timeout;
                   10611:                                 if (ref($defaultshash{'coursedefaults'}{'postsubmit'}{'timeout'}) eq 'HASH') {
                   10612:                                     $timeout = $defaultshash{'coursedefaults'}{'postsubmit'}{'timeout'}{$type};
                   10613:                                 }
                   10614:                                 my $display;
                   10615:                                 if ($timeout eq '0') {
                   10616:                                     $display = &mt('unlimited');
                   10617:                                 } elsif ($timeout eq '') {
                   10618:                                     $display = &mt('[quant,_1,second] (default)',$staticdefaults{'postsubmit'});
                   10619:                                 } else {
                   10620:                                     $display = &mt('[quant,_1,second]',$timeout);
                   10621:                                 }
                   10622:                                 if ($type eq 'community') {
                   10623:                                     $resulttext .= &mt('Communities');
                   10624:                                 } elsif ($type eq 'official') {
                   10625:                                     $resulttext .= &mt('Official courses');
                   10626:                                 } elsif ($type eq 'unofficial') {
                   10627:                                     $resulttext .= &mt('Unofficial courses');
                   10628:                                 } elsif ($type eq 'textbook') {
                   10629:                                     $resulttext .= &mt('Textbook courses');
                   10630:                                 }
                   10631:                                 $resulttext .= ' -- '.$display.'</li>';
                   10632:                             }
                   10633:                             $resulttext .= '</ul>';
                   10634:                         }
                   10635:                         $resulttext .= '</li>';    
                   10636:                     }
1.192     raeburn  10637:                 } elsif ($item eq 'coursecredits') {
                   10638:                     if (ref($defaultshash{'coursedefaults'}{'coursecredits'}) eq 'HASH') {
                   10639:                         if (($domdefaults{'officialcredits'} eq '') &&
1.216     raeburn  10640:                             ($domdefaults{'unofficialcredits'} eq '') &&
                   10641:                             ($domdefaults{'textbookcredits'} eq '')) {
1.192     raeburn  10642:                             $resulttext .= '<li>'.&mt('Student credits not in use for courses in this domain').'</li>';
                   10643:                         } else {
                   10644:                             $resulttext .= '<li>'.&mt('Student credits can be set per course by a Domain Coordinator, with the following defaults applying:').'<ul>'.
                   10645:                                            '<li>'.&mt('Official courses: [_1]',$defaultshash{'coursedefaults'}{'coursecredits'}{'official'}).'</li>'.
                   10646:                                            '<li>'.&mt('Unofficial courses: [_1]',$defaultshash{'coursedefaults'}{'coursecredits'}{'unofficial'}).'</li>'.
1.216     raeburn  10647:                                            '<li>'.&mt('Textbook courses: [_1]',$defaultshash{'coursedefaults'}{'coursecredits'}{'textbook'}).'</li>'.
1.192     raeburn  10648:                                            '</ul>'.
                   10649:                                            '</li>';
                   10650:                         }
                   10651:                     } else {
                   10652:                         $resulttext .= '<li>'.&mt('Student credits not in use for courses in this domain').'</li>';
                   10653:                     }
1.264     raeburn  10654:                 } elsif ($item eq 'canclone') {
                   10655:                     if (ref($defaultshash{'coursedefaults'}{'canclone'}) eq 'HASH') {
                   10656:                         if (ref($defaultshash{'coursedefaults'}{'canclone'}{'instcode'}) eq 'ARRAY') {
                   10657:                             my $clonecodes = join(' '.&mt('and').' ',@{$defaultshash{'coursedefaults'}{'canclone'}{'instcode'}});
                   10658:                             $resulttext .= '<li>'.&mt('By default, official courses can be cloned from existing courses with the same: [_1]','<b>'.$clonecodes.'</b>').'</li>';
                   10659:                         }
                   10660:                     } elsif ($defaultshash{'coursedefaults'}{'canclone'} eq 'domain') {
                   10661:                         $resulttext .= '<li>'.&mt('By default, a course requester can clone any course from his/her domain.').'</li>';
                   10662:                     } else {
                   10663:                         $resulttext .= '<li>'.&mt('By default, only course owner and coordinators may clone a course.').'</li>'; 
                   10664:                     }
1.140     raeburn  10665:                 }
1.121     raeburn  10666:             }
                   10667:             $resulttext .= '</ul>';
                   10668:         } else {
                   10669:             $resulttext = &mt('No changes made to course defaults');
                   10670:         }
                   10671:     } else {
                   10672:         $resulttext = '<span class="LC_error">'.
                   10673:             &mt('An error occurred: [_1]',$putresult).'</span>';
                   10674:     }
                   10675:     return $resulttext;
                   10676: }
                   10677: 
1.231     raeburn  10678: sub modify_selfenrollment {
                   10679:     my ($dom,$lastactref,%domconfig) = @_;
                   10680:     my ($resulttext,$errors,%changes,%selfenrollhash,%ordered);
                   10681:     my @types = ('official','unofficial','community','textbook');
                   10682:     my %titles = &tool_titles();
1.232     raeburn  10683:     my %descs = &Apache::lonuserutils::selfenroll_default_descs();
                   10684:     ($ordered{'admin'},my $titlesref) = &Apache::lonuserutils::get_selfenroll_titles();
1.231     raeburn  10685:     $ordered{'default'} = ['types','registered','approval','limit'];
                   10686: 
                   10687:     my (%roles,%shown,%toplevel);
                   10688:     $roles{'0'} = &Apache::lonnet::plaintext('dc');
                   10689: 
                   10690:     if (ref($domconfig{'selfenrollment'}) ne 'HASH') {
                   10691:         if ($domconfig{'selfenrollment'} eq '') {
                   10692:             $domconfig{'selfenrollment'} = {};
                   10693:         }
                   10694:     }
                   10695:     %toplevel = (
                   10696:                   admin      => 'Configuration Rights',
                   10697:                   default    => 'Default settings',
                   10698:                   validation => 'Validation of self-enrollment requests',
                   10699:                 );
1.233     raeburn  10700:     my ($itemsref,$namesref,$fieldsref) = &Apache::lonuserutils::selfenroll_validation_types();
1.231     raeburn  10701: 
                   10702:     if (ref($ordered{'admin'}) eq 'ARRAY') {
                   10703:         foreach my $item (@{$ordered{'admin'}}) {
                   10704:             foreach my $type (@types) {
                   10705:                 if ($env{'form.selfenrolladmin_'.$item.'_'.$type}) {
                   10706:                     $selfenrollhash{'admin'}{$type}{$item} = 1;
                   10707:                 } else {
                   10708:                     $selfenrollhash{'admin'}{$type}{$item} = 0;
                   10709:                 }
                   10710:                 if (ref($domconfig{'selfenrollment'}{'admin'}) eq 'HASH') {
                   10711:                     if (ref($domconfig{'selfenrollment'}{'admin'}{$type}) eq 'HASH') {
                   10712:                         if ($selfenrollhash{'admin'}{$type}{$item} ne
                   10713:                             $domconfig{'selfenrollment'}{'admin'}{$type}{$item})  {
                   10714:                             push(@{$changes{'admin'}{$type}},$item);
                   10715:                         }
                   10716:                     } else {
                   10717:                         if (!$selfenrollhash{'admin'}{$type}{$item}) {
                   10718:                             push(@{$changes{'admin'}{$type}},$item);
                   10719:                         }
                   10720:                     }
                   10721:                 } elsif (!$selfenrollhash{'admin'}{$type}{$item}) {
                   10722:                     push(@{$changes{'admin'}{$type}},$item);
                   10723:                 }
                   10724:             }
                   10725:         }
                   10726:     }
                   10727: 
                   10728:     foreach my $item (@{$ordered{'default'}}) {
                   10729:         foreach my $type (@types) {
                   10730:             my $value = $env{'form.selfenrolldefault_'.$item.'_'.$type};
                   10731:             if ($item eq 'types') {
                   10732:                 unless (($value eq 'all') || ($value eq 'dom')) {
                   10733:                     $value = '';
                   10734:                 }
                   10735:             } elsif ($item eq 'registered') {
                   10736:                 unless ($value eq '1') {
                   10737:                     $value = 0;
                   10738:                 }
                   10739:             } elsif ($item eq 'approval') {
                   10740:                 unless ($value =~ /^[012]$/) {
                   10741:                     $value = 0;
                   10742:                 }
                   10743:             } else {
                   10744:                 unless (($value eq 'allstudents') || ($value eq 'selfenrolled')) {
                   10745:                     $value = 'none';
                   10746:                 }
                   10747:             }
                   10748:             $selfenrollhash{'default'}{$type}{$item} = $value;
                   10749:             if (ref($domconfig{'selfenrollment'}{'default'}) eq 'HASH') {
                   10750:                 if (ref($domconfig{'selfenrollment'}{'default'}{$type}) eq 'HASH') {
                   10751:                     if ($selfenrollhash{'default'}{$type}{$item} ne
                   10752:                          $domconfig{'selfenrollment'}{'default'}{$type}{$item})  {
                   10753:                          push(@{$changes{'default'}{$type}},$item);
                   10754:                     }
                   10755:                 } else {
                   10756:                     push(@{$changes{'default'}{$type}},$item);
                   10757:                 }
                   10758:             } else {
                   10759:                 push(@{$changes{'default'}{$type}},$item);
                   10760:             }
                   10761:             if ($item eq 'limit') {
                   10762:                 if (($value eq 'allstudents') || ($value eq 'selfenrolled')) {
                   10763:                     $env{'form.selfenrolldefault_cap_'.$type} =~ s/\D//g;
                   10764:                     if ($env{'form.selfenrolldefault_cap_'.$type} ne '') {
                   10765:                         $selfenrollhash{'default'}{$type}{'cap'} = $env{'form.selfenrolldefault_cap_'.$type};
                   10766:                     }
                   10767:                 } else {
                   10768:                     $selfenrollhash{'default'}{$type}{'cap'} = '';
                   10769:                 }
                   10770:                 if (ref($domconfig{'selfenrollment'}{'default'}{$type}) eq 'HASH') {
                   10771:                     if ($selfenrollhash{'default'}{$type}{'cap'} ne
                   10772:                          $domconfig{'selfenrollment'}{'admin'}{$type}{'cap'})  {
                   10773:                          push(@{$changes{'default'}{$type}},'cap');
                   10774:                     }
                   10775:                 } elsif ($selfenrollhash{'default'}{$type}{'cap'} ne '') {
                   10776:                     push(@{$changes{'default'}{$type}},'cap');
                   10777:                 }
                   10778:             }
                   10779:         }
                   10780:     }
                   10781: 
                   10782:     foreach my $item (@{$itemsref}) {
                   10783:         if ($item eq 'fields') {
                   10784:             my @changed;
                   10785:             @{$selfenrollhash{'validation'}{$item}} = &Apache::loncommon::get_env_multiple('form.selfenroll_validation_'.$item);
                   10786:             if (@{$selfenrollhash{'validation'}{$item}} > 0) {
                   10787:                 @{$selfenrollhash{'validation'}{$item}} = sort(@{$selfenrollhash{'validation'}{$item}});
                   10788:             }
                   10789:             if (ref($domconfig{'selfenrollment'}{'validation'}) eq 'HASH') {
                   10790:                 if (ref($domconfig{'selfenrollment'}{'validation'}{$item}) eq 'ARRAY') {
                   10791:                     @changed = &Apache::loncommon::compare_arrays($selfenrollhash{'validation'}{$item},
                   10792:                                                                   $domconfig{'selfenrollment'}{'validation'}{$item});
                   10793:                 } else {
                   10794:                     @changed = @{$selfenrollhash{'validation'}{$item}};
                   10795:                 }
                   10796:             } else {
                   10797:                 @changed = @{$selfenrollhash{'validation'}{$item}};
                   10798:             }
                   10799:             if (@changed) {
                   10800:                 if ($selfenrollhash{'validation'}{$item}) { 
                   10801:                     $changes{'validation'}{$item} = join(', ',@{$selfenrollhash{'validation'}{$item}});
                   10802:                 } else {
                   10803:                     $changes{'validation'}{$item} = &mt('None');
                   10804:                 }
                   10805:             }
                   10806:         } else {
                   10807:             $selfenrollhash{'validation'}{$item} = $env{'form.selfenroll_validation_'.$item};
                   10808:             if ($item eq 'markup') {
                   10809:                if ($env{'form.selfenroll_validation_'.$item}) {
                   10810:                    $env{'form.selfenroll_validation_'.$item} =~ s/[\n\r\f]+/\s/gs;
                   10811:                }
                   10812:             }
                   10813:             if (ref($domconfig{'selfenrollment'}{'validation'}) eq 'HASH') {
                   10814:                 if ($domconfig{'selfenrollment'}{'validation'}{$item} ne $selfenrollhash{'validation'}{$item}) {
                   10815:                     $changes{'validation'}{$item} = $selfenrollhash{'validation'}{$item};
                   10816:                 }
                   10817:             }
                   10818:         }
                   10819:     }
                   10820: 
                   10821:     my $putresult = &Apache::lonnet::put_dom('configuration',{'selfenrollment' => \%selfenrollhash},
                   10822:                                              $dom);
                   10823:     if ($putresult eq 'ok') {
                   10824:         if (keys(%changes) > 0) {
                   10825:             my %domdefaults = &Apache::lonnet::get_domain_defaults($dom,1);
                   10826:             $resulttext = &mt('Changes made:').'<ul>';
                   10827:             foreach my $key ('admin','default','validation') {
                   10828:                 if (ref($changes{$key}) eq 'HASH') {
                   10829:                     $resulttext .= '<li>'.$toplevel{$key}.'<ul>';
                   10830:                     if ($key eq 'validation') {
                   10831:                         foreach my $item (@{$itemsref}) {
                   10832:                             if (exists($changes{$key}{$item})) {
                   10833:                                 if ($item eq 'markup') {
                   10834:                                     $resulttext .= '<li>'.&mt('[_1] set to: [_2]',$namesref->{$item},
                   10835:                                                               '<br /><pre>'.$changes{$key}{$item}.'</pre>').'</li>';
                   10836:                                 } else {  
                   10837:                                     $resulttext .= '<li>'.&mt('[_1] set to: [_2]',$namesref->{$item},
                   10838:                                                               '<b>'.$changes{$key}{$item}.'</b>').'</li>';
                   10839:                                 }
                   10840:                             }
                   10841:                         }
                   10842:                     } else {
                   10843:                         foreach my $type (@types) {
                   10844:                             if ($type eq 'community') {
                   10845:                                 $roles{'1'} = &mt('Community personnel');
                   10846:                             } else {
                   10847:                                 $roles{'1'} = &mt('Course personnel');
                   10848:                             }
                   10849:                             if (ref($changes{$key}{$type}) eq 'ARRAY') {
1.232     raeburn  10850:                                 if (ref($selfenrollhash{$key}{$type}) eq 'HASH') {
                   10851:                                     if ($key eq 'admin') {
                   10852:                                         my @mgrdc = ();
                   10853:                                         if (ref($ordered{$key}) eq 'ARRAY') {
                   10854:                                             foreach my $item (@{$ordered{'admin'}}) {
                   10855:                                                 if (ref($selfenrollhash{$key}{$type}) eq 'HASH') { 
                   10856:                                                     if ($selfenrollhash{$key}{$type}{$item} eq '0') {
                   10857:                                                         push(@mgrdc,$item);
                   10858:                                                     }
                   10859:                                                 }
                   10860:                                             }
                   10861:                                             if (@mgrdc) {
                   10862:                                                 $domdefaults{$type.'selfenrolladmdc'} = join(',',@mgrdc);
                   10863:                                             } else {
                   10864:                                                 delete($domdefaults{$type.'selfenrolladmdc'});
                   10865:                                             }
                   10866:                                         }
                   10867:                                     } else {
                   10868:                                         if (ref($ordered{$key}) eq 'ARRAY') {
                   10869:                                             foreach my $item (@{$ordered{$key}}) {
                   10870:                                                 if (grep(/^\Q$item\E$/,@{$changes{$key}{$type}})) {
                   10871:                                                     $domdefaults{$type.'selfenroll'.$item} =
                   10872:                                                         $selfenrollhash{$key}{$type}{$item};
                   10873:                                                 }
                   10874:                                             }
                   10875:                                         }
                   10876:                                     }
                   10877:                                 }
1.231     raeburn  10878:                                 $resulttext .= '<li>'.$titles{$type}.'<ul>';
                   10879:                                 foreach my $item (@{$ordered{$key}}) {
                   10880:                                     if (grep(/^\Q$item\E$/,@{$changes{$key}{$type}})) {
                   10881:                                         $resulttext .= '<li>';
                   10882:                                         if ($key eq 'admin') {
                   10883:                                             $resulttext .= &mt('[_1] -- management by: [_2]',$titlesref->{$item},
                   10884:                                                                '<b>'.$roles{$selfenrollhash{'admin'}{$type}{$item}}.'</b>');
                   10885:                                         } else {
                   10886:                                             $resulttext .= &mt('[_1] set to: [_2]',$titlesref->{$item},
                   10887:                                                                '<b>'.$descs{$item}{$selfenrollhash{'default'}{$type}{$item}}.'</b>');
                   10888:                                         }
                   10889:                                         $resulttext .= '</li>';
                   10890:                                     }
                   10891:                                 }
                   10892:                                 $resulttext .= '</ul></li>';
                   10893:                             }
                   10894:                         }
                   10895:                         $resulttext .= '</ul></li>'; 
                   10896:                     }
                   10897:                 }
1.232     raeburn  10898:                 if ((exists($changes{'admin'})) || (exists($changes{'default'}))) {
                   10899:                     my $cachetime = 24*60*60;
                   10900:                     &Apache::lonnet::do_cache_new('domdefaults',$dom,\%domdefaults,$cachetime);
                   10901:                     if (ref($lastactref) eq 'HASH') {
                   10902:                         $lastactref->{'domdefaults'} = 1;
                   10903:                     }
                   10904:                 }
1.231     raeburn  10905:             }
                   10906:             $resulttext .= '</ul>';
                   10907:         } else {
                   10908:             $resulttext = &mt('No changes made to self-enrollment settings');
                   10909:         }
                   10910:     } else {
                   10911:         $resulttext = '<span class="LC_error">'.
                   10912:             &mt('An error occurred: [_1]',$putresult).'</span>';
                   10913:     }
                   10914:     return $resulttext;
                   10915: }
                   10916: 
1.137     raeburn  10917: sub modify_usersessions {
1.212     raeburn  10918:     my ($dom,$lastactref,%domconfig) = @_;
1.145     raeburn  10919:     my @hostingtypes = ('version','excludedomain','includedomain');
                   10920:     my @offloadtypes = ('primary','default');
                   10921:     my %types = (
                   10922:                   remote => \@hostingtypes,
                   10923:                   hosted => \@hostingtypes,
                   10924:                   spares => \@offloadtypes,
                   10925:                 );
                   10926:     my @prefixes = ('remote','hosted','spares');
1.137     raeburn  10927:     my @lcversions = &Apache::lonnet::all_loncaparevs();
1.138     raeburn  10928:     my (%by_ip,%by_location,@intdoms);
                   10929:     &build_location_hashes(\@intdoms,\%by_ip,\%by_location);
                   10930:     my @locations = sort(keys(%by_location));
1.137     raeburn  10931:     my (%defaultshash,%changes);
                   10932:     foreach my $prefix (@prefixes) {
                   10933:         $defaultshash{'usersessions'}{$prefix} = {};
                   10934:     }
1.212     raeburn  10935:     my %domdefaults = &Apache::lonnet::get_domain_defaults($dom,1);
1.137     raeburn  10936:     my $resulttext;
1.138     raeburn  10937:     my %iphost = &Apache::lonnet::get_iphost();
1.137     raeburn  10938:     foreach my $prefix (@prefixes) {
1.145     raeburn  10939:         next if ($prefix eq 'spares');
                   10940:         foreach my $type (@{$types{$prefix}}) {
1.137     raeburn  10941:             my $inuse = $env{'form.'.$prefix.'_'.$type.'_inuse'};
                   10942:             if ($type eq 'version') {
                   10943:                 my $value = $env{'form.'.$prefix.'_'.$type};
                   10944:                 my $okvalue;
                   10945:                 if ($value ne '') {
                   10946:                     if (grep(/^\Q$value\E$/,@lcversions)) {
                   10947:                         $okvalue = $value;
                   10948:                     }
                   10949:                 }
                   10950:                 if (ref($domconfig{'usersessions'}) eq 'HASH') {
                   10951:                     if (ref($domconfig{'usersessions'}{$prefix}) eq 'HASH') {
                   10952:                         if ($domconfig{'usersessions'}{$prefix}{$type} ne '') {
                   10953:                             if ($inuse == 0) {
                   10954:                                 $changes{$prefix}{$type} = 1;
                   10955:                             } else {
                   10956:                                 if ($okvalue ne $domconfig{'usersessions'}{$prefix}{$type}) {
                   10957:                                     $changes{$prefix}{$type} = 1;
                   10958:                                 }
                   10959:                                 if ($okvalue ne '') {
                   10960:                                     $defaultshash{'usersessions'}{$prefix}{$type} = $okvalue;
                   10961:                                 } 
                   10962:                             }
                   10963:                         } else {
                   10964:                             if (($inuse == 1) && ($okvalue ne '')) {
                   10965:                                 $defaultshash{'usersessions'}{$prefix}{$type} = $okvalue;
                   10966:                                 $changes{$prefix}{$type} = 1;
                   10967:                             }
                   10968:                         }
                   10969:                     } else {
                   10970:                         if (($inuse == 1) && ($okvalue ne '')) {
                   10971:                             $defaultshash{'usersessions'}{$prefix}{$type} = $okvalue;
                   10972:                             $changes{$prefix}{$type} = 1;
                   10973:                         }
                   10974:                     }
                   10975:                 } else {
                   10976:                     if (($inuse == 1) && ($okvalue ne '')) {
                   10977:                         $defaultshash{'usersessions'}{$prefix}{$type} = $okvalue;
                   10978:                         $changes{$prefix}{$type} = 1;
                   10979:                     }
                   10980:                 }
                   10981:             } else {
                   10982:                 my @vals = &Apache::loncommon::get_env_multiple('form.'.$prefix.'_'.$type);
                   10983:                 my @okvals;
                   10984:                 foreach my $val (@vals) {
1.138     raeburn  10985:                     if ($val =~ /:/) {
                   10986:                         my @items = split(/:/,$val);
                   10987:                         foreach my $item (@items) {
                   10988:                             if (ref($by_location{$item}) eq 'ARRAY') {
                   10989:                                 push(@okvals,$item);
                   10990:                             }
                   10991:                         }
                   10992:                     } else {
                   10993:                         if (ref($by_location{$val}) eq 'ARRAY') {
                   10994:                             push(@okvals,$val);
                   10995:                         }
1.137     raeburn  10996:                     }
                   10997:                 }
                   10998:                 @okvals = sort(@okvals);
                   10999:                 if (ref($domconfig{'usersessions'}) eq 'HASH') {
                   11000:                     if (ref($domconfig{'usersessions'}{$prefix}) eq 'HASH') {
                   11001:                         if (ref($domconfig{'usersessions'}{$prefix}{$type}) eq 'ARRAY') {
                   11002:                             if ($inuse == 0) {
                   11003:                                 $changes{$prefix}{$type} = 1; 
                   11004:                             } else {
                   11005:                                 $defaultshash{'usersessions'}{$prefix}{$type} = \@okvals;
                   11006:                                 my @changed = &Apache::loncommon::compare_arrays($domconfig{'usersessions'}{$prefix}{$type},$defaultshash{'usersessions'}{$prefix}{$type});
                   11007:                                 if (@changed > 0) {
                   11008:                                     $changes{$prefix}{$type} = 1;
                   11009:                                 }
                   11010:                             }
                   11011:                         } else {
                   11012:                             if ($inuse == 1) {
                   11013:                                 $defaultshash{'usersessions'}{$prefix}{$type} = \@okvals;
                   11014:                                 $changes{$prefix}{$type} = 1;
                   11015:                             }
                   11016:                         } 
                   11017:                     } else {
                   11018:                         if ($inuse == 1) {
                   11019:                             $defaultshash{'usersessions'}{$prefix}{$type} = \@okvals;
                   11020:                             $changes{$prefix}{$type} = 1;
                   11021:                         }
                   11022:                     }
                   11023:                 } else {
                   11024:                     if ($inuse == 1) {
                   11025:                         $defaultshash{'usersessions'}{$prefix}{$type} = \@okvals;
                   11026:                         $changes{$prefix}{$type} = 1;
                   11027:                     }
                   11028:                 }
                   11029:             }
                   11030:         }
                   11031:     }
1.145     raeburn  11032: 
                   11033:     my @alldoms = &Apache::lonnet::all_domains();
1.149     raeburn  11034:     my %servers = &Apache::lonnet::internet_dom_servers($dom);
1.145     raeburn  11035:     my %spareid = &current_offloads_to($dom,$domconfig{'usersessions'},\%servers);
                   11036:     my $savespares;
                   11037: 
                   11038:     foreach my $lonhost (sort(keys(%servers))) {
                   11039:         my $serverhomeID =
                   11040:             &Apache::lonnet::get_server_homeID($servers{$lonhost});
1.152     raeburn  11041:         my $serverhostname = &Apache::lonnet::hostname($lonhost);
1.145     raeburn  11042:         $defaultshash{'usersessions'}{'spares'}{$lonhost} = {};
                   11043:         my %spareschg;
                   11044:         foreach my $type (@{$types{'spares'}}) {
                   11045:             my @okspares;
                   11046:             my @checked = &Apache::loncommon::get_env_multiple('form.spare_'.$type.'_'.$lonhost);
                   11047:             foreach my $server (@checked) {
1.152     raeburn  11048:                 if (&Apache::lonnet::hostname($server) ne '') {
                   11049:                     unless (&Apache::lonnet::hostname($server) eq $serverhostname) {
                   11050:                         unless (grep(/^\Q$server\E$/,@okspares)) {
                   11051:                             push(@okspares,$server);
                   11052:                         }
1.145     raeburn  11053:                     }
                   11054:                 }
                   11055:             }
                   11056:             my $new = $env{'form.newspare_'.$type.'_'.$lonhost};
                   11057:             my $newspare;
1.152     raeburn  11058:             if (($new ne '') && (&Apache::lonnet::hostname($new))) {
                   11059:                 unless (&Apache::lonnet::hostname($new) eq $serverhostname) {
1.145     raeburn  11060:                     $newspare = $new;
                   11061:                 }
                   11062:             }
1.152     raeburn  11063:             my @spares;
                   11064:             if (($newspare ne '') && (!grep(/^\Q$newspare\E$/,@okspares))) {
                   11065:                 @spares = sort(@okspares,$newspare);
                   11066:             } else {
                   11067:                 @spares = sort(@okspares);
                   11068:             }
                   11069:             $defaultshash{'usersessions'}{'spares'}{$lonhost}{$type} = \@spares;
1.145     raeburn  11070:             if (ref($spareid{$lonhost}) eq 'HASH') {
                   11071:                 if (ref($spareid{$lonhost}{$type}) eq 'ARRAY') {
1.152     raeburn  11072:                     my @diffs = &Apache::loncommon::compare_arrays($spareid{$lonhost}{$type},\@spares);
1.145     raeburn  11073:                     if (@diffs > 0) {
                   11074:                         $spareschg{$type} = 1;
                   11075:                     }
                   11076:                 }
                   11077:             }
                   11078:         }
                   11079:         if (keys(%spareschg) > 0) {
                   11080:             $changes{'spares'}{$lonhost} = \%spareschg;
                   11081:         }
                   11082:     }
1.261     raeburn  11083:     $defaultshash{'usersessions'}{'offloadnow'} = {};
                   11084:     my @offloadnow = &Apache::loncommon::get_env_multiple('form.offloadnow');
                   11085:     my @okoffload;
                   11086:     if (@offloadnow) {
                   11087:         foreach my $server (@offloadnow) {
                   11088:             if (&Apache::lonnet::hostname($server) ne '') {
                   11089:                 unless (grep(/^\Q$server\E$/,@okoffload)) {
                   11090:                     push(@okoffload,$server);
                   11091:                 }
                   11092:             }
                   11093:         }
                   11094:         if (@okoffload) {
                   11095:             foreach my $lonhost (@okoffload) {
                   11096:                 $defaultshash{'usersessions'}{'offloadnow'}{$lonhost} = 1;
                   11097:             }
                   11098:         }
                   11099:     }
1.145     raeburn  11100:     if (ref($domconfig{'usersessions'}) eq 'HASH') {
                   11101:         if (ref($domconfig{'usersessions'}{'spares'}) eq 'HASH') {
                   11102:             if (ref($changes{'spares'}) eq 'HASH') {
                   11103:                 if (keys(%{$changes{'spares'}}) > 0) {
                   11104:                     $savespares = 1;
                   11105:                 }
                   11106:             }
                   11107:         } else {
                   11108:             $savespares = 1;
                   11109:         }
1.261     raeburn  11110:         if (ref($domconfig{'usersessions'}{'offloadnow'}) eq 'HASH') {
                   11111:             foreach my $lonhost (keys(%{$domconfig{'usersessions'}{'offloadnow'}})) {
                   11112:                 unless ($defaultshash{'usersessions'}{'offloadnow'}{$lonhost}) {
                   11113:                     $changes{'offloadnow'} = 1;
                   11114:                     last;
                   11115:                 }
                   11116:             }
                   11117:             unless ($changes{'offloadnow'}) {
                   11118:                 foreach my $lonhost (keys(%{$defaultshash{'usersessions'}{'offloadnow'}})) { 
                   11119:                     unless ($domconfig{'usersessions'}{'offloadnow'}{$lonhost}) {
                   11120:                         $changes{'offloadnow'} = 1;
                   11121:                         last;
                   11122:                     }
                   11123:                 }
                   11124:             }
                   11125:         } elsif (@okoffload) {
                   11126:             $changes{'offloadnow'} = 1;
                   11127:         }
                   11128:     } elsif (@okoffload) {
                   11129:         $changes{'offloadnow'} = 1;
1.145     raeburn  11130:     }
1.147     raeburn  11131:     my $nochgmsg = &mt('No changes made to settings for user session hosting/offloading.');
                   11132:     if ((keys(%changes) > 0) || ($savespares)) {
1.137     raeburn  11133:         my $putresult = &Apache::lonnet::put_dom('configuration',\%defaultshash,
                   11134:                                                  $dom);
                   11135:         if ($putresult eq 'ok') {
                   11136:             if (ref($defaultshash{'usersessions'}) eq 'HASH') {
                   11137:                 if (ref($defaultshash{'usersessions'}{'remote'}) eq 'HASH') {
                   11138:                     $domdefaults{'remotesessions'} = $defaultshash{'usersessions'}{'remote'};
                   11139:                 }
                   11140:                 if (ref($defaultshash{'usersessions'}{'hosted'}) eq 'HASH') {
                   11141:                     $domdefaults{'hostedsessions'} = $defaultshash{'usersessions'}{'hosted'};
                   11142:                 }
1.261     raeburn  11143:                 if (ref($defaultshash{'usersessions'}{'offloadnow'}) eq 'HASH') {
                   11144:                     $domdefaults{'offloadnow'} = $defaultshash{'usersessions'}{'offloadnow'};
                   11145:                 }
1.137     raeburn  11146:             }
                   11147:             my $cachetime = 24*60*60;
                   11148:             &Apache::lonnet::do_cache_new('domdefaults',$dom,\%domdefaults,$cachetime);
1.212     raeburn  11149:             if (ref($lastactref) eq 'HASH') {
                   11150:                 $lastactref->{'domdefaults'} = 1;
                   11151:             }
1.147     raeburn  11152:             if (keys(%changes) > 0) {
                   11153:                 my %lt = &usersession_titles();
                   11154:                 $resulttext = &mt('Changes made:').'<ul>';
                   11155:                 foreach my $prefix (@prefixes) {
                   11156:                     if (ref($changes{$prefix}) eq 'HASH') {
                   11157:                         $resulttext .= '<li>'.$lt{$prefix}.'<ul>';
                   11158:                         if ($prefix eq 'spares') {
                   11159:                             if (ref($changes{$prefix}) eq 'HASH') {
                   11160:                                 foreach my $lonhost (sort(keys(%{$changes{$prefix}}))) {
                   11161:                                     $resulttext .= '<li><b>'.$lonhost.'</b> ';
1.148     raeburn  11162:                                     my $lonhostdom = &Apache::lonnet::host_domain($lonhost);
1.211     raeburn  11163:                                     my $cachekey = &escape('spares').':'.&escape($lonhostdom);
                   11164:                                     &Apache::lonnet::remote_devalidate_cache($lonhost,[$cachekey]);
1.147     raeburn  11165:                                     if (ref($changes{$prefix}{$lonhost}) eq 'HASH') {
                   11166:                                         foreach my $type (@{$types{$prefix}}) {
                   11167:                                             if ($changes{$prefix}{$lonhost}{$type}) {
                   11168:                                                 my $offloadto = &mt('None');
                   11169:                                                 if (ref($defaultshash{'usersessions'}{'spares'}{$lonhost}{$type}) eq 'ARRAY') {
                   11170:                                                     if (@{$defaultshash{'usersessions'}{'spares'}{$lonhost}{$type}} > 0) {   
                   11171:                                                         $offloadto = join(', ',@{$defaultshash{'usersessions'}{'spares'}{$lonhost}{$type}});
                   11172:                                                     }
1.145     raeburn  11173:                                                 }
1.147     raeburn  11174:                                                 $resulttext .= &mt('[_1] set to: [_2].','<i>'.$lt{$type}.'</i>',$offloadto).('&nbsp;'x3);
1.145     raeburn  11175:                                             }
1.137     raeburn  11176:                                         }
                   11177:                                     }
1.147     raeburn  11178:                                     $resulttext .= '</li>';
1.137     raeburn  11179:                                 }
                   11180:                             }
1.147     raeburn  11181:                         } else {
                   11182:                             foreach my $type (@{$types{$prefix}}) {
                   11183:                                 if (defined($changes{$prefix}{$type})) {
                   11184:                                     my $newvalue;
                   11185:                                     if (ref($defaultshash{'usersessions'}) eq 'HASH') {
                   11186:                                         if (ref($defaultshash{'usersessions'}{$prefix})) {
                   11187:                                             if ($type eq 'version') {
                   11188:                                                 $newvalue = $defaultshash{'usersessions'}{$prefix}{$type};
                   11189:                                             } elsif (ref($defaultshash{'usersessions'}{$prefix}{$type}) eq 'ARRAY') {
                   11190:                                                 if (@{$defaultshash{'usersessions'}{$prefix}{$type}} > 0) {
                   11191:                                                     $newvalue = join(', ',@{$defaultshash{'usersessions'}{$prefix}{$type}});
                   11192:                                                 }
1.145     raeburn  11193:                                             }
                   11194:                                         }
                   11195:                                     }
1.147     raeburn  11196:                                     if ($newvalue eq '') {
                   11197:                                         if ($type eq 'version') {
                   11198:                                             $resulttext .= '<li>'.&mt('[_1] set to: off',$lt{$type}).'</li>';
                   11199:                                         } else {
                   11200:                                             $resulttext .= '<li>'.&mt('[_1] set to: none',$lt{$type}).'</li>';
                   11201:                                         }
1.145     raeburn  11202:                                     } else {
1.147     raeburn  11203:                                         if ($type eq 'version') {
                   11204:                                             $newvalue .= ' '.&mt('(or later)'); 
                   11205:                                         }
                   11206:                                         $resulttext .= '<li>'.&mt('[_1] set to: [_2].',$lt{$type},$newvalue).'</li>';
1.145     raeburn  11207:                                     }
1.137     raeburn  11208:                                 }
                   11209:                             }
                   11210:                         }
1.147     raeburn  11211:                         $resulttext .= '</ul>';
1.137     raeburn  11212:                     }
                   11213:                 }
1.261     raeburn  11214:                 if ($changes{'offloadnow'}) {
                   11215:                     if (ref($defaultshash{'usersessions'}{'offloadnow'}) eq 'HASH') {
                   11216:                         if (keys(%{$defaultshash{'usersessions'}{'offloadnow'}}) > 0) {
                   11217:                             $resulttext .= '<li>'.&mt('Switch active users on next access, for server(s):').'<ul>';
                   11218:                             foreach my $lonhost (sort(keys(%{$defaultshash{'usersessions'}{'offloadnow'}}))) {
                   11219:                                 $resulttext .= '<li>'.$lonhost.'</li>';
                   11220:                             }
                   11221:                             $resulttext .= '</ul>';
                   11222:                         } else {
                   11223:                             $resulttext .= '<li>'.&mt('No servers now set to switch active users on next access.');
                   11224:                         }
                   11225:                     } else {
                   11226:                         $resulttext .= '<li>'.&mt('No servers now set to switch active users on next access.').'</li>';
                   11227:                     }
                   11228:                 }
1.147     raeburn  11229:                 $resulttext .= '</ul>';
                   11230:             } else {
                   11231:                 $resulttext = $nochgmsg;
1.137     raeburn  11232:             }
                   11233:         } else {
                   11234:             $resulttext = '<span class="LC_error">'.
                   11235:                           &mt('An error occurred: [_1]',$putresult).'</span>';
                   11236:         }
                   11237:     } else {
1.147     raeburn  11238:         $resulttext = $nochgmsg;
1.137     raeburn  11239:     }
                   11240:     return $resulttext;
                   11241: }
                   11242: 
1.150     raeburn  11243: sub modify_loadbalancing {
                   11244:     my ($dom,%domconfig) = @_;
                   11245:     my $primary_id = &Apache::lonnet::domain($dom,'primary');
                   11246:     my $intdom = &Apache::lonnet::internet_dom($primary_id);
                   11247:     my ($othertitle,$usertypes,$types) =
                   11248:         &Apache::loncommon::sorted_inst_types($dom);
                   11249:     my %servers = &Apache::lonnet::internet_dom_servers($dom);
1.253     raeburn  11250:     my %libraryservers = &Apache::lonnet::get_servers($dom,'library');
1.150     raeburn  11251:     my @sparestypes = ('primary','default');
                   11252:     my %typetitles = &sparestype_titles();
                   11253:     my $resulttext;
1.171     raeburn  11254:     my (%currbalancer,%currtargets,%currrules,%existing);
                   11255:     if (ref($domconfig{'loadbalancing'}) eq 'HASH') {
                   11256:         %existing = %{$domconfig{'loadbalancing'}};
                   11257:     }
                   11258:     &get_loadbalancers_config(\%servers,\%existing,\%currbalancer,
                   11259:                               \%currtargets,\%currrules);
                   11260:     my ($saveloadbalancing,%defaultshash,%changes);
                   11261:     my ($alltypes,$othertypes,$titles) =
                   11262:         &loadbalancing_titles($dom,$intdom,$usertypes,$types);
                   11263:     my %ruletitles = &offloadtype_text();
                   11264:     my @deletions = &Apache::loncommon::get_env_multiple('form.loadbalancing_delete');
                   11265:     for (my $i=0; $i<$env{'form.loadbalancing_total'}; $i++) {
                   11266:         my $balancer = $env{'form.loadbalancing_lonhost_'.$i};
                   11267:         if ($balancer eq '') {
                   11268:             next;
                   11269:         }
1.210     raeburn  11270:         if (!exists($servers{$balancer})) {
1.171     raeburn  11271:             if (exists($currbalancer{$balancer})) {
                   11272:                 push(@{$changes{'delete'}},$balancer);
1.150     raeburn  11273:             }
1.171     raeburn  11274:             next;
                   11275:         }
                   11276:         if ((@deletions > 0) && (grep(/^\Q$i\E$/,@deletions))) {
                   11277:             push(@{$changes{'delete'}},$balancer);
                   11278:             next;
                   11279:         }
                   11280:         if (!exists($currbalancer{$balancer})) {
                   11281:             push(@{$changes{'add'}},$balancer);
                   11282:         }
                   11283:         $defaultshash{'loadbalancing'}{$balancer}{'targets'}{'primary'} = [];
                   11284:         $defaultshash{'loadbalancing'}{$balancer}{'targets'}{'default'} = [];
                   11285:         $defaultshash{'loadbalancing'}{$balancer}{'rules'} = {};
                   11286:         unless (ref($domconfig{'loadbalancing'}) eq 'HASH') {
                   11287:             $saveloadbalancing = 1;
                   11288:         }
                   11289:         foreach my $sparetype (@sparestypes) {
                   11290:             my @targets = &Apache::loncommon::get_env_multiple('form.loadbalancing_target_'.$i.'_'.$sparetype);
                   11291:             my @offloadto;
                   11292:             foreach my $target (@targets) {
                   11293:                 if (($servers{$target}) && ($target ne $balancer)) {
                   11294:                     if ($sparetype eq 'default') {
                   11295:                         if (ref($defaultshash{'loadbalancing'}{$balancer}{'targets'}{'primary'}) eq 'ARRAY') {
                   11296:                             next if (grep(/^\Q$target\E$/,@{$defaultshash{'loadbalancing'}{$balancer}{'targets'}{'primary'}}));
1.150     raeburn  11297:                         }
                   11298:                     }
1.171     raeburn  11299:                     unless(grep(/^\Q$target\E$/,@offloadto)) {
                   11300:                         push(@offloadto,$target);
                   11301:                     }
1.150     raeburn  11302:                 }
1.171     raeburn  11303:                 $defaultshash{'loadbalancing'}{$balancer}{'targets'}{$sparetype} = \@offloadto;
1.150     raeburn  11304:             }
                   11305:         }
1.171     raeburn  11306:         if (ref($currtargets{$balancer}) eq 'HASH') {
1.150     raeburn  11307:             foreach my $sparetype (@sparestypes) {
1.171     raeburn  11308:                 if (ref($currtargets{$balancer}{$sparetype}) eq 'ARRAY') {
                   11309:                     my @targetdiffs = &Apache::loncommon::compare_arrays($currtargets{$balancer}{$sparetype},$defaultshash{'loadbalancing'}{$balancer}{'targets'}{$sparetype});
1.150     raeburn  11310:                     if (@targetdiffs > 0) {
1.171     raeburn  11311:                         $changes{'curr'}{$balancer}{'targets'} = 1;
1.150     raeburn  11312:                     }
1.171     raeburn  11313:                 } elsif (ref($defaultshash{'loadbalancing'}{$balancer}{'targets'}{$sparetype}) eq 'ARRAY') {
                   11314:                     if (@{$defaultshash{'loadbalancing'}{$balancer}{'targets'}{$sparetype}} > 0) {
                   11315:                         $changes{'curr'}{$balancer}{'targets'} = 1;
1.150     raeburn  11316:                     }
                   11317:                 }
                   11318:             }
                   11319:         } else {
1.171     raeburn  11320:             if (ref($defaultshash{'loadbalancing'}{$balancer}) eq 'HASH') {
1.210     raeburn  11321:                 foreach my $sparetype (@sparestypes) {
1.171     raeburn  11322:                     if (ref($defaultshash{'loadbalancing'}{$balancer}{'targets'}{$sparetype}) eq 'ARRAY') {
                   11323:                         if (@{$defaultshash{'loadbalancing'}{$balancer}{'targets'}{$sparetype}} > 0) {
                   11324:                             $changes{'curr'}{$balancer}{'targets'} = 1;
                   11325:                         }
1.150     raeburn  11326:                     }
                   11327:                 }
1.210     raeburn  11328:             }
1.150     raeburn  11329:         }
                   11330:         my $ishomedom;
1.171     raeburn  11331:         if (&Apache::lonnet::host_domain($balancer) eq $dom) {
                   11332:             $ishomedom = 1;
1.150     raeburn  11333:         }
                   11334:         if (ref($alltypes) eq 'ARRAY') {
                   11335:             foreach my $type (@{$alltypes}) {
                   11336:                 my $rule;
1.210     raeburn  11337:                 unless ((($type eq '_LC_external') || ($type eq '_LC_internetdom')) &&
1.150     raeburn  11338:                          (!$ishomedom)) {
1.171     raeburn  11339:                     $rule = $env{'form.loadbalancing_rules_'.$i.'_'.$type};
                   11340:                 }
                   11341:                 if ($rule eq 'specific') {
1.255     raeburn  11342:                     my $specifiedhost = $env{'form.loadbalancing_singleserver_'.$i.'_'.$type};
                   11343:                     if (exists($servers{$specifiedhost})) { 
                   11344:                         $rule = $specifiedhost;
                   11345:                     }
1.150     raeburn  11346:                 }
1.171     raeburn  11347:                 $defaultshash{'loadbalancing'}{$balancer}{'rules'}{$type} = $rule;
                   11348:                 if (ref($currrules{$balancer}) eq 'HASH') {
                   11349:                     if ($rule ne $currrules{$balancer}{$type}) {
                   11350:                         $changes{'curr'}{$balancer}{'rules'}{$type} = 1;
1.150     raeburn  11351:                     }
                   11352:                 } elsif ($rule ne '') {
1.171     raeburn  11353:                     $changes{'curr'}{$balancer}{'rules'}{$type} = 1;
1.150     raeburn  11354:                 }
                   11355:             }
                   11356:         }
1.171     raeburn  11357:     }
                   11358:     my $nochgmsg = &mt('No changes made to Load Balancer settings.');
                   11359:     if ((keys(%changes) > 0) || ($saveloadbalancing)) {
                   11360:         unless (ref($defaultshash{'loadbalancing'}) eq 'HASH') {
                   11361:             $defaultshash{'loadbalancing'} = {};
                   11362:         }
                   11363:         my $putresult = &Apache::lonnet::put_dom('configuration',
                   11364:                                                  \%defaultshash,$dom);
                   11365:         if ($putresult eq 'ok') {
                   11366:             if (keys(%changes) > 0) {
1.252     raeburn  11367:                 my %toupdate;
1.171     raeburn  11368:                 if (ref($changes{'delete'}) eq 'ARRAY') {
                   11369:                     foreach my $balancer (sort(@{$changes{'delete'}})) {
                   11370:                         $resulttext .= '<li>'.&mt('Load Balancing discontinued for: [_1]',$balancer).'</li>';
1.252     raeburn  11371:                         $toupdate{$balancer} = 1;
1.150     raeburn  11372:                     }
1.171     raeburn  11373:                 }
                   11374:                 if (ref($changes{'add'}) eq 'ARRAY') {
1.210     raeburn  11375:                     foreach my $balancer (sort(@{$changes{'add'}})) {
1.171     raeburn  11376:                         $resulttext .= '<li>'.&mt('Load Balancing enabled for: [_1]',$balancer);
1.252     raeburn  11377:                         $toupdate{$balancer} = 1;
1.171     raeburn  11378:                     }
                   11379:                 }
                   11380:                 if (ref($changes{'curr'}) eq 'HASH') {
                   11381:                     foreach my $balancer (sort(keys(%{$changes{'curr'}}))) {
1.253     raeburn  11382:                         $toupdate{$balancer} = 1;
1.171     raeburn  11383:                         if (ref($changes{'curr'}{$balancer}) eq 'HASH') {
                   11384:                             if ($changes{'curr'}{$balancer}{'targets'}) {
                   11385:                                 my %offloadstr;
                   11386:                                 foreach my $sparetype (@sparestypes) {
                   11387:                                     if (ref($defaultshash{'loadbalancing'}{$balancer}{'targets'}{$sparetype}) eq 'ARRAY') {
                   11388:                                         if (@{$defaultshash{'loadbalancing'}{$balancer}{'targets'}{$sparetype}} > 0) {
                   11389:                                             $offloadstr{$sparetype} = join(', ',@{$defaultshash{'loadbalancing'}{$balancer}{'targets'}{$sparetype}});
                   11390:                                         }
                   11391:                                     }
1.150     raeburn  11392:                                 }
1.171     raeburn  11393:                                 if (keys(%offloadstr) == 0) {
                   11394:                                     $resulttext .= '<li>'.&mt("Servers to which Load Balance server offloads set to 'None', by default").'</li>';
1.150     raeburn  11395:                                 } else {
1.171     raeburn  11396:                                     my $showoffload;
                   11397:                                     foreach my $sparetype (@sparestypes) {
                   11398:                                         $showoffload .= '<i>'.$typetitles{$sparetype}.'</i>:&nbsp;';
                   11399:                                         if (defined($offloadstr{$sparetype})) {
                   11400:                                             $showoffload .= $offloadstr{$sparetype};
                   11401:                                         } else {
                   11402:                                             $showoffload .= &mt('None');
                   11403:                                         }
                   11404:                                         $showoffload .= ('&nbsp;'x3);
                   11405:                                     }
                   11406:                                     $resulttext .= '<li>'.&mt('By default, Load Balancer: [_1] set to offload to - [_2]',$balancer,$showoffload).'</li>';
1.150     raeburn  11407:                                 }
                   11408:                             }
                   11409:                         }
1.171     raeburn  11410:                         if (ref($changes{'curr'}{$balancer}{'rules'}) eq 'HASH') {
                   11411:                             if ((ref($alltypes) eq 'ARRAY') && (ref($titles) eq 'HASH')) {
                   11412:                                 foreach my $type (@{$alltypes}) {
                   11413:                                     if ($changes{'curr'}{$balancer}{'rules'}{$type}) {
                   11414:                                         my $rule = $defaultshash{'loadbalancing'}{$balancer}{'rules'}{$type};
                   11415:                                         my $balancetext;
                   11416:                                         if ($rule eq '') {
                   11417:                                             $balancetext =  $ruletitles{'default'};
1.209     raeburn  11418:                                         } elsif (($rule eq 'homeserver') || ($rule eq 'externalbalancer') ||
1.254     raeburn  11419:                                                  ($type eq '_LC_ipchange') || ($type eq '_LC_ipchangesso')) { 
                   11420:                                             if (($type eq '_LC_ipchange') || ($type eq '_LC_ipchangesso')) {
1.252     raeburn  11421:                                                 foreach my $sparetype (@sparestypes) {
                   11422:                                                     if (ref($defaultshash{'loadbalancing'}{$balancer}{'targets'}{$sparetype}) eq 'ARRAY') {
                   11423:                                                         map { $toupdate{$_} = 1; } (@{$defaultshash{'loadbalancing'}{$balancer}{'targets'}{$sparetype}});
                   11424:                                                     }
                   11425:                                                 }
1.253     raeburn  11426:                                                 foreach my $item (@{$alltypes}) {
                   11427:                                                     next if ($item =~  /^_LC_ipchange/);
                   11428:                                                     my $hasrule = $defaultshash{'loadbalancing'}{$balancer}{'rules'}{$item};
                   11429:                                                     if ($hasrule eq 'homeserver') {
                   11430:                                                         map { $toupdate{$_} = 1; } (keys(%libraryservers));
                   11431:                                                     } else {
                   11432:                                                         unless (($hasrule eq 'default') || ($hasrule eq 'none') || ($hasrule eq 'externalbalancer')) {
                   11433:                                                             if ($servers{$hasrule}) {
                   11434:                                                                 $toupdate{$hasrule} = 1;
                   11435:                                                             }
                   11436:                                                         }
                   11437:                                                     }
                   11438:                                                 }
1.254     raeburn  11439:                                                 if (($rule eq 'balancer') || ($rule eq 'offloadedto')) {
                   11440:                                                     $balancetext =  $ruletitles{$rule};
                   11441:                                                 } else {
                   11442:                                                     my $receiver = $defaultshash{'loadbalancing'}{$balancer}{'rules'}{$type};
                   11443:                                                     $balancetext = $ruletitles{'particular'}.' '.$receiver;
                   11444:                                                     if ($receiver) {
                   11445:                                                         $toupdate{$receiver};
                   11446:                                                     }
                   11447:                                                 }
                   11448:                                             } else {
                   11449:                                                 $balancetext =  $ruletitles{$rule};
1.252     raeburn  11450:                                             }
1.171     raeburn  11451:                                         } else {
                   11452:                                             $balancetext = &mt('offload to [_1]',$defaultshash{'loadbalancing'}{$balancer}{'rules'}{$type});
                   11453:                                         }
1.210     raeburn  11454:                                         $resulttext .= '<li>'.&mt('Load Balancer: [_1] -- balancing for [_2] set to - "[_3]"',$balancer,$titles->{$type},$balancetext).'</li>';
1.150     raeburn  11455:                                     }
                   11456:                                 }
                   11457:                             }
                   11458:                         }
1.252     raeburn  11459:                         if (keys(%toupdate)) {
                   11460:                             my %thismachine;
                   11461:                             my $updatedhere;
                   11462:                             my $cachetime = 60*60*24;
                   11463:                             map { $thismachine{$_} = 1; } &Apache::lonnet::current_machine_ids();
                   11464:                             foreach my $lonhost (keys(%toupdate)) {
                   11465:                                 if ($thismachine{$lonhost}) {
                   11466:                                     unless ($updatedhere) {
                   11467:                                         &Apache::lonnet::do_cache_new('loadbalancing',$dom,
                   11468:                                                                       $defaultshash{'loadbalancing'},
                   11469:                                                                       $cachetime);
                   11470:                                         $updatedhere = 1;
                   11471:                                     }
                   11472:                                 } else {
                   11473:                                     my $cachekey = &escape('loadbalancing').':'.&escape($dom);
                   11474:                                     &Apache::lonnet::remote_devalidate_cache($lonhost,[$cachekey]);
                   11475:                                 }
                   11476:                             }
                   11477:                         }
1.150     raeburn  11478:                     }
1.171     raeburn  11479:                 }
                   11480:                 if ($resulttext ne '') {
                   11481:                     $resulttext = &mt('Changes made:').'<ul>'.$resulttext.'</ul>';
1.150     raeburn  11482:                 } else {
                   11483:                     $resulttext = $nochgmsg;
                   11484:                 }
                   11485:             } else {
1.171     raeburn  11486:                 $resulttext = $nochgmsg;
1.150     raeburn  11487:             }
                   11488:         } else {
1.171     raeburn  11489:             $resulttext = '<span class="LC_error">'.
                   11490:                           &mt('An error occurred: [_1]',$putresult).'</span>';
1.150     raeburn  11491:         }
                   11492:     } else {
1.171     raeburn  11493:         $resulttext = $nochgmsg;
1.150     raeburn  11494:     }
                   11495:     return $resulttext;
                   11496: }
                   11497: 
1.48      raeburn  11498: sub recurse_check {
                   11499:     my ($chkcats,$categories,$depth,$name) = @_;
                   11500:     if (ref($chkcats->[$depth]{$name}) eq 'ARRAY') {
                   11501:         my $chg = 0;
                   11502:         for (my $j=0; $j<@{$chkcats->[$depth]{$name}}; $j++) {
                   11503:             my $category = $chkcats->[$depth]{$name}[$j];
                   11504:             my $item;
                   11505:             if ($category eq '') {
                   11506:                 $chg ++;
                   11507:             } else {
                   11508:                 my $deeper = $depth + 1;
                   11509:                 $item = &escape($category).':'.&escape($name).':'.$depth;
                   11510:                 if ($chg) {
                   11511:                     $categories->{$item} -= $chg;
                   11512:                 }
                   11513:                 &recurse_check($chkcats,$categories,$deeper,$category);
                   11514:                 $deeper --;
                   11515:             }
                   11516:         }
                   11517:     }
                   11518:     return;
                   11519: }
                   11520: 
                   11521: sub recurse_cat_deletes {
                   11522:     my ($item,$coursecategories,$deletions) = @_;
                   11523:     my ($deleted,$container,$depth) = map { &unescape($_); } split(/:/,$item);
                   11524:     my $subdepth = $depth + 1;
                   11525:     if (ref($coursecategories) eq 'HASH') {
                   11526:         foreach my $subitem (keys(%{$coursecategories})) {
                   11527:             my ($child,$parent,$itemdepth) = map { &unescape($_); } split(/:/,$subitem);
                   11528:             if (($parent eq $deleted) && ($itemdepth == $subdepth)) {
                   11529:                 delete($coursecategories->{$subitem});
                   11530:                 $deletions->{$subitem} = 1;
                   11531:                 &recurse_cat_deletes($subitem,$coursecategories,$deletions);
1.168     raeburn  11532:             }
1.48      raeburn  11533:         }
                   11534:     }
                   11535:     return;
                   11536: }
                   11537: 
1.125     raeburn  11538: sub get_active_dcs {
                   11539:     my ($dom) = @_;
1.191     raeburn  11540:     my $now = time;
                   11541:     my %dompersonnel = &Apache::lonnet::get_domain_roles($dom,['dc'],$now,$now);
1.125     raeburn  11542:     my %domcoords;
                   11543:     my $numdcs = 0;
                   11544:     foreach my $server (keys(%dompersonnel)) {
                   11545:         foreach my $user (sort(keys(%{$dompersonnel{$server}}))) {
                   11546:             my ($trole,$uname,$udom,$runame,$rudom,$rsec) = split(/:/,$user);
1.191     raeburn  11547:             $domcoords{$uname.':'.$udom} = $dompersonnel{$server}{$user};
1.125     raeburn  11548:         }
                   11549:     }
                   11550:     return %domcoords;
                   11551: }
                   11552: 
                   11553: sub active_dc_picker {
1.191     raeburn  11554:     my ($dom,$numinrow,$inputtype,$name,%currhash) = @_;
1.235     raeburn  11555:     my %domcoords = &get_active_dcs($dom);
1.191     raeburn  11556:     my @domcoord = keys(%domcoords);
                   11557:     if (keys(%currhash)) {
                   11558:         foreach my $dc (keys(%currhash)) {
                   11559:             unless (exists($domcoords{$dc})) {
                   11560:                 push(@domcoord,$dc);
                   11561:             }
                   11562:         }
                   11563:     }
                   11564:     @domcoord = sort(@domcoord);
1.210     raeburn  11565:     my $numdcs = scalar(@domcoord);
1.191     raeburn  11566:     my $rows = 0;
                   11567:     my $table;
1.125     raeburn  11568:     if ($numdcs > 1) {
1.191     raeburn  11569:         $table = '<table>';
                   11570:         for (my $i=0; $i<@domcoord; $i++) {
1.125     raeburn  11571:             my $rem = $i%($numinrow);
                   11572:             if ($rem == 0) {
                   11573:                 if ($i > 0) {
1.191     raeburn  11574:                     $table .= '</tr>';
1.125     raeburn  11575:                 }
1.191     raeburn  11576:                 $table .= '<tr>';
                   11577:                 $rows ++;
1.125     raeburn  11578:             }
1.191     raeburn  11579:             my $check = '';
                   11580:             if ($inputtype eq 'radio') {
                   11581:                 if (keys(%currhash) == 0) {
                   11582:                     if (!$i) {
                   11583:                         $check = ' checked="checked"';
                   11584:                     }
                   11585:                 } elsif (exists($currhash{$domcoord[$i]})) {
                   11586:                     $check = ' checked="checked"';
                   11587:                 }
                   11588:             } else {
                   11589:                 if (exists($currhash{$domcoord[$i]})) {
                   11590:                     $check = ' checked="checked"';
1.125     raeburn  11591:                 }
                   11592:             }
1.191     raeburn  11593:             if ($i == @domcoord - 1) {
1.125     raeburn  11594:                 my $colsleft = $numinrow - $rem;
                   11595:                 if ($colsleft > 1) {
1.191     raeburn  11596:                     $table .= '<td class="LC_left_item" colspan="'.$colsleft.'">';
1.125     raeburn  11597:                 } else {
1.191     raeburn  11598:                     $table .= '<td class="LC_left_item">';
1.125     raeburn  11599:                 }
                   11600:             } else {
1.191     raeburn  11601:                 $table .= '<td class="LC_left_item">';
                   11602:             }
                   11603:             my ($dcname,$dcdom) = split(':',$domcoord[$i]);
                   11604:             my $user = &Apache::loncommon::plainname($dcname,$dcdom);
                   11605:             $table .= '<span class="LC_nobreak"><label>'.
                   11606:                       '<input type="'.$inputtype.'" name="'.$name.'"'.
                   11607:                       ' value="'.$domcoord[$i].'"'.$check.' />'.$user;
                   11608:             if ($user ne $dcname.':'.$dcdom) {
1.219     raeburn  11609:                 $table .=  ' ('.$dcname.':'.$dcdom.')';
1.191     raeburn  11610:             }
1.219     raeburn  11611:             $table .= '</label></span></td>';
1.191     raeburn  11612:         }
                   11613:         $table .= '</tr></table>';
                   11614:     } elsif ($numdcs == 1) {
1.219     raeburn  11615:         my ($dcname,$dcdom) = split(':',$domcoord[0]);
                   11616:         my $user = &Apache::loncommon::plainname($dcname,$dcdom);
1.191     raeburn  11617:         if ($inputtype eq 'radio') {
1.247     raeburn  11618:             $table = '<input type="hidden" name="'.$name.'" value="'.$domcoord[0].'" />'.$user;
1.219     raeburn  11619:             if ($user ne $dcname.':'.$dcdom) {
                   11620:                 $table .=  ' ('.$dcname.':'.$dcdom.')';
                   11621:             }
1.191     raeburn  11622:         } else {
                   11623:             my $check;
                   11624:             if (exists($currhash{$domcoord[0]})) {
                   11625:                 $check = ' checked="checked"';
1.125     raeburn  11626:             }
1.247     raeburn  11627:             $table = '<span class="LC_nobreak"><label>'.
                   11628:                      '<input type="checkbox" name="'.$name.'" '.
                   11629:                      'value="'.$domcoord[0].'"'.$check.' />'.$user;
1.219     raeburn  11630:             if ($user ne $dcname.':'.$dcdom) {
1.220     raeburn  11631:                 $table .=  ' ('.$dcname.':'.$dcdom.')';
1.219     raeburn  11632:             }
1.220     raeburn  11633:             $table .= '</label></span>';
1.191     raeburn  11634:             $rows ++;
1.125     raeburn  11635:         }
                   11636:     }
1.191     raeburn  11637:     return ($numdcs,$table,$rows);
1.125     raeburn  11638: }
                   11639: 
1.137     raeburn  11640: sub usersession_titles {
                   11641:     return &Apache::lonlocal::texthash(
                   11642:                hosted => 'Hosting of sessions for users from other domains on servers in this domain',
                   11643:                remote => 'Hosting of sessions for users in this domain on servers in other domains',
1.145     raeburn  11644:                spares => 'Servers offloaded to, when busy',
1.137     raeburn  11645:                version => 'LON-CAPA version requirement',
1.138     raeburn  11646:                excludedomain => 'Allow all, but exclude specific domains',
                   11647:                includedomain => 'Deny all, but include specific domains',
1.145     raeburn  11648:                primary => 'Primary (checked first)',
1.154     raeburn  11649:                default => 'Default',
1.137     raeburn  11650:            );
                   11651: }
                   11652: 
1.152     raeburn  11653: sub id_for_thisdom {
                   11654:     my (%servers) = @_;
                   11655:     my %altids;
                   11656:     foreach my $server (keys(%servers)) {
                   11657:         my $serverhome = &Apache::lonnet::get_server_homeID($servers{$server});
                   11658:         if ($serverhome ne $server) {
                   11659:             $altids{$serverhome} = $server;
                   11660:         }
                   11661:     }
                   11662:     return %altids;
                   11663: }
                   11664: 
1.150     raeburn  11665: sub count_servers {
                   11666:     my ($currbalancer,%servers) = @_;
                   11667:     my (@spares,$numspares);
                   11668:     foreach my $lonhost (sort(keys(%servers))) {
                   11669:         next if ($currbalancer eq $lonhost);
                   11670:         push(@spares,$lonhost);
                   11671:     }
                   11672:     if ($currbalancer) {
                   11673:         $numspares = scalar(@spares);
                   11674:     } else {
                   11675:         $numspares = scalar(@spares) - 1;
                   11676:     }
                   11677:     return ($numspares,@spares);
                   11678: }
                   11679: 
                   11680: sub lonbalance_targets_js {
1.171     raeburn  11681:     my ($dom,$types,$servers,$settings) = @_;
1.150     raeburn  11682:     my $select = &mt('Select');
                   11683:     my ($alltargets,$allishome,$allinsttypes,@alltypes);
                   11684:     if (ref($servers) eq 'HASH') {
                   11685:         $alltargets = join("','",sort(keys(%{$servers})));
                   11686:         my @homedoms;
                   11687:         foreach my $server (sort(keys(%{$servers}))) {
                   11688:             if (&Apache::lonnet::host_domain($server) eq $dom) {
                   11689:                 push(@homedoms,'1');
                   11690:             } else {
                   11691:                 push(@homedoms,'0');
                   11692:             }
                   11693:         }
                   11694:         $allishome = join("','",@homedoms);
                   11695:     }
                   11696:     if (ref($types) eq 'ARRAY') {
                   11697:         if (@{$types} > 0) {
                   11698:             @alltypes = @{$types};
                   11699:         }
                   11700:     }
                   11701:     push(@alltypes,'default','_LC_adv','_LC_author','_LC_internetdom','_LC_external');
                   11702:     $allinsttypes = join("','",@alltypes);
1.171     raeburn  11703:     my (%currbalancer,%currtargets,%currrules,%existing);
                   11704:     if (ref($settings) eq 'HASH') {
                   11705:         %existing = %{$settings};
                   11706:     }
                   11707:     &get_loadbalancers_config($servers,\%existing,\%currbalancer,
                   11708:                               \%currtargets,\%currrules);
1.210     raeburn  11709:     my $balancers = join("','",sort(keys(%currbalancer)));
1.150     raeburn  11710:     return <<"END";
                   11711: 
                   11712: <script type="text/javascript">
                   11713: // <![CDATA[
                   11714: 
1.171     raeburn  11715: currBalancers = new Array('$balancers');
                   11716: 
                   11717: function toggleTargets(balnum) {
                   11718:     var lonhostitem = document.getElementById('loadbalancing_lonhost_'+balnum);
                   11719:     var prevhostitem = document.getElementById('loadbalancing_prevlonhost_'+balnum);
                   11720:     var balancer = lonhostitem.options[lonhostitem.selectedIndex].value;
                   11721:     var prevbalancer = prevhostitem.value;
                   11722:     var baltotal = document.getElementById('loadbalancing_total').value;
                   11723:     prevhostitem.value = balancer;
                   11724:     if (prevbalancer != '') {
                   11725:         var prevIdx = currBalancers.indexOf(prevbalancer);
                   11726:         if (prevIdx != -1) {
                   11727:             currBalancers.splice(prevIdx,1);
                   11728:         }
                   11729:     }
1.150     raeburn  11730:     if (balancer == '') {
1.171     raeburn  11731:         hideSpares(balnum);
1.150     raeburn  11732:     } else {
1.171     raeburn  11733:         var currIdx = currBalancers.indexOf(balancer);
                   11734:         if (currIdx == -1) {
                   11735:             currBalancers.push(balancer);
                   11736:         }
1.150     raeburn  11737:         var homedoms = new Array('$allishome');
1.171     raeburn  11738:         var ishomedom = homedoms[lonhostitem.selectedIndex];
                   11739:         showSpares(balancer,ishomedom,balnum);
1.150     raeburn  11740:     }
1.171     raeburn  11741:     balancerChange(balnum,baltotal,'change',prevbalancer,balancer);
1.150     raeburn  11742:     return;
                   11743: }
                   11744: 
1.171     raeburn  11745: function showSpares(balancer,ishomedom,balnum) {
1.150     raeburn  11746:     var alltargets = new Array('$alltargets');
                   11747:     var insttypes = new Array('$allinsttypes');
1.151     raeburn  11748:     var offloadtypes = new Array('primary','default');
                   11749: 
1.171     raeburn  11750:     document.getElementById('loadbalancing_targets_'+balnum).style.display='block';
                   11751:     document.getElementById('loadbalancing_disabled_'+balnum).style.display='none';
1.152     raeburn  11752:  
1.151     raeburn  11753:     for (var i=0; i<offloadtypes.length; i++) {
                   11754:         var count = 0;
                   11755:         for (var j=0; j<alltargets.length; j++) {
                   11756:             if (alltargets[j] != balancer) {
1.171     raeburn  11757:                 var item = document.getElementById('loadbalancing_target_'+balnum+'_'+offloadtypes[i]+'_'+count);
                   11758:                 item.value = alltargets[j];
                   11759:                 item.style.textAlign='left';
                   11760:                 item.style.textFace='normal';
                   11761:                 document.getElementById('loadbalancing_targettxt_'+balnum+'_'+offloadtypes[i]+'_'+count).innerHTML = alltargets[j];
                   11762:                 if (currBalancers.indexOf(alltargets[j]) == -1) {
                   11763:                     item.disabled = '';
                   11764:                 } else {
                   11765:                     item.disabled = 'disabled';
                   11766:                     item.checked = false;
                   11767:                 }
1.151     raeburn  11768:                 count ++;
                   11769:             }
1.150     raeburn  11770:         }
                   11771:     }
1.151     raeburn  11772:     for (var k=0; k<insttypes.length; k++) {
                   11773:         if ((insttypes[k] == '_LC_external') || (insttypes[k] == '_LC_internetdom')) {
1.150     raeburn  11774:             if (ishomedom == 1) {
1.171     raeburn  11775:                 document.getElementById('balanceruletitle_'+balnum+'_'+insttypes[k]).style.display='block';
                   11776:                 document.getElementById('balancerule_'+balnum+'_'+insttypes[k]).style.display='block';
1.150     raeburn  11777:             } else {
1.171     raeburn  11778:                 document.getElementById('balanceruletitle_'+balnum+'_'+insttypes[k]).style.display='none';
                   11779:                 document.getElementById('balancerule_'+balnum+'_'+insttypes[k]).style.display='none';
1.150     raeburn  11780:             }
                   11781:         } else {
1.171     raeburn  11782:             document.getElementById('balanceruletitle_'+balnum+'_'+insttypes[k]).style.display='block';
                   11783:             document.getElementById('balancerule_'+balnum+'_'+insttypes[k]).style.display='block';
1.150     raeburn  11784:         }
1.151     raeburn  11785:         if ((insttypes[k] != '_LC_external') && 
                   11786:             ((insttypes[k] != '_LC_internetdom') ||
                   11787:              ((insttypes[k] == '_LC_internetdom') && (ishomedom == 1)))) {
1.171     raeburn  11788:             var item = document.getElementById('loadbalancing_singleserver_'+balnum+'_'+insttypes[k]);
                   11789:             item.options.length = 0;
                   11790:             item.options[0] = new Option("","",true,true);
1.210     raeburn  11791:             var idx = 0;
1.151     raeburn  11792:             for (var m=0; m<alltargets.length; m++) {
1.171     raeburn  11793:                 if ((currBalancers.indexOf(alltargets[m]) == -1) && (alltargets[m] != balancer)) {
                   11794:                     idx ++;
                   11795:                     item.options[idx] = new Option(alltargets[m],alltargets[m],false,false);
1.150     raeburn  11796:                 }
                   11797:             }
                   11798:         }
                   11799:     }
                   11800:     return;
                   11801: }
                   11802: 
1.171     raeburn  11803: function hideSpares(balnum) {
1.150     raeburn  11804:     var alltargets = new Array('$alltargets');
                   11805:     var insttypes = new Array('$allinsttypes');
                   11806:     var offloadtypes = new Array('primary','default');
                   11807: 
1.171     raeburn  11808:     document.getElementById('loadbalancing_targets_'+balnum).style.display='none';
                   11809:     document.getElementById('loadbalancing_disabled_'+balnum).style.display='block';
1.150     raeburn  11810: 
                   11811:     var total = alltargets.length - 1;
                   11812:     for (var i=0; i<offloadtypes; i++) {
                   11813:         for (var j=0; j<total; j++) {
1.171     raeburn  11814:            document.getElementById('loadbalancing_target_'+balnum+'_'+offloadtypes[i]+'_'+j).checked = false;
                   11815:            document.getElementById('loadbalancing_target_'+balnum+'_'+offloadtypes[i]+'_'+j).value = '';
                   11816:            document.getElementById('loadbalancing_targettxt_'+balnum+'_'+offloadtypes[i]+'_'+j).innerHTML = '';
1.151     raeburn  11817:         }
1.150     raeburn  11818:     }
                   11819:     for (var k=0; k<insttypes.length; k++) {
1.171     raeburn  11820:         document.getElementById('balanceruletitle_'+balnum+'_'+insttypes[k]).style.display='none';
                   11821:         document.getElementById('balancerule_'+balnum+'_'+insttypes[k]).style.display='none';
1.151     raeburn  11822:         if (insttypes[k] != '_LC_external') {
1.171     raeburn  11823:             document.getElementById('loadbalancing_singleserver_'+balnum+'_'+insttypes[k]).length = 0;
                   11824:             document.getElementById('loadbalancing_singleserver_'+balnum+'_'+insttypes[k]).options[0] = new Option("","",true,true);
1.150     raeburn  11825:         }
                   11826:     }
                   11827:     return;
                   11828: }
                   11829: 
1.171     raeburn  11830: function checkOffloads(item,balnum,type) {
1.150     raeburn  11831:     var alltargets = new Array('$alltargets');
                   11832:     var offloadtypes = new Array('primary','default');
                   11833:     if (item.checked) {
                   11834:         var total = alltargets.length - 1;
                   11835:         var other;
                   11836:         if (type == offloadtypes[0]) {
1.151     raeburn  11837:             other = offloadtypes[1];
1.150     raeburn  11838:         } else {
1.151     raeburn  11839:             other = offloadtypes[0];
1.150     raeburn  11840:         }
                   11841:         for (var i=0; i<total; i++) {
1.171     raeburn  11842:             var server = document.getElementById('loadbalancing_target_'+balnum+'_'+other+'_'+i).value;
1.150     raeburn  11843:             if (server == item.value) {
1.171     raeburn  11844:                 if (document.getElementById('loadbalancing_target_'+balnum+'_'+other+'_'+i).checked) {
                   11845:                     document.getElementById('loadbalancing_target_'+balnum+'_'+other+'_'+i).checked = false;
1.150     raeburn  11846:                 }
                   11847:             }
                   11848:         }
                   11849:     }
                   11850:     return;
                   11851: }
                   11852: 
1.171     raeburn  11853: function singleServerToggle(balnum,type) {
                   11854:     var offloadtoSelIdx = document.getElementById('loadbalancing_singleserver_'+balnum+'_'+type).selectedIndex;
1.150     raeburn  11855:     if (offloadtoSelIdx == 0) {
1.171     raeburn  11856:         document.getElementById('loadbalancing_rules_'+balnum+'_'+type+'_0').checked = true;
                   11857:         document.getElementById('loadbalancing_singleserver_'+balnum+'_'+type).options[0].text = '';
1.150     raeburn  11858: 
                   11859:     } else {
1.171     raeburn  11860:         document.getElementById('loadbalancing_rules_'+balnum+'_'+type+'_2').checked = true;
                   11861:         document.getElementById('loadbalancing_singleserver_'+balnum+'_'+type).options[0].text = '$select';
1.150     raeburn  11862:     }
                   11863:     return;
                   11864: }
                   11865: 
1.171     raeburn  11866: function balanceruleChange(formname,balnum,type) {
1.150     raeburn  11867:     if (type == '_LC_external') {
1.171     raeburn  11868:         return;
1.150     raeburn  11869:     }
1.171     raeburn  11870:     var typesRules = getIndicesByName(formname,'loadbalancing_rules_'+balnum+'_'+type);
1.150     raeburn  11871:     for (var i=0; i<typesRules.length; i++) {
                   11872:         if (formname.elements[typesRules[i]].checked) {
                   11873:             if (formname.elements[typesRules[i]].value != 'specific') {
1.171     raeburn  11874:                 document.getElementById('loadbalancing_singleserver_'+balnum+'_'+type).selectedIndex = 0;
                   11875:                 document.getElementById('loadbalancing_singleserver_'+balnum+'_'+type).options[0].text = '';
1.150     raeburn  11876:             } else {
1.171     raeburn  11877:                 document.getElementById('loadbalancing_singleserver_'+balnum+'_'+type).options[0].text = '$select';
                   11878:             }
                   11879:         }
                   11880:     }
                   11881:     return;
                   11882: }
                   11883: 
                   11884: function balancerDeleteChange(balnum) {
                   11885:     var hostitem = document.getElementById('loadbalancing_lonhost_'+balnum);
                   11886:     var baltotal = document.getElementById('loadbalancing_total').value;
                   11887:     var addtarget;
                   11888:     var removetarget;
                   11889:     var action = 'delete';
                   11890:     if (document.getElementById('loadbalancing_delete_'+balnum)) {
                   11891:         var lonhost = hostitem.value;
                   11892:         var currIdx = currBalancers.indexOf(lonhost);
                   11893:         if (document.getElementById('loadbalancing_delete_'+balnum).checked) {
                   11894:             if (currIdx != -1) {
                   11895:                 currBalancers.splice(currIdx,1);
                   11896:             }
                   11897:             addtarget = lonhost;
                   11898:         } else {
                   11899:             if (currIdx == -1) {
                   11900:                 currBalancers.push(lonhost);
                   11901:             }
                   11902:             removetarget = lonhost;
                   11903:             action = 'undelete';
                   11904:         }
                   11905:         balancerChange(balnum,baltotal,action,addtarget,removetarget);
                   11906:     }
                   11907:     return;
                   11908: }
                   11909: 
                   11910: function balancerChange(balnum,baltotal,action,addtarget,removetarget) {
                   11911:     if (baltotal > 1) {
                   11912:         var offloadtypes = new Array('primary','default');
                   11913:         var alltargets = new Array('$alltargets');
                   11914:         var insttypes = new Array('$allinsttypes');
                   11915:         for (var i=0; i<baltotal; i++) {
                   11916:             if (i != balnum) {
                   11917:                 for (var j=0; j<offloadtypes.length; j++) {
                   11918:                     var total = alltargets.length - 1;
                   11919:                     for (var k=0; k<total; k++) {
                   11920:                         var serveritem = document.getElementById('loadbalancing_target_'+i+'_'+offloadtypes[j]+'_'+k);
                   11921:                         var server = serveritem.value;
                   11922:                         if ((action == 'delete') || (action == 'change' && addtarget != ''))  {
                   11923:                             if (server == addtarget) {
                   11924:                                 serveritem.disabled = '';
                   11925:                             }
                   11926:                         }
                   11927:                         if ((action == 'undelete') || (action == 'change' && removetarget != '')) {
                   11928:                             if (server == removetarget) {
                   11929:                                 serveritem.disabled = 'disabled';
                   11930:                                 serveritem.checked = false;
                   11931:                             }
                   11932:                         }
                   11933:                     }
                   11934:                 }
                   11935:                 for (var j=0; j<insttypes.length; j++) {
                   11936:                     if (insttypes[j] != '_LC_external') {
                   11937:                         if (document.getElementById('loadbalancing_singleserver_'+i+'_'+insttypes[j])) {
                   11938:                             var singleserver = document.getElementById('loadbalancing_singleserver_'+i+'_'+insttypes[j]);
                   11939:                             var currSel = singleserver.selectedIndex;
                   11940:                             var currVal = singleserver.options[currSel].value;
                   11941:                             if ((action == 'delete') || (action == 'change' && addtarget != '')) {
                   11942:                                 var numoptions = singleserver.options.length;
                   11943:                                 var needsnew = 1;
                   11944:                                 for (var k=0; k<numoptions; k++) {
                   11945:                                     if (singleserver.options[k] == addtarget) {
                   11946:                                         needsnew = 0;
                   11947:                                         break;
                   11948:                                     }
                   11949:                                 }
                   11950:                                 if (needsnew == 1) {
                   11951:                                     singleserver.options[numoptions] = new Option(addtarget,addtarget,false,false);
                   11952:                                 }
                   11953:                             }
                   11954:                             if ((action == 'undelete') || (action == 'change' && removetarget != '')) {
                   11955:                                 singleserver.options.length = 0;
                   11956:                                 if ((currVal) && (currVal != removetarget)) {
                   11957:                                     singleserver.options[0] = new Option("","",false,false);
                   11958:                                 } else {
                   11959:                                     singleserver.options[0] = new Option("","",true,true);
                   11960:                                 }
                   11961:                                 var idx = 0;
                   11962:                                 for (var m=0; m<alltargets.length; m++) {
                   11963:                                     if (currBalancers.indexOf(alltargets[m]) == -1) {
                   11964:                                         idx ++;
                   11965:                                         if (currVal == alltargets[m]) {
                   11966:                                             singleserver.options[idx] = new Option(alltargets[m],alltargets[m],true,true);
                   11967:                                         } else {
                   11968:                                             singleserver.options[idx] = new Option(alltargets[m],alltargets[m],false,false);
                   11969:                                         }
                   11970:                                     }
                   11971:                                 }
                   11972:                             }
                   11973:                         }
                   11974:                     }
                   11975:                 }
1.150     raeburn  11976:             }
                   11977:         }
                   11978:     }
                   11979:     return;
                   11980: }
                   11981: 
1.152     raeburn  11982: // ]]>
                   11983: </script>
                   11984: 
                   11985: END
                   11986: }
                   11987: 
                   11988: sub new_spares_js {
                   11989:     my @sparestypes = ('primary','default');
                   11990:     my $types = join("','",@sparestypes);
                   11991:     my $select = &mt('Select');
                   11992:     return <<"END";
                   11993: 
                   11994: <script type="text/javascript">
                   11995: // <![CDATA[
                   11996: 
                   11997: function updateNewSpares(formname,lonhost) {
                   11998:     var types = new Array('$types');
                   11999:     var include = new Array();
                   12000:     var exclude = new Array();
                   12001:     for (var i=0; i<types.length; i++) {
                   12002:         var spareboxes = getIndicesByName(formname,'spare_'+types[i]+'_'+lonhost);
                   12003:         for (var j=0; j<spareboxes.length; j++) {
                   12004:             if (formname.elements[spareboxes[j]].checked) {
                   12005:                 exclude.push(formname.elements[spareboxes[j]].value);
                   12006:             } else {
                   12007:                 include.push(formname.elements[spareboxes[j]].value);
                   12008:             }
                   12009:         }
                   12010:     }
                   12011:     for (var i=0; i<types.length; i++) {
                   12012:         var newSpare = document.getElementById('newspare_'+types[i]+'_'+lonhost);
                   12013:         var selIdx = newSpare.selectedIndex;
                   12014:         var currnew = newSpare.options[selIdx].value;
                   12015:         var okSpares = new Array();
                   12016:         for (var j=0; j<newSpare.options.length; j++) {
                   12017:             var possible = newSpare.options[j].value;
                   12018:             if (possible != '') {
                   12019:                 if (exclude.indexOf(possible) == -1) {
                   12020:                     okSpares.push(possible);
                   12021:                 } else {
                   12022:                     if (currnew == possible) {
                   12023:                         selIdx = 0;
                   12024:                     }
                   12025:                 }
                   12026:             }
                   12027:         }
                   12028:         for (var k=0; k<include.length; k++) {
                   12029:             if (okSpares.indexOf(include[k]) == -1) {
                   12030:                 okSpares.push(include[k]);
                   12031:             }
                   12032:         }
                   12033:         okSpares.sort();
                   12034:         newSpare.options.length = 0;
                   12035:         if (selIdx == 0) {
                   12036:             newSpare.options[0] = new Option("$select","",true,true);
                   12037:         } else {
                   12038:             newSpare.options[0] = new Option("$select","",false,false);
                   12039:         }
                   12040:         for (var m=0; m<okSpares.length; m++) {
                   12041:             var idx = m+1;
                   12042:             var selThis = 0;
                   12043:             if (selIdx != 0) {
                   12044:                 if (okSpares[m] == currnew) {
                   12045:                     selThis = 1;
                   12046:                 }
                   12047:             }
                   12048:             if (selThis == 1) {
                   12049:                 newSpare.options[idx] = new Option(okSpares[m],okSpares[m],true,true);
                   12050:             } else {
                   12051:                 newSpare.options[idx] = new Option(okSpares[m],okSpares[m],false,false);
                   12052:             }
                   12053:         }
                   12054:     }
                   12055:     return;
                   12056: }
                   12057: 
                   12058: function checkNewSpares(lonhost,type) {
                   12059:     var newSpare = document.getElementById('newspare_'+type+'_'+lonhost);
                   12060:     var chosen =  newSpare.options[newSpare.selectedIndex].value;
                   12061:     if (chosen != '') { 
                   12062:         var othertype;
                   12063:         var othernewSpare;
                   12064:         if (type == 'primary') {
                   12065:             othernewSpare = document.getElementById('newspare_default_'+lonhost);
                   12066:         }
                   12067:         if (type == 'default') {
                   12068:             othernewSpare = document.getElementById('newspare_primary_'+lonhost);
                   12069:         }
                   12070:         if (othernewSpare.options[othernewSpare.selectedIndex].value == chosen) {
                   12071:             othernewSpare.selectedIndex = 0;
                   12072:         }
                   12073:     }
                   12074:     return;
                   12075: }
                   12076: 
                   12077: // ]]>
                   12078: </script>
                   12079: 
                   12080: END
                   12081: 
                   12082: }
                   12083: 
                   12084: sub common_domprefs_js {
                   12085:     return <<"END";
                   12086: 
                   12087: <script type="text/javascript">
                   12088: // <![CDATA[
                   12089: 
1.150     raeburn  12090: function getIndicesByName(formname,item) {
1.152     raeburn  12091:     var group = new Array();
1.150     raeburn  12092:     for (var i=0;i<formname.elements.length;i++) {
                   12093:         if (formname.elements[i].name == item) {
1.152     raeburn  12094:             group.push(formname.elements[i].id);
1.150     raeburn  12095:         }
                   12096:     }
1.152     raeburn  12097:     return group;
1.150     raeburn  12098: }
                   12099: 
                   12100: // ]]>
                   12101: </script>
                   12102: 
                   12103: END
1.152     raeburn  12104: 
1.150     raeburn  12105: }
                   12106: 
1.165     raeburn  12107: sub recaptcha_js {
                   12108:     my %lt = &captcha_phrases();
                   12109:     return <<"END";
                   12110: 
                   12111: <script type="text/javascript">
                   12112: // <![CDATA[
                   12113: 
                   12114: function updateCaptcha(caller,context) {
                   12115:     var privitem;
                   12116:     var pubitem;
                   12117:     var privtext;
                   12118:     var pubtext;
                   12119:     if (document.getElementById(context+'_recaptchapub')) {
                   12120:         pubitem = document.getElementById(context+'_recaptchapub');
                   12121:     } else {
                   12122:         return;
                   12123:     }
                   12124:     if (document.getElementById(context+'_recaptchapriv')) {
                   12125:         privitem = document.getElementById(context+'_recaptchapriv');
                   12126:     } else {
                   12127:         return;
                   12128:     }
                   12129:     if (document.getElementById(context+'_recaptchapubtxt')) {
                   12130:         pubtext = document.getElementById(context+'_recaptchapubtxt');
                   12131:     } else {
                   12132:         return;
                   12133:     }
                   12134:     if (document.getElementById(context+'_recaptchaprivtxt')) {
                   12135:         privtext = document.getElementById(context+'_recaptchaprivtxt');
                   12136:     } else {
                   12137:         return;
                   12138:     }
                   12139:     if (caller.checked) {
                   12140:         if (caller.value == 'recaptcha') {
                   12141:             pubitem.type = 'text';
                   12142:             privitem.type = 'text';
                   12143:             pubitem.size = '40';
                   12144:             privitem.size = '40';
                   12145:             pubtext.innerHTML = "$lt{'pub'}";
                   12146:             privtext.innerHTML = "$lt{'priv'}";
                   12147:         } else {
                   12148:             pubitem.type = 'hidden';
                   12149:             privitem.type = 'hidden';
                   12150:             pubtext.innerHTML = '';
                   12151:             privtext.innerHTML = '';
                   12152:         }
                   12153:     }
                   12154:     return;
                   12155: }
                   12156: 
                   12157: // ]]>
                   12158: </script>
                   12159: 
                   12160: END
                   12161: 
                   12162: }
                   12163: 
1.236     raeburn  12164: sub toggle_display_js {
1.192     raeburn  12165:     return <<"END";
                   12166: 
                   12167: <script type="text/javascript">
                   12168: // <![CDATA[
                   12169: 
1.236     raeburn  12170: function toggleDisplay(domForm,caller) {
                   12171:     if (document.getElementById(caller)) {
                   12172:         var divitem = document.getElementById(caller);
                   12173:         var optionsElement = domForm.coursecredits;
1.264     raeburn  12174:         var checkval = 1;
                   12175:         var dispval = 'block';
1.236     raeburn  12176:         if (caller == 'emailoptions') {
                   12177:             optionsElement = domForm.cancreate_email; 
                   12178:         }
1.257     raeburn  12179:         if (caller == 'studentsubmission') {
                   12180:             optionsElement = domForm.postsubmit;
                   12181:         }
1.264     raeburn  12182:         if (caller == 'cloneinstcode') {
                   12183:             optionsElement = domForm.canclone;
                   12184:             checkval = 'instcode';
                   12185:         }
1.236     raeburn  12186:         if (optionsElement.length) {
1.192     raeburn  12187:             var currval;
1.236     raeburn  12188:             for (var i=0; i<optionsElement.length; i++) {
                   12189:                 if (optionsElement[i].checked) {
                   12190:                    currval = optionsElement[i].value;
1.192     raeburn  12191:                 }
                   12192:             }
1.264     raeburn  12193:             if (currval == checkval) {
                   12194:                 divitem.style.display = dispval;
1.192     raeburn  12195:             } else {
1.236     raeburn  12196:                 divitem.style.display = 'none';
1.192     raeburn  12197:             }
                   12198:         }
                   12199:     }
                   12200:     return;
                   12201: }
                   12202: 
                   12203: // ]]>
                   12204: </script>
                   12205: 
                   12206: END
                   12207: 
                   12208: }
                   12209: 
1.165     raeburn  12210: sub captcha_phrases {
                   12211:     return &Apache::lonlocal::texthash (
                   12212:                  priv => 'Private key',
                   12213:                  pub  => 'Public key',
                   12214:                  original  => 'original (CAPTCHA)',
                   12215:                  recaptcha => 'successor (ReCAPTCHA)',
                   12216:                  notused   => 'unused',
                   12217:     );
                   12218: }
                   12219: 
1.205     raeburn  12220: sub devalidate_remote_domconfs {
1.212     raeburn  12221:     my ($dom,$cachekeys) = @_;
                   12222:     return unless (ref($cachekeys) eq 'HASH');
1.205     raeburn  12223:     my %servers = &Apache::lonnet::internet_dom_servers($dom);
                   12224:     my %thismachine;
                   12225:     map { $thismachine{$_} = 1; } &Apache::lonnet::current_machine_ids();
1.212     raeburn  12226:     my @posscached = ('domainconfig','domdefaults');
1.260     raeburn  12227:     if (keys(%servers)) {
1.205     raeburn  12228:         foreach my $server (keys(%servers)) {
                   12229:             next if ($thismachine{$server});
1.212     raeburn  12230:             my @cached;
                   12231:             foreach my $name (@posscached) {
                   12232:                 if ($cachekeys->{$name}) {
                   12233:                     push(@cached,&escape($name).':'.&escape($dom));
                   12234:                 }
                   12235:             }
                   12236:             if (@cached) {
                   12237:                 &Apache::lonnet::remote_devalidate_cache($server,\@cached);
                   12238:             }
1.205     raeburn  12239:         }
                   12240:     }
                   12241:     return;
                   12242: }
                   12243: 
1.3       raeburn  12244: 1;

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