File:  [LON-CAPA] / loncom / imspackages / imsprocessor.pm
Revision 1.37: download - view: text, annotated - select for diffs
Wed Apr 5 17:33:51 2006 UTC (18 years, 2 months ago) by raeburn
Branches: MAIN
CVS tags: HEAD
Support for import of WebCT Vista 4 "Jumbled Sentence" question type.

    1: # Copyright Michigan State University Board of Trustees
    2: #
    3: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
    4: #
    5: # LON-CAPA is free software; you can redistribute it and/or modify
    6: # it under the terms of the GNU General Public License as published by
    7: # the Free Software Foundation; either version 2 of the License, or
    8: # (at your option) any later version.
    9: #
   10: # LON-CAPA is distributed in the hope that it will be useful,
   11: # but WITHOUT ANY WARRANTY; without even the implied warranty of
   12: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   13: # GNU General Public License for more details.
   14: #
   15: # You should have received a copy of the GNU General Public License
   16: # along with LON-CAPA; if not, write to the Free Software
   17: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   18: #
   19: # /home/httpd/html/adm/gpl.txt
   20: #
   21: # http://www.lon-capa.org/
   22: #
   23: 
   24: package Apache::imsprocessor;
   25: 
   26: use Apache::lonnet;
   27: use Apache::loncleanup;
   28: use LWP::UserAgent;
   29: use HTTP::Request::Common;
   30: use LONCAPA::Configuration;
   31: use strict;
   32: 
   33: sub ims_config {
   34:     my ($areas,$cmsmap,$areaname) = @_;
   35:     @{$areas} = ("doc","extlink","announce","staff","board","quiz","survey","pool","users","question");
   36:     %{$$cmsmap{bb5}} = (
   37:                 announce => 'resource/x-bb-announcement',
   38:                 board => 'resource/x-bb-discussionboard',
   39:                 doc => 'resource/x-bb-document',
   40:                 extlink => 'resource/x-bb-externallink',
   41:                 pool => 'assessment/x-bb-pool',
   42:                 quiz => 'assessment/x-bb-quiz',
   43:                 staff => 'resource/x-bb-staffinfo',
   44:                 survey => 'assessment/x-bb-survey',
   45:                 users => 'course/x-bb-user',
   46:                 );
   47:     %{$$cmsmap{bb6}} = (
   48:                 announce => 'resource/x-bb-announcement',
   49:                 board => 'resource/x-bb-discussionboard',
   50:                 doc => 'resource/x-bb-document',
   51:                 extlink => 'resource/x-bb-externallink',
   52:                 pool => 'assessment/x-bb-qti-pool',
   53:                 quiz => 'assessment/x-bb-qti-test',
   54:                 staff => 'resource/x-bb-staffinfo',
   55:                 survey => 'assessment/x-bb-survey',
   56:                 users => 'course/x-bb-user',
   57:                 );
   58:     $$cmsmap{bb6}{conference} = 'resource/x-bb-conference';
   59:     %{$$cmsmap{angel}} =  (
   60:                 board => 'BOARD',
   61:                 extlink => 'LINK',
   62:                 msg => 'MESSAGE',
   63:                 quiz => 'QUIZ',
   64:                 survey => 'FORM',
   65:                 );
   66:     @{$$cmsmap{angel}{doc}} = ('FILE','PAGE');
   67:     %{$$cmsmap{webctce4}} = (
   68:                 quiz => 'webctquiz',
   69:                 survey => 'webctsurvey',
   70:                 doc => 'webcontent'
   71:                 );
   72:     %{$$cmsmap{webctvista4}} = (
   73:                 question => 'webct.question',
   74:                 quiz => 'webct.assessment',
   75:                 survey => 'webctsurvey',
   76:                 doc => 'webcontent'
   77:                 );
   78:     %{$areaname} = (
   79:                 announce => 'Announcements',
   80:                 board => 'Discussion Boards',
   81:                 doc => 'Documents, pages, and folders',
   82:                 extlink => 'Links to external sites',
   83:                 pool => 'Question pools',
   84:                 quiz => 'Quizzes',
   85:                 question => 'Assessment Questions',
   86:                 staff => 'Staff information',
   87:                 survey => 'Surveys',
   88:                 users => 'Enrollment',
   89:                 );
   90: }
   91:  
   92: sub create_tempdir {
   93:     my ($context,$pathinfo,$timenow) = @_;   
   94:     my $configvars = &LONCAPA::Configuration::read_conf('loncapa.conf');
   95:     my $tempdir;
   96:     if ($context eq 'DOCS') {
   97:         $tempdir =  $$configvars{'lonDaemons'}.'/tmp/'.$pathinfo;
   98:         if (!-e "$tempdir") {
   99:             mkdir("$tempdir",0770);
  100:         } 
  101:         $tempdir .= '/'.$timenow;
  102:         if (!-e "$tempdir") {
  103:             mkdir("$tempdir",0770);
  104:         } 
  105:     } elsif ($context eq "CSTR") {
  106:         if (!-e "$pathinfo/temp") {
  107:             mkdir("$pathinfo/temp",0770);
  108:         }
  109:         $tempdir =  $pathinfo.'/temp';
  110:     }
  111:     return $tempdir;
  112: }
  113: 
  114: sub uploadzip {
  115:     my ($context,$tempdir,$source) = @_;
  116:     my $fname;
  117:     if ($context eq 'DOCS') {
  118:         $fname=$env{'form.uploadname.filename'};
  119: # Replace Windows backslashes by forward slashes
  120:         $fname=~s/\\/\//g;
  121: # Get rid of everything but the actual filename
  122:         $fname=~s/^.*\/([^\/]+)$/$1/;
  123: # Replace spaces by underscores
  124:         $fname=~s/\s+/\_/g;
  125: # Replace all other weird characters by nothing
  126:         $fname=~s/[^\w\.\-]//g;
  127: # See if there is anything left
  128:         unless ($fname) { return 'error: no uploaded file'; }
  129: # Save the file
  130:         chomp($env{'form.uploadname'});
  131:         open(my $fh,'>'.$tempdir.'/'.$fname);
  132:         print $fh $env{'form.uploadname'};
  133:         close($fh);
  134:     } elsif ($context eq 'CSTR') {
  135:         if ($source =~ m/\/([^\/]+)$/) {
  136:             $fname = $1;
  137:             my $destination = $tempdir.'/'.$fname;
  138:             rename($source,$destination);
  139:         }
  140:     }
  141:     return $fname;   
  142: }
  143: 
  144: sub expand_zip {
  145:     my ($tempdir,$filename) = @_;
  146:     my $zipfile = "$tempdir/$filename";
  147:     if (!-e "$zipfile") {
  148:         return 'no zip';
  149:     }
  150:     if ($filename =~ m|\.zip$|i) {
  151:         open(OUTPUT, "unzip -o $zipfile -d $tempdir  2> /dev/null |");
  152:         close(OUTPUT);
  153:     } else {
  154:         return 'nozip';
  155:     }
  156:     if ($filename =~ m|\.zip$|i) {
  157:         unlink($zipfile);
  158:     }
  159:     return 'ok';
  160: }
  161: 
  162: sub process_manifest {
  163:     my ($cms,$tempdir,$resources,$items,$hrefs,$resinfo,$phase,$includedres,$includeditems) = @_;
  164:     my %toc = (
  165:               bb6 => 'organization',
  166:               bb5 => 'tableofcontents',
  167:               angel => 'organization',
  168:               webctce4 => 'organization',
  169:               webctvista4 => 'organization'
  170:               );
  171:     my @seq = "Top";
  172:     %{$$items{'Top'}} = (
  173:                       contentscount => 0,
  174:                       resnum => 'toplevel',
  175:                       );
  176:     %{$$resources{'toplevel'}} = (
  177:                                   revitm => 'Top'
  178:                                  );
  179:  
  180:     if ($cms eq 'angel') {
  181:         $$resources{'toplevel'}{type} = "FOLDER";
  182:     } elsif ($cms eq 'bb5' || $cms eq 'bb6') {
  183:         $$resources{'toplevel'}{type} = 'resource/x-bb-document';
  184:     } else {
  185:         $$resources{'toplevel'}{type} = 'webcontent';
  186:     }
  187: 
  188:     unless (-e "$tempdir/imsmanifest.xml") {
  189:         return 'nomanifest';
  190:     }
  191: 
  192:     my $xmlfile = $tempdir.'/imsmanifest.xml';
  193:     &parse_manifest($cms,$phase,$tempdir,$xmlfile,\%toc,$includedres,
  194:                     $includeditems,$items,$resources,$resinfo,$hrefs,\@seq);
  195:     return 'ok' ;
  196: }
  197: 
  198: sub parse_manifest {
  199:     my ($cms,$phase,$tempdir,$xmlfile,$toc,$includedres,$includeditems,$items,
  200:         $resources,$resinfo,$hrefs,$seq) = @_;
  201:     my @state = ();
  202:     my $itm = '';
  203:     my %contents = ();
  204:     my $identifier = '';
  205:     my @allidentifiers = ();
  206:     my $lastitem;
  207:     my $p = HTML::Parser->new
  208:     (
  209:        xml_mode => 1,
  210:        start_h =>
  211:            [sub {
  212:                 my ($tagname, $attr) = @_;
  213:                 push @state, $tagname;
  214:                 my $start = @state - 3;
  215:                 if ( ($state[0] eq "manifest") && ($state[1] eq "organizations") && ($state[2] eq $$toc{$cms}) ) {
  216:                     if ($state[-1] eq 'item') {
  217:                         $itm = $attr->{identifier};
  218:                         if ($$includeditems{$itm} || $phase ne 'build') {
  219:                             %{$$items{$itm}} = ();
  220:                             $$items{$itm}{contentscount} = 0;
  221:                             @{$$items{$itm}{contents}} = ();
  222:                             if ($cms eq 'bb5' || $cms eq 'bb6' || $cms eq 'webctce4' || $cms eq 'webctvista4') {
  223:                                 $$items{$itm}{resnum} = $attr->{identifierref};
  224:                                 if ($cms eq 'bb5') {
  225:                                     $$items{$itm}{title} = $attr->{title};
  226:                                 }
  227:                             } elsif ($cms eq 'angel') {
  228:                                 if ($attr->{identifierref} =~ m/^res(.+)$/) {
  229:                                     $$items{$itm}{resnum} = $1;
  230:                                 }
  231:                             }
  232:                             unless (defined(%{$$resources{$$items{$itm}{resnum}}}) ) {
  233:                                 %{$$resources{$$items{$itm}{resnum}}} = ();
  234:                             }
  235:                             $$resources{$$items{$itm}{resnum}}{revitm} = $itm;
  236:                             if ($start > @{$seq}) {
  237:                                 unless ($lastitem eq '') {
  238:                                     push @{$seq}, $lastitem;
  239:                                     unless ( defined($contents{$$seq[-1]}) ) {
  240:                                         @{$contents{$$seq[-1]}} = ();
  241:                                     }
  242:                                     push @{$contents{$$seq[-1]}},$itm;
  243:                                     $$items{$itm}{parentseq} = $$seq[-1];
  244:                                 }
  245:                             } elsif ($start < @{$seq}) {
  246:                                 my $diff = @{$seq} - $start;
  247:                                 while ($diff > 0) {
  248:                                     pop @{$seq};
  249:                                     $diff --;
  250:                                 }
  251:                                 if (@{$seq}) {
  252:                                     push @{$contents{$$seq[-1]}}, $itm;
  253:                                 }
  254:                             } else {
  255:                                 push @{$contents{$$seq[-1]}}, $itm;
  256:                             }
  257:                             my $path;
  258:                             if (@{$seq} > 1) {
  259:                                 $path = join(',',@{$seq});
  260:                             } elsif (@{$seq} > 0) {
  261:                                 $path = $$seq[0];
  262:                             }
  263:                             $$items{$itm}{filepath} = $path;
  264:                             if ($cms eq 'bb5' || $cms eq 'bb6') {
  265:                                 if ($$items{$itm}{filepath} eq 'Top') {
  266:                                     $$items{$itm}{resnum} = $itm;
  267:                                     $$resources{$$items{$itm}{resnum}}{type} = 'resource/x-bb-document';
  268:                                     $$resources{$$items{$itm}{resnum}}{revitm} = $itm;
  269:                                     $$resinfo{$$items{$itm}{resnum}}{'isfolder'} = 'true';
  270:                                 }
  271:                             }
  272:                             $$items{$$seq[-1]}{contentscount} ++;
  273:                             $$resources{$$items{$itm}{resnum}}{seqref} = $seq;
  274:                             $lastitem = $itm;
  275:                         }
  276:                     }
  277:                     if ($cms eq 'webctce4') {
  278:                         if (($state[-1] eq "webct:properties") && (@state > 4)) {
  279:                             $$items{$itm}{properties} = $attr->{identifierref};
  280:                         }
  281:                     }
  282:                 } elsif ("@state" eq "manifest resources resource" ) {
  283:                     $identifier = $attr->{identifier};
  284:                     push(@allidentifiers,$identifier);
  285:                     if ($$includedres{$identifier} || $phase ne 'build') { 
  286:                         if ($cms eq 'bb5' || $cms eq 'bb6') {
  287:                             $$resources{$identifier}{file} = $attr->{file};
  288:                             $$resources{$identifier}{type} = $attr->{type};
  289:                         } elsif ($cms eq 'webctce4') {
  290:                             $$resources{$identifier}{type} = $attr->{type};
  291:                             $$resources{$identifier}{file} = $attr->{href};
  292:                         } elsif ($cms eq 'webctvista4') {
  293:                             $$resources{$identifier}{type} = $attr->{type};
  294:                             $$resources{$identifier}{'webct:coType'} = $attr->{'webct:coType'};
  295:                         } elsif ($cms eq 'angel') {
  296:                             $identifier = substr($identifier,3);
  297:                             if ($attr->{href} =~ m-^_assoc/$identifier/(.+)$-) {
  298:                                 $$resources{$identifier}{file} = $1;
  299:                             }
  300:                         }
  301:                         @{$$hrefs{$identifier}} = ();
  302:                     }
  303:                 } elsif ("@state" eq "manifest resources resource file") {
  304:                     if ($$includedres{$identifier} || $phase ne 'build') {
  305:                         if ($cms eq 'webctvista4') {
  306:                             $$resources{$identifier}{file} = $attr->{href};
  307:                         }
  308:                         if ($cms eq 'bb5' || $cms eq 'bb6' || 
  309:                             $cms eq 'webctce4' || $cms eq 'webctvista4') {
  310:                             push @{$$hrefs{$identifier}},$attr->{href};
  311: 
  312:                             if ($$resources{$identifier}{type} eq 
  313:                                 'webct.manifest') {
  314:                                 my $manifestfile = $tempdir.'/'.$attr->{href};
  315:                                 my $currseqref = [];
  316:                                 if ($itm) {
  317:                                     $currseqref =   
  318:                                     $$resources{$$items{$itm}{resnum}}{seqref};
  319:                                 }
  320:                                 &parse_manifest($cms,$phase,$tempdir,$manifestfile,
  321:                                                 $toc,$includedres,$includeditems,
  322:                                                 $items,$resources,$resinfo,
  323:                                                 $hrefs,$currseqref);
  324:                             }
  325:                         } elsif ($cms eq 'angel') {
  326:                             if ($attr->{href} =~ m/^_assoc\\$identifier\\(.+)$/) {
  327:                                 push @{$$hrefs{$identifier}},$1;
  328:                             } elsif ($attr->{href} =~ m/^Icons\\icon(\w+)\.gif/) {
  329:                                 $$resources{$identifier}{type} = $1;
  330:                             }
  331:                         } 
  332:                     }
  333:                 } elsif ("@state" eq "manifest webct:ContentObject") {
  334:                     foreach my $ident (@allidentifiers) {
  335:                         if ($$resources{$ident}{type} eq 'ims_qtiasiv1p2') {
  336:                             $$resources{$ident}{type} = $attr->{'webct:coType'};
  337:                         }
  338:                     }
  339:                 }
  340:            }, "tagname, attr"],
  341:         text_h =>
  342:             [sub {
  343:                 my ($text) = @_;
  344:                 if ("@state" eq "manifest metadata lom general title langstring") {
  345:                     $$items{'Top'}{title} = $text;
  346:                 }
  347:                 if ($state[0] eq "manifest" && $state[1] eq "organizations" && $state[2] eq $$toc{$cms} && $state[-1] eq "title") {
  348:                     if ($$includeditems{$itm} || $phase ne 'build') {
  349:                         if ($cms eq 'angel' || $cms eq 'bb6' || $cms eq 'webctvista4') {
  350:                             $$items{$itm}{title} = $text;
  351:                         }
  352:                         if ($cms eq 'webctce4') {
  353:                             $$items{$itm}{title} = $text;
  354:                             $$items{$itm}{title} =~ s/(<[^>]*>)//g;
  355:                         }
  356:                     }
  357:                 }
  358:               }, "dtext"],
  359:         end_h =>
  360:               [sub {
  361:                   my ($tagname) = @_;
  362:                   pop @state;
  363:                }, "tagname"],
  364:     );
  365:     $p->parse_file($xmlfile);
  366:     $p->eof;
  367:     foreach my $itm (keys %contents) {
  368:         @{$$items{$itm}{contents}} = @{$contents{$itm}};
  369:     }
  370: }
  371: 
  372: sub get_imports {
  373:     my ($includeditems,$items,$resources,$importareas,$itm) = @_;
  374:     if (exists($$items{$itm}{resnum})) {
  375:         if ($$importareas{$$resources{$$items{$itm}{resnum}}{type}}) {
  376:             unless (exists($$includeditems{$itm})) {
  377:                 $$includeditems{$itm} = 1;
  378:             }
  379:         }
  380:     }
  381:     if ($$items{$itm}{contentscount} > 0) {
  382:         foreach my $child (@{$$items{$itm}{contents}}) {
  383:             &get_imports($includeditems,$items,$resources,$importareas,$child);
  384:         }
  385:     }
  386: }
  387: 
  388: sub get_parents {
  389:     my ($includeditems,$items,$itm) = @_;
  390:     my @pathitems = ();
  391:     if ($$items{$itm}{filepath} =~ m/,/) {
  392:        @pathitems = split/,/,$$items{$itm}{filepath};
  393:     } else {
  394:        $pathitems[0] = $$items{$itm}{filepath};
  395:     }
  396:     foreach (@pathitems) {
  397:         $$includeditems{$_} = 1;
  398:     }
  399: }
  400: 
  401: sub target_resources {
  402:     my ($resources,$oktypes,$targets) = @_;
  403:     foreach my $key (keys %{$resources}) {
  404:         if ( defined($$oktypes{$$resources{$key}{type}}) ) {
  405:             push @{$targets}, $key;
  406:         }
  407:     }
  408:     return;
  409: }
  410: 
  411: sub copy_resources {
  412:     my ($context,$cms,$hrefs,$tempdir,$targets,$url,$crs,$cdom,$destdir,$timenow,$assessmentfiles) = @_;
  413:     if ($context eq 'DOCS') {
  414:         foreach my $key (sort keys %{$hrefs}) {
  415:             if (grep/^$key$/,@{$targets}) {
  416:                 %{$$url{$key}} = ();
  417:                 foreach my $file (@{$$hrefs{$key}}) {
  418:                     my $source = $tempdir.'/'.$key.'/'.$file;
  419:                     if ($cms eq 'webctce4' || $cms eq 'webctvista4') {
  420:                         $source = $tempdir.'/'.$file;
  421:                     }
  422:                     my $filename = '';
  423:                     my $fpath = $timenow.'/resfiles/'.$key.'/';
  424:                     if ($cms eq 'angel') {
  425:                         if ($file eq 'pg'.$key.'.htm') {
  426:                             next;
  427:                         }
  428:                     }
  429:                     $file =~ s-\\-/-g;
  430:                     my $copyfile = $file;
  431:                     if ($cms eq 'webctce4' || $cms eq 'webctvista4') {
  432:                         if ($file =~ m-/my_files/(.+)$-) {
  433:                             $copyfile = $1;
  434:                         }
  435:                     }
  436:                     unless ((($cms eq 'webctce4') && ($copyfile =~ m/questionDB\.xml$/ || $copyfile =~ m/quiz_QIZ_\d+\.xml$/ || $copyfile =~ m/properties_QIZ_\d+\.xml$/)) || (($cms eq 'webctvista4') && (grep/^$key$/,@{$assessmentfiles}) && $file =~ /\.xml$/))    {
  437:                         $copyfile = $fpath.$copyfile;
  438:                         my $fileresult;
  439:                         if (-e $source) {
  440:                             $fileresult = &Apache::lonnet::process_coursefile('copy',$crs,$cdom,$copyfile,$source);
  441:                         }
  442:                     }
  443:                 }
  444:             }
  445:         }
  446:     } elsif ($context eq 'CSTR') {
  447:         if (!-e "$destdir/resfiles") {
  448:             mkdir("$destdir/resfiles",0770);
  449:         }
  450:         foreach my $key (sort keys %{$hrefs}) {
  451:             if (grep/^$key$/,@{$targets}) {
  452:                 foreach my $file (@{$$hrefs{$key}}) {
  453:                     $file =~ s-\\-/-g;
  454:                     if ( ($cms eq 'angel' && $file ne 'pg'.$key.'.htm') || ($cms eq 'bb5') || ($cms eq 'bb6')) {
  455:                         if (!-e "$destdir/resfiles/$key") {
  456:                             mkdir("$destdir/resfiles/$key",0770);
  457:                         }
  458:                         my $filepath = $file;
  459:                         my $front = '';
  460:                         while ($filepath =~ m-(\w+)/(.+)-) {
  461:                             $front .= $1.'/';
  462:                             $filepath = $2;
  463:                             my $fulldir = "$destdir/resfiles/$key/$front";
  464:                             chop($fulldir);
  465:                             if (!-e "$fulldir") {
  466:                                 mkdir("$fulldir",0770);
  467:                             }
  468:                         }
  469:                         if ($cms eq 'angel') {
  470:                             rename("$tempdir/_assoc/$key/$file","$destdir/resfiles/$key/$file");
  471:                         } elsif ($cms eq 'bb5' || $cms eq 'bb6') {
  472:                             rename("$tempdir/$key/$file","$destdir/resfiles/$key/$file");
  473:                         }
  474:                     } elsif ($cms eq 'webctce4') {
  475:                         if ($file =~ m-/my_files/(.+)$-) {
  476:                             my $copyfile = $1;
  477:                             if ($copyfile =~ m-^[^/]+/[^/]+-) {
  478:                                 my @dirs = split/\//,$copyfile;
  479:                                 my $path = "$destdir/resfiles";
  480:                                 while (@dirs > 1) {
  481:                                     $path .= '/'.$dirs[0];
  482:                                     if (!-e "$path") {
  483:                                         mkdir("$path",0755);
  484:                                     }
  485:                                     shift @dirs;
  486:                                 }
  487:                             }
  488:                             if (-e "$tempdir/$file") {
  489:                                 rename("$tempdir/$file","$destdir/resfiles/$copyfile");
  490:                             }
  491:                         } elsif ($file !~ m-/data/(.+)$-) {
  492:                             &Apache::lonnet::logthis("IMS import error: WebCT4 - file $file is in unexpected location");
  493:                         }
  494:                     }
  495:                 }
  496:             }
  497:         }
  498:     }
  499: }
  500: 
  501: sub process_resinfo {
  502:     my ($cms,$context,$docroot,$destdir,$items,$resources,$targets,$boards,$announcements,$quizzes,$surveys,$pools,$groups,$messages,$timestamp,$boardnum,$resinfo,$udom,$uname,$cdom,$crs,$db_handling,$user_handling,$total,$dirname,$seqstem,$resrcfiles,$packages,$hrefs,$pagesfiles,$sequencesfiles,$randompicks) = @_;
  503:     my $board_id = time;
  504:     my $board_count = 0;
  505:     my $dbparse = 0;
  506:     my $announce_handling = 'include';
  507:     my $longcrs = '';
  508:     my %allassessments = ();
  509:     my %allquestions = ();
  510:     my %qzdbsettings = ();
  511:     my %catinfo = ();
  512:     if ($crs =~ m/^(\d)(\d)(\d)/) {
  513:         $longcrs = $1.'/'.$2.'/'.$3.'/'.$crs;
  514:     }
  515:     if ($context eq 'CSTR') {
  516:         if (!-e "$destdir/resfiles") {
  517:             mkdir("$destdir/resfiles",0770);
  518:         }
  519:     }
  520:     if ($cms eq 'angel') {
  521:         my $currboard = '';
  522:         foreach my $key (sort keys %{$resources}) {
  523:           if (grep/^$key$/,@{$targets}) {
  524:             if ($$resources{$key}{type} eq "BOARD") {
  525:                 push @{$boards}, $key;
  526:                 $$boardnum{$$resources{$key}{revitm}} = $board_count;
  527:                 $currboard = $key;
  528:                 @{$$messages{$key}} = ();
  529:                 $$timestamp[$board_count] = $board_id;
  530:                 $board_id ++;
  531:                 $board_count ++;
  532:             } elsif ($$resources{$key}{type} eq "MESSAGE") {
  533:                 push @{$$messages{$currboard}}, $key;
  534:             } elsif ($$resources{$key}{type} eq "PAGE" || $$resources{$key}{type} eq "LINK") {
  535:                 %{$$resinfo{$key}} = ();
  536:                 &angel_content($key,$docroot,$destdir,\%{$$resinfo{$key}},$udom,$uname,$$resources{$key}{type},$$items{$$resources{$key}{revitm}}{title},$resrcfiles);
  537:             } elsif ($$resources{$key}{type} eq "QUIZ") {
  538:                 %{$$resinfo{$key}} = ();
  539:                 push @{$quizzes}, $key;
  540: #               &angel_assessment($key,$docroot,$dirname,$destdir,\%{$$resinfo{$key}},$resrcfiles);
  541:             } elsif ($$resources{$key}{type} eq "FORM") {
  542:                 %{$$resinfo{$key}} = ();
  543:                 push @{$surveys}, $key;
  544: #                &angel_assessment($key,$docroot,$dirname,$destdir,\%{$$resinfo{$key}},$resrcfiles);
  545:             } elsif ($$resources{$key}{type} eq "DROPBOX") {
  546:                 %{$$resinfo{$key}} = ();
  547:             }
  548:           }
  549:         }
  550:     } elsif ($cms eq 'bb5' || $cms eq 'bb6') {
  551:         foreach my $key (sort keys %{$resources}) {
  552:           if (grep/^$key$/,@{$targets}) {
  553:             if ($$resources{$key}{type} eq "resource/x-bb-document") {
  554:                 unless ($$items{$$resources{$key}{revitm}}{filepath} eq 'Top') {
  555:                     %{$$resinfo{$key}} = ();
  556:                     &process_content($cms,$key,$context,$docroot,$destdir,\%{$$resinfo{$key}},$udom,$uname,$resrcfiles,$packages,$hrefs);
  557:                 }
  558:             } elsif ($$resources{$key}{type} eq "resource/x-bb-staffinfo") {
  559:                 %{$$resinfo{$key}} = ();
  560:                 &process_staff($key,$docroot,$destdir,\%{$$resinfo{$key}},$resrcfiles);
  561:             } elsif ($$resources{$key}{type} eq "resource/x-bb-externallink") {
  562:                 %{$$resinfo{$key}} = ();
  563:                 &process_link($key,$docroot,$destdir,\%{$$resinfo{$key}},$resrcfiles);
  564:             } elsif ($$resources{$key}{type} eq "resource/x-bb-discussionboard") {
  565:                 %{$$resinfo{$key}} = ();
  566:                 unless ($db_handling eq 'ignore') {
  567:                     push @{$boards}, $key;
  568:                     $$timestamp[$board_count] = $board_id;
  569:                     &process_db($key,$docroot,$destdir,$board_id,$crs,$cdom,$db_handling,$uname,\%{$$resinfo{$key}},$longcrs);
  570:                     $board_id ++;
  571:                     $board_count ++;
  572:                 }
  573:             } elsif ($$resources{$key}{type} =~/assessment\/x\-bb\-(qti\-)?pool/) {
  574:                 %{$$resinfo{$key}} = ();
  575:                 &process_assessment($cms,$context,$key,$docroot,'pool',$dirname,$destdir,\%{$$resinfo{$key}},$total,$udom,$uname,$pagesfiles,$sequencesfiles,$randompicks,\$dbparse,$resources,$items,\%catinfo,\%qzdbsettings,$hrefs,\%allquestions);
  576:                 push @{$pools}, $key;
  577:             } elsif ($$resources{$key}{type} =~ /assessment\/x\-bb\-(qti\-)?quiz/) {
  578:                 %{$$resinfo{$key}} = ();
  579:                 &process_assessment($cms,$context,$key,$docroot,'quiz',$dirname,$destdir,\%{$$resinfo{$key}},$total,$udom,$uname,$pagesfiles,$sequencesfiles,$randompicks,\$dbparse,$resources,$items,\%catinfo,\%qzdbsettings,$hrefs,\%allquestions);
  580:                 push @{$quizzes}, $key;
  581:             } elsif ($$resources{$key}{type} =~ /assessment\/x\-bb\-(qti\-)?survey/) {
  582:                 %{$$resinfo{$key}} = ();
  583:                 &process_assessment($cms,$context,$key,$docroot,'survey',$dirname,$destdir,\%{$$resinfo{$key}},$total,$udom,$uname,$pagesfiles,$sequencesfiles,$randompicks,\$dbparse,$resources,$items,\%catinfo,\%qzdbsettings,$hrefs,\%allquestions);
  584:                 push @{$surveys}, $key;
  585:             } elsif ($$resources{$key}{type} eq "assessment/x-bb-group") {
  586:                 %{$$resinfo{$key}} = ();
  587:                 push @{$groups}, $key;
  588:                 &process_group($key,$docroot,$destdir,\%{$$resinfo{$key}});
  589:             } elsif ($$resources{$key}{type} eq "resource/x-bb-user") {   
  590:                 %{$$resinfo{$key}} = ();
  591:                 unless ($user_handling eq 'ignore') {
  592:                     &process_user($key,$docroot,$destdir,\%{$$resinfo{$key}},$crs,$cdom,$user_handling);
  593:                 }
  594:             } elsif ($$resources{$key}{type} eq "resource/x-bb-announcement") {
  595:                 unless ($announce_handling eq 'ignore') {
  596:                     push @{$announcements}, $key;
  597:                     %{$$resinfo{$key}} = ();
  598:                     &process_announce($key,$docroot,$destdir,\%{$$resinfo{$key}},$resinfo,$seqstem,$resrcfiles);
  599:                 }
  600:             }
  601:           }
  602:         }
  603:         if (@{$announcements}) {
  604:             $$items{'Top'}{'contentscount'} ++;
  605:         }
  606:         if (@{$boards}) {
  607:             $$items{'Top'}{'contentscount'} ++;
  608:         }
  609:         if (@{$quizzes}) {
  610:             $$items{'Top'}{'contentscount'} ++;
  611:         }
  612:         if (@{$surveys}) {
  613:             $$items{'Top'}{'contentscount'} ++;
  614:         }
  615:         if (@{$pools}) {
  616:             $$items{'Top'}{'contentscount'} ++;
  617:         }
  618:     } elsif ($cms eq 'webctce4') {
  619:         foreach my $key (sort keys %{$resources}) {
  620:             if (grep/^$key$/,@{$targets}) {
  621:                 if ($$resources{$key}{type} eq "webcontent") {
  622:                     %{$$resinfo{$key}} = ();
  623:                     &webct4_content($key,$docroot,$destdir,\%{$$resinfo{$key}},$udom,$uname,$$resources{$key}{type},$$items{$$resources{$key}{revitm}}{title},$resrcfiles);
  624:                 } elsif ($$resources{$key}{type} eq "webctquiz") {
  625:                     &process_assessment($cms,$context,$key,$docroot,'quiz',$dirname,$destdir,\%{$$resinfo{$key}},$total,$udom,$uname,$pagesfiles,$sequencesfiles,$randompicks,\$dbparse,$resources,$items,\%catinfo,\%qzdbsettings,$hrefs,\%allquestions);
  626:                 }
  627:             }
  628:         }
  629:     } elsif ($cms eq 'webctvista4') {
  630:         foreach my $key (sort keys %{$resources}) {
  631:             if (grep/^$key$/,@{$targets}) {
  632:                 %{$$resinfo{$key}} = ();
  633:                 if ($$resources{$key}{type} eq 'webct.question') {
  634:                     $allquestions{$key} = 1;
  635:                 } elsif ($$resources{$key}{type} eq 'webct.assessment') {
  636:                     $allassessments{$key} = 1;
  637:                 }
  638:             }
  639:         }
  640:         if (keys(%allassessments) > 0) {
  641:             foreach my $key (sort(keys(%allassessments))) {
  642:                 &process_assessment($cms,$context,$key,$docroot,'quiz',$dirname,$destdir,\%{$$resinfo{$key}},$total,$udom,$uname,$pagesfiles,$sequencesfiles,$randompicks,\$dbparse,$resources,$items,\%catinfo,\%qzdbsettings,$hrefs,\%allquestions);
  643:             }
  644:         } elsif (keys(%allquestions) > 0) {
  645:             my %catinfo = ();
  646:             my @allids = ();
  647:             my @allquestids = ();
  648:             my %allanswers = ();
  649:             my %allchoices = ();
  650:             my $containerdir;
  651:             my $newdir;
  652:             my $cid;
  653:             my $randompickflag = 0;
  654:             if ($context eq 'DOCS') {
  655:                 $cid = $env{'request.course.id'};
  656:             }
  657:             my $destresdir = $destdir;
  658:             if ($context eq 'CSTR') {
  659:                 $destresdir =~ s|/home/$uname/public_html/|/res/$udom/$uname/|;
  660:             } elsif ($context eq 'DOCS') {
  661:                 $destresdir =~ s|^/home/httpd/html/userfiles|/uploaded|;
  662:             }
  663:             foreach my $res (sort(keys(%allquestions))) {
  664:                 my $parent = $allquestions{$res};
  665:                 &parse_webctvista4_question($res,$docroot,$resources,$hrefs,\%qzdbsettings,\@allquestids,\%allanswers,\%allchoices,$parent,\%catinfo);
  666:             }
  667:             &build_category_sequences($destdir,\%catinfo,$sequencesfiles,$pagesfiles,$destresdir,$newdir,$cms,$total,$randompickflag,$context,$udom,$uname,$dirname,$cid,$cdom,$crs,\%qzdbsettings);
  668:             &write_webct4_questions($cms,\@allquestids,$context,\%qzdbsettings,$dirname,\%allanswers,\%allchoices,$total,$cid,$cdom,$crs,$destdir,\%catinfo);
  669:         }
  670:     }
  671: 
  672:     $$total{'board'} = $board_count;
  673:     $$total{'quiz'} = @{$quizzes};
  674:     $$total{'surv'} = @{$surveys};
  675:     $$total{'pool'} = @{$pools};
  676: }
  677: 
  678: sub build_structure {
  679:     my ($cms,$context,$destdir,$items,$resinfo,$resources,$targets,$hrefs,$udom,$uname,$newdir,$timenow,$cdom,$crs,$timestamp,$total,$boards,$announcements,$quizzes,$surveys,$pools,$boardnum,$pagesfiles,$seqfiles,$topurls,$topnames,$packages,$includeditems,$randompicks) = @_;
  680:     my %flag = ();
  681:     my %count = ();
  682:     my %pagecontents = ();
  683:     my %seqtext = ();
  684:     my $topnum = 0;
  685:     my $topspecials = @$announcements + @$boards + @$quizzes + @$surveys + @$pools;
  686: 
  687:     if (!-e "$destdir") {
  688:         mkdir("$destdir",0755);
  689:     }
  690:     if (!-e "$destdir/sequences") {
  691:         mkdir("$destdir/sequences",0770);
  692:     }
  693:     if (!-e "$destdir/resfiles") {
  694:         mkdir("$destdir/resfiles",0770);
  695:     }
  696:     if (!-e "$destdir/pages") {
  697:         mkdir("$destdir/pages",0770);
  698:     }
  699:     if (!-e "$destdir/problems") {
  700:         mkdir("$destdir/problems",0770);
  701:     }
  702: 
  703:     $seqtext{'Top'} = qq|<map>\n|;       
  704:     %{$$resinfo{$$items{'Top'}{resnum}}} = (
  705:                                          isfolder => 'true',
  706:                                         );
  707: 
  708:     my $srcstem = "";
  709:  
  710:     if ($context eq 'DOCS') {
  711:         $srcstem = "/uploaded/$cdom/$crs/$timenow";
  712:     } elsif ($context eq 'CSTR') {
  713:         $srcstem = "/res/$udom/$uname/$newdir";
  714:     }
  715: 
  716:     foreach my $key (sort keys %{$items}) {
  717:       if ($$includeditems{$key}) {
  718:         %{$flag{$key}} = (
  719:                           page => 0,
  720:                           seq => 0,
  721:                           board => 0,
  722:                           file => 0,
  723:                          );
  724: 
  725:         %{$count{$key}} = (
  726:                            page => -1,
  727:                            seq => 0,
  728:                            board => 0,
  729:                            file => 0,
  730:                           );
  731: 
  732:         my $src = "";
  733: 
  734:         my $next_id = 2;
  735:         my $curr_id = 1;
  736:         my $resnum = $$items{$key}{resnum};
  737:         my $type = $$resources{$resnum}{type};
  738:         my $contentscount = $$items{$key}{'contentscount'}; 
  739:         if (($cms eq 'angel' && $type eq "FOLDER") || (($cms eq 'bb5' || $cms eq 'bb6') && $$resinfo{$resnum}{'isfolder'} eq "true") && (($type eq "resource/x-bb-document") || ($type eq "resource/x-bb-staffinfo") || ($type eq "resource/x-bb-externallink")) || ($cms eq 'webctce4' &&  $contentscount > 0)) {
  740:             unless (($cms eq 'bb5') && $key eq 'Top') {
  741:                 $seqtext{$key} = "<map>\n";
  742:             }
  743:             if ($contentscount == 0) {
  744: 	        if ($key eq 'Top') {
  745:                     unless ($topspecials) {
  746:                         $seqtext{$key} .= qq|<resource id="$curr_id" src="" type="start"></resource>
  747: <link from="$curr_id" to="$next_id" index="$curr_id"></link>
  748: <resource id="$next_id" src="" type="finish"></resource>\n|;
  749:                     }
  750:                 } else {
  751:                     $seqtext{$key} .= qq|<resource id="$curr_id" src="" type="start"></resource>
  752: <link from="$curr_id" to="$next_id" index="$curr_id"></link>
  753: <resource id="$next_id" src="" type="finish"></resource>\n|;
  754:                 }
  755:             } else {
  756:                 my $contcount = 0;
  757:                 if (defined($$items{$key}{contents})) { 
  758:                     $contcount = @{$$items{$key}{contents}};
  759:                 } else {
  760:                     &Apache::lonnet::logthis("IMS Import error for item: $key- contents count = $contentscount, but identity of contents not defined.");
  761:                 }
  762:                 my $contitem = $$items{$key}{contents}[0];
  763:                 my $contitemcount = $$items{$contitem}{contentscount}; 
  764:                 my ($res,$itm,$type,$file);
  765:                 if (exists($$items{$contitem}{resnum})) {
  766:                     $res = $$items{$contitem}{resnum};
  767:                     $itm = $$resources{$res}{revitm};
  768:                     $type = $$resources{$res}{type};
  769:                     $file = $$resources{$res}{file};
  770:                 }
  771:                 my $title = $$items{$contitem}{title};
  772:                 my $packageflag = 0;
  773:                 if (grep/^$res$/,@{$packages}) {
  774:                     $packageflag = 1;
  775:                 }
  776:                 $src = &make_structure($cms,$key,$srcstem,\%flag,\%count,$timestamp,$boardnum,$hrefs,\%pagecontents,$res,$type,$file,$resinfo,$contitem,$uname,$cdom,$contcount,$packageflag,$contitemcount,$$randompicks{$contitem});
  777:                 unless ($flag{$key}{page} == 1) {
  778:                     if ($$randompicks{$contitem}) {
  779:                         $seqtext{$key} .= qq|
  780: <param to="$curr_id" type="int_pos" name="parameter_randompick" value="$$randompicks{$contitem}"></param>\n|;
  781:                     }
  782:                     $seqtext{$key} .= qq|<resource id="$curr_id" src="$src" title="$title" type="start"|;
  783:                     unless ($flag{$key}{seq} || $flag{$key}{board} || $flag{$key}{file}) {
  784:                         $flag{$key}{page} = 1;
  785:                     }
  786:                     if ($key eq 'Top') {
  787:                         push @{$topurls}, $src;
  788:                         push @{$topnames}, $title;
  789:                     }
  790:                 }
  791:                 if ($contcount == 1) {
  792:                     $seqtext{$key} .= qq|></resource>
  793: <link from="$curr_id" to="$next_id" index="$curr_id"></link>|;
  794:                     if ($key eq 'Top') {
  795:                         unless ($topspecials) {
  796:                             $seqtext{$key} .= qq|
  797: <resource id="$next_id" src="" type="finish"></resource>\n|;
  798:                         }
  799:                     } else {
  800:                         $seqtext{$key} .= qq|
  801: <resource id="$next_id" src="" type="finish"></resource>\n|;
  802:                     }
  803:                 } else {
  804:                     if ($contcount > 2 ) {
  805:                         for (my $i=1; $i<$contcount-1; $i++) {
  806:                             my $contitem = $$items{$key}{contents}[$i];
  807:                             my $contitemcount = $$items{$contitem}{contentscount};
  808:                             my $res = $$items{$contitem}{resnum};
  809:                             my $type = $$resources{$res}{type};
  810:                             my $file = $$resources{$res}{file};
  811:                             my $title = $$items{$contitem}{title};
  812:                             my $packageflag = 0;
  813:                             if (grep/^$res$/,@{$packages}) {
  814:                                 $packageflag = 1;
  815:                             }
  816:                             $src = &make_structure($cms,$key,$srcstem,\%flag,\%count,$timestamp,$boardnum,$hrefs,\%pagecontents,$res,$type,$file,$resinfo,$contitem,$uname,$cdom,$contcount,$packageflag,$contitemcount,$$randompicks{$contitem});
  817:                             unless ($flag{$key}{page} == 1) {
  818:                                 $seqtext{$key} .= qq|></resource>
  819: <link from="$curr_id" to="$next_id" index="$curr_id"></link>\n|;
  820:                                 if ($$randompicks{$contitem}) {
  821:                                     $seqtext{$key} .= qq|
  822: <param to="$next_id" type="int_pos" name="parameter_randompick" value="$$randompicks{$contitem}"></param>|;
  823:                                 }
  824:                                 $seqtext{$key} .= qq|
  825: <resource id="$next_id" src="$src" title="$title"|;
  826:                                 $curr_id ++;
  827:                                 $next_id ++;
  828:                                 unless ($flag{$key}{seq} || $flag{$key}{board} || $flag{$key}{file}) {
  829:                                     $flag{$key}{page} = 1;
  830:                                 }
  831:                                 if ($key eq 'Top') {
  832:                                     push @{$topurls}, $src;
  833:                                     push @{$topnames}, $title;
  834:                                 }
  835:                             }
  836:                         }
  837:                     }
  838:                     my $contitem = $$items{$key}{contents}[-1];
  839:                     my $contitemcount = $$items{$contitem}{contentscount};
  840:                     my $res = $$items{$contitem}{resnum};
  841:                     my $type = $$resources{$res}{type};
  842:                     my $file = $$resources{$res}{file};
  843:                     my $title = $$items{$contitem}{title};
  844:                     my $packageflag = 0;
  845:                     if (grep/^$res$/,@{$packages}) {
  846:                         $packageflag = 1;
  847:                     }
  848:                     $src = &make_structure($cms,$key,$srcstem,\%flag,\%count,$timestamp,$boardnum,$hrefs,\%pagecontents,$res,$type,$file,$resinfo,$contitem,$uname,$cdom,$contcount,$packageflag,$contitemcount,$$randompicks{$contitem});
  849: 
  850:                     if ($flag{$key}{page}) {
  851:                         if ($count{$key}{seq} + $count{$key}{page} + $count{$key}{board} + $count{$key}{file} +1 == 1) {
  852:                             $seqtext{$key} .= qq|></resource>
  853: <link from="$curr_id" index="$curr_id" to="$next_id">
  854: <resource id ="$next_id" src="" |;
  855:                         }
  856:                     } else {
  857:                         $seqtext{$key} .= qq|></resource>
  858: <link from="$curr_id" to="$next_id" index="$curr_id"></link>\n|;
  859:                         if ($$randompicks{$contitem}) {
  860:                             $seqtext{$key} .= qq|
  861: <param to="$next_id" type="int_pos" name="parameter_randompick" value="$$randompicks{$contitem}"></param>\n|;
  862:                         }
  863:                         $seqtext{$key} .= qq|
  864: <resource id="$next_id" src="$src" title="$title" |;
  865:                         if ($key eq 'Top') {
  866:                             push @{$topurls}, $src;
  867:                             push @{$topnames}, $title;
  868:                         }
  869:                     }
  870:                     if ($contcount == $$items{$key}{contentscount}) {
  871:                         $seqtext{$key} .= qq|type="finish"></resource>\n|;
  872:                     } else {
  873:                         $curr_id ++;
  874:                         $next_id ++;
  875:                         $seqtext{$key} .= qq|></resource>
  876: <link from="$curr_id" to="$next_id" index="$curr_id"></link>\n|;
  877:                     } 
  878:                 }
  879:             }
  880:             unless (($cms eq 'bb5') && $key eq 'Top') {
  881:                 $seqtext{$key} .= "</map>\n";
  882:                 open(LOCFILE,">$destdir/sequences/$key.sequence");
  883:                 print LOCFILE $seqtext{$key};
  884:                 close(LOCFILE);
  885:                 push @{$seqfiles}, "$key.sequence";
  886:             }
  887:             $count{$key}{page} ++;
  888:             $$total{page} += $count{$key}{page};
  889:         }
  890:         $$total{seq} += $count{$key}{seq};
  891:       }
  892:     }
  893:     $topnum += ($count{'Top'}{page} + $count{'Top'}{seq});
  894: 
  895:     if ($cms eq 'bb5' || $cms eq 'bb6') {
  896:         if (@{$announcements} > 0) {
  897:             &process_specials($context,'announcements',$announcements,\$topnum,$$items{'Top'}{contentscount},$destdir,$udom,$uname,$cdom,$crs,$timenow,$newdir,$timestamp,$resinfo,\$seqtext{'Top'},$pagesfiles,$seqfiles,$topurls,$topnames);
  898:         }
  899:         if (@{$boards} > 0) {
  900:             &process_specials($context,'boards',$boards,\$topnum,$$items{'Top'}{contentscount},$destdir,$udom,$uname,$cdom,$crs,$timenow,$newdir,$timestamp,$resinfo,\$seqtext{'Top'},$pagesfiles,$seqfiles,$topurls,$topnames);
  901:         }
  902:         if (@{$quizzes} > 0) {
  903:             &process_specials($context,'quizzes',$quizzes,\$topnum,$$items{'Top'}{contentscount},$destdir,$udom,$uname,$cdom,$crs,$timenow,$newdir,$timestamp,$resinfo,\$seqtext{'Top'},$pagesfiles,$seqfiles,$topurls,$topnames);
  904:         }
  905:         if (@{$surveys} > 0)  {
  906:             &process_specials($context,'surveys',$surveys,\$topnum,$$items{'Top'}{contentscount},$destdir,$udom,$uname,$cdom,$crs,$timenow,$newdir,$timestamp,$resinfo,\$seqtext{'Top'},$pagesfiles,$seqfiles,$topurls,$topnames);
  907:         }
  908:         if (@{$pools} > 0)  {
  909:             &process_specials($context,'pools',$pools,\$topnum,$$items{'Top'}{contentscount},$destdir,$udom,$uname,$cdom,$crs,$timenow,$newdir,$timestamp,$resinfo,\$seqtext{'Top'},$pagesfiles,$seqfiles,$topurls,$topnames);
  910:         }
  911:         $seqtext{'Top'} .= "</map>\n";
  912:         open(TOPFILE,">$destdir/sequences/Top.sequence");
  913:         print TOPFILE $seqtext{'Top'};
  914:         close(TOPFILE);
  915:         push @{$seqfiles}, 'Top.sequence';
  916:     }
  917: 
  918:     my $filestem;
  919:     if ($context eq 'DOCS') {
  920:         $filestem = "/uploaded/$cdom/$crs/$timenow";
  921:     } elsif ($context eq 'CSTR') {
  922:         $filestem = "/res/$udom/$uname/$newdir";
  923:     }
  924: 
  925:     foreach my $key (sort keys %pagecontents) {
  926:         for (my $i=0; $i<@{$pagecontents{$key}}; $i++) {
  927:             my $filename = $destdir.'/pages/'.$key.'_'.$i.'.page';
  928:             my $resource = "$filestem/resfiles/$$items{$pagecontents{$key}[$i][0]}{resnum}.html";
  929:             my $res = $$items{$pagecontents{$key}[$i][0]}{resnum};
  930:             my $resource = $filestem.'/resfiles/'.$res.'.html';
  931:             if (grep/^$res$/,@{$packages}) {
  932:                 $resource =  $filestem.'/resfiles/'.$res.'./index.html'; # should be entry_point
  933:             }
  934:             open(PAGEFILE,">$filename");
  935:             print PAGEFILE qq|<map>
  936: <resource src="$resource" id="1" type="start" title="$$items{$pagecontents{$key}[$i][0]}{title}"></resource>
  937: <link to="2" index="1" from="1">\n|;
  938:             if (@{$pagecontents{$key}[$i]} == 1) {
  939:                 print PAGEFILE qq|<resource src="" id="2" type="finish"></resource>\n|;
  940:             } elsif (@{$pagecontents{$key}[$i]} == 2)  {
  941:                 my $res = $$items{$pagecontents{$key}[$i][1]}{resnum};
  942:                 my $resource = $filestem.'/resfiles/'.$res.'.html';
  943:                 if (grep/^$res$/,@{$packages}) {
  944:                     $resource =  $filestem.'/resfiles/'.$res.'./index.html'; # should be entry_point
  945:                 }
  946:                 print PAGEFILE qq|<resource src="$resource" id="2" type="finish" title="$$items{$pagecontents{$key}[$i][1]}{title}"></resource>\n|;
  947:             } else {
  948:                 for (my $j=1; $j<@{$pagecontents{$key}[$i]}-1; $j++) {
  949:                     my $curr_id = $j+1;
  950:                     my $next_id = $j+2;
  951:                     my $res = $$items{$pagecontents{$key}[$i][$j]}{resnum};
  952:                     my $resource = $filestem.'/resfiles/'.$res.'.html';
  953:                     if (grep/^$res$/,@{$packages}) {
  954:                         $resource =  $filestem.'/resfiles/'.$res.'./index.html'; # entry_point
  955:                     }
  956:                     print PAGEFILE qq|<resource src="$resource" id="$curr_id" title="$$items{$pagecontents{$key}[$i][$j]}{title}"></resource>
  957: <link to="$next_id" index="$curr_id" from="$curr_id">\n|;
  958:                 }
  959:                 my $final_id = @{$pagecontents{$key}[$i]};
  960:                 my $res = $$items{$pagecontents{$key}[$i][-1]}{resnum};
  961:                 my $resource = $filestem.'/resfiles/'.$res.'.html';
  962:                 if (grep/^$res$/,@{$packages}) {
  963:                     $resource =  $filestem.'/resfiles/'.$res.'./index.html'; # entry_point
  964:                 }
  965:                 print PAGEFILE qq|<resource src="$resource" id="$final_id" type="finish" title="$$items{$pagecontents{$key}[$i][-1]}{title}"></resource>\n|;
  966:             }
  967:             print PAGEFILE "</map>";
  968:             close(PAGEFILE);
  969:             push @{$pagesfiles}, $key.'_'.$i.'.page'; 
  970:         }
  971:     }
  972: }
  973: 
  974: sub make_structure {
  975:     my ($cms,$key,$srcstem,$flag,$count,$timestamp,$boardnum,$hrefs,$pagecontents,$res,$type,$file,$resinfo,$contitem,$uname,$cdom,$contcount,$packageflag,$contitemcount,$randompick) = @_;
  976:     my $src ='';
  977:     if (($cms eq 'angel' && $type eq 'FOLDER') || (($cms eq 'bb5' || $cms eq 'bb6') && (($$resinfo{$res}{'isfolder'} eq 'true') || $key eq 'Top')) || ($cms eq 'webctce4' && $contitemcount > 0)) {
  978:         $src = $srcstem.'/sequences/'.$contitem.'.sequence';
  979:         $$flag{$key}{page} = 0;
  980:         $$flag{$key}{seq} = 1;
  981:         $$count{$key}{seq} ++;
  982:     } elsif ($cms eq 'webctce4' && $randompick) {
  983:         $src = $srcstem.'/sequences/'.$res.'.sequence';
  984:         $$flag{$key}{page} = 0;
  985:         $$flag{$key}{seq} = 1;
  986:         $$count{$key}{seq} ++;
  987:     } elsif ($cms eq 'angel' && $type eq 'BOARD') {
  988:         $src = '/adm/'.$cdom.'/'.$uname.'/'.$$timestamp[$$boardnum{$res}].'/bulletinboard'; 
  989:         $$flag{$key}{page} = 0;
  990:         $$flag{$key}{board} = 1;
  991:         $$count{$key}{board} ++;
  992:     } elsif ($cms eq 'angel' && $type eq "FILE") {
  993:         foreach my $file (@{$$hrefs{$res}}) {
  994:             unless ($file eq 'pg'.$res.'.htm') {
  995:                 $src = $srcstem.'/resfiles/'.$res.'/'.$file;
  996:             }
  997:         }
  998:         $$flag{$key}{page} = 0;
  999:         $$flag{$key}{file} = 1;
 1000:     } elsif ($cms eq 'angel' && (($type eq "PAGE") || ($type eq "LINK")) )  {
 1001:         if ($$flag{$key}{page}) {
 1002:             if ($$count{$key}{page} == -1) {
 1003:                 &Apache::lonnet::logthis("IMS Angel import error in array index for page: value = -1, resource is $key, type is $type.");
 1004:             } else { 
 1005:                 push @{$$pagecontents{$key}[$$count{$key}{page}]},$contitem;
 1006:             }
 1007:         } else {
 1008:             $$count{$key}{page} ++;
 1009:             $src = $srcstem.'/pages/'.$key.'_'.$$count{$key}{page}.'.page';
 1010:             @{$$pagecontents{$key}[$$count{$key}{page}]} = ("$contitem");
 1011:             $$flag{$key}{seq} = 0;
 1012:         }
 1013:     } elsif ($cms eq 'bb5' || $cms eq 'bb6') {
 1014:         if ($$flag{$key}{page}) {
 1015:             push @{$$pagecontents{$key}[$$count{$key}{page}]},$contitem;
 1016:         } else {
 1017:             if ($contcount == 1) {
 1018:                 if ($packageflag) {
 1019:                     $src = $srcstem.'/resfiles/'.$res.'/index.html'; # Needs to be entry point
 1020:                 } else {
 1021:                     $src = $srcstem.'/resfiles/'.$res.'.html';
 1022:                 }
 1023:             } else {
 1024:                 $$count{$key}{page} ++;
 1025:                 $src = $srcstem.'/pages/'.$key.'_'.$$count{$key}{page}.'.page';
 1026:                 @{$$pagecontents{$key}[$$count{$key}{page}]} = ("$contitem");
 1027:             }
 1028:             $$flag{$key}{seq} = 0;
 1029:         }
 1030:     } elsif ($cms eq 'webctce4') {
 1031:         if ($type eq 'webctquiz') {
 1032:             $src =  $srcstem.'/pages/'.$res.'.page';
 1033:             $$count{$key}{page} ++;
 1034:             $$flag{$key}{seq} = 0;
 1035:         } else {
 1036:             if (grep/^$file$/,@{$$hrefs{$res}}) {
 1037:                 my $filename;
 1038:                 if ($file =~ m-/([^/]+)$-) {
 1039:                     $filename = $1;
 1040:                 }
 1041:                 $src =  $srcstem.'/resfiles/'.$res.'/'.$filename;
 1042:             } else {
 1043:                 foreach my $file (@{$$hrefs{$res}}) {
 1044:                     my $filename;
 1045:                     if ($file =~ m-/([^/]+)$-) {
 1046:                         $filename = $1;
 1047:                     }
 1048:                     $src = $srcstem.'/resfiles/'.$res.'/'.$filename;
 1049:                 }
 1050:             }
 1051:             $$flag{$key}{page} = 0;
 1052:             $$flag{$key}{file} = 1;
 1053:         }
 1054:     }
 1055:     return $src;
 1056: }
 1057: 
 1058: 
 1059: # ---------------------------------------------------------------- Process Blackboard specials - announcements, bulletin boards, quizzes and surveys
 1060: sub process_specials {
 1061:     my ($context,$type,$specials,$topnum,$contentscount,$destdir,$udom,$uname,$cdom,$crs,$timenow,$newdir,$timestamp,$resinfo,$seqtext,$pagesfiles,$seqfiles,$topurls,$topnames) = @_;
 1062:     my $src = '';
 1063:     my $specialsrc = '';
 1064:     my $nextnum = 0;
 1065:     my $seqstem = '';
 1066:     if ($context eq 'CSTR') {
 1067:         $seqstem = "/res/$udom/$uname/$newdir";
 1068:     } elsif ($context eq 'DOCS') {
 1069:         $seqstem = '/uploaded/'.$cdom.'/'.$crs.'/'.$timenow;
 1070:     }
 1071:     my %seqnames = (
 1072:                   boards => 'bulletinboards',
 1073:                   quizzes => 'quizzes',
 1074:                   surveys => 'surveys',
 1075:                   announcements => 'announcements',
 1076:                   pools => 'pools'
 1077:                   );
 1078:     my %seqtitles = (
 1079:                   boards => 'Course Bulletin Boards',
 1080:                   quizzes => 'Course Quizzes',
 1081:                   surveys => 'Course Surveys',
 1082:                   announcements => 'Course Announcements',
 1083:                   pools => 'Course Question Pools'
 1084:                    );
 1085:     $$topnum ++;
 1086: 
 1087:     if ($type eq 'announcements') {
 1088:         $src = "$seqstem/pages/$seqnames{$type}.page";
 1089:     } else {
 1090:         $src = "$seqstem/sequences/$seqnames{$type}.sequence";
 1091:     }
 1092: 
 1093:     push @{$topurls}, $src;
 1094:     push @{$topnames}, $seqtitles{$type};
 1095: 
 1096:     $$seqtext .= qq|<resource id="$$topnum" src="$src" title="$seqtitles{$type}"|;
 1097:     $nextnum = $$topnum +1;
 1098:     if ($$topnum == 1) {
 1099:         $$seqtext .= qq| type="start"></resource>
 1100: <link from="$$topnum" to="$nextnum" index="$$topnum"></link>\n|;
 1101:         if ($$topnum == $contentscount) {
 1102:             $$seqtext .= qq|<resource id="$nextnum" src="" type="finish"></resource>\n|;
 1103:         }
 1104:     } else {
 1105:         if ($$topnum == $contentscount) {
 1106:             $$seqtext .= qq| type="finish"></resource>\n|;
 1107:         } else {
 1108:             $$seqtext .= qq|></resource>
 1109: <link from="$$topnum" to="$nextnum" index="$$topnum"></link>\n|;
 1110:         }
 1111:     }
 1112: 
 1113:     if ($type eq "announcements") {
 1114:         push @{$pagesfiles}, "$seqnames{$type}.page";
 1115:         open(ITEM,">$destdir/pages/$seqnames{$type}.page");
 1116:     } else {
 1117:         push @{$seqfiles}, "$seqnames{$type}.sequence";
 1118:         open(ITEM,">$destdir/sequences/$seqnames{$type}.sequence");
 1119:     }
 1120: 
 1121:     if ($type eq 'boards') {
 1122:         $specialsrc = "/adm/$udom/$uname/$$timestamp[0]/bulletinboard";
 1123:     } elsif ($type eq 'announcements') {
 1124:         $specialsrc = "$seqstem/resfiles/$$specials[0].html";
 1125:     } elsif ($type eq 'pools') {
 1126:         $specialsrc = "$seqstem/sequences/$$specials[0].sequence";
 1127:     } else {
 1128:         $specialsrc = "$seqstem/pages/$$specials[0].page";
 1129:     }
 1130:     print ITEM qq|<map>
 1131: <resource id="1" src="$specialsrc" title="$$resinfo{$$specials[0]}{title}" type="start"></resource>
 1132: <link from="1" to="2" index="1"></link>|;
 1133:     if (@{$specials} == 1) {
 1134:         print ITEM qq|
 1135: <resource id="2" src="" type="finish"></resource>\n|;
 1136:     } else {
 1137:         for (my $i=1; $i<@{$specials}; $i++) {
 1138:             my $curr = $i+1;
 1139:             my $next = $i+2;
 1140:             if ($type eq 'boards') {
 1141:                 $specialsrc = "/adm/$udom/$uname/$$timestamp[$i]/bulletinboard";
 1142:             } elsif ($type eq 'announcements') {
 1143:                 $specialsrc = "$seqstem/resfiles/$$specials[$i].html";
 1144:             } else {
 1145:                 $specialsrc = "$seqstem/pages/$$specials[$i].page";
 1146:             }
 1147:             print ITEM qq|<resource id="$curr" src="$specialsrc" title="$$resinfo{$$specials[$i]}{title}"|;
 1148:             if (@{$specials} == $i+1) {
 1149:                 print ITEM qq| type="finish"></resource>\n|;
 1150:             } else {
 1151:                 print ITEM qq|></resource>
 1152: <link from="$curr" to="$next" index="$next">\n|;
 1153:             }
 1154:         }
 1155:     }
 1156:     print ITEM qq|</map>|;
 1157:     close(ITEM);
 1158: }
 1159: 
 1160: # ---------------------------------------------------------------- Process Blackboard users
 1161: sub process_user {
 1162:   my ($res,$docroot,$destdir,$settings,$user_crs,$user_cdom,$user_handling) = @_;
 1163:   my $xmlfile = $docroot.'/'.$res.".dat";
 1164:   my $filecount = 0;
 1165:   my @state;
 1166:   my $userid = '';
 1167:   my $linknum = 0;
 1168: 
 1169:   my $p = HTML::Parser->new
 1170:     (
 1171:      xml_mode => 1,
 1172:      start_h =>
 1173:      [sub {
 1174:         my ($tagname, $attr) = @_;
 1175:         push @state, $tagname;
 1176:         if ("@state" eq "USERS USER") {
 1177:             $userid = $attr->{value};
 1178:             %{$$settings{$userid}} = ();
 1179:             @{$$settings{$userid}{links}} = ();
 1180:         } elsif ("@state" eq "USERS USER LOGINID") {  
 1181:             $$settings{$userid}{loginid} = $attr->{value};
 1182:         } elsif ("@state" eq "USERS USER PASSPHRASE") {  
 1183:             $$settings{$userid}{passphrase} = $attr->{value};
 1184:         } elsif ("@state" eq "USERS USER STUDENTID" ) {
 1185:             $$settings{$userid}{studentid} = $attr->{value};
 1186:         } elsif ("@state" eq "USERS USER NAMES FAMILY" ) {
 1187:             $$settings{$userid}{family} = $attr->{value};
 1188:         } elsif ("@state" eq "USERS USER NAMES GIVEN" ) {
 1189:             $$settings{$userid}{given} = $attr->{value};
 1190:         } elsif ("@state" eq "USERS USER ADDRESSES BUSINESS DATA EMAIL") {
 1191:             $$settings{$userid}{email} = $attr->{value};
 1192:         } elsif ("@state" eq "USERS USER USER_ROLE") {
 1193:             $$settings{$userid}{user_role} = $attr->{value};
 1194:         } elsif ("@state" eq "USERS USER FLAGS ISAVAILABLE") {
 1195:             $$settings{$userid}{isavailable} = $attr->{value};
 1196:         } elsif ("@state" eq "USERS USER PERSONALPAGE FILELIST IMAGE") {
 1197:             $$settings{$userid}{image} = $attr->{value};
 1198:         } elsif ( ($state[-2] eq "LINKLIST") && ($state[-1] eq "LINK") ) {
 1199:             %{$$settings{$userid}{links}[$linknum]} = ();
 1200:             $$settings{$userid}{links}[$linknum]{url} = $attr->{value};
 1201:             $linknum ++;
 1202:         }
 1203:      }, "tagname, attr"],
 1204:      text_h =>
 1205:      [sub {
 1206:         my ($text) = @_;
 1207:         if ("@state" eq "USERS USER PERSONALPAGE TITLE") {
 1208:             $$settings{$userid}{title} = $text;
 1209:         } elsif ("@state" eq "USERS USER PERSONALPAGE DESCRIPTION") {
 1210:             $$settings{$userid}{description} = $text;
 1211:         } elsif (($state[-2] eq "LINK") && ($state[-1] eq "TITLE")) {
 1212:             $$settings{$userid}{links}[$linknum]{title} = $text;
 1213:         } elsif (($state[-3] eq "LINK") && ($state[-2] eq  "DESCRIPTION") && ($state[-1] eq "TEXT")) {
 1214:             $$settings{$userid}{links}[$linknum]{text} = $text;
 1215:         }
 1216:       }, "dtext"],
 1217:      end_h =>
 1218:      [sub {
 1219:         my ($tagname) = @_;
 1220:         if ("@state" eq "USERS USER") {
 1221:             $linknum = 0;
 1222:         }
 1223:         pop @state;
 1224:      }, "tagname"],
 1225:     );
 1226:   $p->unbroken_text(1);
 1227:   $p->parse_file($xmlfile);
 1228:   $p->eof;
 1229:   
 1230:   my $configvars = &LONCAPA::Configuration::read_conf('loncapa.conf');
 1231:   my $xmlstem =  $$configvars{'lonDaemons'}."/tmp/".$user_cdom."_".$user_crs."_";
 1232: 
 1233:   foreach my $user_id (keys %{$settings}) {
 1234:       if ($$settings{$user_id}{user_role} eq "s") {
 1235:            
 1236:       } elsif ($user_handling eq 'enrollall') {
 1237: 
 1238:       }
 1239:   }
 1240: }
 1241: 
 1242: # ---------------------------------------------------------------- Process Blackboard groups
 1243: sub process_group {  
 1244:   my ($res,$docroot,$destdir,$settings) = @_;
 1245:   my $xmlfile = $docroot.'/'.$res.".dat";
 1246:   my $filecount = 0;
 1247:   my @state;
 1248:   my $grp;
 1249: 
 1250:   my $p = HTML::Parser->new
 1251:     (
 1252:      xml_mode => 1,
 1253:      start_h =>
 1254:      [sub {
 1255:         my ($tagname, $attr) = @_;
 1256:         push @state, $tagname;
 1257:         if ("@state" eq "GROUPS GROUP") {
 1258:             $grp = $attr->{id};
 1259:         }        
 1260:         if ("@state" eq "GROUPS GROUP TITLE") {
 1261:             $$settings{$grp}{title} = $attr->{value};
 1262:         } elsif ("@state" eq "GROUPS GROUP FLAGS ISAVAILABLE") {  
 1263:             $$settings{$grp}{isavailable} = $attr->{value};
 1264:         } elsif ("@state" eq "GROUPS GROUP FLAGS HASCHATROOM") {  
 1265:             $$settings{$grp}{chat} = $attr->{value};
 1266:         } elsif ("@state" eq "GROUPS GROUP FLAGS HASDISCUSSIONBOARD") {
 1267:             $$settings{$grp}{discussion} = $attr->{value};
 1268:         } elsif ("@state" eq "GROUPS GROUP FLAGS HASTRANSFERAREA") {
 1269:             $$settings{$grp}{transfer} = $attr->{value};
 1270:         } elsif ("@state" eq "GROUPS GROUP FLAGS ISPUBLIC") {
 1271:             $$settings{$grp}{public} = $attr->{value};
 1272:         }
 1273:      }, "tagname, attr"],
 1274:      text_h =>
 1275:      [sub {
 1276:         my ($text) = @_;
 1277:         if ("@state" eq "GROUPS DESCRIPTION") {
 1278:           $$settings{$grp}{description} = $text;
 1279: #          print "Staff text is $text\n";
 1280:         }
 1281:       }, "dtext"],
 1282:      end_h =>
 1283:      [sub {
 1284:         my ($tagname) = @_;
 1285:         pop @state;
 1286:      }, "tagname"],
 1287:     );
 1288:   $p->unbroken_text(1);
 1289:   $p->parse_file($xmlfile);
 1290:   $p->eof;
 1291: }
 1292: 
 1293: # ---------------------------------------------------------------- Process Blackboard Staff
 1294: sub process_staff {
 1295:   my ($res,$docroot,$destdir,$settings,$resrcfiles) = @_;
 1296:   my $xmlfile = $docroot.'/'.$res.".dat";
 1297:   my $filecount = 0;
 1298:   my @state;
 1299:   %{$$settings{name}} = ();
 1300:   %{$$settings{office}} = ();
 1301: 
 1302:   my $p = HTML::Parser->new
 1303:     (
 1304:      xml_mode => 1,
 1305:      start_h =>
 1306:      [sub {
 1307:         my ($tagname, $attr) = @_;
 1308:         push @state, $tagname;
 1309:         if ("@state" eq "STAFFINFO TITLE") {
 1310:             $$settings{title} = $attr->{value};
 1311:         } elsif ("@state" eq "STAFFINFO BIOGRAPHY TEXTCOLOR") {
 1312:             $$settings{textcolor} = $attr->{value};
 1313:         } elsif ("@state" eq "STAFFINFO BIOGRAPHY FLAGS ISHTML") {
 1314:             $$settings{ishtml} = $attr->{value};
 1315:         } elsif ("@state" eq "STAFFINFO FLAGS ISAVAILABLE" ) {
 1316:             $$settings{isavailable} = $attr->{value};
 1317:         } elsif ("@state" eq "STAFFINFO FLAGS ISFOLDER" ) {
 1318:             $$settings{isfolder} = $attr->{value};
 1319:         } elsif ("@state" eq "STAFFINFO POSITION" ) {
 1320:             $$settings{position} = $attr->{value};
 1321:         } elsif ("@state" eq "STAFFINFO HOMEPAGE" ) {
 1322:             $$settings{homepage} = $attr->{value};
 1323:         } elsif ("@state" eq "STAFFINFO IMAGE") {
 1324:             $$settings{image} = $attr->{value};
 1325:         }
 1326:      }, "tagname, attr"],
 1327:      text_h =>
 1328:      [sub {
 1329:         my ($text) = @_;
 1330:         if ("@state" eq "STAFFINFO BIOGRAPHY TEXT") {
 1331:           $$settings{text} = $text;
 1332: #          print "Staff text is $text\n";
 1333:         } elsif ("@state" eq "STAFFINFO CONTACT PHONE") {
 1334:           $$settings{phone} = $text;
 1335:         } elsif ("@state" eq "STAFFINFO CONTACT EMAIL") {
 1336:           $$settings{email} = $text;
 1337:         } elsif ("@state" eq "STAFFINFO CONTACT NAME FORMALTITLE") {
 1338:           $$settings{name}{formaltitle} = $text;
 1339:         } elsif ("@state" eq "STAFFINFO CONTACT NAME FAMILY") {
 1340:           $$settings{name}{family} = $text;
 1341:         } elsif ("@state" eq "STAFFINFO CONTACT NAME GIVEN") {
 1342:           $$settings{name}{given} = $text;
 1343:         } elsif ("@state" eq "STAFFINFO CONTACT OFFICE HOURS") {
 1344:           $$settings{office}{hours} = $text;
 1345:         }  elsif ("@state" eq "STAFFINFO CONTACT OFFICE ADDRESS") {
 1346:           $$settings{office}{address} = $text;
 1347:         }        
 1348:       }, "dtext"],
 1349:      end_h =>
 1350:      [sub {
 1351:         my ($tagname) = @_;
 1352:         pop @state;
 1353:      }, "tagname"],
 1354:     );
 1355:   $p->unbroken_text(1);
 1356:   $p->parse_file($xmlfile);
 1357:   $p->eof;
 1358: 
 1359:     my $fontcol = '';
 1360:     if (defined($$settings{textcolor})) {
 1361:         $fontcol =  qq|color="$$settings{textcolor}"|;
 1362:     }
 1363:     if (defined($$settings{text})) {
 1364:         if ($$settings{ishtml} eq "true") {
 1365:             $$settings{text} = &HTML::Entities::decode($$settings{text});
 1366:         }
 1367:     }
 1368:     my $staffentry = qq|
 1369: <table border="0" cellpadding="0" cellspacing="0" width="100%">
 1370:   <tr>
 1371:     <td colspan="2"><hr /><font face="arial,helv" size="3"><b>$$settings{name}{formaltitle} $$settings{name}{given} $$settings{name}{family}</b></font>
 1372:     </td>
 1373:   </tr>
 1374:   <tr>
 1375:     <td valign="top">
 1376:       <table width="100% border="0" cols="2" cellpadding="0" cellspacing="0">|;
 1377:     if ( defined($$settings{email}) && $$settings{email} ne '') {
 1378:         $staffentry .= qq|
 1379:         <tr>
 1380:           <td width="100" valign="top">
 1381:            <font face="arial" size="2"><b>Email:</b></font>
 1382:           </td>
 1383:           <td>
 1384:            <font face="arial" size="2"><a href="mailto:$$settings{email}">$$settings{email}</a></font>
 1385:           </td>
 1386:         </tr>
 1387:         |;
 1388:     }
 1389:     if (defined($$settings{phone}) && $$settings{phone} ne '') {
 1390:         $staffentry .= qq|
 1391:         <tr>
 1392:           <td width="100" valign="top">
 1393:             <font face="arial" size="2"><b>Phone:</b></font>
 1394:           </td>
 1395:           <td>
 1396:             <font face="arial" size="2">$$settings{phone}</font>
 1397:           </td>
 1398:         </tr>
 1399:         |;
 1400:     }
 1401:     if (defined($$settings{office}{address}) && $$settings{office}{address} ne '') {
 1402:         $staffentry .= qq|
 1403:         <tr>
 1404:          <td width="100" valign="top">
 1405:            <font face="arial" size="2"><b>Address:</b></font>
 1406:          </td>
 1407:          <td>
 1408:            <font face="arial" size="2">$$settings{office}{address}</font>
 1409:          </td>
 1410:         </tr>
 1411:         |;
 1412:     }
 1413:     if (defined($$settings{office}{hours}) && $$settings{office}{hours} ne '') {
 1414:         $staffentry .= qq|
 1415:         <tr>
 1416:           <td width="100" valign="top">
 1417:             <font face="arial" size="2"><b>Office Hours:</b></font>
 1418:           </td>
 1419:           <td>
 1420:             <font face=arial size=2>$$settings{office}{hours}</font>
 1421:           </td>
 1422:         </tr>
 1423:         |;
 1424:     }
 1425:     if ( defined($$settings{homepage}) && $$settings{homepage} ne '') {
 1426:         $staffentry .= qq|
 1427:         <tr>
 1428:           <td width="100" valign="top">
 1429:             <font face="arial" size="2"><b>Personal Link:</b></font>
 1430:           </td>
 1431:           <td>
 1432:             <font face="arial" size="2"><a href="$$settings{homepage}">$$settings{homepage}</a></font>
 1433:           </td>
 1434:         </tr>
 1435:         |;
 1436:     }
 1437:     if (defined($$settings{text}) && $$settings{text} ne '') {
 1438:         $staffentry .= qq|
 1439:         <tr>
 1440:           <td colspan="2">
 1441:             <font face="arial" size="2" $fontcol><b>Other Information:</b><br/>$$settings{text}</font>
 1442:           </td>
 1443:         </tr>
 1444:         |;
 1445:      }
 1446:      $staffentry .= qq|
 1447:       </table>
 1448:     </td>
 1449:     <td align="right" valign="top">
 1450:      |;
 1451:      if ( defined($$settings{image}) ) {
 1452:          $staffentry .= qq|
 1453:       <img src="$res/$$settings{image}">
 1454:          |;
 1455:      }
 1456:      $staffentry .= qq|
 1457:     </td>
 1458:   </tr>
 1459: </table>
 1460:     |;
 1461:     open(FILE,">$destdir/resfiles/$res.html");
 1462:     push @{$resrcfiles}, "$res.html";
 1463:     print FILE qq|<html>
 1464: <head>
 1465: <title>$$settings{title}</title>
 1466: </head>
 1467: <body bgcolor='#ffffff'>
 1468: $staffentry
 1469: </body>
 1470: </html>|;
 1471:     close(FILE);
 1472: }
 1473: 
 1474: # ---------------------------------------------------------------- Process Blackboard Links
 1475: sub process_link {
 1476:     my ($res,$docroot,$destdir,$settings,$resrcfiles) = @_;
 1477:     my $xmlfile = $docroot.'/'.$res.".dat";
 1478:     my @state = ();
 1479:     my $p = HTML::Parser->new
 1480:     (
 1481:         xml_mode => 1,
 1482:         start_h =>
 1483:         [sub {
 1484:             my ($tagname, $attr) = @_;
 1485:             push @state, $tagname;
 1486:             if ("@state" eq "EXTERNALLINK TITLE") {
 1487:                 $$settings{title} = $attr->{value};
 1488:             } elsif ("@state" eq "EXTERNALLINK TEXTCOLOR") {  
 1489:                 $$settings{textcolor} = $attr->{value};
 1490:             } elsif ("@state" eq "EXTERNALLINK DESCRIPTION FLAGS ISHTML") {  
 1491:                 $$settings{ishtml} = $attr->{value};
 1492:             } elsif ("@state" eq "EXTERNALLINK FLAGS ISAVAILABLE" ) {
 1493:                 $$settings{isavailable} = $attr->{value};
 1494:             } elsif ("@state" eq "EXTERNALLINK FLAGS LAUNCHINNEWWINDOW" ) {
 1495:                 $$settings{newwindow} = $attr->{value};
 1496:             } elsif ("@state" eq "EXTERNALLINK FLAGS ISFOLDER" ) {
 1497:                 $$settings{isfolder} = $attr->{value};
 1498:             } elsif ("@state" eq "EXTERNALLINK POSITION" ) {
 1499:                 $$settings{position} = $attr->{value};
 1500:             } elsif ("@state" eq "EXTERNALLINK URL" ) {
 1501:                 $$settings{url} = $attr->{value};
 1502:             }
 1503:         }, "tagname, attr"],
 1504:         text_h =>
 1505:         [sub {
 1506:             my ($text) = @_;
 1507:             if ("@state" eq "EXTERNALLINK DESCRIPTION TEXT") {
 1508:                $$settings{text} = $text;
 1509:             }
 1510:         }, "dtext"],
 1511:         end_h =>
 1512:         [sub {
 1513:             my ($tagname) = @_;
 1514:             pop @state;
 1515:         }, "tagname"],
 1516:     );
 1517:     $p->unbroken_text(1);
 1518:     $p->parse_file($xmlfile);
 1519:     $p->eof;
 1520: 
 1521:     my $linktag = '';
 1522:     my $fontcol = '';
 1523:     if (defined($$settings{textcolor})) {
 1524:         $fontcol =  qq|<font color="$$settings{textcolor}">|;
 1525:     }
 1526:     if (defined($$settings{text})) {
 1527:         if ($$settings{ishtml} eq "true") {
 1528:             $$settings{text} = &HTML::Entities::decode($$settings{text});
 1529:         }
 1530:     }
 1531: 
 1532:     if (defined($$settings{url}) ) {
 1533:         $linktag = qq|<a href="$$settings{url}"|;
 1534:         if ($$settings{newwindow} eq "true") {
 1535:             $linktag .= qq| target="launch"|;
 1536:         }
 1537:         $linktag .= qq|>$$settings{title}</a>|;
 1538:     }
 1539: 
 1540:     open(FILE,">$destdir/resfiles/$res.html");
 1541:     push @{$resrcfiles}, "$res.html";
 1542:     print FILE qq|<html>
 1543: <head>
 1544: <title>$$settings{title}</title>
 1545: </head>
 1546: <body bgcolor='#ffffff'>
 1547: $fontcol
 1548: $linktag
 1549: $$settings{text}
 1550: |;
 1551:     if (defined($$settings{textcolor})) {
 1552:         print FILE qq|</font>|;
 1553:     }
 1554:     print FILE qq|
 1555:   </body>
 1556:  </html>|;
 1557:     close(FILE);
 1558: }
 1559: 
 1560: # ---------------------------------------------------------------- Process Blackboard Discussion Boards
 1561: sub process_db {
 1562:     my ($res,$docroot,$destdir,$timestamp,$crs,$cdom,$handling,$uname,$settings,$longcrs) = @_;
 1563:     my $xmlfile = $docroot.'/'.$res.".dat";
 1564:     my @state = ();
 1565:     my @allmsgs = ();
 1566:     my %msgidx = ();
 1567:     my %threads; # all threads, keyed by message ID
 1568:     my $msg_id; # the current message ID
 1569:     my %message; # the current message being accumulated for $msg_id
 1570: 
 1571:     my $p = HTML::Parser->new
 1572:     (
 1573:        xml_mode => 1,
 1574:        start_h =>
 1575:        [sub {
 1576:            my ($tagname, $attr) = @_;
 1577:            push @state, $tagname;
 1578:            my $depth = 0;
 1579:            my @seq = ();
 1580:            if ("@state" eq "FORUM TITLE") {
 1581:                $$settings{title} = $attr->{value};
 1582:            } elsif ("@state" eq "FORUM DESCRIPTION TEXTCOLOR") {  
 1583:                $$settings{textcolor} = $attr->{value};
 1584:            } elsif ("@state" eq "FORUM DESCRIPTION FLAGS ISHTML") {  
 1585:                $$settings{ishtml} = $attr->{value};
 1586:            } elsif ("@state" eq "FORUM DESCRIPTION FLAGS ISNEWLINELITERAL") {  
 1587:                $$settings{newline} = $attr->{value};
 1588:            } elsif ("@state" eq "FORUM POSITION" ) {
 1589:                $$settings{position} = $attr->{value};
 1590:            } elsif ("@state" eq "FORUM FLAGS ISREADONLY") {
 1591:                $$settings{isreadonly} = $attr->{value};
 1592:            } elsif ("@state" eq "FORUM FLAGS ISAVAILABLE" ) {
 1593:                $$settings{isavailable} = $attr->{value};
 1594:            } elsif ("@state" eq "FORUM FLAGS ALLOWANONYMOUSPOSTINGS" ) {
 1595:                $$settings{allowanon} = $attr->{value};
 1596:            } elsif ( ($state[0] eq "FORUM") && ($state[1] eq "MESSAGETHREADS") && ($state[2] eq "MSG") ) {
 1597:                if ($state[-1] eq "MSG") {
 1598:                    unless ($msg_id eq '') {
 1599:                        push @{$threads{$msg_id}}, { %message };
 1600:                        $depth = @state - 3;
 1601:                        if ($depth > @seq) {
 1602:                            push @seq, $msg_id; 
 1603:                        }
 1604:                    }
 1605:                    if ($depth < @seq) {
 1606:                        pop @seq;
 1607:                    }                
 1608:                    $msg_id = $attr->{id};
 1609:                    push @allmsgs, $msg_id;
 1610:                    $msgidx{$msg_id} = @allmsgs;
 1611:                    %message = ();
 1612:                    $message{depth} = $depth;
 1613:                    if ($depth > 0) {
 1614:                        $message{parent} = $seq[-1];
 1615:                    } else {
 1616:                        $message{parent} = "None";
 1617:                    }
 1618:                } elsif ($state[-1] eq "TITLE") {
 1619:                    $message{title} = $attr->{value};
 1620:                } elsif ( ( $state[-3] eq "MESSAGETEXT" ) && ( $state[-2] eq "FLAGS" ) && ( $state[-1] eq "ISHTML" ) ) {
 1621:                    $message{ishtml} = $attr->{value};
 1622:                } elsif ( ( $state[-3] eq "MESSAGETEXT" ) && ( $state[-2] eq "FLAGS" ) && ( $state[-1] eq "ISNEWLINELITERAL" ) ) {
 1623:                    $message{newline} = $attr->{value};
 1624:                } elsif ( ( $state[-2] eq "DATES" ) && ( $state[-1] eq "CREATED" ) ) {
 1625:                    $message{created} = $attr->{value};
 1626:                } elsif ( $state[@state-2] eq "FLAGS") {
 1627:                    if ($state[@state-1] eq "ISANONYMOUS") {
 1628:                        $message{isanonymous} =  $attr->{value};
 1629:                    }
 1630:                } elsif ( $state[-2] eq "USER" ) {
 1631:                    if ($state[-1] eq "USERID") {
 1632:                        $message{userid} =  $attr->{value};
 1633:                    } elsif ($state[@state-1] eq "USERNAME") {
 1634:                        $message{username} =  $attr->{value};
 1635:                    } elsif ($state[@state-1] eq "EMAIL") {
 1636:                        $message{email} =  $attr->{value};
 1637:                    }          
 1638:                } elsif ( ($state[-2] eq "FILELIST") && ($state[-1] eq "IMAGE") ) {
 1639:                    $message{attachment} = $attr->{value};
 1640:                }
 1641:            }
 1642:        }, "tagname, attr"],
 1643:        text_h =>
 1644:        [sub {
 1645:            my ($text) = @_;
 1646:            if ("@state" eq "FORUM DESCRIPTION TEXT") {
 1647:                $$settings{text} = $text;
 1648:            } elsif ( ($state[0] eq "FORUM") && ($state[1] eq "MESSAGETHREADS") && ($state[2] eq "MSG") ) {
 1649:                if ( ($state[-2] eq "MESSAGETEXT") && ($state[-1] eq "TEXT") ){
 1650:                    $message{text} = $text;
 1651:                }
 1652:            }
 1653:        }, "dtext"],
 1654:        end_h =>
 1655:        [sub {
 1656:            my ($tagname) = @_;
 1657:            if ( $state[-1] eq "MESSAGETHREADS" ) {
 1658:                push @{$threads{$msg_id}}, { %message };
 1659:            }
 1660:            pop @state;
 1661:        }, "tagname"],
 1662:     );
 1663:     $p->unbroken_text(1);
 1664:     $p->parse_file($xmlfile);
 1665:     $p->eof;
 1666: 
 1667:     if (defined($$settings{text})) {
 1668:         if ($$settings{ishtml} eq "false") {
 1669:             if ($$settings{isnewline} eq "true") {
 1670:                 $$settings{text} =~ s#\n#<br/>#g;
 1671:             }
 1672:         } else {
 1673:             $$settings{text} = &HTML::Entities::decode($$settings{text});
 1674:         }
 1675:         if (defined($$settings{fontcolor}) ) {
 1676:             $$settings{text} = "<font color=\"".$$settings{textcolor}."\">".$$settings{text}."</font>";
 1677:         }
 1678:     }
 1679:     my $boardname = 'bulletinpage_'.$timestamp;
 1680:     my %boardinfo = (
 1681:                   'aaa_title' => $$settings{title},
 1682:                   'bbb_content' => $$settings{text},
 1683:                   'ccc_webreferences' => '',
 1684:                   'uploaded.lastmodified' => time,
 1685:                   );
 1686:   
 1687:     my $putresult = &Apache::lonnet::put($boardname,\%boardinfo,$cdom,$crs);
 1688:     if ($handling eq 'importall') {
 1689:         foreach my $msg_id (@allmsgs) {
 1690:             foreach my $message ( @{$threads{$msg_id}} ) {
 1691:                 my %contrib = (
 1692:                             'sendername' => $$message{userid},
 1693:                             'senderdomain' => $cdom,
 1694:                             'screenname' => '',
 1695:                             'plainname' => $$message{username},
 1696:                             );
 1697:                 unless ($$message{parent} eq 'None') {
 1698:                     $contrib{replyto} = $msgidx{$$message{parent}};
 1699:                 }
 1700:                 if (defined($$message{isanonymous}) ) {
 1701:                     if ($$message{isanonymous} eq 'true') {
 1702:                         $contrib{'anonymous'} = 'true';
 1703:                     }
 1704:                 }
 1705:                 if ( defined($$message{attachment}) )  {
 1706:                     my $url = $$message{attachment};
 1707:                     my $oldurl = $url;
 1708:                     my $newurl = $url;
 1709:                     unless ($url eq '') {
 1710:                         $newurl =~ s/\//_/g;
 1711:                         unless ($longcrs eq '') {
 1712:                             if (!-e "/home/httpd/lonUsers/$cdom/$longcrs/userfiles") {
 1713:                                 mkdir("/home/httpd/lonUsers/$cdom/$longcrs/userfiles",0755);
 1714:                             }
 1715:                             if (!-e "/home/httpd/lonUsers/$cdom/$longcrs/userfiles/$newurl") {
 1716:                                 system("cp $destdir/resfiles/$res/$$message{attachment} /home/httpd/lonUsers/$cdom/$longcrs/userfiles/$newurl");
 1717:                             }
 1718:                             $contrib{attachmenturl} = '/uploaded/'.$cdom.'/'.$crs.'/'.$newurl;
 1719:                         }
 1720:                     }
 1721:                 }
 1722:                 if (defined($$message{title}) ) {
 1723:                     $contrib{'message'} = $$message{title};
 1724:                 }
 1725:                 if (defined($$message{text})) {
 1726:                     if ($$message{ishtml} eq "false") {
 1727:                         if ($$message{isnewline} eq "true") {
 1728:                             $$message{text} =~ s#\n#<br/>#g;
 1729:                         }
 1730:                     } else {
 1731:                         $$message{text} = &HTML::Entities::decode($$message{text});
 1732:                     }
 1733:                     $contrib{'message'} .= '<br /><br />'.$$message{text};
 1734:                     my $symb = 'bulletin___'.$timestamp.'___adm/wrapper/adm/'.$cdom.'/'.$uname.'/'.$timestamp.'/bulletinboard';
 1735:                     my $postresult = &addposting($symb,\%contrib,$cdom,$crs);
 1736:                 }
 1737:             }
 1738:         }
 1739:     }
 1740: }
 1741: 
 1742: # ---------------------------------------------------------------- Add Posting to Bulletin Board
 1743: sub addposting {
 1744:     my ($symb,$contrib,$cdom,$crs)=@_;
 1745:     my $status='';
 1746:     if (($symb) && ($$contrib{message})) {
 1747:          my $crsdom = $cdom.'_'.$crs;
 1748:          &Apache::lonnet::store($contrib,$symb,$crsdom,$cdom,$crs);
 1749:          my %storenewentry=($symb => time);
 1750:          &Apache::lonnet::put('discussiontimes',\%storenewentry,$cdom,$crs);
 1751:     }
 1752:     my %record=&Apache::lonnet::restore('_discussion');
 1753:     my ($temp)=keys %record;
 1754:     unless ($temp=~/^error\:/) {
 1755:         my %newrecord=();
 1756:         $newrecord{'resource'}=$symb;
 1757:         $newrecord{'subnumber'}=$record{'subnumber'}+1;
 1758:         &Apache::lonnet::cstore(\%newrecord,'_discussion');
 1759:         $status = 'ok';
 1760:     } else {
 1761:         $status.='Failed.';
 1762:     }
 1763:     return $status;
 1764: }
 1765: 
 1766: sub parse_bb5_assessment {
 1767:     my ($res,$docroot,$container,$settings,$allanswers,$allchoices,$allids) = @_;
 1768:     my $xmlfile = $docroot.'/'.$res.".dat";
 1769:     my @state = ();
 1770:     my $id; # the current question ID
 1771:     my $answer_id; # the current answer ID
 1772:     my %toptag = ( pool => 'POOL',
 1773:                  quiz => 'ASSESSMENT',
 1774:                  survey => 'ASSESSMENT'
 1775:                );
 1776: 
 1777:     my $p = HTML::Parser->new
 1778:     (
 1779:      xml_mode => 1,
 1780:      start_h =>
 1781:      [sub {
 1782:         my ($tagname, $attr) = @_;
 1783:         push @state, $tagname;
 1784:         my $depth = 0;
 1785:         my @seq = ();
 1786:         my $class;
 1787:         my $state_str = join(" ",@state);
 1788:         if ($container eq "pool") {
 1789:             if ("@state" eq "POOL TITLE") {
 1790:                 $$settings{title} = $attr->{value};
 1791:             }
 1792:         } else {
 1793:             if ("@state" eq "ASSESSMENT TITLE") {  
 1794:                 $$settings{title} = $attr->{value};          
 1795:             } elsif ("@state" eq "ASSESSMENT FLAG" ) {
 1796:                 $$settings{isnewline} = $attr->{value};
 1797:             } elsif ("@state" eq "ASSESSMENT FLAGS ISAVAILABLE") {
 1798:                 $$settings{isavailable} = $attr->{value};
 1799:             } elsif ("@state" eq "ASSESSMENT FLAGS ISANONYMOUS" ) {
 1800:                 $$settings{isanonymous} = $attr->{id};
 1801:             } elsif ("@state" eq "ASSESSMENT FLAGS GIVE FEEDBACK" ) {
 1802:                 $$settings{feedback} = $attr->{id};        
 1803:             } elsif ("@state" eq "ASSESSMENT FLAGS SHOWCORRECT" ) {
 1804:                 $$settings{showcorrect} = $attr->{id};        
 1805:             } elsif ("@state" eq "ASSESSMENT FLAGS SHOWRESULTS" ) {
 1806:                 $$settings{showresults} = $attr->{id};        
 1807:             } elsif ("@state" eq "ASSESSMENT FLAGS ALLOWMULTIPLE" ) {
 1808:                 $$settings{allowmultiple} = $attr->{id};        
 1809:             } elsif ("@state" eq "ASSESSMENT ASSESSMENTTYPE" ) {
 1810:                 $$settings{type} = $attr->{id};        
 1811:             }
 1812:         }    
 1813:         if ("@state" eq "$toptag{$container} QUESTIONLIST QUESTION") {  
 1814:             $id = $attr->{id};
 1815:             push @{$allids}, $id;
 1816:             %{$$settings{$id}} = ();
 1817:             @{$$allanswers{$id}} = ();
 1818:             $$settings{$id}{class} = $attr->{class};
 1819:             unless ($container eq "pool") {
 1820:                 $$settings{$id}{points} = $attr->{points};
 1821:             }
 1822:             @{$$settings{$id}{correctanswer}} = ();                              
 1823:         } elsif ( ($state[0] eq $toptag{$container}) && ($state[-1] =~ m/^QUESTION_(\w+)$/) ) {
 1824:             $id = $attr->{id};
 1825:         } elsif ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[2] eq "BODY") && ($state[3] eq "FLAGS") ) {
 1826:             if ($state[4] eq "ISHTML") {
 1827:                 $$settings{$id}{ishtml} = $attr->{value};
 1828:             } elsif ($state[4] eq "ISNEWLINELITERAL") {
 1829:                 $$settings{$id}{newline} = $attr->{value};
 1830:             }
 1831:         } elsif ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[2] eq "IMAGE") ) {
 1832:             $$settings{$id}{image} = $attr->{value};
 1833:             $$settings{$id}{style} = $attr->{style};
 1834:         } elsif ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[2] eq "URL") ) {
 1835:             $$settings{$id}{url} = $attr->{value};
 1836:             $$settings{$id}{name} = $attr->{name};
 1837:         } elsif ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[-1] eq "ANSWER") ) {
 1838:             $answer_id = $attr->{id};
 1839:             push @{$$allanswers{$id}},$answer_id;
 1840:             %{$$settings{$id}{$answer_id}} = ();
 1841:             $$settings{$id}{$answer_id}{position} = $attr->{position};
 1842:             if ($$settings{$id}{class} eq 'QUESTION_MATCH') {
 1843:                 $$settings{$id}{$answer_id}{placement} = $attr->{placement};
 1844:                 $$settings{$id}{$answer_id}{type} = 'answer';
 1845:             }
 1846:         } elsif ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[-1] eq "CHOICE") ) {
 1847:             $answer_id = $attr->{id};
 1848:             push @{$$allchoices{$id}},$answer_id; 
 1849:             %{$$settings{$id}{$answer_id}} = ();
 1850:             $$settings{$id}{$answer_id}{position} = $attr->{position};
 1851:             $$settings{$id}{$answer_id}{placement} = $attr->{placement};
 1852:             $$settings{$id}{$answer_id}{type} = 'choice';
 1853:         } elsif ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[2] eq "ANSWER") ) {
 1854:             if ($state[3] eq "IMAGE") {
 1855:                 $$settings{$id}{$answer_id}{image} = $attr->{value};
 1856:                 $$settings{$id}{$answer_id}{style} = $attr->{style};
 1857:             } elsif ($state[3] eq "URL") {
 1858:                 $$settings{$id}{$answer_id}{url} = $attr->{value};
 1859:             }
 1860:         } elsif ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[2] eq "CHOICE") ) {
 1861:             if ($state[3] eq "IMAGE") {
 1862:                 $$settings{$id}{$answer_id}{image} = $attr->{value};
 1863:                 $$settings{$id}{$answer_id}{style} = $attr->{style};
 1864:             } elsif ($state[3] eq "URL") {
 1865:                 $$settings{$id}{$answer_id}{url} = $attr->{value};
 1866:             }
 1867:         } elsif ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[2] eq "GRADABLE") && ($state[3] eq "CORRECTANSWER") ) {
 1868:             my $corr_answer = $attr->{answer_id};
 1869:             push @{$$settings{$id}{correctanswer}}, $corr_answer;
 1870:             my $type = $1;
 1871:             if ($type eq 'TRUEFALSE') {
 1872:                 $$settings{$id}{$corr_answer}{answer_position} = $attr->{position};
 1873:             } elsif ($type eq 'ORDER') {
 1874:                 $$settings{$id}{$corr_answer}{order} = $attr->{order};
 1875:             } elsif ($type eq 'MATCH') {
 1876:                 $$settings{$id}{$corr_answer}{choice_id} = $attr->{choice_id};
 1877:             }
 1878:         }
 1879:      }, "tagname, attr"],
 1880:      text_h =>
 1881:      [sub {
 1882:         my ($text) = @_;
 1883:         $text =~ s/^\s+//g;
 1884:         $text =~ s/\s+$//g;
 1885:         unless ($container eq "pool") {        
 1886:             if ("@state" eq "ASSESSMENT DESCRIPTION TEXT") {
 1887:                 $$settings{description} = $text;
 1888:             } elsif ("@state" eq "ASSESSMENT INSTRUCTIONS ") {
 1889:                 $$settings{instructions}{text} = $text;
 1890:             }
 1891:         }
 1892:         if ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[2] eq "BODY") && ($state[-1] eq "TEXT") ) {
 1893:             unless ($text eq '') { 
 1894:                 $$settings{$id}{text} = $text;
 1895:             }
 1896:         } elsif ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[2] eq "ANSWER") && ($state[-1] eq "TEXT") ) {
 1897:             unless ($text eq '') {
 1898:                 $$settings{$id}{$answer_id}{text} = $text;
 1899:             }
 1900:         } elsif ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[2] eq "CHOICE") && ($state[-1] eq "TEXT") ) {
 1901:             unless ($text eq '') {
 1902:                 $$settings{$id}{$answer_id}{text} = $text;
 1903:             }
 1904:         } elsif ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[2] eq "GRADABLE") && ($state[-1] eq "FEEDBACK_WHEN_CORRECT") ) {
 1905:             unless ($text eq '') {
 1906:                 $$settings{$id}{feedback_corr} = $text;
 1907:             }
 1908:         } elsif ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[2] eq "GRADABLE") && ($state[-1] eq "FEEDBACK_WHEN_INCORRECT") ) {
 1909:             unless ($text eq '') {
 1910:                 $$settings{$id}{feedback_incorr} = $text;
 1911:             }
 1912:         }
 1913:       }, "dtext"],
 1914:      end_h =>
 1915:      [sub {
 1916:         my ($tagname) = @_;
 1917:         pop @state;
 1918:      }, "tagname"],
 1919:     );
 1920:     $p->unbroken_text(1);
 1921:     $p->marked_sections(1);
 1922:     $p->parse_file($xmlfile);
 1923:     $p->eof;
 1924: }
 1925: 
 1926: sub parse_bb6_assessment {
 1927:     my ($res,$docroot,$container,$settings,$allids) = @_;
 1928:     my $xmlfile = $docroot.'/'.$res.".dat";
 1929:     my @state = ();
 1930:     my $id; # the current question ID
 1931:     my $response; # the current response ID
 1932:     my $foil; # the current foil ID
 1933:     my $numchoice; # the current right match choice;
 1934:     my $labelcount; # the current count of choices for a matching item.
 1935:     my $curr_shuffle;
 1936:     my $curr_class; # the current question type
 1937:     my $curr_matchitem;
 1938:     my $curr_block_type; # the current block type
 1939:     my $curr_flow; # the current flow class attribute
 1940:     my $curr_flow_mat; # the current flow_mat class attribute
 1941:     my $curr_feedback_type; # the current feedback type
 1942:     my $numorder; # counter for ordering type questions
 1943: 
 1944:     my $itemfrag = "questestinterop assessment section item";
 1945:     my $presfrag = "$itemfrag presentation flow flow";
 1946:     my $blockflow = 'flow';
 1947:     my $responselid;
 1948:     my $instructionfrag = "questestinterop assessment presentation_material flow_mat material";
 1949:     my $feedbackfrag = "$itemfrag itemfeedback";
 1950:     my $feedback_tag = '';
 1951:     my $responselid;
 1952:     my $p = HTML::Parser->new
 1953:     (
 1954:      xml_mode => 1,
 1955:      start_h =>
 1956:      [sub {
 1957:         my ($tagname, $attr) = @_;
 1958:         push @state, $tagname;
 1959:         if ("@state" eq "questestinterop assessment") {
 1960:             $$settings{title} = $attr->{title};
 1961:         }
 1962:         if ("@state" eq "questestinterop assessment rubric flow_mat material mat_extension mat_formattedtext") {
 1963:             $$settings{description}{texttype} = $attr->{type};
 1964:         }
 1965:         if ("@state" eq $presfrag) {
 1966:             if ($attr->{class} eq 'QUESTION_BLOCK') {
 1967:                 $curr_block_type = 'question';
 1968:             } elsif ($attr->{class} eq 'RESPONSE_BLOCK') {
 1969:                 $curr_block_type = 'response';
 1970:                 if ($curr_class eq 'Matching') {
 1971:                     $responselid = 'flow response_lid';
 1972:                 } else {
 1973:                     $responselid = 'response_lid';
 1974:                 }
 1975:             } elsif (($attr->{class} eq 'RIGHT_MATCH_BLOCK')) {
 1976:                 $numchoice = 0;
 1977:                 $curr_block_type = 'rightmatch';
 1978:             }
 1979:         }
 1980:         if ("@state" eq "$presfrag flow") {
 1981:             if (($curr_block_type =~ /^rightmatch/)  && ($attr->{class} eq 'Block')) {
 1982:                 $curr_block_type = 'rightmatch'.$numchoice;
 1983:                 $numchoice ++;
 1984:             }
 1985:         }
 1986:         if ($state[-1] eq 'flow') {
 1987:             $curr_flow = $attr->{class};
 1988:         }
 1989:         if ($state[-1] eq 'flow_mat') {
 1990:             $curr_flow_mat = $attr->{class};
 1991:         }
 1992:         if ("@state" eq "$presfrag $blockflow material mat_extension mat_formattedtext") {
 1993:             $$settings{$id}{$curr_block_type}{texttype} = $attr->{texttype};
 1994:         }
 1995:         if ("@state" eq "$presfrag $blockflow material matapplication") {
 1996:             $$settings{$id}{$curr_block_type}{image} = $attr->{uri};
 1997:             $$settings{$id}{$curr_block_type}{style} = $attr->{embedded};
 1998:             $$settings{$id}{$curr_block_type}{label} = $attr->{label};
 1999:         }
 2000:         if ("@state" eq "$presfrag $blockflow material mattext") {
 2001:             $$settings{$id}{$curr_block_type}{link} = $attr->{uri};
 2002:         }
 2003:         if ("@state" eq "$presfrag $responselid") {
 2004:             $response = $attr->{ident};
 2005:             $labelcount = 0; 
 2006:             if ($curr_class eq 'Matching') {
 2007:                 push(@{$$settings{$id}{answers}},$response);
 2008:                 %{$$settings{$id}{$response}} = ();
 2009:                 foreach my $key (keys(%{$$settings{$id}{$curr_block_type}})) {
 2010:                     $$settings{$id}{$response}{$key} = $$settings{$id}{$curr_block_type}{$key};
 2011:                 }
 2012:                 %{$$settings{$id}{$curr_block_type}} = ();
 2013:             }
 2014:         }
 2015:         if ("@state" eq "$presfrag $responselid render_choice") {
 2016:             $curr_shuffle = $attr->{shuffle};
 2017:         }
 2018:         if ("@state" eq "$presfrag $responselid render_choice flow_label response_label") {
 2019:             $foil = $attr->{ident};
 2020:             %{$$settings{$id}{$foil}} = ();
 2021:             $$settings{$id}{$foil}{randomize} = $curr_shuffle;
 2022:             unless ($curr_class eq 'Essay'){
 2023:                 if ($curr_class eq 'Matching') {
 2024:                     push(@{$$settings{$id}{$response}{items}},$foil);
 2025:                     $$settings{$id}{$foil}{order} = $labelcount;
 2026:                     $labelcount ++;
 2027:                 } else {
 2028:                     push(@{$$settings{$id}{answers}},$foil);
 2029:                     @{$$settings{$id}{correctanswer}} = ();
 2030:                 }
 2031:             }
 2032:         }
 2033:         if ("@state" eq "$presfrag $responselid render_choice flow_label response_label flow_mat material matapplication") {
 2034:             $$settings{$id}{$foil}{filetype} = $attr->{embedded};
 2035:             $$settings{$id}{$foil}{label} = $attr->{label};
 2036:             $$settings{$id}{$foil}{uri} = $attr->{uri};
 2037:         }
 2038:         if ("@state" eq "$presfrag $responselid render_choice flow_label response_label flow_mat material mattext") {
 2039:             $$settings{$id}{$foil}{link} = $attr->{uri};
 2040:         }
 2041:         if ("@state" eq "questestinterop assessment section item resprocessing") {
 2042:             if ($curr_class eq 'Matching') {
 2043:                 $$settings{$id}{allchoices} = $numchoice;
 2044:             }
 2045:         }
 2046:         if ("@state" eq "questestinterop assessment section item resprocessing respcondition conditionvar varequal") {
 2047:             if ($curr_class eq 'Matching') { 
 2048:                 $curr_matchitem = $attr->{respident};
 2049:             }
 2050:         }
 2051:         if ("@state" eq $feedbackfrag) {
 2052:             $curr_feedback_type = $attr->{ident};
 2053:             $feedback_tag = "";
 2054:         }
 2055:         if ("@state" eq "$feedbackfrag solution") {
 2056:             $curr_feedback_type = 'solution';
 2057:             $feedback_tag = "solution solutionmaterial";
 2058:         }
 2059:         if ("@state" eq "$feedbackfrag $feedback_tag flow_mat flow_mat material matapplication") {
 2060:             $$settings{$id}{$curr_feedback_type.'feedback'}{filetype} = $attr->{'embedded'};
 2061:             $$settings{$id}{$curr_feedback_type.'feedback'}{label} = $attr->{label};
 2062:             $$settings{$id}{$curr_feedback_type.'feedback'}{uri} = $attr->{uri};
 2063:         }
 2064:         if ("@state" eq "$feedbackfrag $feedback_tag flow_mat flow_mat material mattext") {
 2065:             $$settings{$id}{$curr_feedback_type.'feedback'}{link} = $attr->{uri};
 2066:         }
 2067:      }, "tagname, attr"],
 2068:      text_h =>
 2069:      [sub {
 2070:         my ($text) = @_;
 2071:         $text =~ s/^\s+//g;
 2072:         $text =~ s/\s+$//g;
 2073:         if ("@state" eq "questestinterop assessment rubric flow_mat material mat_extension mat_formattedtext") {
 2074:             $$settings{description}{text} = $text;
 2075:         }
 2076:         if ("@state" eq "questestinterop assessment rubric flow_mat material mattext") {
 2077:             $$settings{description}{text} = $text;
 2078:         }
 2079:         if ("@state" eq "$instructionfrag mat_extension mat_formattedtext") {
 2080:             $$settings{instructions}{text} = $text;
 2081:         }
 2082:         if ("@state" eq "$instructionfrag mattext") {
 2083:             $$settings{instructions}{text} = $text;
 2084:         }
 2085:         if ("@state" eq "questestinterop assessment section item itemmetadata bbmd_asi_object_id") {
 2086:             $id = $text;
 2087:             push @{$allids}, $id;
 2088:             %{$$settings{$id}} = ();
 2089:             @{$$settings{$id}{answers}} = ();
 2090:             %{$$settings{$id}{question}} = ();
 2091:             %{$$settings{$id}{correctfeedback}} = ();
 2092:             %{$$settings{$id}{incorrectfeedback}} = ();
 2093:             %{$$settings{$id}{solutionfeedback}} = ();
 2094:         }
 2095:         if ("@state" eq "questestinterop assessment section item itemmetadata bbmd_questiontype") {
 2096:             $$settings{$id}{class} = $text;
 2097:             $curr_class = $text;
 2098:             if ($curr_class eq 'Matching') {
 2099:                 $blockflow = 'flow flow';
 2100:             } else {
 2101:                 $blockflow = 'flow';
 2102:             } 
 2103:         }
 2104:         if ("@state" eq "$presfrag $blockflow material mat_extension mat_formattedtext") {
 2105:             $$settings{$id}{$curr_block_type}{text} = $text;
 2106:         }
 2107:         if ("@state" eq "$presfrag $blockflow material mattext") {
 2108:             if ($curr_flow eq 'LINK_BLOCK') { 
 2109:                 $$settings{$id}{$curr_block_type}{linkname} = $text;
 2110:             } elsif ($curr_flow eq 'FORMATTED_TEXT_BLOCK') {
 2111:                 $$settings{$id}{$curr_block_type}{text} = $text;
 2112:             }
 2113:         }
 2114:         if ("@state" eq "$presfrag $responselid render_choice flow_label response_label flow_mat material mat_extension mat_formattedtext") {
 2115:             $$settings{$id}{$foil}{text} = $text;
 2116:         }
 2117:         if ("@state" eq "$presfrag $responselid render_choice flow_label response_label flow_mat material mattext") {
 2118:             if ($curr_flow_mat eq 'LINK_BLOCK') {
 2119:                 $$settings{$id}{$foil}{linkname} = $text;
 2120:             } else {
 2121:                 $$settings{$id}{$foil}{text} = $text;
 2122:             } 
 2123:         }
 2124:         if ("@state" eq "questestinterop assessment section item resprocessing respcondition conditionvar varequal") {
 2125:             if ($curr_class eq 'Matching') {
 2126:                 $$settings{$id}{$curr_matchitem}{correctanswer} = $text;
 2127:             } else {
 2128:                 push(@{$$settings{$id}{correctanswer}},$text);
 2129:             }
 2130:         }
 2131:         if ("@state" eq "questestinterop assessment section item resprocessing respcondition conditionvar") {
 2132:             $numorder = 0;
 2133:         }
 2134:         if ("@state" eq "questestinterop assessment section item resprocessing respcondition conditionvar and varequal") {
 2135:             push(@{$$settings{$id}{correctanswer}},$text);
 2136:             if ($curr_class eq 'Ordering') {
 2137:                 $numorder ++;
 2138:                 $$settings{$id}{$text}{order} = $numorder;
 2139:             }
 2140:         }
 2141:         if ("@state" eq "$feedbackfrag $feedback_tag flow_mat flow_mat material mat_extension mat_formattedtext") {
 2142:             $$settings{$id}{$curr_feedback_type.'feedback'}{text} = $text;
 2143:         }
 2144:         if ("@state" eq "$feedbackfrag $feedback_tag flow_mat flow_mat material mattext") {
 2145:             $$settings{$id}{$curr_feedback_type.'feedback'}{linkname} = $text;
 2146:         }
 2147:      }, "dtext"],
 2148:      end_h =>
 2149:      [sub {
 2150:         my ($tagname) = @_;
 2151:         pop @state;
 2152:      }, "tagname"],
 2153:     );
 2154:     $p->unbroken_text(1);
 2155:     $p->marked_sections(1);
 2156:     $p->parse_file($xmlfile);
 2157:     $p->eof;
 2158:     return;
 2159: }
 2160: 
 2161: sub parse_webctvista4_assessment {
 2162:     my ($res,$docroot,$href,$allids,$qzparams) = @_;
 2163:     my $xmlfile = $docroot.'/'.$href; #assessment file
 2164:     my @state = ();
 2165:     my $id; # the current question ID
 2166:     my $fieldlabel; # the current qti metadata field label
 2167:     my $outcome_id; # the current question ID for outcomes conditions
 2168:     my $pname; # the current outcomes parameter name
 2169:     my $numids = 0;
 2170:     %{$$qzparams{$res}} = ();
 2171:     %{$$qzparams{$res}{weight}} = ();
 2172: 
 2173:     my $p = HTML::Parser->new
 2174:     (
 2175:      xml_mode => 1,
 2176:      start_h =>
 2177:      [sub {
 2178:         my ($tagname, $attr) = @_;
 2179:         push @state, $tagname;
 2180:         my @seq = ();
 2181:         if ("@state" eq "questestinterop assessment section itemref") {
 2182:             $id = $attr->{linkrefid};
 2183:             push(@{$allids},$id);
 2184:             $numids ++;
 2185:         }
 2186:         if ("@state" eq "questestinterop assessment section selection_ordering order") {
 2187:            $$qzparams{$res}{order_type} = $attr->{order_type};
 2188:         }
 2189: 
 2190:      }, "tagname, attr"],
 2191:      text_h =>
 2192:      [sub {
 2193:         my ($text) = @_;
 2194:         if ("@state" eq "questestinterop assessment qtimetadata qtimetadatafield fieldlabel") {
 2195:             $fieldlabel = $text;
 2196:         }
 2197:         if ("@state" eq "questestinterop assessment qtimetadata qtimetadatafield fieldentry") {
 2198:             $$qzparams{$res}{$fieldlabel} = $text;
 2199:         }
 2200:         if ("@state" eq "questestinterop assessment section outcomes_processing objects_condition outcomes_metadata") {
 2201:             $outcome_id = $text;
 2202:         }
 2203:         if ("@state" eq "questestinterop assessment section outcomes_processing objects_condition objects_parameter") {
 2204:             if ($pname eq 'qmd_weighting') {
 2205:                 $$qzparams{$res}{weight}{$outcome_id} = $text;
 2206:             }
 2207:         }
 2208:         if ("@state" eq "questestinterop assessment section selection_ordering selection selection_number") {
 2209:             $$qzparams{$res}{numpick} = $text;
 2210:         }
 2211:       }, "dtext"],
 2212:      end_h =>
 2213:      [sub {
 2214:         my ($tagname) = @_;
 2215:         pop @state;
 2216:      }, "tagname"],
 2217:     );
 2218:     $p->unbroken_text(1);
 2219:     $p->parse_file($xmlfile);
 2220:     $p->eof;
 2221:     unless(defined($$qzparams{$res}{numpick})) {
 2222:         $$qzparams{$res}{numpick} = $numids;
 2223:     }
 2224: }
 2225: 
 2226: sub parse_webctvista4_question {
 2227:     my ($res,$docroot,$resources,$hrefs,$settings,$allquestids,$allanswers,$allchoices,$parent,$catinfo) = @_;
 2228:     my $xmlfile = $docroot.'/'.$$resources{$res}{file};
 2229:     my %classtypes = (
 2230:                       WCT_Calculated => 'numerical',
 2231:                       WCT_TrueFalse => 'multiplechoice',
 2232:                       WCT_ShortAnswer => 'shortanswer',
 2233:                       WCT_Paragraph => 'paragraph',
 2234:                       WCT_MultipleChoice => 'multiplechoice',
 2235:                       WCT_Matching => 'match',
 2236:                       WCT_JumbledSentence => 'jumbled',
 2237:                       WCT_FillInTheBlank => 'string',
 2238:                       WCT_Combination => 'combination'
 2239:     );
 2240:     my @state = ();
 2241:     my $fieldlabel;
 2242:     my %questiondata;
 2243:     my $id; # the current question ID
 2244:     my $list; # the current list ID for multiple choice questions 
 2245:     my $numid; # the current answer ID for numerical questions
 2246:     my $grp; # the current group ID for matching questions
 2247:     my $label; # the current reponse label for string questions
 2248:     my $str_id; # the current string ID for string questions
 2249:     my $unitid; # the current unit ID for numerical questions
 2250:     my $answer_id;  # the current answer ID 
 2251:     my $fdbk; # the current feedback ID
 2252:     my $currvar; # the current variable for numerical problems
 2253:     my $fibtype; # the current fill-in-blank type for numerical or string
 2254:     my $prompt;
 2255:     my $rows;
 2256:     my $columns;
 2257:     my $maxchars;
 2258:     my %setvar = (
 2259:                    varname => '',
 2260:                    action => '',
 2261:                  );
 2262:     my $currtexttype;
 2263:     my $jumble_item;
 2264:     my $numbox = 0;
 2265:     my %str_answers = ();
 2266:     my $textlabel;
 2267:     my $currindex;
 2268:     my %varinfo = ();
 2269:     my $formula;
 2270:     my $jumbnum = 0;
 2271:     my $p = HTML::Parser->new
 2272:     (
 2273:      xml_mode => 1,
 2274:      start_h =>
 2275:      [sub {
 2276:         my ($tagname, $attr) = @_;
 2277:         push @state, $tagname;
 2278:         if ("@state" eq "questestinterop item") {
 2279:             $id = $attr->{ident};
 2280:             push(@{$allquestids},$id);
 2281:             %{$$settings{$id}} = ();
 2282:             %{$varinfo{$id}} = ();
 2283:             @{$$allchoices{$id}} = ();
 2284:             @{$$settings{$id}{grps}} = ();
 2285:             @{$$settings{$id}{lists}} = ();
 2286:             @{$$settings{$id}{feedback}} = ();
 2287:             @{$$settings{$id}{str}} = ();
 2288:             %{$$settings{$id}{strings}} = ();
 2289:             @{$$settings{$id}{numids}} = ();
 2290:             %{$$allanswers{$id}} = ();
 2291:             $$settings{$id}{title} = $attr->{title};
 2292:         }
 2293:         if ("@state" eq "questestinterop item presentation flow material mat_extension webct:calculated webct:var") {
 2294:             $currvar = $attr->{'webct:name'};
 2295:             %{$varinfo{$id}{$currvar}} = ();
 2296:             $varinfo{$id}{$currvar}{min} = $attr->{'webct:min'};
 2297:             $varinfo{$id}{$currvar}{max} = $attr->{'webct:max'};
 2298:             $varinfo{$id}{$currvar}{precision} = $attr->{'webct:precision'};
 2299:         }
 2300:         if ("@state" eq "questestinterop item presentation flow response_num") {
 2301:             $numid = $attr->{ident};
 2302:             push(@{$$settings{$id}{numids}},$numid);
 2303:             %{$$settings{$id}{$numid}} = ();
 2304:             %{$$settings{$id}{$numid}{vars}} = ();
 2305:             @{$$settings{$id}{$numid}{units}} = ();
 2306:             $$settings{$id}{$numid}{rcardinality} = $attr->{rcardinality};
 2307:             $$settings{$id}{$numid}{formula} = $formula;
 2308:             foreach my $var (keys(%{$varinfo{$id}})) {
 2309:                 %{$$settings{$id}{$numid}{vars}{$var}} = %{$varinfo{$id}{$var}};
 2310:             }
 2311:         }
 2312:         if ("@state" eq "questestinterop item presentation flow material mat_extension webct:variable") {
 2313:             $$settings{$id}{text} .= '['.$attr->{'webct:name'}.']';
 2314:         }
 2315:         if ("@state" eq "questestinterop item presentation flow material matimage") {
 2316:             $$settings{$id}{image} = $attr->{uri};
 2317:         }
 2318: 
 2319:         if ("@state" eq "questestinterop item presentation flow material mattext")  {
 2320:             $currtexttype = lc($attr->{texttype});
 2321:             $$settings{$id}{texttype} = $currtexttype;
 2322:             if ($$settings{$id}{class} eq 'combination') {
 2323:                 if (exists($attr->{label})) {
 2324:                     $textlabel = $attr->{label};
 2325:                 } else {
 2326:                     $textlabel = '';
 2327:                 }
 2328:             }
 2329:         }
 2330:         if ("@state" eq "questestinterop item presentation flow response_lid") {
 2331:             $list = $attr->{ident};
 2332:             push(@{$$settings{$id}{lists}},$list);
 2333:             %{$$settings{$id}{$list}} = ();
 2334:             @{$$allanswers{$id}{$list}} = ();
 2335:             @{$$settings{$id}{$list}{correctanswer}} = ();
 2336:             @{$$settings{$id}{$list}{jumbledtext}} = ();
 2337:             @{$$settings{$id}{$list}{jumbledtype}} = ();
 2338:             @{$$settings{$id}{$list}{jumbled}} = ();
 2339:             $$settings{$id}{$list}{rcardinality} = $attr->{rcardinality};
 2340:         }
 2341: # Jumbled sentence
 2342:         if ("@state" eq "questestinterop item presentation flow response_lid render_extension ims_render_object")  {
 2343:             $$settings{$id}{$list}{orientation} = $attr->{orientation};
 2344:         }
 2345:         if ("@state" eq "questestinterop item presentation flow response_lid render_extension ims_render_object material mattext")  {
 2346:             $currtexttype = lc($attr->{texttype});
 2347:             $$settings{$id}{$list}{texttype} = $currtexttype;
 2348:         }
 2349:         if ("@state" eq "questestinterop item presentation flow response_lid render_extension ims_render_object response_label")  {
 2350:             $jumble_item = $attr->{ident};
 2351:         }
 2352:         if ("@state" eq "questestinterop item presentation flow response_lid render_extension ims_render_object response_label material mattext")  {
 2353:             $currtexttype = lc($attr->{texttype});
 2354:             $$settings{$id}{$list}{$jumble_item}{texttype} = $currtexttype;
 2355:         }
 2356:         if ("@state" eq "questestinterop item resprocessing respcondition") { # Jumbled
 2357:             if ($$settings{$id}{class} eq 'jumbled') {
 2358:                 $jumbnum ++;
 2359:                 @{$$settings{$id}{$list}{jumbled}[$jumbnum]} = (); 
 2360:             }
 2361:         }
 2362: 
 2363:         if ("@state" eq "questestinterop item resprocessing respcondition conditionvar and varequal") { # Jumbled
 2364:             $currindex = $attr->{index};
 2365:         }
 2366:         if ("@state" eq "questestinterop item presentation flow response_lid render_choice") {
 2367:             $$settings{$id}{$list}{randomize} = $attr->{shuffle};
 2368:         }
 2369:         if ("@state" eq "questestinterop item presentation flow response_lid render_choice flow_label response_label") {
 2370:             $answer_id = $attr->{ident};
 2371:             push(@{$$allanswers{$id}{$list}},$answer_id);
 2372:             %{$$settings{$id}{$list}{$answer_id}} = ();
 2373:         }
 2374: # True/False
 2375:         if ("@state" eq "questestinterop item presentation flow response_lid render_choice flow_label response_label material mat_extension webct:localizable_mattext") {
 2376:             $currtexttype = lc($attr->{texttype});
 2377:             $$settings{$id}{$list}{$answer_id}{texttype} = $currtexttype;
 2378:         }
 2379: 
 2380: # Multiple Choice and Combination
 2381:         if ("@state" eq "questestinterop item presentation flow response_lid render_choice flow_label response_label material mattext") {
 2382:             $currtexttype = lc($attr->{texttype});
 2383:             $$settings{$id}{$list}{$answer_id}{texttype} = $currtexttype;
 2384:         }
 2385: 
 2386: # String, Shortanswer or Paragraph
 2387:         if (($$settings{$id}{class} eq 'string') || 
 2388:             ($$settings{$id}{class} eq 'shortanswer') ||
 2389:             ($$settings{$id}{class} eq 'paragraph')) { 
 2390:             if ("@state" eq "questestinterop item presentation flow response_str") {
 2391:                 $str_id = $attr->{ident};
 2392:                 %{$$settings{$id}{$str_id}} = ();
 2393:                 push(@{$$settings{$id}{str}},$str_id);
 2394:                 $$settings{$id}{$str_id}{rcardinality} = $attr->{rcardinality};
 2395:                 @{$$settings{$id}{$str_id}{labels}} = ();
 2396:                 %{$$settings{$id}{$str_id}{comparison}} = ();
 2397:             }
 2398:         }
 2399:         if ("@state" eq "questestinterop item presentation flow response_str material mattext") { # string
 2400:             $currtexttype = lc($attr->{texttype});
 2401:             $$settings{$id}{$str_id}{texttype} = $currtexttype;
 2402:         }
 2403:         if ("@state" eq "questestinterop item presentation flow response_str render_fib") {
 2404:             $fibtype = $attr->{fibtype};
 2405:             $prompt = $attr->{prompt};
 2406:             $rows = $attr->{rows};
 2407:             $columns = $attr->{columns};
 2408:             $maxchars = $attr->{maxchars};
 2409:         }
 2410:         if ("@state" eq "questestinterop item presentation flow response_str render_fib response_label") {
 2411:             push(@{$$settings{$id}{$str_id}{labels}},$label);
 2412:             @{$$settings{$id}{strings}{$str_id}} = ();
 2413:             %{$$settings{$id}{$str_id}{$label}} = ();
 2414:             $$settings{$id}{$str_id}{$label}{fibtype} = $fibtype;
 2415:             if ($$settings{$id}{class} eq 'string') {
 2416:                 $$settings{$id}{text} .= '[blank]';
 2417:             }
 2418:         }
 2419:         if ("@state" eq "questestinterop item presentation flow response_str render_fib response_label material mattext") { # Paragraph
 2420:             $textlabel = $attr->{label}; 
 2421:         }
 2422: # Matching
 2423:         if ("@state" eq "questestinterop item presentation flow flow response_grp") {
 2424:             $grp = $attr->{ident};
 2425:             push(@{$$settings{$id}{grps}},$grp);
 2426:             %{$$settings{$id}{$grp}} = ();
 2427:             @{$$settings{$id}{$grp}{correctanswer}} = ();
 2428:             $$settings{$id}{$grp}{rcardinality} = $attr->{rcardinality};
 2429:         }
 2430:         if ("@state" eq "questestinterop item presentation flow flow response_grp material mattext") {
 2431:             $currtexttype = lc($attr->{texttype});
 2432:             $$settings{$id}{$grp}{texttype} = $currtexttype;
 2433:         }
 2434:         if ("@state" eq "questestinterop item presentation flow flow response_grp render_choice response_label") {
 2435:             $answer_id = $attr->{ident};
 2436:             push(@{$$allanswers{$id}{$grp}},$answer_id);
 2437:             %{$$settings{$id}{$grp}{$answer_id}} = ();
 2438:             $currtexttype = lc($attr->{texttype});
 2439:             $$settings{$id}{$grp}{$answer_id}{texttype} =  $currtexttype;
 2440:         }
 2441: # Multiple choice or combination or string or match 
 2442:         if ("@state" eq "questestinterop item resprocessing respcondition conditionvar varequal") {
 2443:             if (($$settings{$id}{class} eq 'multiplechoice') || 
 2444:                 ($$settings{$id}{class} eq 'combination')) {
 2445:                 $list = $attr->{respident};
 2446:             } elsif (($$settings{$id}{class} eq 'string') ||
 2447:                      ($$settings{$id}{class} eq 'shortanswer')) {
 2448:                 $label = $attr->{respident};
 2449:             } elsif ($$settings{$id}{class} eq 'match') {
 2450:                 $grp = $attr->{respident};
 2451:             }
 2452:         }
 2453:         if ("@state" eq "questestinterop item resprocessing") {
 2454:             if (($$settings{$id}{class} eq 'string') ||
 2455:                 ($$settings{$id}{class} eq 'shortanswer')) {
 2456:                 foreach my $str_id (@{$$settings{$id}{str}}) {
 2457:                     @{$str_answers{$str_id}} = ();
 2458:                 }
 2459:             }
 2460:         }
 2461:         if ("@state" eq "questestinterop item resprocessing respcondition") {
 2462:             if (($$settings{$id}{class} eq 'string') ||
 2463:                 ($$settings{$id}{class} eq 'shortanswer')) { 
 2464:                 $numbox ++;
 2465:             }
 2466:         }
 2467:         if ("@state" eq "questestinterop item resprocessing respcondition setvar") {
 2468:             foreach my $key (keys(%{$attr})) {
 2469:                 $setvar{$key} = $attr->{$key};
 2470:             }
 2471:         }
 2472:         if (($$settings{$id}{class} eq 'string') ||
 2473:             ($$settings{$id}{class} eq 'shortanswer')) {
 2474:             if (("@state" eq "questestinterop item resprocessing respcondition conditionvar or varsubset") || ("@state" eq "questestinterop item resprocessing respcondition conditionvar varsubset")) {
 2475:                 $str_id = $attr->{respident};
 2476:                 $$settings{$id}{$str_id}{case} = $attr->{case};
 2477:             }
 2478:         }
 2479:         if ("@state" eq "questestinterop item resprocessing respcondition conditionvar and varsubset") {
 2480:             $list = $attr->{respident};
 2481:         }
 2482: # Numerical
 2483:         if ("@state" eq "questestinterop item resprocessing itemproc_extension webct:calculated_answer") {
 2484:             $numid = $attr->{respident};
 2485:             $$settings{$id}{$numid}{toltype} = $attr->{'webct:toleranceType'};
 2486:             $$settings{$id}{$numid}{tolerance} = $attr->{'webct:tolerance'};
 2487:         }
 2488:         if ("@state" eq "questestinterop item resprocessing itemproc_extension unit_eval conditionvar varequal") {
 2489:             $unitid = $attr->{respident};
 2490:             %{$$settings{$id}{$numid}{$unitid}} = ();
 2491:             push(@{$$settings{$id}{$numid}{units}},$unitid);
 2492:             $$settings{$id}{$numid}{$unitid}{case} = $attr->{case};
 2493:         }
 2494: # Feedback
 2495:         if ("@state" eq "questestinterop item respcondition displayfeedback") {
 2496:             $fdbk = $attr->{linkrefid};
 2497:             push(@{$$settings{$id}{feedback}},$fdbk);
 2498:             $$settings{$id}{$fdbk} = ();
 2499:             $$settings{$id}{$fdbk}{feedbacktype} = $attr->{feedbacktype};
 2500:         }
 2501:         if ("@state" eq "questestinterop item itemfeedback") {
 2502:             $fdbk = $attr->{ident};
 2503:             push(@{$$settings{$id}{feedback}},$fdbk);
 2504:             $$settings{$id}{$fdbk}{view} = $attr->{view};
 2505:         }
 2506:         if ("@state" eq "questestinterop item itemfeedback material mattext") {
 2507:             $currtexttype = lc($attr->{texttype});
 2508:             $$settings{$id}{$fdbk}{texttype} = $currtexttype;
 2509:         }
 2510:         if ("@state" eq "questestinterop item itemfeedback solution solutionmaterial material mattext") {
 2511:             $currtexttype = lc($attr->{texttype});
 2512:             $$settings{$id}{$fdbk}{texttype} = $currtexttype;
 2513:         }
 2514:      }, "tagname, attr"],
 2515:      text_h =>
 2516:      [sub {
 2517:         my ($text) = @_;
 2518:         if ($currtexttype eq '/text/html') {
 2519:             $text =~ s#(&lt;img\ssrc=")([^"]+)"&gt;#$1../resfiles/$2#g;
 2520:         }
 2521:         if ("@state" eq "questestinterop item itemmetadata qtimetadata qtimetadatafield fieldlabel") {
 2522:             $fieldlabel = $text;
 2523:         }
 2524:         if ("@state" eq "questestinterop item itemmetadata qtimetadata qtimetadatafield fieldentry") {
 2525:             $questiondata{$fieldlabel} = $text;
 2526:             if ($fieldlabel eq 'wct_questiontype') {
 2527:                 $$settings{$id}{class} = $classtypes{$text};
 2528:             } elsif ($fieldlabel eq 'wct_questioncategory') {
 2529:                 $$settings{$id}{category} = $text;
 2530:                 unless(exists($$catinfo{$text})) {
 2531:                     %{$$catinfo{$text}} = ();
 2532:                     $$catinfo{$text}{title} = $text;
 2533:                 }
 2534:                 push(@{$$catinfo{$text}{contents}},$id);
 2535:             }
 2536:         }
 2537:         if ("@state" eq "questestinterop item presentation flow material mat_extension webct:calculated webct:formula") {
 2538:             $formula = $text;
 2539:         }
 2540:         if ("@state" eq "questestinterop item presentation flow response_str material mattext") {
 2541:             $$settings{$id}{$str_id}{text} = $text;
 2542:         }
 2543:         if ("@state" eq "questestinterop item presentation flow response_str render_fib response_label material mattext") { # Paragraph
 2544:             if ($textlabel eq 'PRE_FILL_ANSWER') {
 2545:                 $$settings{$id}{$str_id}{$label}{$textlabel} = $text;
 2546:             }
 2547:         }
 2548:         if ("@state" eq "questestinterop item presentation flow response_lid render_choice flow_label response_label material mattext") {
 2549:             $$settings{$id}{$list}{$answer_id}{text} .= $text;
 2550:         }
 2551:         if ("@state" eq "questestinterop item presentation flow response_lid render_choice flow_label response_label material mat_extension webct:localizable_mattext") {
 2552:             $$settings{$id}{$list}{$answer_id}{text} = $text;
 2553:         }
 2554:         if ("@state" eq "questestinterop item presentation flow response_lid render_extension ims_render_object material mattext")  {
 2555:             push(@{$$settings{$id}{$list}{jumbledtext}},$text);
 2556:             push(@{$$settings{$id}{$list}{jumbledtype}},'No');
 2557:         }
 2558:         if ("@state" eq "questestinterop item presentation flow response_lid render_extension ims_render_object response_label material mattext")  {
 2559:             $$settings{$id}{$list}{$jumble_item}{text} = $text;
 2560:             push(@{$$settings{$id}{$list}{jumbledtext}},$text);
 2561:             push(@{$$settings{$id}{$list}{jumbledtype}},'Yes');
 2562:         }
 2563:         if ("@state" eq "questestinterop item presentation flow material mattext")  {
 2564:             $$settings{$id}{text} .= $text;
 2565:             if ($$settings{$id}{class} eq 'combination') {
 2566:                 if ($textlabel =~ /^wct_question_label_\d+$/) {
 2567:                     $$settings{$id}{text} .= '<br />';
 2568:                 }
 2569:                 if ($textlabel =~ /^wct_cmc_single_answer\d+$/) {
 2570:                     $$settings{$id}{text} .= '<br />';
 2571:                 }
 2572:             }
 2573:         }
 2574:         if ("@state" eq "questestinterop item resprocessing itemproc_extension unit_eval conditionvar varequal") {
 2575:             $$settings{$id}{$numid}{$unitid}{text} = $text;
 2576:         }
 2577:         if ("@state" eq "questestinterop item resprocessing respcondition conditionvar varequal") {
 2578:             if (($$settings{$id}{class} eq 'string') ||
 2579:                 ($$settings{$id}{class} eq 'shortanswer')) {
 2580:                 unless (grep/^$text$/,@{$str_answers{$str_id}}) {
 2581:                     push(@{$str_answers{$str_id}},$text);
 2582:                     $$settings{$id}{$str_id}{comparison}{$text} = $questiondata{'wct_comparison_type'.$numbox};
 2583:                 }
 2584:             } else {
 2585:                 $answer_id = $text;
 2586:             }
 2587:         }
 2588:         if (("@state" eq "questestinterop item resprocessing respcondition conditionvar or varsubset") || ("@state" eq "questestinterop item resprocessing respcondition conditionvar varsubset")) { # string
 2589:             if (($$settings{$id}{class} eq 'string') ||
 2590:                 ($$settings{$id}{class} eq 'shortanswer')) {
 2591:                 unless (grep/^$text$/,@{$str_answers{$str_id}}) {
 2592:                     push(@{$str_answers{$str_id}},$text);
 2593:                     $$settings{$id}{$str_id}{comparison}{$text} = $questiondata{'wct_comparison_type'.$numbox};
 2594:                 }
 2595:             }
 2596:         }
 2597: 
 2598:         if ("@state" eq "questestinterop item resprocessing respcondition conditionvar and varequal") { # Jumbled
 2599:             $$settings{$id}{$list}{jumbled}[$jumbnum][$currindex] = $text;
 2600:         }
 2601:         if ("@state" eq "questestinterop item resprocessing respcondition setvar") {
 2602:             if ($setvar{varname} eq "SCORE") { # Multiple Choice, String or Match
 2603:                 if ($text =~ m/^[\d\.]+$/) {
 2604:                     if ($text > 0) {
 2605:                         if (($$settings{$id}{class} eq 'multiplechoice') ||
 2606:                             ($$settings{$id}{class} eq 'combination')) {
 2607:                             push(@{$$settings{$id}{$list}{correctanswer}},$answer_id);
 2608:                         } elsif (($$settings{$id}{class} eq 'string') ||
 2609:                                  ($$settings{$id}{class} eq 'shortanswer')) {
 2610:                             foreach my $answer (@{$str_answers{$str_id}}) {
 2611:                                 unless (grep/^$answer$/,@{$$settings{$id}{strings}{$str_id}}) {
 2612:                                     push(@{$$settings{$id}{strings}{$str_id}},$answer);
 2613:                                 }
 2614:                             }
 2615:                         } elsif ($$settings{$id}{class} eq 'match') {
 2616:                             push(@{$$settings{$id}{$grp}{correctanswer}},$answer_id);
 2617:                         }
 2618:                     }
 2619:                 }
 2620:             }
 2621:         }
 2622:         if ("@state" eq "questestinterop item itemfeedback material mattext") {
 2623:             $$settings{$id}{$fdbk}{text} = $text;
 2624:         }
 2625:         if ("@state" eq "questestinterop item itemfeedback solution solutionmaterial material mattext") {
 2626:             $$settings{$id}{$fdbk}{text} = $text;
 2627:         }
 2628:       }, "dtext"],
 2629:      end_h =>
 2630:      [sub {
 2631:         my ($tagname) = @_;
 2632:         pop @state;
 2633:      }, "tagname"],
 2634:     );
 2635:     $p->unbroken_text(1);
 2636:     $p->parse_file($xmlfile);
 2637:     $p->eof;
 2638: }
 2639: 
 2640: sub parse_webct4_assessment {
 2641:     my ($res,$docroot,$href,$container,$allids) = @_;
 2642:     my $xmlfile = $docroot.'/'.$href; #quiz file
 2643:     my @state = ();
 2644:     my $id; # the current question ID
 2645:     my $p = HTML::Parser->new
 2646:     (
 2647:      xml_mode => 1,
 2648:      start_h =>
 2649:      [sub {
 2650:         my ($tagname, $attr) = @_;
 2651:         push @state, $tagname;
 2652:         my $depth = 0;
 2653:         my @seq = ();
 2654:         if ("@state" eq "questestinterop assessment section itemref") {
 2655:             $id = $attr->{linkrefid}; 
 2656:             push(@{$allids},$id);
 2657:         }
 2658:      }, "tagname, attr"],
 2659:      text_h =>
 2660:      [sub {
 2661:         my ($text) = @_;
 2662:       }, "dtext"],
 2663:      end_h =>
 2664:      [sub {
 2665:         my ($tagname) = @_;
 2666:         pop @state;
 2667:      }, "tagname"],
 2668:     );
 2669:     $p->unbroken_text(1);
 2670:     $p->parse_file($xmlfile);
 2671:     $p->eof;
 2672: }
 2673: 
 2674: sub parse_webct4_quizprops {
 2675:     my ($res,$docroot,$href,$container,$qzparams) = @_;
 2676:     my $xmlfile = $docroot.'/'.$href; #properties file
 2677:     my @state = ();
 2678:     %{$$qzparams{$res}} = ();
 2679:     my $p = HTML::Parser->new
 2680:     (
 2681:      xml_mode => 1,
 2682:      start_h =>
 2683:      [sub {
 2684:         my ($tagname, $attr) = @_;
 2685:         push @state, $tagname;
 2686:      }, "tagname, attr"],
 2687:      text_h =>
 2688:      [sub {
 2689:         my ($text) = @_;
 2690:         if ($state[0] eq 'properties' && $state[1] eq 'delivery')  {
 2691:             if ($state[2] eq 'time_available') {
 2692:                 $$qzparams{$res}{opendate} = $text;
 2693:             } elsif ($state[2] eq 'time_due') {
 2694:                 $$qzparams{$res}{duedate} = $text;
 2695:             } elsif ($state[3] eq 'max_attempt') {
 2696:                 $$qzparams{$res}{tries} = $text;
 2697:             } elsif ($state[3] eq 'post_submission') {
 2698:                 $$qzparams{$res}{posts} = $text;
 2699:             } elsif ($state[3] eq 'method') {
 2700:                 $$qzparams{$res}{method} = $text;
 2701:             }
 2702:         } elsif ($state[0] eq 'properties' && $state[1] eq 'processing')  {
 2703:             if ($state[2] eq 'scores' && $state[3] eq 'score') {
 2704:                 $$qzparams{$res}{weight} = $text;
 2705:             } elsif ($state[2] eq 'selection' && $state[3] eq 'select') {
 2706:                 $$qzparams{$res}{numpick} = $text;
 2707:             }
 2708:         } elsif ($state[0] eq 'properties' && $state[1] eq 'result') {
 2709:             if ($state[2] eq 'display_answer') {
 2710:                 $$qzparams{$res}{showanswer} = $text;
 2711:             }
 2712:         } 
 2713:       }, "dtext"],
 2714:      end_h =>
 2715:      [sub {
 2716:         my ($tagname) = @_;
 2717:         pop @state;
 2718:      }, "tagname"],
 2719:     );
 2720:     $p->unbroken_text(1);
 2721:     $p->parse_file($xmlfile);
 2722:     $p->eof;
 2723: }
 2724: 
 2725: sub parse_webct4_questionDB {
 2726:     my ($docroot,$href,$catinfo,$settings,$allanswers,$allchoices,$allids) = @_;
 2727:     $href =~ s#[^/]+$##;
 2728:     my $xmlfile = $docroot.'/'.$href.'questionDB.xml'; #quizDB file
 2729:     my @state = ();
 2730:     my $category; # the current category ID
 2731:     my $id; # the current question ID
 2732:     my $list; # the current list ID for multiple choice questions
 2733:     my $numid; # the current answer ID for numerical questions
 2734:     my $grp; # the current group ID for matching questions
 2735:     my $label; # the current reponse label for string questions 
 2736:     my $str_id; # the current string ID for string questions
 2737:     my $unitid; # the current unit ID for numerical questions
 2738:     my $answer_id; # the current answer ID
 2739:     my $fdbk; # the current feedback ID
 2740:     my $currvar; # the current variable for numerical problems
 2741:     my $fibtype; # the current fill-in-blank type for numerical or string
 2742:     my $prompt;
 2743:     my $boxnum; 
 2744:     my %setvar = (
 2745:                    varname => '',
 2746:                    action => '',
 2747:                  );
 2748:     my $currtexttype;
 2749:     my $currimagtype;  
 2750:     my $p = HTML::Parser->new
 2751:     (
 2752:      xml_mode => 1,
 2753:      start_h =>
 2754:      [sub {
 2755:         my ($tagname, $attr) = @_;
 2756:         push @state, $tagname;
 2757:         if ("@state" eq "questestinterop section") {
 2758:             $category = $attr->{ident};
 2759:             %{$$catinfo{$category}} = ();
 2760:             $$catinfo{$category}{title} = $attr->{title};   
 2761:         }
 2762:         if ("@state" eq "questestinterop section item") {
 2763:             $id = $attr->{ident};
 2764:             push @{$allids}, $id;
 2765:             push(@{$$catinfo{$category}{contents}},$id);
 2766:             %{$$settings{$id}} = ();
 2767:             @{$$allchoices{$id}} = ();
 2768:             @{$$settings{$id}{grps}} = ();
 2769:             @{$$settings{$id}{lists}} = ();
 2770:             @{$$settings{$id}{feedback}} = ();
 2771:             @{$$settings{$id}{str}} = ();
 2772:             %{$$settings{$id}{strings}} = ();
 2773:             @{$$settings{$id}{numids}} = ();
 2774:             @{$$settings{$id}{boxes}} = ();
 2775:             %{$$allanswers{$id}} = ();
 2776:             $$settings{$id}{title} = $attr->{title};
 2777:             $$settings{$id}{category} = $category;
 2778:             $boxnum = 0;
 2779:         }
 2780: 
 2781:         if ("@state" eq "questestinterop section item presentation material mattext") {
 2782:             $$settings{$id}{texttype} = $attr->{texttype};
 2783:             $currtexttype = $attr->{texttype};
 2784:         }
 2785:         if ("@state" eq "questestinterop section item presentation material matimage") {
 2786:             $$settings{$id}{imagtype} = $attr->{imagtype};
 2787:             $currimagtype = $attr->{imagtype};
 2788:             $$settings{$id}{uri} = $attr->{uri};
 2789:         }
 2790: 
 2791: # Matching
 2792:         if ("@state" eq "questestinterop section item presentation response_grp") {
 2793:             $$settings{$id}{class} = 'match';
 2794:             $grp = $attr->{ident};
 2795:             push(@{$$settings{$id}{grps}},$grp);
 2796:             %{$$settings{$id}{$grp}} = ();
 2797:             @{$$settings{$id}{$grp}{correctanswer}} = ();
 2798:             $$settings{$id}{$grp}{rcardinality} = $attr->{rcardinality};
 2799:         }
 2800:         if ("@state" eq "questestinterop section item presentation response_grp material mattext") { 
 2801:             $$settings{$id}{$grp}{texttype} = $attr->{texttype};
 2802:             $currtexttype = $attr->{texttype};
 2803:         }
 2804:         if ("@state" eq "questestinterop section item presentation response_grp render_choice response_label") {
 2805:             $answer_id = $attr->{ident};
 2806:             push(@{$$allanswers{$id}{$grp}},$answer_id);
 2807:             %{$$settings{$id}{$grp}{$answer_id}} = ();
 2808:             $$settings{$id}{$grp}{$answer_id}{texttype} =  $attr->{texttype};
 2809:             $currtexttype = $attr->{texttype};
 2810:         }
 2811: 
 2812: # Multiple choice
 2813: 
 2814:         if ("@state" eq "questestinterop section item presentation flow material mattext") {
 2815:             $$settings{$id}{texttype} = $attr->{texttype};
 2816:             $currtexttype = $attr->{texttype};
 2817:         }
 2818:         if ("@state" eq "questestinterop section item presentation flow response_lid") {
 2819:             $$settings{$id}{class} = 'multiplechoice';
 2820:             $list = $attr->{ident};
 2821:             push(@{$$settings{$id}{lists}},$list);
 2822:             %{$$settings{$id}{$list}} = ();
 2823:             @{$$allanswers{$id}{$list}} = ();
 2824:             @{$$settings{$id}{$list}{correctanswer}} = ();
 2825:             $$settings{$id}{$list}{rcardinality} = $attr->{rcardinality};
 2826:         }
 2827:         if ("@state" eq "questestinterop section item presentation flow response_lid render_choice") {
 2828:             $$settings{$id}{$list}{randomize} = $attr->{shuffle};
 2829:         }
 2830:         if ("@state" eq "questestinterop section item presentation flow response_lid render_choice flow_label response_label") {
 2831:             $answer_id = $attr->{ident};
 2832:             push(@{$$allanswers{$id}{$list}},$answer_id);
 2833:             %{$$settings{$id}{$list}{$answer_id}} = ();
 2834:         }
 2835:         if ("@state" eq "questestinterop section item presentation flow response_lid render_choice flow_label response_label material mattext") {
 2836:             $$settings{$id}{$list}{$answer_id}{texttype} = $attr->{texttype};
 2837:             $currtexttype = $attr->{texttype};
 2838:         }
 2839: 
 2840: # Numerical
 2841:         if ("@state" eq "questestinterop section item presentation material mat_extension webct:x_webct_v01_dynamicmattext") {
 2842:             $$settings{$id}{texttype} = $attr->{texttype};
 2843:             $currtexttype = $attr->{texttype};
 2844:         }
 2845:         if ("@state" eq "questestinterop section item presentation response_num") {
 2846:             $$settings{$id}{class} = 'numerical';
 2847:             $numid = $attr->{ident};
 2848:             push(@{$$settings{$id}{numids}},$numid);
 2849:             %{$$settings{$id}{$numid}} = ();
 2850:             %{$$settings{$id}{$numid}{vars}} = ();
 2851:             @{$$settings{$id}{$numid}{units}} = ();
 2852:             $$settings{$id}{$numid}{rcardinality} = $attr->{rcardinality};
 2853:         }
 2854:         if ("@state" eq "questestinterop section item presentation response_num material mat_extension webct:x_webct_v01_dynamicdata webct:x_webct_v01_datarange webct:x_webct_v01_minvalue webct:x_webct_v01_variable") {            
 2855:             $currvar = $attr->{name};
 2856:             %{$$settings{$id}{$numid}{vars}{$currvar}} = ();
 2857:         }
 2858:         if ("@state" eq "questestinterop section item presentation response_num material mat_extension webct:x_webct_v01_dynamicdata webct:x_webct_v01_datarange webct:x_webct_v01_maxvalue webct:x_webct_v01_variable") {
 2859:             $currvar = $attr->{name};
 2860:         }
 2861:         if ("@state" eq "questestinterop section item presentation response_num material mat_extension webct:x_webct_v01_dynamicdata webct:x_webct_v01_datarange webct:x_webct_v01_decimalnum webct:x_webct_v01_variable") {
 2862:             $currvar = $attr->{name};
 2863:         }
 2864:         if ("@state" eq "questestinterop section item presentation response_num render_fib") {
 2865:             $fibtype = $attr->{fibtype};
 2866:             $prompt = $attr->{prompt};
 2867:         }
 2868:         if ("@state" eq "questestinterop section item presentation response_num render_fib response_label") {
 2869:             $$settings{$id}{$numid}{label} = $attr->{ident};
 2870:         }
 2871: 
 2872: # String or Numerical
 2873:         if ("@state" eq "questestinterop section item presentation response_str") {
 2874:             $str_id = $attr->{ident};
 2875:             push(@{$$settings{$id}{str}},$str_id);
 2876:             @{$$settings{$id}{boxes}[$boxnum]} = ();
 2877:             $boxnum ++;
 2878:             %{$$settings{$id}{$str_id}} = ();
 2879:             @{$$settings{$id}{$str_id}{labels}} = ();
 2880:             $$settings{$id}{$str_id}{rcardinality} = $attr->{rcardinality};
 2881:         }
 2882: 
 2883:         if ("@state" eq "questestinterop section item presentation response_str render_fib") {
 2884:             $fibtype = $attr->{fibtype};
 2885:             $prompt = $attr->{prompt};
 2886:         }    
 2887:         if ("@state" eq "questestinterop section item presentation response_str render_fib response_label") {
 2888:             $label = $attr->{ident};
 2889:             push(@{$$settings{$id}{$str_id}{labels}},$label);
 2890:             @{$$settings{$id}{strings}{$label}} = ();
 2891:             %{$$settings{$id}{$str_id}{$label}} = ();
 2892:             $$settings{$id}{$str_id}{$label}{fibtype} = $fibtype;
 2893:         }
 2894: 
 2895: # Numerical
 2896:         if ("@state" eq "questestinterop section item resprocessing itemproc_extension webct:x_webct_v01_autocalculate webct:x_webct_v01_anspresentation") {
 2897:             $$settings{$id}{$numid}{digits} = $attr->{digits};
 2898:             $$settings{$id}{$numid}{format} = $attr->{format};
 2899:         }
 2900:         if ("@state" eq "questestinterop section item resprocessing itemproc_extension webct:x_webct_v01_autocalculate webct:x_webct_v01_anstolerance") {
 2901:             $$settings{$id}{$numid}{toltype} = $attr->{type};
 2902:         }
 2903:         if ("@state" eq "questestinterop section item resprocessing itemproc_extension webct:x_webct_v01_autocalculate webct:x_webct_v01_unit") {
 2904:             $unitid = $attr->{ident};
 2905:             %{$$settings{$id}{$numid}{$unitid}} = ();
 2906:             push(@{$$settings{$id}{$numid}{units}},$unitid);
 2907:             $$settings{$id}{$numid}{$unitid}{value} = $attr->{value}; 
 2908:             $$settings{$id}{$numid}{$unitid}{space} = $attr->{space};
 2909:             $$settings{$id}{$numid}{$unitid}{case} = $attr->{case};
 2910:         }
 2911: 
 2912: # Matching 
 2913:         if ("@state" eq "questestinterop section item resprocessing respcondition conditionvar varequal") {
 2914:             if ($$settings{$id}{class} eq 'match') {
 2915:                 unless ($attr->{respident} eq 'WebCT_Incorrect') {
 2916:                     $grp = $attr->{respident};
 2917:                 }
 2918: # String
 2919:             } else {
 2920:                 $label = $attr->{respident};
 2921:                 $$settings{$id}{$label}{case} = $attr->{case};   
 2922:             } 
 2923:         }
 2924:         if ("@state" eq "questestinterop section item resprocessing respcondition setvar") {
 2925:             $setvar{varname} = $attr->{varname};
 2926:             if ($setvar{varname} eq 'WebCT_Correct') {
 2927:                 push(@{$$settings{$id}{$grp}{correctanswer}},$answer_id);
 2928:             }
 2929:         }
 2930: 
 2931: # String
 2932:         if ("@state" eq "questestinterop section item resprocessing") {
 2933:             $boxnum = -1;
 2934:         }
 2935:         if ("@state" eq "questestinterop section item resprocessing respcondition") {            $boxnum ++;
 2936:         }
 2937:         if ("@state" eq "questestinterop section item resprocessing respcondition conditionvar varsubset") {
 2938:             $$settings{$id}{class} = 'string';
 2939:             $label = $attr->{respident};
 2940:         }
 2941:         if ("@state" eq "questestinterop section item resprocessing respcondition conditionvar not") {
 2942:             $$settings{$id}{class} = 'paragraph';
 2943:         }
 2944:  
 2945: 
 2946: # Feedback
 2947:  
 2948:         if ("@state" eq "questestinterop section item respcondition displayfeedback") {
 2949:             $fdbk = $attr->{linkrefid};
 2950:             push(@{$$settings{$id}{feedback}},$fdbk);
 2951:             $$settings{$id}{$fdbk} = ();
 2952:             $$settings{$id}{$fdbk}{feedbacktype} = $attr->{feedbacktype};
 2953:         }
 2954:         if ("@state" eq "questestinterop section item itemfeedback") {
 2955:             $fdbk = $attr->{ident};
 2956:             $$settings{$id}{$fdbk}{view} = $attr->{view};
 2957:         }
 2958:         if ("@state" eq "questestinterop section item itemfeedback material mattext") {
 2959:             $$settings{$id}{$fdbk}{texttype} = $attr->{texttype};
 2960:             $currtexttype = $attr->{texttype};
 2961:         }
 2962:      }, "tagname, attr"],
 2963:      text_h =>
 2964:      [sub {
 2965:         my ($text) = @_;
 2966:         if ($currtexttype eq '/text/html') {
 2967:             $text =~ s#(&lt;img\ssrc=")([^"]+)"&gt;#$1../resfiles/$2#g;
 2968:         }
 2969:         if ("@state" eq "questestinterop section item itemmetadata qmd_itemtype") {
 2970:             $$settings{$id}{itemtype} = $text;
 2971:             if ($text eq 'String') {
 2972:                 $$settings{$id}{class} = 'string';
 2973:             }
 2974:         }
 2975: 
 2976:         if ("@state" eq "questestinterop section item presentation material mattext") {
 2977:             $$settings{$id}{text} = $text;
 2978:         }
 2979: # Matching
 2980:         if ("@state" eq "questestinterop section item presentation response_grp material mattext") {
 2981:             $$settings{$id}{$grp}{text} = $text;
 2982:             unless ($text eq '') {
 2983:                 push(@{$$allchoices{$id}},$grp);
 2984:             }
 2985:         }
 2986:         if ("@state" eq "questestinterop section item presentation response_grp render_choice response_label material mattext") {
 2987:             $$settings{$id}{$grp}{$answer_id}{text} = $text;
 2988:         }
 2989: 
 2990: # Multiple choice
 2991: 
 2992:         if ("@state" eq "questestinterop section item presentation flow material mattext") {
 2993:             $$settings{$id}{text} = $text;
 2994:         }
 2995: 
 2996:         if ("@state" eq "questestinterop section item presentation flow response_lid render_choice flow_label response_label material mattext") {
 2997:             $$settings{$id}{$list}{$answer_id}{text} = $text;
 2998:         }
 2999: 
 3000: # Numerical
 3001:         if ("@state" eq "questestinterop section item presentation material mat_extension webct:x_webct_v01_dynamicmattext") {
 3002:             $$settings{$id}{text} = $text;
 3003:         }
 3004:         if ("@state" eq "questestinterop section item presentation response_num material mat_extension webct:x_webct_v01_dynamicdata webct:x_webct_v01_datarange webct:x_webct_v01_minvalue webct:x_webct_v01_variable") {
 3005:              $$settings{$id}{$numid}{vars}{$currvar}{min} = $text;
 3006:         }
 3007:         if ("@state" eq "questestinterop section item presentation response_num material mat_extension webct:x_webct_v01_dynamicdata webct:x_webct_v01_datarange webct:x_webct_v01_maxvalue webct:x_webct_v01_variable") {
 3008:              $$settings{$id}{$numid}{vars}{$currvar}{max} = $text;
 3009:         }
 3010:         if ("@state" eq "questestinterop section item presentation response_num material mat_extension webct:x_webct_v01_dynamicdata webct:x_webct_v01_datarange webct:x_webct_v01_decimalnum webct:x_webct_v01_variable") {
 3011:              $$settings{$id}{$numid}{vars}{$currvar}{dec} = $text;
 3012:         }
 3013:         if ("@state" eq "questestinterop section item resprocessing itemproc_extension webct:x_webct_v01_autocalculate webct:x_webct_v01_formula") {
 3014:             $$settings{$id}{$numid}{formula} = $text;
 3015:         }
 3016:         if ("@state" eq "questestinterop section item resprocessing respcondition conditionvar varequal") {
 3017:             if ($$settings{$id}{class} eq 'string') {
 3018:                 unless (grep/^$text$/,@{$$settings{$id}{strings}{$label}}) {
 3019:                     push(@{$$settings{$id}{strings}{$label}},$text);
 3020:                 }
 3021:                 unless (grep/^$text$/,@{$$settings{$id}{boxes}[$boxnum]}) {
 3022:                     push(@{$$settings{$id}{boxes}[$boxnum]},$text);
 3023:                 }
 3024:             } else {
 3025:                 $answer_id = $text;
 3026:             }
 3027:         }
 3028:         if ("@state" eq "questestinterop section item resprocessing respcondition conditionvar varsubset") { # String
 3029:             unless (grep/^$text$/,@{$$settings{$id}{strings}{$label}}) {
 3030:                 push(@{$$settings{$id}{strings}{$label}},$text);
 3031:             }
 3032:             unless (grep/^$text$/,@{$$settings{$id}{boxes}[$boxnum]}) {
 3033:                 push(@{$$settings{$id}{boxes}[$boxnum]},$text);
 3034:             }
 3035:         }
 3036:         if ("@state" eq "questestinterop section item resprocessing respcondition setvar") {
 3037:             if ($setvar{varname} eq "answerValue") { # Multiple Choice
 3038:                 if ($text =~ m/^\d+$/) {
 3039:                     if ($text > 0) {
 3040:                         push(@{$$settings{$id}{$list}{correctanswer}},$answer_id);   
 3041:                     }
 3042:                 }
 3043:             }
 3044:         }
 3045:         if ("@state" eq "questestinterop section item resprocessing itemproc_extension webct:x_webct_v01_autocalculate webct:x_webct_v01_anstolerance") {
 3046:             $$settings{$id}{$numid}{tolerance} = $text;
 3047:         }
 3048:         if ("@state" eq "questestinterop section item resprocessing itemproc_extension webct:x_webct_v01_autocalculate webct:x_webct_v01_unit") {
 3049:             $$settings{$id}{$numid}{$unitid}{text} = $text;
 3050:         }
 3051: 
 3052:         if ("@state" eq "questestinterop section item itemfeedback material mattext") {
 3053:             $$settings{$id}{$fdbk}{text} = $text;
 3054:         }
 3055:       }, "dtext"],
 3056:      end_h =>
 3057:      [sub {
 3058:         my ($tagname) = @_;
 3059:         pop @state;
 3060:      }, "tagname"],
 3061:     );
 3062:     $p->unbroken_text(1);
 3063:     $p->parse_file($xmlfile);
 3064:     $p->eof;
 3065:     my $boxcount;
 3066:     foreach my $id (keys %{$settings}) {
 3067:         if ($$settings{$id}{class} eq 'string') {
 3068:             $boxcount = 0;
 3069:             if (@{$$settings{$id}{boxes}} > 1) {
 3070:                 foreach my $str_id (@{$$settings{$id}{str}}) {
 3071:                     foreach my $label (@{$$settings{$id}{$str_id}{labels}}) {
 3072:                         @{$$settings{$id}{strings}{$label}} = @{$$settings{$id}{boxes}[$boxcount]};
 3073:                         $boxcount ++;
 3074:                     }
 3075:                 }
 3076:             }
 3077:         }
 3078:     }
 3079: }
 3080: 
 3081: sub process_assessment {
 3082:     my ($cms,$context,$res,$docroot,$container,$dirname,$destdir,$settings,$total,$udom,$uname,$pagesfiles,$sequencesfiles,$randompicks,$dbparse,$resources,$items,$catinfo,$qzdbsettings,$hrefs,$allquestions) = @_;
 3083:     my @allids = ();
 3084:     my @allquestids = ();
 3085:     my %allanswers = ();
 3086:     my %allchoices = ();
 3087:     my %qzparams = ();
 3088:     my %alldbanswers = ();
 3089:     my %alldbchoices = ();
 3090:     my @alldbquestids = ();
 3091:     my $containerdir;
 3092:     my $newdir;
 3093:     my $randompickflag = 0;
 3094:     my ($cid,$cdom,$cnum);
 3095:     if ($context eq 'DOCS') {
 3096:         $cid = $env{'request.course.id'};
 3097:         ($cdom,$cnum) = split/_/,$cid;
 3098:     }
 3099:     my $destresdir = $destdir;
 3100:     if ($context eq 'CSTR') {
 3101:         $destresdir =~ s|/home/$uname/public_html/|/res/$udom/$uname/|;
 3102:     } elsif ($context eq 'DOCS') {
 3103:         $destresdir =~ s|^/home/httpd/html/userfiles|/uploaded|;
 3104:     }
 3105:     if ($cms eq 'bb5') {
 3106:         &parse_bb5_assessment($res,$docroot,$container,$settings,\%allanswers,\%allchoices,\@allids);
 3107:     } elsif ($cms eq 'bb6') {
 3108:         &parse_bb6_assessment($res,$docroot,$container,$settings,\@allids);
 3109:     } elsif ($cms eq 'webctce4') {
 3110:         unless($$dbparse) {
 3111:             &parse_webct4_questionDB($docroot,$$resources{$res}{file},$catinfo,$qzdbsettings,\%alldbanswers,\%alldbchoices,\@alldbquestids);
 3112:             &build_category_sequences($destdir,$catinfo,$sequencesfiles,$pagesfiles,$destresdir,$newdir,$cms,$total,$randompickflag,$context,$udom,$uname,$dirname,$cid,$cdom,$cnum,$qzdbsettings);
 3113:             &write_webct4_questions($cms,\@alldbquestids,$context,$qzdbsettings,$dirname,\%alldbanswers,\%alldbchoices,$total,$cid,$cdom,$cnum,$destdir,$catinfo);
 3114:             $$dbparse = 1;
 3115:         }
 3116:         &parse_webct4_assessment($res,$docroot,$$resources{$res}{file},$container,\@allids);
 3117:         &parse_webct4_quizprops($res,$docroot,$$hrefs{$$items{$$resources{$res}{revitm}}{properties}}[0],$container,\%qzparams);
 3118:         if (exists($qzparams{$res}{numpick})) { 
 3119:             if ($qzparams{$res}{numpick} < @allids) {
 3120:                 $$randompicks{$$resources{$res}{revitm}} = $qzparams{$res}{numpick};
 3121:                 $randompickflag = 1;
 3122:             }
 3123:         }
 3124:     } elsif ($cms eq 'webctvista4') {
 3125:         unless($$dbparse) {
 3126:             foreach my $res (sort keys %{$allquestions}) {
 3127:                 my $parent = $$allquestions{$res};
 3128:                 &parse_webctvista4_question($res,$docroot,$resources,$hrefs,$settings,\@allquestids,\%allanswers,\%allchoices,$parent,$catinfo);
 3129:             }
 3130:             &build_category_sequences($destdir,$catinfo,$sequencesfiles,$pagesfiles,$destresdir,$newdir,$cms,$total,$randompickflag,$context,$udom,$uname,$dirname,$cid,$cdom,$cnum,$qzdbsettings);
 3131:             $$dbparse = 1;
 3132:         }
 3133:         &parse_webctvista4_assessment($res,$docroot,$hrefs,\@allids,\%qzparams);
 3134:         if ($qzparams{$res}{numpick} < @allids) {
 3135:             $$randompicks{$$resources{$res}{revitm}} = $qzparams{$res}{numpick};
 3136:             $randompickflag = 1;
 3137:         }
 3138:     }
 3139:     my $dirtitle;
 3140:     unless ($cms eq 'webctce4') {
 3141:         $dirtitle = $$settings{'title'};
 3142:         $dirtitle =~ s/\W//g;
 3143:         $dirtitle .= '_'.$res;
 3144:         if (!-e "$destdir/problems") {
 3145:             mkdir("$destdir/problems",0755);
 3146:         }
 3147:         if (!-e "$destdir/problems/$dirtitle") {
 3148:             mkdir("$destdir/problems/$dirtitle",0755);
 3149:         }
 3150:         $newdir = "$destdir/problems/$dirtitle";
 3151:     }
 3152: 
 3153:     if ($cms eq 'webctce4') {
 3154:         &build_problem_container($cms,$dirtitle,$destdir,$container,$res,$total,$sequencesfiles,$pagesfiles,$randompickflag,$context,\@allids,$udom,$uname,$dirname,\$containerdir,$cid,$cdom,$cnum,$catinfo,$qzdbsettings);
 3155:     } else {
 3156:         &build_problem_container($cms,$dirtitle,$destdir,$container,$res,$total,$sequencesfiles,$pagesfiles,$randompickflag,$context,\@allids,$udom,$uname,$dirname,\$containerdir,$cid,$cdom,$cnum,$catinfo,$settings);
 3157:     }
 3158:     if ($cms eq 'bb5') {
 3159:         &write_bb5_questions(\@allids,$containerdir,$context,$settings,$dirname,$destdir,$res,\%allanswers,\%allchoices,$total,$newdir,$cid,$cdom,$cnum,$docroot);
 3160:     } elsif ($cms eq 'bb6') {
 3161:         &write_bb6_questions(\@allids,$containerdir,$context,$settings,$dirname,$destdir,$res,$total,$newdir,$cid,$cdom,$cnum,$docroot);
 3162:     } elsif ($cms eq 'webctvista4') {
 3163:         &write_webct4_questions($cms,\@allquestids,$context,$settings,$dirname,\%allanswers,\%allchoices,$total,$cid,$cdom,$cnum,$destdir,$catinfo);
 3164:     }
 3165: }
 3166: 
 3167: sub build_category_sequences {
 3168:     my ($destdir,$catinfo,$sequencesfiles,$pagesfiles,$destresdir,$newdir,$cms,$total,$randompickflag,$context,$udom,$uname,$dirname,$cid,$cdom,$cnum,$qzdbsettings) = @_;
 3169:     if (!-e "$destdir/sequences") {
 3170:         mkdir("$destdir/sequences",0755);
 3171:     }
 3172:     my $numcats = scalar(keys %{$catinfo});
 3173:     my $curr_id = 0;
 3174:     my $next_id = 1;
 3175:     my $fh;
 3176:     open($fh,">$destdir/sequences/question_database.sequence");
 3177:     push @{$sequencesfiles},'question_database.sequence';
 3178:     foreach my $category (sort keys %{$catinfo}) {
 3179:         my $seqname = $$catinfo{$category}{title}.'_'.$category;
 3180:         $seqname =~ s/\s/_/g;
 3181:         $seqname =~ s/\W//g;
 3182:         push(@{$sequencesfiles},$seqname.'.sequence');
 3183:         my $catsrc = "$destresdir/sequences/$seqname.sequence";
 3184:         if ($curr_id == 0) {
 3185:             print $fh qq|<resource id="1" src="$catsrc" type="start" title="$$catinfo{$category}{title}"></resource>|;
 3186:         }
 3187:         if ($numcats == 1) {
 3188:             print $fh qq|
 3189: <link from="1" to="2" index="1"></link>
 3190: <resource id="2" src="" type="finish">\n|;
 3191:         } else {
 3192:             $curr_id = $next_id;
 3193:             $next_id = $curr_id + 1;
 3194:             $catsrc = "$destresdir/sequences/$seqname.sequence";
 3195:             print $fh qq|
 3196: <link from="$curr_id" to="$next_id" index="$curr_id"></link>
 3197: <resource id="$next_id" src="$catsrc" title="$$catinfo{$category}{title}"|;
 3198:             if ($next_id == $numcats) {
 3199:                 print $fh qq| type="finish"></resource>\n|;
 3200:             } else {
 3201:                 print $fh qq|></resource>\n|;
 3202:             }
 3203:         }
 3204:         print $fh qq|</map>|;
 3205:         if (!-e "$destdir/problems") {
 3206:             mkdir("$destdir/problems",0755);
 3207:         }
 3208:         if (!-e "$destdir/problems/$seqname") {
 3209:             mkdir("$destdir/problems/$seqname",0755);
 3210:         }
 3211:         $$newdir = "$destdir/problems/$seqname";
 3212:         my $dbcontainerdir;
 3213:         &build_problem_container($cms,$seqname,$destdir,'database',$seqname,$total,$sequencesfiles,$pagesfiles,$randompickflag,$context,\@{$$catinfo{$category}{contents}},$udom,$uname,$dirname,\$dbcontainerdir,$cid,$cdom,$cnum,$catinfo,$qzdbsettings);
 3214:     }
 3215:     close($fh);
 3216: }
 3217: 
 3218: sub build_problem_container {
 3219:     my ($cms,$dirtitle,$destdir,$container,$res,$total,$sequencesfiles,$pagesfiles,$randompickflag,$context,$allids,$udom,$uname,$dirname,$containerdir,$cid,$cdom,$cnum,$catinfo,$settings) = @_;
 3220:     my $seqdir = "$destdir/sequences";
 3221:     my $pagedir = "$destdir/pages";
 3222:     my $curr_id = 0;
 3223:     my $next_id = 1;
 3224:     my $fh;
 3225:     if ($container eq 'pool' || $randompickflag || $container eq 'database') {
 3226:         $$containerdir = $seqdir.'/'.$res.'.sequence';
 3227:         if (!-e "$seqdir") {
 3228:             mkdir("$seqdir",0770);
 3229:         }
 3230:         open($fh,">$$containerdir");
 3231:         $$total{seq} ++;
 3232:         push @{$sequencesfiles},$res.'.sequence';
 3233:     } else {
 3234:         $$containerdir = $pagedir.'/'.$res.'.page';
 3235:         if (!-e "$destdir/pages") {
 3236:             mkdir("$destdir/pages",0770);
 3237:         }
 3238:         open($fh,">$$containerdir");
 3239:         $$total{page} ++;
 3240:         push @{$pagesfiles},$res.'.page';
 3241:     }
 3242:     print $fh qq|<map>
 3243: |;
 3244:     my %probtitle = ();
 3245:     my $probsrc = "/res/lib/templates/simpleproblem.problem";
 3246:     if ($context eq 'CSTR') {
 3247:         foreach my $id (@{$allids}) {
 3248:             if (($cms eq 'webctce4') || ($cms eq 'webctvista4')) {
 3249:                 $probtitle{$id} = $$settings{$id}{title};
 3250:             } else {
 3251:                 $probtitle{$id} = $$settings{title};
 3252:             }
 3253:             $probtitle{$id} =~ s/\s/_/g;
 3254:             $probtitle{$id} =~ s/\W//g;
 3255:             $probtitle{$id} .= '_'.$id;
 3256:         }
 3257:         if ($cms eq 'webctce4' && $container ne 'database') {
 3258:             my $catid = $$settings{$$allids[0]}{category};
 3259:             my $probdir = $$catinfo{$catid}{title}.'_'.$catid;
 3260:             $probdir =~ s/\s/_/g;
 3261:             $probdir =~ s/\W//g;
 3262:             $probsrc = "$dirname/problems/$probdir/$probtitle{$$allids[0]}.problem";
 3263:         } else {
 3264:             $probsrc="$dirname/problems/$dirtitle/$probtitle{$$allids[0]}.problem";
 3265:         }
 3266:     }
 3267:     print $fh qq|<resource id="1" src="$probsrc" type="start" title="question_0001"></resource>|;
 3268:     if (@{$allids} == 1) {
 3269:         print $fh qq|
 3270: <link from="1" to="2" index="1"></link>
 3271: <resource id="2" src="" type="finish">\n|;
 3272:     } else {
 3273:         for (my $j=1; $j<@{$allids}; $j++) {
 3274:             my $qntitle = $j+1;
 3275:             while (length($qntitle) <4) {
 3276:                 $qntitle = '0'.$qntitle;
 3277:             }
 3278:             $curr_id = $j;
 3279:             $next_id = $curr_id + 1;
 3280:             if ($context eq 'CSTR') {
 3281:                 if ($cms eq 'webctce4' && $container ne 'database') {
 3282:                     my $catid = $$settings{$$allids[$j]}{category};
 3283:                     my $probdir = $$catinfo{$catid}{title}.'_'.$catid;
 3284:                     $probdir =~ s/\s/_/g;
 3285:                     $probdir =~ s/\W//g;
 3286:                     $probsrc = "$dirname/problems/$probdir/$probtitle{$$allids[$j]}.problem";
 3287:                 } else {
 3288:                     $probsrc = "$dirname/problems/$dirtitle/$probtitle{$$allids[$j]}.problem";
 3289:                 }
 3290:             }
 3291:             print $fh qq|
 3292: <link from="$curr_id" to="$next_id" index="$curr_id"></link>
 3293: <resource id="$next_id" src="$probsrc" title="question_$qntitle"|;
 3294:             if ($next_id == @{$allids}) {
 3295:                 print $fh qq| type="finish"></resource>\n|;
 3296:             } else {
 3297:                 print $fh qq|></resource>|;
 3298:             }
 3299:         }
 3300:     }
 3301:     print $fh qq|</map>|;
 3302:     close($fh);
 3303: }
 3304: 
 3305: sub write_bb5_questions {
 3306:     my ($allids,$containerdir,$context,$settings,$dirname,$destdir,$res,$allanswers,$allchoices,$total,$newdir,$cid,$cdom,$cnum,$docroot) = @_;
 3307:     my $qnum = 0;
 3308:     my $pathstart;
 3309:     if ($context eq 'CSTR') {
 3310:         $pathstart = '../..';
 3311:     } else {
 3312:         $pathstart = $dirname;
 3313:     }
 3314:     foreach my $id (@{$allids}) {
 3315:         if ($$settings{$id}{ishtml} eq 'true') {
 3316:             $$settings{$id}{text} = &HTML::Entities::decode($$settings{$id}{text});
 3317:         }
 3318:         if ($$settings{$id}{text} =~ m#<img src=['"]?(https?://[^\s]+/)([^/\s\'"]+)['"]?[^>]*>#) {
 3319:             if (&retrieve_image($context,$res,$dirname,$cdom,$cnum,$docroot,$destdir,$1,$2) eq 'ok') {
 3320:                 $$settings{$id}{text} =~ s#(<img src=['"]?)(https?://[^\s]+/)([^/\s'"]+)(['"]?[^>]*>)#$1$pathstart/resfiles/$res/webimages/$3$4#g;
 3321:             }
 3322:         }
 3323:         $$settings{$id}{text} =~ s#(<img src=[^>]+)/*>#$1 />#gi;
 3324:         $$settings{$id}{text} =~ s#<br>#<br />#g;
 3325:         $qnum ++;
 3326:         my $output;
 3327:         my $permcontainer = $containerdir;
 3328:         $permcontainer =~ s#/home/httpd/html/userfiles#uploaded#;
 3329:         my $symb = $cid.'.'.$permcontainer.'___'.$qnum.'___lib/templates/simpleproblem.problem.0.';
 3330:         my %resourcedata = ();
 3331:         for (my $i=0; $i<10; $i++) {
 3332:             my $iter = $i+1;
 3333:             $resourcedata{$symb.'text'.$iter} = "";
 3334:             $resourcedata{$symb.'value'.$iter} = "unused";
 3335:             $resourcedata{$symb.'position'.$iter} = "random";
 3336:         }
 3337:         $resourcedata{$symb.'randomize'} = 'yes';
 3338:         $resourcedata{$symb.'maxfoils'} = 10;
 3339:         if ($context eq 'CSTR') {
 3340:             $output = qq|<problem>
 3341: |;
 3342:         }
 3343:         $$total{prob} ++;
 3344:         if ($$settings{$id}{class} eq "QUESTION_ESSAY") {
 3345:             if ($context eq 'CSTR') {
 3346:                 $output .= qq|<startouttext />$$settings{$id}{text}<endouttext />
 3347:  <essayresponse>
 3348:  <textfield></textfield>
 3349:  </essayresponse>
 3350:  <postanswerdate>
 3351:   $$settings{$id}{feedbackcorr} 
 3352:  </postanswerdate>
 3353: |;
 3354:              } else {
 3355: 		 $resourcedata{$symb.'questiontext'} = $$settings{$id}{text};
 3356:                  $resourcedata{$symb.'hiddenparts'} = '!essay';
 3357:                  $resourcedata{$symb.'questiontype'} = 'essay';
 3358:              }
 3359:         } else {
 3360:             if ($context eq 'CSTR') {
 3361:                 $output .= qq|<startouttext />$$settings{$id}{text}\n|;
 3362:             } else {
 3363:                 $resourcedata{$symb.'questiontext'} = $$settings{$id}{text};
 3364:             }
 3365:             my ($image,$imglink,$url);
 3366:             if ( defined($$settings{$id}{image}) ) {
 3367:                 if ( $$settings{$id}{style} eq 'embed' ) {
 3368:                     $image = qq|<br /><img src="$pathstart/resfiles/$res/$$settings{$id}{image}" /><br />|;
 3369:                 } else {
 3370:                     $imglink = qq|<br /><a href="$pathstart/resfiles/$res/$$settings{$id}{image}">Link to file</a><br />|;
 3371:                 }
 3372:             }
 3373:             if ( defined($$settings{$id}{url}) ) {
 3374:                 $url = qq|<br /><a href="$$settings{$id}{url}">$$settings{$id}{name}</a><br />|;
 3375:             }
 3376:             if ($context eq 'CSTR') {
 3377:                 $output .= $image.$imglink.$url.'
 3378: <endouttext />';
 3379:             } else {
 3380:                 $resourcedata{$symb.'questiontext'} .= $image.$imglink.$url;
 3381:             }
 3382:             if ($$settings{$id}{class} eq 'QUESTION_MULTIPLECHOICE') {
 3383:                 my $numfoils = @{$$allanswers{$id}};
 3384:                 if ($context eq 'CSTR') {
 3385:                     $output .= qq|
 3386:  <radiobuttonresponse max="$numfoils" randomize="yes">
 3387:   <foilgroup>
 3388: |;
 3389:                 } else {
 3390:                     $resourcedata{$symb.'hiddenparts'} = '!radio';
 3391:                     $resourcedata{$symb.'questiontype'} = 'radio';
 3392:                     $resourcedata{$symb.'maxfoils'} = $numfoils;
 3393:                 }
 3394:                 for (my $k=0; $k<@{$$allanswers{$id}}; $k++) {
 3395:                     my $iter = $k+1;
 3396:                     $output .= "   <foil name=\"foil".$k."\" value=\"";
 3397:                     if (grep/^$$allanswers{$id}[$k]$/,@{$$settings{$id}{correctanswer}}) {
 3398:                         $output .= "true\" location=\"";
 3399:                         $resourcedata{$symb.'value'.$iter} = "true";
 3400:                     } else {
 3401:                         $output .= "false\" location=\"";
 3402:                         $resourcedata{$symb.'value'.$iter} = "false";
 3403:                     }
 3404:                     if (lc ($$allanswers{$id}[$k]) =~ m/^\s?([Aa]ll)|([Nn]one)\s(of\s)?the\sabove\.?/) {
 3405:                         $output .= "bottom\"";
 3406:                         $resourcedata{$symb.'position'.$iter} = "bottom";
 3407:                     } else {
 3408:                         $output .= "random\"";
 3409:                     }
 3410:                     $output .= "\><startouttext />".$$settings{$id}{$$allanswers{$id}[$k]}{text};
 3411:                     $resourcedata{$symb.'text'.$iter} = $$settings{$id}{$$allanswers{$id}[$k]}{text};
 3412:                     my ($ans_image,$ans_link);
 3413:                     if ( defined($$settings{$id}{$$allanswers{$id}[$k]}{image}) ) {
 3414:                         if ( $$settings{$id}{$$allanswers{$id}[$k]}{style} eq 'embed' ) {
 3415:                             $ans_image .= qq|<br /><img src="$pathstart/resfiles/$res/$$settings{$id}{$$allanswers{$id}[$k]}{image}" /><br />|;
 3416:                         } else {
 3417:                             $ans_link .= qq|<br /><a href="$pathstart/resfiles/$res/$$settings{$id}{$$allanswers{$id}[$k]}{image}" />Link to file</a><br/>|;
 3418:                         }
 3419:                     }
 3420:                     $output .= $ans_image.$ans_link.'<endouttext /></foil>'."\n";
 3421:                     $resourcedata{$symb.'text'.$iter} .= $ans_image.$ans_link;
 3422:                 }
 3423:                 if ($context eq 'CSTR') {
 3424:                     chomp($output);
 3425:                     $output .= qq|
 3426:   </foilgroup>
 3427:  </radiobuttonresponse>
 3428: |;
 3429:                 }
 3430:             } elsif ($$settings{$id}{class} eq 'QUESTION_TRUEFALSE') {
 3431:                 my $numfoils = @{$$allanswers{$id}};
 3432:                 if ($context eq 'CSTR') {
 3433:                     $output .= qq|
 3434:    <radiobuttonresponse max="$numfoils" randomize="yes">
 3435:     <foilgroup>
 3436: |;
 3437:                 } else {
 3438:                     $resourcedata{$symb.'maxfoils'} = $numfoils;
 3439:                     $resourcedata{$symb.'hiddenparts'} = '!radio';
 3440:                     $resourcedata{$symb.'questiontype'} = 'radio';
 3441:                 }
 3442:                 for (my $k=0; $k<@{$$allanswers{$id}}; $k++) {
 3443:                     my $iter = $k+1;
 3444:                     $output .= "   <foil name=\"foil".$k."\" value=\"";
 3445:                     if (grep/^$$allanswers{$id}[$k]$/,@{$$settings{$id}{correctanswer}}) {
 3446:                         $output .= "true\" location=\"random\"";
 3447:                         $resourcedata{$symb.'value'.$iter} = "true";
 3448:                     } else {
 3449:                         $output .= "false\" location=\"random\"";
 3450:                         $resourcedata{$symb.'value'.$iter} = "false";
 3451:                     }
 3452:                     $output .= "\><startouttext />".$$settings{$id}{$$allanswers{$id}[$k]}{text}."<endouttext /></foil>\n";
 3453:                     $resourcedata{$symb.'text'.$iter} = $$settings{$id}{$$allanswers{$id}[$k]}{text};
 3454:                 }
 3455:                 if ($context eq 'CSTR') {
 3456:                     chomp($output);
 3457:                     $output .= qq|
 3458:     </foilgroup>
 3459:    </radiobuttonresponse>
 3460: |;
 3461:                 }
 3462:             } elsif ($$settings{$id}{class} eq 'QUESTION_MULTIPLEANSWER') {
 3463:                 my $numfoils = @{$$allanswers{$id}};
 3464:                 if ($context eq 'CSTR') {
 3465:                     $output .= qq|
 3466:    <optionresponse max="$numfoils" randomize="yes">
 3467:     <foilgroup options="('True','False')">
 3468: |;
 3469:                 } else {
 3470:                     $resourcedata{$symb.'newopt'} = '';
 3471:                     $resourcedata{$symb.'delopt'} = '';
 3472:                     $resourcedata{$symb.'options'} = "('True','False')";
 3473:                     $resourcedata{$symb.'hiddenparts'} = '!option';
 3474:                     $resourcedata{$symb.'questiontype'} = 'option';
 3475:                     $resourcedata{$symb.'maxfoils'} = $numfoils;
 3476:                 }
 3477:                 for (my $k=0; $k<@{$$allanswers{$id}}; $k++) {
 3478:                     my $iter = $k+1;
 3479:                     $output .= "   <foil name=\"foil".$k."\" value=\"";
 3480:                     if (grep/^$$allanswers{$id}[$k]$/,@{$$settings{$id}{correctanswer}}) {
 3481:                         $output .= "True\"";
 3482:                         $resourcedata{$symb.'value'.$iter} = "True";
 3483:                     } else {
 3484:                         $output .= "False\"";
 3485:                         $resourcedata{$symb.'value'.$iter} = "False";
 3486:                     }
 3487:                     $output .= "\><startouttext />".$$settings{$id}{$$allanswers{$id}[$k]}{text}."<endouttext /></foil>\n";
 3488:                     $resourcedata{$symb.'text'.$iter} = $$settings{$id}{$$allanswers{$id}[$k]}{text};
 3489:                 }
 3490:                 if ($context eq 'CSTR') {  
 3491:                     chomp($output);
 3492:                     $output .= qq|
 3493:     </foilgroup>
 3494:    </optionresponse>
 3495: |;
 3496:                 }
 3497:             } elsif ($$settings{$id}{class} eq 'QUESTION_ORDER') {
 3498:                 my $numfoils = @{$$allanswers{$id}};
 3499:                 my @allorder = ();
 3500:                 if ($context eq 'CSTR') {
 3501:                     $output .= qq|
 3502:    <rankresponse max="$numfoils" randomize="yes">
 3503:     <foilgroup>
 3504: |;
 3505:                 } else {
 3506:                     $resourcedata{$symb.'newopt'} = '';
 3507:                     $resourcedata{$symb.'delopt'} = '';
 3508:                     $resourcedata{$symb.'hiddenparts'} = '!option';
 3509:                     $resourcedata{$symb.'questiontype'} = 'option';
 3510:                     $resourcedata{$symb.'maxfoils'} = $numfoils;
 3511:                 }
 3512:                 for (my $k=0; $k<@{$$allanswers{$id}}; $k++) {
 3513:                     if ($context eq 'CSTR') {
 3514:                         $output .= "   <foil location=\"random\" name=\"foil".$k."\" value=\"".$$settings{$id}{$$allanswers{$id}[$k]}{order}."\"><startouttext />".$$settings{$id}{$$allanswers{$id}[$k]}{text}."<endouttext /></foil>\n";
 3515:                     } else {
 3516:                         my $iter = $k+1;
 3517:                         $resourcedata{$symb.'text'.$iter} = $$settings{$id}{$$allanswers{$id}[$k]}{text};
 3518:                         if (!grep/^$$settings{$id}{$$allanswers{$id}[$k]}{order}$/,@allorder) {
 3519:                             push @allorder, $$settings{$id}{$$allanswers{$id}[$k]}{order};
 3520:                         }
 3521:                     }
 3522:                 }
 3523:                 if ($context eq 'CSTR') {
 3524:                     chomp($output);
 3525:                     $output .= qq|
 3526:     </foilgroup>
 3527:    </rankresponse>
 3528: |;
 3529:                 } else {
 3530:                     @allorder = sort {$a <=> $b} @allorder;
 3531:                     $resourcedata{$symb.'options'} = "('".join("','",@allorder)."')";
 3532:                 }
 3533:             } elsif ($$settings{$id}{class} eq 'QUESTION_FILLINBLANK') {
 3534:                 my $numerical = 1;
 3535:                 if ($context eq 'DOCS') {
 3536:                     $numerical = 0;
 3537:                 } else {
 3538:                     for (my $k=0; $k<@{$$allanswers{$id}}; $k++) {
 3539:                         if ($$settings{$id}{$$allanswers{$id}[$k]}{text} =~ m/([^\d\.]|\.\.)/) {
 3540:                             $numerical = 0;
 3541:                         }
 3542:                     }
 3543:                 }
 3544:                 if ($numerical) {
 3545:                     my $numans;
 3546:                     my $tol;
 3547:                     if (@{$$allanswers{$id}} == 1) {
 3548:                         $tol = 5;
 3549:                         $numans = $$settings{$id}{$$allanswers{$id}[0]}{text};
 3550:                     } else {
 3551:                         my $min = $$settings{$id}{$$allanswers{$id}[0]}{text};
 3552:                         my $max = $$settings{$id}{$$allanswers{$id}[0]}{text};
 3553:                         for (my $k=1; $k<@{$$allanswers{$id}}; $k++) {
 3554:                             if ($$settings{$id}{$$allanswers{$id}[$k]}{text} <= $min) {
 3555:                                 $min = $$settings{$id}{$$allanswers{$id}[$k]}{text};
 3556:                             }
 3557:                             if ($$settings{$id}{$$allanswers{$id}[$k]}{text} >= $max) {
 3558:                                 $max = $$settings{$id}{$$allanswers{$id}[$k]}{text};
 3559:                             }
 3560:                         }
 3561:                         $numans = ($max + $min)/2;
 3562:                         $tol = 100*($max - $min)/($numans*2);
 3563:                     }
 3564:                     if ($context eq 'CSTR') {
 3565:                         $output .= qq|
 3566: <numericalresponse answer="$numans">
 3567:         <responseparam type="tolerance" default="$tol%" name="tol" description="Numerical Tolerance" />
 3568:         <responseparam name="sig" type="int_range,0-16" default="0,15" description="Significant Figures"
 3569: />
 3570:         <textline />
 3571: </numericalresponse>
 3572: |;
 3573:                     }
 3574:                 } else {
 3575:                     if ($context eq 'DOCS') {
 3576:                         $resourcedata{$symb.'hiddenparts'} = '!string';
 3577:                         $resourcedata{$symb.'questiontype'} = 'string';
 3578:                         $resourcedata{$symb.'maxfoils'} = @{$$allanswers{$id}};
 3579:                         $resourcedata{$symb.'hiddenparts'} = '!string';
 3580:                         $resourcedata{$symb.'stringtype'} = 'ci';
 3581:                         $resourcedata{$symb.'stringanswer'} = $$settings{$id}{$$allanswers{$id}[0]}{text};
 3582:                     } else {
 3583:                         if (@{$$allanswers{$id}} == 1) {
 3584:                             $output .= qq|
 3585: <stringresponse answer="$$settings{$id}{$$allanswers{$id}[0]}{text}" type="ci">
 3586: <textline>
 3587: </textline>
 3588: </stringresponse>
 3589: |;
 3590:                         } else {
 3591:                             my @answertext = ();
 3592:                             for (my $k=0; $k<@{$$allanswers{$id}}; $k++) {
 3593:                                 $$settings{$id}{$$allanswers{$id}[$k]}{text} =~ s/\|/\|/g;
 3594:                                 push @answertext, $$settings{$id}{$$allanswers{$id}[$k]}{text};
 3595:                             }
 3596:                             my $regexpans = join('|',@answertext);
 3597:                             $regexpans = '/^('.$regexpans.')\b/';
 3598:                             $output .= qq|
 3599: <stringresponse answer="$regexpans" type="re">
 3600: <textline>
 3601: </textline>
 3602: </stringresponse>
 3603: |;
 3604:                         }
 3605:                     } 
 3606:                 }
 3607:             } elsif ($$settings{$id}{class} eq "QUESTION_MATCH") {
 3608:                 my @allmatchers = ();
 3609:                 my %matchtext = ();
 3610:                 if ($context eq 'CSTR') {
 3611:                     $output .= qq|
 3612: <matchresponse max="10" randomize="yes">
 3613:     <foilgroup>
 3614:         <itemgroup>
 3615: |;
 3616:                 } else {
 3617:                     $resourcedata{$symb.'newopt'} = '';
 3618:                     $resourcedata{$symb.'delopt'} = '';
 3619:                     $resourcedata{$symb.'hiddenparts'} = '!option';
 3620:                     $resourcedata{$symb.'questiontype'} = 'option';
 3621:                     $resourcedata{$symb.'maxfoils'} =  @{$$allanswers{$id}};
 3622:                 }
 3623:                 for (my $k=0; $k<@{$$allchoices{$id}}; $k++) {
 3624:                     if ($context eq 'CSTR') {
 3625:                         $output .= qq|
 3626: <item name="$$allchoices{$id}[$k]">
 3627: <startouttext />$$settings{$id}{$$allchoices{$id}[$k]}{text}<endouttext />
 3628: </item>
 3629:                     |;
 3630:                     } else {
 3631:                         if (!grep/^$$settings{$id}{$$allchoices{$id}[$k]}{text}$/,@allmatchers) {
 3632:                             push @allmatchers, $$settings{$id}{$$allchoices{$id}[$k]}{text};
 3633:                             $matchtext{$$allchoices{$id}[$k]} = $$settings{$id}{$$allchoices{$id}[$k]}{text};
 3634:                         }
 3635:                     }
 3636:                 }
 3637:                 if ($context eq 'CSTR') {
 3638:                     $output .= qq|
 3639:         </itemgroup>
 3640: |;
 3641:                 }
 3642:                 for (my $k=0; $k<@{$$allanswers{$id}}; $k++) {
 3643:                     if ($context eq 'CSTR') {
 3644:                         $output .= qq|
 3645:         <foil location="random" value="$$settings{$id}{$$allanswers{$id}[$k]}{choice_id}" name="$$allanswers{$id}[$k]">
 3646:          <startouttext />$$settings{$id}{$$allanswers{$id}[$k]}{text}<endouttext />
 3647:         </foil>
 3648: |;
 3649:                     } else {
 3650:                         my $iter = $k+1;
 3651:                         $resourcedata{$symb.'value'.$iter} = $matchtext{$$settings{$id}{$$allanswers{$id}[$k]}{choice_id}};
 3652:                         $resourcedata{$symb.'text'.$iter} = $$settings{$id}{$$allanswers{$id}[$k]}{text};
 3653:                     }
 3654:                 }
 3655:                 if ($context eq 'CSTR') {
 3656:                     $output .= qq|
 3657:     </foilgroup>
 3658: </matchresponse>
 3659: |;
 3660:                 } else {
 3661:                     $resourcedata{$symb.'options'} = "('".join("','",@allmatchers)."')";
 3662:                 }
 3663:             }
 3664:         }
 3665:         if ($context eq 'CSTR') {
 3666:             $output .= qq|</problem>
 3667: |;
 3668:             my $title = $$settings{title};
 3669:             $title =~ s/\s/_/g;
 3670:             $title =~ s/\W//g;
 3671:             $title .= '_'.$id;
 3672:             open(PROB,">:utf8", "$newdir/$title.problem");
 3673:             print PROB $output;
 3674:             close PROB;
 3675:         } else {
 3676: # put %resourcedata;
 3677:             my $reply=&Apache::lonnet::cput
 3678:                 ('resourcedata',\%resourcedata,$cdom,$cnum);
 3679:         }
 3680:     }
 3681: }
 3682: 
 3683: sub write_webct4_questions {
 3684:     my ($cms,$alldbquestids,$context,$settings,$dirname,$allanswers,$allchoices,$total,$cid,$cdom,$cnum,$destdir,$catinfo) = @_;
 3685:     my $qnum = 0;
 3686:     foreach my $id (@{$alldbquestids}) {
 3687:         $qnum ++;
 3688:         my $output;
 3689:         my $permcontainer = $destdir.'/sequences/'.$id.'.sequence';
 3690:         my $allfeedback;
 3691:         my $questionimage;
 3692:         foreach my $fdbk (@{$$settings{$id}{feedback}}) {
 3693:             my $feedback =  $$settings{$id}{$fdbk}{text};
 3694:             if ($$settings{$id}{$fdbk}{texttype} eq 'text/html') {
 3695:                 $feedback = &HTML::Entities::decode($feedback);
 3696:             }
 3697:             $allfeedback .= $feedback;
 3698:         }
 3699:         if ($$settings{$id}{texttype} eq 'text/html') {
 3700:             if ($$settings{$id}{text}) {
 3701:                 $$settings{$id}{text} = &text_cleanup($$settings{$id}{text});
 3702:             }
 3703:         } 
 3704:         if ($$settings{$id}{class} eq 'numerical') {
 3705:             foreach my $numid (@{$$settings{$id}{numids}}) {
 3706:                 foreach my $var (keys %{$$settings{$id}{$numid}{vars}}) {
 3707:                     if ($cms eq 'webct4ce') {
 3708:                         $$settings{$id}{text} =~ s/{($var)}/\$$1 /g;
 3709:                     } elsif ($cms eq 'webctvista4') {
 3710:                         $$settings{$id}{text} =~ s/\[($var)\]/\$$1 /g;
 3711:                     }
 3712:                 }
 3713:             }
 3714:         }
 3715:         $permcontainer =~ s#/home/httpd/html/userfiles#uploaded#;
 3716:         my $symb = $cid.'.'.$permcontainer.'___'.$qnum.'___lib/templates/simpleproblem.problem.0.';
 3717:         my %resourcedata = ();
 3718:         for (my $i=0; $i<10; $i++) {
 3719:             my $iter = $i+1;
 3720:             $resourcedata{$symb.'text'.$iter} = "";
 3721:             $resourcedata{$symb.'value'.$iter} = "unused";
 3722:             $resourcedata{$symb.'position'.$iter} = "random";
 3723:         }
 3724:         $resourcedata{$symb.'randomize'} = 'yes';
 3725:         $resourcedata{$symb.'maxfoils'} = 10;
 3726:         if ($context eq 'CSTR') {
 3727:             unless ($$settings{$id}{class} eq 'numerical') {
 3728:                 $output = qq|<problem>
 3729: |;
 3730:             }
 3731:         }
 3732:         $$total{prob} ++;
 3733:         if (exists($$settings{$id}{uri})) {
 3734:             if ($cms eq 'webct4ce') {
 3735:                 if ($$settings{$id}{imagtype} =~ /^image\//) {
 3736:                     $questionimage = '<p><img src="../../resfiles/'.$$settings{$id}{uri}.'" /></p>'."\n";
 3737:                 } else {
 3738:                     $questionimage = '<p><img src="../../resfiles/'.$$settings{$id}{uri}.'" /></p>'."\n";
 3739:                 }
 3740:             } elsif ($cms eq 'webctvista4') {
 3741:                 if ($$settings{$id}{uri} =~ /(gif|jpg|png)$/i) {
 3742:                     $questionimage = '<p><img src="../../resfiles/'.$$settings{$id}{uri}.'" /></p>'."\n";
 3743:                     $questionimage =~ s#(//+)#/#g;
 3744:                 } else {
 3745:                     $questionimage = '<a href="'.$$settings{$id}{uri}.'" target="exturi" >'.$$settings{$id}{uri}.'</a>';
 3746:                 }
 3747:             }
 3748:         }
 3749:         if ($$settings{$id}{class} eq "paragraph") {
 3750:             my $pre_fill_answer = $$settings{$id}{PARA}{PARA}{PRE_FILL_ANSWER};
 3751:             if ($context eq 'CSTR') {
 3752:                 $output .= qq|<startouttext /><p>$$settings{$id}{text}</p>$questionimage<endouttext />
 3753:  <essayresponse>
 3754:  <textfield>$pre_fill_answer</textfield>
 3755:  </essayresponse>
 3756:  <postanswerdate>
 3757:   $allfeedback
 3758:  </postanswerdate>
 3759: |;
 3760:             } else {
 3761:                 $resourcedata{$symb.'questiontext'} = '<p>'.$$settings{$id}{text}.'</p>'.$questionimage;
 3762:                 $resourcedata{$symb.'hiddenparts'} = '!essay';
 3763:                 $resourcedata{$symb.'questiontype'} = 'essay';
 3764:             }
 3765:         } elsif ($$settings{$id}{class} eq 'jumbled') {
 3766:             if ($context eq 'CSTR') {
 3767:                 my %foiloptions = ();
 3768:                 foreach my $list (@{$$settings{$id}{lists}}) {
 3769:                     @{$foiloptions{$list}} = ();
 3770:                     my $numalternates = @{$$settings{$id}{$list}{jumbled}} - 1;
 3771:                     my $loopstop = 2; #Hard coded for now, so only one permutation of answers is correct; <or> functionality is needed to support the case where multiple permutations are correct.  
 3772:                     for (my $i=1; $i<$loopstop; $i++) {  
 3773:                         $foiloptions{$list}[$i]  = '(';
 3774:                         for (my $j=@{$$settings{$id}{$list}{jumbled}[$i]}-1; $j>0; $j--) {
 3775:                             my $jumble_item = $$settings{$id}{$list}{jumbled}[$i][$j];
 3776:                             $foiloptions{$list}[$i] .= "'".$$settings{$id}{$list}{$jumble_item}{text}."',";
 3777:                         }
 3778:                         $foiloptions{$list}[$i] =~ s/,$//;
 3779:                         $foiloptions{$list}[$i] .= ')';
 3780:                         my $jnum = 0; 
 3781:                         for (my $k=0; $k<@{$$settings{$id}{$list}{jumbledtype}}; $k++) {
 3782:                             if ($$settings{$id}{$list}{jumbledtype}[$k] eq 'No') {
 3783:                                 $output .= qq|
 3784: <startouttext />
 3785: $$settings{$id}{$list}{jumbledtext}[$k]
 3786: <endouttext />|;
 3787:                             } elsif ($$settings{$id}{$list}{jumbledtype}[$k] eq 'Yes') {
 3788:                                 $jnum ++;
 3789:                                 my $jumble_item = $$settings{$id}{$list}{jumbled}[$i][$jnum];
 3790:                                 $output .= qq|
 3791: <optionresponse max="1" randomize="yes" TeXlayout="horizontal">
 3792:     <foilgroup options="$foiloptions{$list}[$i]">
 3793:         <foil location="random" value="$$settings{$id}{$list}{$jumble_item}{text}" name="$jumble_item"></foil>
 3794:     </foilgroup>
 3795: </optionresponse>
 3796: |;
 3797:                             }
 3798:                         }
 3799:                     }
 3800:                     if ($numalternates > 0) { # for now alternates are stored in an instructorcomment.  In the future these alternates could be moved into the main response area once <or> functionality is available.
 3801:                         $output .= '<instructorcomment>(Not shown to students) '."\n".'The following alternates were imported from the corresponding WebCT Vista 4 jumbled sentence question, but are not included in the LON-CAPA version, because this style of question does not currently support multiple correct solutions.'."\n";
 3802:                         for (my $i=2; $i<@{$$settings{$id}{$list}{jumbled}}; $i++) {
 3803:                             my $altid = $i-1;
 3804:                             my $jnum = 0;
 3805:                             $output .= $altid.'. '; 
 3806:                             for (my $k=0; $k<@{$$settings{$id}{$list}{jumbledtype}}; $k++) {
 3807:                                 if ($$settings{$id}{$list}{jumbledtype}[$k] eq 'No') {
 3808:                                     $output .= "$$settings{$id}{$list}{jumbledtext}[$k]" ;
 3809:                                 } elsif ($$settings{$id}{$list}{jumbledtype}[$k] eq 'Yes') {
 3810:                                     $jnum ++;
 3811:                                     my $jumble_item = $$settings{$id}{$list}{jumbled}[$i][$jnum];
 3812:                                     $output .= '['.$$settings{$id}{$list}{$jumble_item}{text}.']';
 3813:                                 }
 3814:                             }
 3815:                             $output .= " \n";
 3816:                         }
 3817:                         $output .= '</instructorcomment>';
 3818:                     }  
 3819:                 }
 3820:             }
 3821:         } else {
 3822:             if ($context eq 'CSTR') {
 3823:                 $output .= qq|<startouttext /><p>$$settings{$id}{text}</p>$questionimage<endouttext />\n|;
 3824:             } else {
 3825:                 $resourcedata{$symb.'questiontext'} = '<p>'.$$settings{$id}{text}.'</p>'.$questionimage;
 3826:             }
 3827:             if (($$settings{$id}{class} eq 'multiplechoice') || 
 3828:                 ($$settings{$id}{class} eq 'combination')) {
 3829:                 foreach my $list (@{$$settings{$id}{lists}}) {
 3830:                     my $numfoils = @{$$allanswers{$id}{$list}};
 3831:                     if ($$settings{$id}{$list}{rcardinality} eq 'Single') {
 3832:                         if ($context eq 'CSTR') {
 3833:                             $output .= qq|
 3834:  <radiobuttonresponse max="$numfoils" randomize="$$settings{$id}{$list}{randomize}">
 3835:   <foilgroup>
 3836: |;
 3837:                         } else {
 3838:                             $resourcedata{$symb.'hiddenparts'} = '!radio';
 3839:                             $resourcedata{$symb.'questiontype'} = 'radio';
 3840:                             $resourcedata{$symb.'maxfoils'} = $numfoils;
 3841:                         }
 3842:                         for (my $k=0; $k<@{$$allanswers{$id}{$list}}; $k++) {
 3843:                             my $iter = $k+1;
 3844:                             $output .= "   <foil name=\"foil".$k."\" value=\"";
 3845:                             if (grep/^$$allanswers{$id}{$list}[$k]$/,@{$$settings{$id}{$list}{correctanswer}}) {
 3846:                                 $output .= "true\" location=\"";
 3847:                                 $resourcedata{$symb.'value'.$iter} = "true";
 3848:                             } else {
 3849:                                 $output .= "false\" location=\"";
 3850:                                 $resourcedata{$symb.'value'.$iter} = "false";
 3851:                             }
 3852:                             if (lc ($$allanswers{$id}{$list}[$k]) =~ m/^\s?([Aa]ll)|([Nn]one)\s(of\s)?the\sabove\.?/) {
 3853:                                 $output .= "bottom\"";
 3854:                                 $resourcedata{$symb.'position'.$iter} = "bottom";
 3855:                             } else {
 3856:                                 $output .= "random\"";
 3857:                             }
 3858:                             if ($$settings{$id}{$list}{$$allanswers{$id}{$list}[$k]}{texttype} eq 'text/html') {
 3859:                                 $$settings{$id}{$list}{$$allanswers{$id}{$list}[$k]}{text} = &HTML::Entities::decode($$settings{$id}{$list}{$$allanswers{$id}{$list}[$k]}{text});
 3860:                                 $$settings{$id}{$list}{$$allanswers{$id}{$list}[$k]}{text} = &Apache::loncleanup::htmlclean($$settings{$id}{$list}{$$allanswers{$id}{$list}[$k]}{text});
 3861:                                 $$settings{$id}{$list}{$$allanswers{$id}{$list}[$k]}{text} =~  s#(<img src=")([^>]+)>#$1../../resfiles/$2 />#gi;
 3862:                                 $$settings{$id}{$list}{$$allanswers{$id}{$list}[$k]}{text} =~  s#</?p>##g;
 3863: 
 3864:                             }
 3865:                             $output .= "\><startouttext />".$$settings{$id}{$list}{$$allanswers{$id}{$list}[$k]}{text};
 3866:                             $resourcedata{$symb.'text'.$iter} = $$settings{$id}{$list}{$$allanswers{$id}{$list}[$k]}{text};
 3867:                             $output .= '<endouttext /></foil>'."\n";
 3868:                         }
 3869:                         if ($context eq 'CSTR') {
 3870:                             chomp($output);
 3871:                             $output .= qq|
 3872:   </foilgroup>
 3873:  </radiobuttonresponse>
 3874: |;
 3875:                         }
 3876:                     } else {
 3877:                         if ($context eq 'CSTR') {
 3878:                             $output .= qq|
 3879:    <optionresponse max="$numfoils" randomize="yes">
 3880:     <foilgroup options="('True','False')">
 3881: |;
 3882:                         } else {
 3883:                             $resourcedata{$symb.'newopt'} = '';
 3884:                             $resourcedata{$symb.'delopt'} = '';
 3885:                             $resourcedata{$symb.'options'} = "('True','False')";
 3886:                             $resourcedata{$symb.'hiddenparts'} = '!option';
 3887:                             $resourcedata{$symb.'questiontype'} = 'option';
 3888:                             $resourcedata{$symb.'maxfoils'} = $numfoils;
 3889:                         }
 3890:                         for (my $k=0; $k<@{$$allanswers{$id}{$list}}; $k++) {
 3891:                             my $iter = $k+1;
 3892:                             $output .= "   <foil name=\"foil".$k."\" value=\"";
 3893:                             if (grep/^$$allanswers{$id}{$list}[$k]$/,@{$$settings{$id}{$list}{correctanswer}}) {
 3894:                                 $output .= "True\"";
 3895:                                 $resourcedata{$symb.'value'.$iter} = "True";
 3896:                             } else {
 3897:                                 $output .= "False\"";
 3898:                                 $resourcedata{$symb.'value'.$iter} = "False";
 3899:                             }
 3900:                             if ($$settings{$id}{$list}{$$allanswers{$id}{$list}[$k]}{texttype} eq 'text/html') {
 3901:                                 $$settings{$id}{$list}{$$allanswers{$id}{$list}[$k]}{text} = &HTML::Entities::decode($$settings{$id}{$list}{$$allanswers{$id}{$list}[$k]}{text});
 3902:                                 $$settings{$id}{$list}{$$allanswers{$id}{$list}[$k]}{text} = &Apache::loncleanup::htmlclean($$settings{$id}{$list}{$$allanswers{$id}{$list}[$k]}{text});
 3903: 
 3904:                                 $$settings{$id}{$list}{$$allanswers{$id}{$list}[$k]}{text} =~  s#(<img src=")([^>]+)>#$1../../resfiles/$2 />#gi;
 3905:                                 $$settings{$id}{$list}{$$allanswers{$id}{$list}[$k]}{text} =~  s#</?p>##g;
 3906:                             }
 3907:                             $output .= "\><startouttext />".$$settings{$id}{$list}{$$allanswers{$id}{$list}[$k]}{text}."<br /><endouttext /></foil>\n";
 3908:                             $resourcedata{$symb.'text'.$iter} = $$settings{$id}{$list}{$$allanswers{$id}{$list}[$k]}{text};
 3909:                         }
 3910:                         if ($context eq 'CSTR') {
 3911:                             chomp($output);
 3912:                             $output .= qq|
 3913:     </foilgroup>
 3914:    </optionresponse>
 3915: |;
 3916:                         }
 3917:                     }
 3918:                 }
 3919:             } elsif ($$settings{$id}{class} eq 'match') {
 3920:                 my %allmatchers = ();
 3921:                 my @allmatch = ();
 3922:                 my %matchtext = ();
 3923:                 my $anscount = 0;
 3924:                 my %ansnum = ();
 3925:                 my $maxfoils = 0;
 3926:                 my $test_for_html = 0; 
 3927:                 foreach my $grp (@{$$allchoices{$id}}) {
 3928:                     $maxfoils += @{$$settings{$id}{$grp}{correctanswer}};
 3929:                     foreach my $answer_id (@{$$allanswers{$id}{$grp}}) {
 3930:                         if ($$settings{$id}{$grp}{$answer_id}{texttype} eq '/text/html') {
 3931:                              
 3932:                             $$settings{$id}{$grp}{$answer_id}{text} = &HTML::Entities::decode($$settings{$id}{$grp}{$answer_id}{text});
 3933:                             $test_for_html = &test_for_html($$settings{$id}{$grp}{$answer_id}{text});
 3934:                             $$settings{$id}{$grp}{$answer_id}{text} = &Apache::loncleanup::htmlclean($$settings{$id}{$grp}{$answer_id}{text});
 3935:                             $$settings{$id}{$grp}{$answer_id}{text} =~  s#(<img src=")([^>]+)>#$1../../resfiles/$2 />#gi;
 3936:                             $$settings{$id}{$grp}{$answer_id}{text} =~  s#</?p>##g;
 3937:                         }
 3938:                         unless (exists($allmatchers{$$settings{$id}{$grp}{$answer_id}{text}})) {
 3939:                             $allmatchers{$$settings{$id}{$grp}{$answer_id}{text}} = $anscount;
 3940:                             $allmatch[$anscount] = $$settings{$id}{$grp}{$answer_id}{text};
 3941:                             $anscount ++;
 3942:                             
 3943:                         }
 3944:                         if (grep/^$answer_id$/,@{$$settings{$id}{$grp}{correctanswer}}) {
 3945:                             push(@{$ansnum{$grp}},$allmatchers{$$settings{$id}{$grp}{$answer_id}{text}});
 3946:                         }
 3947:                     }
 3948:                     if ($context eq 'DOCS') {
 3949:                         $matchtext{$ansnum{$grp}[0]} = $allmatch[$ansnum{$grp}[0]-1];
 3950:                     }
 3951:                 }
 3952:                 my $allmatchlist = "('".join("','",@allmatch)."')";
 3953:                 if ($context eq 'CSTR') {
 3954:                     if ($test_for_html) {
 3955:                         $output .= qq|
 3956: <matchresponse max="$maxfoils" randomize="yes">
 3957:     <foilgroup>
 3958:         <itemgroup>
 3959: |;
 3960:                     } else {
 3961:                         $output .= qq|
 3962: <optionresponse max="10" randomize="yes">
 3963:     <foilgroup options="$allmatchlist">
 3964: |;
 3965:                     }
 3966:                 } else {
 3967:                     $resourcedata{$symb.'newopt'} = '';
 3968:                     $resourcedata{$symb.'delopt'} = '';
 3969:                     $resourcedata{$symb.'hiddenparts'} = '!option';
 3970:                     $resourcedata{$symb.'questiontype'} = 'option';
 3971:                     $resourcedata{$symb.'maxfoils'} =  $maxfoils;
 3972:                 }
 3973:                 my $iter = 0;
 3974:                 foreach my $match (@allmatch) {  
 3975:                     $iter ++;
 3976:                     if ($context eq 'CSTR') {
 3977:                         if ($test_for_html) {
 3978:                             $output .= qq|
 3979: <item name="ans_$iter">
 3980: <startouttext />$match<endouttext />
 3981: </item>
 3982: |;
 3983:                         }
 3984:                     }
 3985:                 }
 3986:                 if ($context eq 'CSTR') {
 3987:                     if ($test_for_html) {
 3988:                         $output .= qq|
 3989:         </itemgroup>
 3990: |;
 3991:                     }
 3992:                 }
 3993:                 $iter = 0;
 3994:                 for (my $k=0; $k<@{$$allchoices{$id}}; $k++) {
 3995:                     if ($$settings{$id}{$$allchoices{$id}[$k]}{texttype} eq 'text/html') {
 3996:                         $$settings{$id}{$$allchoices{$id}[$k]}{text} = &HTML::Entities::decode($$settings{$id}{$$allchoices{$id}[$k]}{text});
 3997:                         $$settings{$id}{$$allchoices{$id}[$k]}{text} = &Apache::loncleanup::htmlclean($$settings{$id}{$$allchoices{$id}[$k]}{text});
 3998:                         $$settings{$id}{$$allchoices{$id}[$k]}{text} =~  s#(<img src=")([^>]+)>#$1../../resfiles/$2 />#gi;
 3999:                         $$settings{$id}{$$allchoices{$id}[$k]}{text} =~  s#</?p>##g;
 4000:                     }
 4001:                     foreach my $ans (@{$ansnum{$$allchoices{$id}[$k]}}) {
 4002:                         $iter ++;
 4003:                         my $ans_id = $ans + 1;
 4004:                         if ($context eq 'CSTR') {
 4005:                             my $value;
 4006:                             if ($test_for_html) {
 4007:                                 $value = 'ans_'.$ans_id;
 4008:                             } else {
 4009:                                 $value = $allmatch[$ans];
 4010:                             }
 4011:                             $output .= qq|
 4012:         <foil location="random" value="$value" name="foil_$iter">
 4013:          <startouttext />$$settings{$id}{$$allchoices{$id}[$k]}{text}<endouttext />
 4014:         </foil>
 4015:                            
 4016: |;
 4017:                         }
 4018:                     }
 4019:                     if ($context eq 'DOCS') {
 4020:                         $resourcedata{$symb.'value'.$iter} = $matchtext{$ansnum{$$allchoices{$id}[$k]}[0]};
 4021:                         $resourcedata{$symb.'text'.$iter} = $$settings{$id}{$$allchoices{$id}[0]}{text};
 4022:                     }
 4023:                 }
 4024:                 if ($context eq 'CSTR') {
 4025:                     $output .= qq|
 4026:     </foilgroup>
 4027: |;
 4028:                     if ($test_for_html) {
 4029:                         $output .= qq|
 4030: </matchresponse>
 4031: |;
 4032:                     } else {
 4033:                         $output .= qq|
 4034: </optionresponse>
 4035: |;
 4036:                     }
 4037:                 } else {
 4038:                     $resourcedata{$symb.'options'} = "('".join("','",@allmatch)."')";
 4039:                 }
 4040:             } elsif (($$settings{$id}{class} eq 'string') || 
 4041:                      ($$settings{$id}{class} eq 'shortanswer')) {
 4042:                 my $labelnum = 0;
 4043:                 my @str_labels = ();
 4044:                 if ($cms eq 'webct4ce') {
 4045:                     foreach my $str_id (@{$$settings{$id}{str}}) {
 4046:                         foreach my $label (@{$$settings{$id}{$str_id}{labels}}) {
 4047:                             push(@str_labels,$label);
 4048:                         }
 4049:                     }
 4050:                 } elsif ($cms eq 'webctvista4') {
 4051:                     @str_labels = @{$$settings{$id}{str}};
 4052:                 }
 4053:                 foreach my $label (@str_labels) {
 4054:                     $labelnum ++;
 4055:                     my $numerical = 1;
 4056:                     if ($context eq 'DOCS') {
 4057:                         $numerical = 0;
 4058:                     } else {
 4059:                         for (my $i=0; $i<@{$$settings{$id}{strings}{$label}}; $i++) {
 4060:                             $$settings{$id}{strings}{$label}[$i] =~ s/^\s+//;
 4061:                             $$settings{$id}{strings}{$label}[$i] =~ s/\s+$//; 
 4062:                             if ($$settings{$id}{strings}{$label}[$i] =~ m/([^\-\d\.]|\.\.)/) {
 4063:                                 $numerical = 0;
 4064:                             }
 4065:                         }
 4066:                     }
 4067:                     if ($numerical) {
 4068:                         my $numans;
 4069:                         my $tol;
 4070:                         if (@{$$settings{$id}{strings}{$label}} == 1) {
 4071:                             $tol = '5%';
 4072:                             $numans = $$settings{$id}{strings}{$label}[0];
 4073:                         } else {
 4074:                             my $min = $$settings{$id}{strings}{$label}[0];
 4075:                             my $max = $$settings{$id}{strings}{$label}[0];
 4076:                             for (my $k=1; $k<@{$$settings{$id}{strings}{$label}}; $k++) {
 4077:                                 if ($$settings{$id}{strings}{$label}[$k] <= $min) {
 4078:                                     $min = $$settings{$id}{strings}{$label}[$k];
 4079:                                 }
 4080:                                 if ($$settings{$id}{strings}{$label}[$k] >= $max) {
 4081:                                     $max = $$settings{$id}{strings}{$label}[$k];
 4082:                                 }
 4083:                             }
 4084:                             $numans = ($max + $min)/2;
 4085:                             if ($numans == 0) {
 4086:                                 my $dev = abs($max - $numans);
 4087:                                 if (abs($numans - $min) > $dev) {
 4088:                                     $dev = abs($numans - $min);
 4089:                                 }
 4090:                                 $tol = $dev;
 4091:                             } else {
 4092:                                 $tol = 100*($max - $min)/($numans*2);
 4093:                                 $tol .= '%';
 4094:                             }
 4095:                         }
 4096:                         if ($context eq 'CSTR') {
 4097:                             if (@{$$settings{$id}{str}} > 1) {
 4098:                                 $output .= qq|
 4099: <startouttext />$labelnum.<endouttext />
 4100: |;
 4101:                             }
 4102:                             $output .= qq|
 4103: <numericalresponse answer="$numans">
 4104:         <responseparam type="tolerance" default="$tol" name="tol" description="Numerical Tolerance" />
 4105:         <responseparam name="sig" type="int_range,0-16" default="0,15" description="Significant Figures"
 4106: />
 4107:         <textline />
 4108: </numericalresponse>
 4109: <startouttext /><br /><endouttext />
 4110: |;
 4111:                         }
 4112:                     } else {
 4113:                         if ($context eq 'DOCS') {
 4114:                             $resourcedata{$symb.'hiddenparts'} = '!string';
 4115:                             $resourcedata{$symb.'questiontype'} = 'string';
 4116:                             $resourcedata{$symb.'maxfoils'} = @{$$allanswers{$id}{strings}{$label}};
 4117:                             $resourcedata{$symb.'hiddenparts'} = '!string';
 4118:                             if ($$settings{$id}{$label}{case} eq "No") {
 4119:                                 $resourcedata{$symb.'stringtype'} = 'ci';
 4120:                             } elsif ($$settings{$id}{$label}{case} eq "Yes") {
 4121:                                 $resourcedata{$symb.'stringtype'} = 'cs';
 4122:                             }
 4123:                             $resourcedata{$symb.'stringanswer'} = $$settings{$id}{strings}{$label}[0];
 4124:                         } else {
 4125:                             if (@{$$settings{$id}{str}} > 1) {
 4126:                                 $output .= qq|
 4127: <startouttext />$labelnum.<endouttext />
 4128: |;
 4129:                             }
 4130:                             if (@{$$settings{$id}{strings}{$label}} == 1) {
 4131:                                 my $casetype;
 4132:                                 if ($$settings{$id}{$label}{case} eq "No") {
 4133:                                     $casetype = 'ci';
 4134:                                 } elsif ($$settings{$id}{$label}{case} eq "Yes") {
 4135:                                     $casetype = 'cs';
 4136:                                 }
 4137:                                 $output .= qq|
 4138: <stringresponse answer="$$settings{$id}{strings}{$label}[0]" type="$casetype">
 4139: <textline>
 4140: </textline>
 4141: </stringresponse>
 4142: <startouttext /><br /><endouttext />
 4143: |;
 4144:                             } else {
 4145:                                 my @answertext = ();
 4146:                                 for (my $k=0; $k<@{$$settings{$id}{strings}{$label}}; $k++) {
 4147:                                     $$settings{$id}{strings}{$label}[$k] =~ s/\|/\|/g;
 4148:                                     push @answertext, $$settings{$id}{strings}{$label}[$k];
 4149:                                 }
 4150:                                 my $regexpans = join('|',@answertext);
 4151:                                 $regexpans = '/^('.$regexpans.')\b/';
 4152:                                 $output .= qq|
 4153: <stringresponse answer="$regexpans" type="re">
 4154: <textline>
 4155: </textline>
 4156: </stringresponse>
 4157: <startouttext /><br /><endouttext />
 4158: |;
 4159:                             }
 4160:                         }
 4161:                     }
 4162:                 }
 4163:             } elsif ($$settings{$id}{class} eq 'numerical') {
 4164:                 my %mathfns = (
 4165:                     'abs' => 'abs',
 4166:                     'acos' => 'acos',
 4167:                     'asin' => 'asin',
 4168:                     'atan' => 'atan',
 4169:                     'ceil' => 'ceil',
 4170:                     'cos' => 'cos',
 4171:                     'exp' => 'exp',
 4172:                     'fact' => 'factorial',
 4173:                     'floor' => 'floor',
 4174:                     'int' => 'int',
 4175:                     'ln' => 'log',
 4176:                     'log' => 'log',
 4177:                     'max' => 'max',
 4178:                     'min' => 'min',
 4179:                     'round' => 'roundto',
 4180:                     'sin' => 'sin',
 4181:                     'sqrt' => 'sqrt',
 4182:                     'tan' => 'tan',
 4183:                 );
 4184:                 my $scriptblock = qq|
 4185: <script type="loncapa/perl">
 4186: |;
 4187:                 foreach my $numid (@{$$settings{$id}{numids}}) {
 4188:                     my $formula = $$settings{$id}{$numid}{formula};
 4189:                     my $pattern = join('|',(sort (keys (%mathfns))));
 4190:                     $formula =~ s/($pattern)/\&$mathfns{$1}/g;
 4191:                     foreach my $var (keys %{$$settings{$id}{$numid}{vars}}) {
 4192:                         my $decnum = $$settings{$id}{$numid}{vars}{$var}{dec};
 4193:                         my $increment = '0.';
 4194:                         if ($decnum == 0) {
 4195:                             $increment = 1; 
 4196:                         } else {
 4197:                             my $deccount = $decnum;
 4198:                             while ($deccount > 1) {
 4199:                                 $increment.= '0';
 4200:                                 $deccount --;
 4201:                             }
 4202:                             $increment .= '1';
 4203:                         }
 4204:                         if ($cms eq 'webct4ce') { 
 4205:                             $formula =~ s/{($var)}/(\$$1)/g;
 4206:                         } elsif ($cms eq 'webctvista4') {
 4207:                             $formula =~ s/\[($var)\]/(\$$1)/g;
 4208:                         }
 4209:                         $scriptblock .= qq|
 4210: \$$var=&random($$settings{$id}{$numid}{vars}{$var}{min},$$settings{$id}{$numid}{vars}{$var}{max},$increment);
 4211: |;
 4212:                     }
 4213:                     $scriptblock .= qq|
 4214: \$answervar = $formula;
 4215: </script>
 4216: |;
 4217:                     if ($context eq 'CSTR') {
 4218:                         $output = "<problem>\n".$scriptblock.$output;
 4219:                         my $ansformat = '';
 4220:                         my $sigfig = '0,15';
 4221:                         if ($$settings{$id}{$numid}{format} eq 'sig') {
 4222:                             $sigfig = $$settings{$id}{$numid}{digits}.','.$$settings{$id}{$numid}{digits};
 4223:                         } elsif ($$settings{$id}{$numid}{format} eq 'dec') {
 4224:                             $ansformat = $$settings{$id}{$numid}{digits}.'f';
 4225:                         }
 4226:                         if ($ansformat) {
 4227:                             $ansformat = 'format="'.$ansformat.'"';
 4228:                         }
 4229:                         my $tolerance = $$settings{$id}{$numid}{tolerance};
 4230:                         if (lc($$settings{$id}{$numid}{toltype}) eq 'percent') {
 4231:                             $tolerance .= '%';
 4232:                         }
 4233:                         my $unit = '';
 4234:                         foreach my $unitid (@{$$settings{$id}{$numid}{units}}) {
 4235:                             $unit .=  $$settings{$id}{$numid}{$unitid}{text};
 4236:                         }
 4237:                         my $unitentry = '';
 4238:                         if ($unit ne '') {
 4239:                             $unitentry =  'unit="'.$unit.'"';
 4240:                         }
 4241:                         $output .= qq|
 4242: <numericalresponse $unitentry $ansformat  answer="\$answervar">
 4243:         <responseparam type="tolerance" default="$tolerance" name="tol" description="Numerical Tolerance" />
 4244:         <responseparam name="sig" type="int_range" default="$sigfig" description="Significant Figures"
 4245: />
 4246:         <textline />
 4247: </numericalresponse>
 4248: |;
 4249:                     }
 4250:                 }
 4251:             }
 4252:         }
 4253:         if ($context eq 'CSTR') {
 4254:             my $catid = $$settings{$id}{category};
 4255:             my $probdir = $$catinfo{$catid}{title}.'_'.$catid;
 4256:             $probdir =~ s/\s/_/g;
 4257:             $probdir =~ s/\W//g;
 4258:             if (!-e "$destdir/problems/$probdir") {
 4259:                 mkdir("$destdir/problems/$probdir",0755);
 4260:             }
 4261:             $output .= qq|</problem>
 4262: |;
 4263:             my $title = $$settings{$id}{title};
 4264:             $title =~ s/\s/_/g;
 4265:             $title =~ s/\W//g;
 4266:             $title .= '_'.$id; 
 4267:             open(PROB,">:utf8", "$destdir/problems/$probdir/$title.problem");
 4268:             print PROB $output;
 4269:             close PROB;
 4270:         } else {
 4271: # put %resourcedata;
 4272:             my $reply=&Apache::lonnet::cput
 4273:                 ('resourcedata',\%resourcedata,$cdom,$cnum);
 4274:         }
 4275:     }
 4276: }
 4277: 
 4278: sub text_cleanup {
 4279:     my ($text) = @_;
 4280:     $text =~ s/(\&)(nbsp|gt|lt)(?!;)/$1$2;$3/gi;
 4281:     $text = &Apache::loncleanup::htmlclean($text);
 4282:     $text =~ s#(<img src=["']?)([^>]+?)(/?>)#$1../../resfiles/$2 />#gi;
 4283:     $text =~ s#<([bh])r>#<$1r />#g;
 4284:     $text =~ s#<p>#<br /><br />#g;
 4285:     $text =~ s#</p>##g;
 4286:     return $text;
 4287: }
 4288: 
 4289: sub test_for_html {
 4290:     my ($source) = @_; 
 4291:     my @tags = ();
 4292:     my $p = HTML::Parser->new
 4293:     (
 4294:      xml_mode => 1,
 4295:      start_h =>
 4296:      [sub {
 4297:         my ($tagname) = @_;
 4298:         push @tags, $tagname;
 4299:      }, "tagname"],
 4300:     );
 4301:     $p->parse($source);
 4302:     $p->eof;
 4303:     return length(@tags); 
 4304: } 
 4305: 
 4306: sub write_bb6_questions {
 4307:     my ($allids,$containerdir,$context,$settings,$dirname,$destdir,$res,$total,$newdir,$cid,$cdom,$cnum,$docroot) = @_;
 4308:     my $qnum = 0;
 4309:     foreach my $id (@{$allids}) {
 4310:         my $questiontext = $$settings{$id}{question}{text};
 4311:         my $question_texttype = $$settings{$id}{question}{texttype};
 4312:         &process_html(\$questiontext,'bb6',$question_texttype,$context,$res,$dirname,$cdom,$cnum,$docroot,$destdir);
 4313:         $qnum ++;
 4314:         my $output;
 4315:         my $permcontainer = $containerdir;
 4316:         $permcontainer =~ s#/home/httpd/html/userfiles#uploaded#;
 4317:         my $symb = $cid.'.'.$permcontainer.'___'.$qnum.'___lib/templates/simpleproblem.problem.0.';
 4318:         my %resourcedata = ();
 4319:         for (my $i=0; $i<10; $i++) {
 4320:             my $iter = $i+1;
 4321:             $resourcedata{$symb.'text'.$iter} = "";
 4322:             $resourcedata{$symb.'value'.$iter} = "unused";
 4323:             $resourcedata{$symb.'position'.$iter} = "random";
 4324:         }
 4325:         $resourcedata{$symb.'randomize'} = 'yes';
 4326:         $resourcedata{$symb.'maxfoils'} = 10;
 4327:         if ($context eq 'CSTR') {
 4328:             $output = qq|<problem>
 4329: |;
 4330:         }
 4331:         $$total{prob} ++;
 4332:         $questiontext .= &add_images_links('question',$context,$settings,$id,$dirname,$res);
 4333:         if ($$settings{$id}{class} eq "Essay") {
 4334:             if ($context eq 'CSTR') {
 4335:                 $output .= qq|<startouttext />$questiontext<endouttext />
 4336:  <essayresponse>
 4337:  <textfield></textfield>
 4338:  </essayresponse>
 4339: |;
 4340:              } else {
 4341:                  $resourcedata{$symb.'questiontext'} = $questiontext;
 4342:                  $resourcedata{$symb.'hiddenparts'} = '!essay';
 4343:                  $resourcedata{$symb.'questiontype'} = 'essay';
 4344:              }
 4345:         } else {
 4346:             if ($context eq 'CSTR') {
 4347:                 $output .= qq|<startouttext />$questiontext\n<endouttext />|;
 4348:             } else {
 4349:                 $resourcedata{$symb.'questiontext'} = $questiontext;
 4350:             }
 4351:             my $numfoils = @{$$settings{$id}{answers}};
 4352:             if (($$settings{$id}{class} eq 'Multiple Choice') || 
 4353:                 ($$settings{$id}{class} eq 'True/False')) {
 4354:                 if ($context eq 'CSTR') {
 4355:                     $output .= qq|
 4356:  <radiobuttonresponse max="$numfoils" randomize="yes">
 4357:   <foilgroup>
 4358: |;
 4359:                 } else {
 4360:                     $resourcedata{$symb.'hiddenparts'} = '!radio';
 4361:                     $resourcedata{$symb.'questiontype'} = 'radio';
 4362:                     $resourcedata{$symb.'maxfoils'} = $numfoils;
 4363:                 }
 4364:                 for (my $k=0; $k<$numfoils; $k++) {
 4365:                     my $iter = $k+1;
 4366:                     my $answer_id = $$settings{$id}{answers}[$k];
 4367:                     my $answer_text = $$settings{$id}{$answer_id}{text};
 4368:                     my $texttype = $$settings{$id}{$answer_id}{texttype};
 4369:                     &process_html(\$answer_text,'bb6',$texttype,$context,$res,$dirname,$cdom,$cnum,$docroot,$destdir);
 4370:                     $answer_text .= &add_images_links('response',$context,$settings,$id,$dirname,$res); 
 4371:                     $output .= "   <foil name=\"foil".$k."\" value=\"";
 4372:                     if (grep/^$answer_id$/,@{$$settings{$id}{correctanswer}}) {
 4373:                         $output .= "true\" location=\"";
 4374:                         $resourcedata{$symb.'value'.$iter} = "true";
 4375:                     } else {
 4376:                         $output .= "false\" location=\"";
 4377:                         $resourcedata{$symb.'value'.$iter} = "false";
 4378:                     }
 4379:                     if (lc ($$settings{$id}{$answer_id}{text}) =~ m/^\s?([Aa]ll)|([Nn]one)\s(of\s)?the\sabove\.?/) {
 4380:                         $output .= "bottom\"";
 4381:                         $resourcedata{$symb.'position'.$iter} = "bottom";
 4382:                     } else {
 4383:                         $output .= "random\"";
 4384:                     }
 4385:                     $output .= '\><startouttext />'.$answer_text.
 4386:                                '<endouttext /></foil>'."\n";
 4387:                     $resourcedata{$symb.'text'.$iter} = $answer_text;
 4388:                 }
 4389:                 if ($context eq 'CSTR') {
 4390:                     chomp($output);
 4391:                     $output .= qq|
 4392:     </foilgroup>
 4393:     <hintgroup showoncorrect="no">
 4394:      <radiobuttonhint>
 4395:      </radiobuttonhint>
 4396:      <hintpart on="default">
 4397:       <startouttext/><endouttext />
 4398:      </hintpart>
 4399:     </hintgroup>
 4400:    </radiobuttonresponse>
 4401: |;
 4402:                 }
 4403:             } elsif ($$settings{$id}{class} eq 'Multiple Answer') {
 4404:                 if ($context eq 'CSTR') {
 4405:                     $output .= qq|
 4406:    <optionresponse max="$numfoils" randomize="yes">
 4407:     <foilgroup options="('True','False')">
 4408: |;
 4409:                 } else {
 4410:                     $resourcedata{$symb.'newopt'} = '';
 4411:                     $resourcedata{$symb.'delopt'} = '';
 4412:                     $resourcedata{$symb.'options'} = "('True','False')";
 4413:                     $resourcedata{$symb.'hiddenparts'} = '!option';
 4414:                     $resourcedata{$symb.'questiontype'} = 'option';
 4415:                     $resourcedata{$symb.'maxfoils'} = $numfoils;
 4416:                 }
 4417:                 for (my $k=0; $k<$numfoils; $k++) {
 4418:                     my $iter = $k+1;
 4419:                     my $answer_id = $$settings{$id}{answers}[$k];
 4420:                     my $answer_text = $$settings{$id}{$answer_id}{text};
 4421:                     my $texttype = $$settings{$id}{$answer_id}{texttype};
 4422:                     &process_html(\$answer_text,'bb6',$texttype,$context,$res,$dirname,$cdom,$cnum,$docroot,$destdir);
 4423:                     $answer_text .= &add_images_links('response',$context,$settings,$id,$dirname,$res);
 4424: 
 4425:                     $output .= "   <foil name=\"foil".$k."\" value=\"";
 4426:                     if (grep/^$answer_id$/,@{$$settings{$id}{correctanswer}}) {
 4427:                         $output .= "True\"";
 4428:                         $resourcedata{$symb.'value'.$iter} = "True";
 4429:                     } else {
 4430:                         $output .= "False\"";
 4431:                         $resourcedata{$symb.'value'.$iter} = "False";
 4432:                     }
 4433:                     $output .= "\><startouttext />".$answer_text."<endouttext /></foil>\n";
 4434:                     $resourcedata{$symb.'text'.$iter} = $answer_text;
 4435:                 }
 4436:                 if ($context eq 'CSTR') {
 4437:                     chomp($output);
 4438:                     $output .= qq|
 4439:     </foilgroup>
 4440:     <hintgroup showoncorrect="no">
 4441:      <optionhint>
 4442:      </optionhint>
 4443:      <hintpart on="default">
 4444:       <startouttext/><endouttext />
 4445:      </hintpart>
 4446:     </hintgroup>
 4447:    </optionresponse>
 4448: |;
 4449:                 }
 4450:             } elsif ($$settings{$id}{class} eq 'Ordering') {
 4451:                 my @allorder = ();
 4452:                 if ($context eq 'CSTR') {
 4453:                     $output .= qq|
 4454:    <rankresponse max="$numfoils" randomize="yes">
 4455:     <foilgroup>
 4456: |;
 4457:                 } else {
 4458:                     $resourcedata{$symb.'newopt'} = '';
 4459:                     $resourcedata{$symb.'delopt'} = '';
 4460:                     $resourcedata{$symb.'hiddenparts'} = '!option';
 4461:                     $resourcedata{$symb.'questiontype'} = 'option';
 4462:                     $resourcedata{$symb.'maxfoils'} = $numfoils;
 4463:                 }
 4464:                 for (my $k=0; $k<$numfoils; $k++) {
 4465:                     my $answer_id = $$settings{$id}{answers}[$k];
 4466:                     my $answer_text = $$settings{$id}{$answer_id}{text};
 4467:                     my $texttype = $$settings{$id}{$answer_id}{texttype};
 4468:                     &process_html(\$answer_text,'bb6',$texttype,$context,$res,$dirname,$cdom,$cnum,$docroot,$destdir);
 4469:                     $answer_text .= &add_images_links('response',$context,$settings,$id,$dirname,$res);
 4470:                     my $iter = $k+1;
 4471:                     if ($context eq 'CSTR') {
 4472:                         $output .= "   <foil location=\"random\" name=\"foil".$k."\" value=\"".$$settings{$id}{$answer_id}{order}."\"><startouttext />".$answer_text."<endouttext /></foil>\n";
 4473:                     } else {
 4474:                         $resourcedata{$symb.'text'.$iter} = $answer_text;
 4475:                         $resourcedata{$symb.'value'.$iter} = $$settings{$id}{$answer_id}{order};
 4476:                         if (!grep/^$$settings{$id}{$answer_id}{order}$/,@allorder) {
 4477:                             push(@allorder,$$settings{$id}{$answer_id}{order}); 
 4478:                         }
 4479:                     }
 4480:                 }
 4481:                 if ($context eq 'CSTR') {
 4482:                     chomp($output);
 4483:                     $output .= qq|
 4484:     </foilgroup>
 4485:    </rankresponse>
 4486: |;
 4487:                 } else {
 4488:                     @allorder = sort {$a <=> $b} @allorder;
 4489:                     $resourcedata{$symb.'options'} = "('".join("','",@allorder)."')";
 4490:                 }
 4491:             } elsif ($$settings{$id}{class} eq 'Fill in the Blank') {
 4492:                 my $numerical = 1;
 4493:                 if ($context eq 'DOCS') {
 4494:                     $numerical = 0;
 4495:                 } else {
 4496:                     for (my $k=0; $k<@{$$settings{$id}{correctanswer}}; $k++) {
 4497:                         if ($$settings{$id}{correctanswer}[$k] =~ m/([^\d\.]|\.\.)/) {
 4498:                             $numerical = 0;
 4499:                         }
 4500:                     }
 4501:                 }
 4502:                 if ($numerical) {
 4503:                     my $numans;
 4504:                     my $tol;
 4505:                     if (@{$$settings{$id}{correctanswer}} == 1) {
 4506:                         $tol = 5;
 4507:                         $numans = $$settings{$id}{correctanswer}[0];
 4508:                     } else {
 4509:                         my $min = $$settings{$id}{correctanswer}[0];;
 4510:                         my $max = $min;
 4511:                         for (my $k=1; $k<@{$$settings{$id}{correctanswer}}; $k++) {
 4512:                             if ($$settings{$id}{correctanswer}[$k] <= $min) {
 4513:                                 $min = $$settings{$id}{correctanswer}[$k];
 4514:                             }
 4515:                             if ($$settings{$id}{correctanswer}[$k] >= $max) {
 4516:                                 $max = $$settings{$id}{correctanswer}[$k];
 4517:                             }
 4518:                         }
 4519:                         $numans = ($max + $min)/2;
 4520:                         $tol = 100*($max - $min)/($numans*2);
 4521:                         $tol = 5;
 4522:                     }
 4523:                     if ($context eq 'CSTR') {
 4524:                         $output .= qq|
 4525: <numericalresponse answer="$numans">
 4526:         <responseparam type="tolerance" default="$tol%" name="tol" description="Numerical Tolerance" />
 4527:         <responseparam name="sig" type="int_range,0-16" default="0,15" description="Significant Figures"
 4528: />
 4529:         <textline />
 4530: </numericalresponse>
 4531: <hintgroup showoncorrect="no">
 4532:  <numericalhint>
 4533:  </numericalhint>
 4534:  <hintpart on="default">
 4535:     <startouttext/><endouttext />
 4536:  </hintpart>
 4537: </hintgroup>
 4538: |;
 4539:                     }
 4540:                 } else {
 4541:                     if ($context eq 'DOCS') {
 4542:                         $resourcedata{$symb.'hiddenparts'} = '!string';
 4543:                         $resourcedata{$symb.'questiontype'} = 'string';
 4544:                         $resourcedata{$symb.'maxfoils'} = 1;
 4545:                         $resourcedata{$symb.'hiddenparts'} = '!string';
 4546:                         $resourcedata{$symb.'stringtype'} = 'ci';
 4547:                         $resourcedata{$symb.'stringanswer'} = $$settings{$id}{correctanswer}[0];
 4548:                     } else {
 4549:                         if (@{$$settings{$id}{correctanswer}} == 1) {
 4550:                             $output .= qq|
 4551: <stringresponse answer="$$settings{$id}{correctanswer}[0];" type="ci">
 4552: <textline>
 4553: </textline>
 4554: </stringresponse>
 4555: <hintgroup showoncorrect="no">
 4556: <stringhint type="cs">
 4557: </stringhint>
 4558: <hintpart on="default">
 4559:   <startouttext/><endouttext />
 4560: </hintpart>
 4561: </hintgroup>
 4562: |;
 4563:                         } else {
 4564:                             my @answertext = ();
 4565:                             for (my $k=0; $k<@{$$settings{$id}{correctanswer}}; $k++) {
 4566:                                 my $answer_text = $$settings{$id}{correctanswer}[$k];
 4567:                                 $answer_text =~ s/\|/\|/g;
 4568:                                 push @answertext, $answer_text;
 4569:                             }
 4570:                             my $regexpans = join('|',@answertext);
 4571:                             $regexpans = '/^('.$regexpans.')\b/';
 4572:                             $output .= qq|
 4573: <stringresponse answer="$regexpans" type="re">
 4574: <textline>
 4575: </textline>
 4576: </stringresponse>
 4577: <hintgroup showoncorrect="no">
 4578:  <stringhint type="cs">
 4579:  </stringhint>
 4580:  <hintpart on="default">
 4581:     <startouttext/><endouttext />
 4582:  </hintpart>
 4583: </hintgroup>
 4584: |;
 4585:                         }
 4586:                     }
 4587:                 }
 4588:             } elsif ($$settings{$id}{class} eq "Matching") {
 4589:                 my @allmatchers = ();
 4590:                 my %matchtext = ();
 4591:                 if ($context eq 'CSTR') {
 4592:                     $output .= qq|
 4593: <matchresponse max="10" randomize="yes">
 4594:     <foilgroup>
 4595:         <itemgroup>
 4596: |;
 4597:                 } else {
 4598:                     $resourcedata{$symb.'newopt'} = '';
 4599:                     $resourcedata{$symb.'delopt'} = '';
 4600:                     $resourcedata{$symb.'hiddenparts'} = '!option';
 4601:                     $resourcedata{$symb.'questiontype'} = 'option';
 4602:                     $resourcedata{$symb.'maxfoils'} =  $numfoils;
 4603:                 }
 4604:                 for (my $k=0; $k<$$settings{$id}{allchoices}; $k++) {
 4605:                     my $choice_id = 'rightmatch'.$k;
 4606:                     my $choice_text = $$settings{$id}{$choice_id}{text};
 4607:                     my $texttype = $$settings{$id}{$choice_id}{texttype};
 4608:                     my $choice_plaintext = &remove_html($choice_text);
 4609:                     &process_html(\$choice_text,'bb6',$texttype,$context,$res,$dirname,$cdom,$cnum,$docroot,$destdir);
 4610:                     $choice_text .= &add_images_links($choice_id,$context,$settings,$id,$dirname,$res);
 4611:                     push(@allmatchers,$choice_plaintext);
 4612:                     if ($context eq 'CSTR') {
 4613:                         $output .= qq|
 4614: <item name="$choice_id">
 4615: <startouttext />$choice_text<endouttext />
 4616: </item>
 4617:                     |;
 4618:                     }
 4619:                 }
 4620:                 if ($context eq 'CSTR') {
 4621:                     $output .= qq|
 4622:         </itemgroup>
 4623: |;
 4624:                 }
 4625:                 for (my $k=0; $k<$numfoils; $k++) {
 4626:                     my $answer_id = $$settings{$id}{answers}[$k];
 4627:                     my $answer_text = $$settings{$id}{$answer_id}{text};
 4628:                     my $texttype = $$settings{$id}{$answer_id}{texttype};
 4629:                     &process_html(\$answer_text,'bb6',$texttype,$context,$res,$dirname,$cdom,$cnum,$docroot,$destdir);
 4630:                     $answer_text .= &add_images_links($answer_id,$context,$settings,$id,$dirname,$res);
 4631:                     if ($context eq 'CSTR') {
 4632:                         $output .= '
 4633:         <foil location="random" value="rightmatch'.$$settings{$id}{$$settings{$id}{$answer_id}{correctanswer}}{order}.'" name="'.$answer_id.'">
 4634:          <startouttext />'.$answer_text.'<endouttext />
 4635:         </foil>
 4636: ';
 4637:                     } else {
 4638:                         my $iter = $k+1;
 4639:                         $resourcedata{$symb.'value'.$iter} = "$allmatchers[$$settings{$id}{$$settings{$id}{$answer_id}{correctanswer}}{order}]";
 4640:                         $resourcedata{$symb.'text'.$iter} = $answer_text;
 4641:                     }
 4642:                 }
 4643:                 if ($context eq 'CSTR') {
 4644:                     $output .= qq|
 4645:     </foilgroup>
 4646: </matchresponse>
 4647: |;
 4648:                 } else {
 4649:                     $resourcedata{$symb.'options'} = "('".join("','",@allmatchers)."')";
 4650:                 }
 4651:             }
 4652:         }
 4653:         if ($context eq 'CSTR') {
 4654:             
 4655:             $output .= qq|
 4656:  <postanswerdate>
 4657:   $$settings{$id}{solutionfeedback}{text}
 4658:  </postanswerdate>
 4659: </problem>
 4660: |;
 4661:             my $title = $$settings{title};
 4662:             $title =~ s/\s/_/g;
 4663:             $title =~ s/\W//g;
 4664:             $title .= '_'.$id;
 4665:             open(PROB,">:utf8", "$newdir/$title.problem");
 4666:             print PROB $output;
 4667:             close PROB;
 4668:         } else {
 4669: # put %resourcedata;
 4670:             my $reply=&Apache::lonnet::cput
 4671:                 ('resourcedata',\%resourcedata,$cdom,$cnum);
 4672:         }
 4673:     }
 4674: }
 4675: 
 4676: sub retrieve_image {
 4677:     my ($context,$res,$dirname,$cdom,$cname,$docroot,$destdir,$urlpath,$filename) = @_;
 4678:     my $contents;
 4679:     my $url = $urlpath.$filename;
 4680:     my $ua=new LWP::UserAgent;
 4681:     my $request=new HTTP::Request('GET',$url);
 4682:     my $response=$ua->request($request);
 4683:     if ($response->is_success) { 
 4684:         $contents = $response->content;
 4685:         if (!-e "$docroot/$res") {
 4686:             mkdir("$docroot/$res",0755);
 4687:         }
 4688:         if (!-e "$docroot/$res/webimages") {
 4689:             mkdir("$docroot/$res/webimages",0755);
 4690:         }
 4691:         open(my $fh,">$docroot/$res/webimages/$filename");
 4692:         print $fh $contents;
 4693:         close($fh);
 4694:         if ($context eq 'DOCS') {
 4695:             my $copyfile = $dirname.'/'.$filename;
 4696:             my $source = "$docroot/$res/webimages/$filename";
 4697:             my $fileresult;
 4698:             if (-e $source) {
 4699:                 $fileresult = &Apache::lonnet::process_coursefile('copy',$cname,$cdom,$copyfile,$source);
 4700:             }
 4701:             return $fileresult;
 4702:         } elsif ($context eq 'CSTR') {
 4703:             if (!-e "$destdir/resfiles/$res") {
 4704:                 mkdir("$destdir/resfiles/$res",0755);
 4705:             }
 4706:             if (!-e "$destdir/resfiles/$res/webimages") {
 4707:                 mkdir("$destdir/resfiles/$res/webimages",0755);
 4708:             }
 4709:             rename("$docroot/$res/webimages/$filename","$destdir/resfiles/$res/webimages/$filename");
 4710:             return 'ok';
 4711:         }
 4712:     } else {
 4713:         return -1;
 4714:     }
 4715: }
 4716: 
 4717: # ---------------------------------------------------------------- Process Blackboard Announcements
 4718: sub process_announce {
 4719:     my ($res,$docroot,$destdir,$settings,$globalresref,$seqstem,$resrcfiles) = @_;
 4720:     my $xmlfile = $docroot.'/'.$res.".dat";
 4721:     my @state = ();
 4722:     my @assess = ();
 4723:     my $id;
 4724:     my $p = HTML::Parser->new
 4725:     (
 4726:      xml_mode => 1,
 4727:      start_h =>
 4728:      [sub {
 4729:         my ($tagname, $attr) = @_;
 4730:         push @state, $tagname;
 4731:         if ("@state" eq "ANNOUNCEMENT TITLE") {
 4732:             $$settings{title} = $attr->{value};
 4733:             $$settings{startassessment} = ();
 4734:         } elsif ("@state" eq "ANNOUNCEMENT DESCRIPTION FLAGS ISHTML") {  
 4735:             $$settings{ishtml} = $attr->{value};          
 4736:         } elsif ("@state" eq "ANNOUNCEMENT DESCRIPTION FLAGS ISNEWLINELITERAL" ) {
 4737:             $$settings{isnewline} = $attr->{value};
 4738:         } elsif ("@state" eq "ANNOUNCEMENT ISPERMANENT" ) {
 4739:             $$settings{ispermanent} = $attr->{value};
 4740:         } elsif ("@state" eq "ANNOUNCEMENT DATES UPDATED") {
 4741:             $$settings{dates} = $attr->{value}; 
 4742:         } elsif ("@state" eq "ANNOUNCEMENT FILES STARTASSESSMENT" ) {
 4743:             $id = $attr->{id};
 4744:             %{$$settings{startassessment}{$id}} = ();
 4745:             push @assess,$id;
 4746:         } elsif ("@state" eq "ANNOUNCEMENT FILES STARTASSESSMENT ATTRIB" ) {
 4747:             my $key = $attr->{key};
 4748:             $$settings{startassessment}{$id}{$key} = $attr->{value};
 4749:         }
 4750:      }, "tagname, attr"],
 4751:      text_h =>
 4752:      [sub {
 4753:         my ($text) = @_;
 4754:         if ("@state" eq "ANNOUNCEMENT DESCRIPTION TEXT") {
 4755:             $$settings{text} = $text;
 4756:         }
 4757:       }, "dtext"],
 4758:      end_h =>
 4759:      [sub {
 4760:         my ($tagname) = @_;
 4761:         pop @state;
 4762:      }, "tagname"],
 4763:     );
 4764:     $p->unbroken_text(1);
 4765:     $p->parse_file($xmlfile);
 4766:     $p->eof;
 4767: 
 4768:     if (defined($$settings{text})) {
 4769:         if ($$settings{ishtml} eq "false") {
 4770:             if ($$settings{isnewline} eq "true") {
 4771:                 $$settings{text} =~ s#\n#<br/>#g;
 4772:             }
 4773:         } else {
 4774:             $$settings{text} = &HTML::Entities::decode($$settings{text});
 4775:         }
 4776:     }
 4777:   
 4778:     if (@assess > 0) {
 4779:         foreach my $id (@assess) {
 4780:             $$settings{text} = "A $$settings{startassessment}{$id}{assessment_type}, entitled $$globalresref{$$settings{startassessment}{$id}{assessment_id}}{title} is available. Click <a href='$seqstem/pages/$$settings{startassessment}{$id}{assessment_id}.page' target='quizpage'>here</a> to enter the page that contains the problems in this assessment.";
 4781:         }
 4782:     }
 4783: 
 4784:     open(FILE,">$destdir/resfiles/$res.html");
 4785:     push @{$resrcfiles}, "$res.html";
 4786:     print FILE qq|<html>
 4787: <head>
 4788: <title>$$settings{title}</title>
 4789: </head>
 4790: <body bgcolor='#ffffff'>
 4791: <table>
 4792:  <tr>
 4793:   <td bgcolor='#CCCCFF'>$$settings{title} - announcement date: $$settings{dates}</td>
 4794:  </tr>
 4795: </table>
 4796: <br/>
 4797: $$settings{text}
 4798: |;
 4799:     print FILE qq|
 4800:   </body>
 4801:  </html>|;
 4802:     close(FILE);
 4803: }
 4804: 
 4805: # ---------------------------------------------------------------- Process Blackboard Content
 4806: sub process_content {
 4807:     my ($cms,$res,$context,$docroot,$destdir,$settings,$dom,$user,$resrcfiles,$packages,$hrefs) = @_;
 4808:     my $xmlfile = $docroot.'/'.$res.".dat";
 4809:     my $destresdir = $destdir;
 4810:     if ($context eq 'CSTR') {
 4811:         $destresdir =~ s|/home/$user/public_html/|/res/$dom/$user/|;
 4812:     } elsif ($context eq 'DOCS') {
 4813:         $destresdir =~ s|^/home/httpd/html/userfiles|/uploaded|;
 4814:     }
 4815:     my $filetag = '';
 4816:     if ($cms eq 'bb5') {
 4817:         $filetag = 'FILEREF';
 4818:     } elsif ($cms eq 'bb6') {
 4819:         $filetag = 'FILE';
 4820:     }
 4821:     my $filecount = 0;
 4822:     my @allrelfiles = ();
 4823:     my @state;
 4824:     @{$$settings{files}} = (); 
 4825:     my $p = HTML::Parser->new
 4826:     (
 4827:       xml_mode => 1,
 4828:       start_h =>
 4829:       [sub {
 4830:         my ($tagname, $attr) = @_;
 4831:         push @state, $tagname;
 4832:         if ("@state" eq "CONTENT ") {
 4833:             %{$$settings{maindata}} = ();
 4834:         } elsif ("@state" eq "CONTENT TITLECOLOR") {
 4835:             $$settings{titlecolor} =  $attr->{value};
 4836:         } elsif ("@state" eq "CONTENT MAINDATA TEXTCOLOR") {
 4837:             $$settings{maindata}{color} = $attr->{value};
 4838:         } elsif ("@state" eq "CONTENT MAINDATA FLAGS ISHTML") {  
 4839:             $$settings{maindata}{ishtml} = $attr->{value}; 
 4840:         } elsif ("@state" eq "CONTENT MAINDATA FLAGS ISNEWLINELITERAL") {  
 4841:             $$settings{maindata}{isnewline} = $attr->{value};
 4842:         } elsif ("@state" eq "CONTENT BODY TYPE") {
 4843:             $$settings{maindata}{bodytype} =  $attr->{value};
 4844:         } elsif ("@state" eq "CONTENT FLAGS ISAVAILABLE" ) {
 4845:             $$settings{isavailable} = $attr->{value};
 4846:         } elsif ("@state" eq "CONTENT FLAGS ISFOLDER" ) {
 4847:             $$settings{isfolder} = $attr->{value};
 4848:         } elsif ("@state" eq "CONTENT FLAGS LAUNCHINNEWWINDOW" ) {
 4849:             $$settings{newwindow} = $attr->{value};
 4850:         } elsif ("@state" eq "CONTENT FILES $filetag") {
 4851:             %{$$settings{files}[$filecount]} = ();
 4852:             %{$$settings{files}[$filecount]{registry}} = (); 
 4853:         } elsif ("@state" eq "CONTENT FILES FILEREF RELFILE" ) {
 4854:             $$settings{files}[$filecount]{'relfile'} = $attr->{value};
 4855:             push @allrelfiles, $attr->{value};
 4856:         } elsif ("@state" eq "CONTENT FILES $filetag MIMETYPE") {
 4857:             $$settings{files}[$filecount]{mimetype} = $attr->{value};
 4858:         } elsif ("@state" eq "CONTENT FILES $filetag CONTENTTYPE") {
 4859:             $$settings{files}[$filecount]{contenttype} = $attr->{value};
 4860:         } elsif ("@state" eq "CONTENT FILES $filetag FILEACTION") {
 4861:             $$settings{files}[$filecount]{fileaction} = $attr->{value};
 4862:         } elsif ("@state" eq "CONTENT FILES $filetag PACKAGEPARENT") {
 4863:             $$settings{files}[$filecount]{packageparent} = $attr->{value};
 4864:         } elsif ("@state" eq "CONTENT FILES $filetag LINKNAME") {
 4865:             $$settings{files}[$filecount]{linkname} = $attr->{value};
 4866:         } elsif ("@state" eq "CONTENT FILES $filetag REGISTRY REGISTRYENTRY") {
 4867:             my $key = $attr->{key};
 4868:             $$settings{files}[$filecount]{registry}{$key} = $attr->{value};
 4869:         }
 4870:       }, "tagname, attr"],
 4871:       text_h =>
 4872:       [sub {
 4873:         my ($text) = @_;
 4874:         if ("@state" eq "CONTENT TITLE") {
 4875:             $$settings{title} = $text;
 4876:         } elsif ( ("@state" eq "CONTENT MAINDATA TEXT") || ("@state" eq "CONTENT BODY TEXT") ) {
 4877:             $$settings{maindata}{text} = $text;
 4878:         }  elsif ("@state" eq "CONTENT FILES $filetag REFTEXT") {
 4879:             $$settings{files}[$filecount]{reftext} = $text;
 4880:         } elsif ("@state" eq "CONTENT FILES FILE NAME" ) {
 4881:             $$settings{files}[$filecount]{'relfile'} = $text;
 4882:             push @allrelfiles, $text;
 4883:         }
 4884:        }, "dtext"],
 4885:       end_h =>
 4886:       [sub {
 4887:         my ($tagname) = @_;
 4888:         if ("@state" eq "CONTENT FILES $filetag") {
 4889:             $filecount ++;
 4890:         }
 4891:         pop @state;
 4892:       }, "tagname"],
 4893:      );
 4894:     $p->unbroken_text(1);
 4895:     $p->parse_file($xmlfile);
 4896:     $p->eof;
 4897:     my $linktag = '';
 4898:     my $fontcol = '';
 4899:     if (@{$$settings{files}} > 0) {
 4900:         for (my $filecount=0;  $filecount<@{$$settings{files}}; $filecount++) {
 4901:             if ($$settings{files}[$filecount]{'fileaction'} eq 'embed') {
 4902:                 if ( $$settings{files}[$filecount]{reftext} =~ m#<\!\-\-\s_(\d+)\\_\s\-\-\>#) { 
 4903:                     my $newtag = qq|<img src="$destresdir/resfiles/$res/$$settings{files}[$filecount]{relfile}"/>|;
 4904:                     $$settings{maindata}{text} =~ s#<\!\-\-\s_/($1)\\_\s\-\-\>#$newtag#;
 4905:                 } elsif ( $$settings{files}[$filecount]{reftext} =~m#^_/(\d+)\\_$# ) {
 4906:                     my $reftag = $1;
 4907:                     my $newtag;
 4908:                     if ($$settings{files}[$filecount]{mimetype} =~ m/^image/) {
 4909:                         $newtag = qq|<img src="$destresdir/resfiles/$res/$$settings{files}[$filecount]{relfile}"|;
 4910:                         if ( defined($$settings{files}[$filecount]{registry}{alttext}) ) {
 4911:                             $newtag .= qq| alt="$$settings{files}[$filecount]{registry}{alttext}"|;
 4912:                         }
 4913:                         if ( defined($$settings{files}[$filecount]{registry}{alignment}) )
 4914: {
 4915:                             $newtag .= qq| align="$$settings{files}[$filecount]{registry}{alignment}"|; 
 4916:                         }
 4917:                         if ( defined($$settings{files}[$filecount]{registry}{border}) ) {
 4918:                             $newtag .= qq| border="$$settings{files}[$filecount]{registry}{border}"|;
 4919:                         }
 4920:                         $newtag .= " />";
 4921:                         my $reftext =  $$settings{files}[$filecount]{reftext};
 4922:                         my $fname = $$settings{files}[$filecount]{'relfile'};
 4923:                         $$settings{maindata}{text} =~ s/<!\-\-\sCOMMENT\sBLOCK\sFOR\sEMBEDDED\sFILE:\s$fname[\s\n]+DO\sNOT\sEDIT\sTHIS\sCOMMENT\sBLOCK[\s\n]+//;
 4924: #                      $$settings{maindata}{text} =~ s/DO\sNOT\sEDIT\sTHIS\sCOMMENT\sBLOCK[\s\n]+//;
 4925:                         $$settings{maindata}{text} =~ s/Move\swhole\scomment\sto\schange\sfile\splacement\swithin\spage\.[\s\n]+//;
 4926:                         $$settings{maindata}{text} =~ s/_\/$reftag\\_/$newtag/;
 4927:                         $$settings{maindata}{text} =~ s/END\sOF\sBLOCK\sON\sNEXT\sLINE[\s\n]+//;
 4928:                         $$settings{maindata}{text} =~ s/\-\->//;
 4929: #                      $$settings{maindata}{text} =~ s/<!\-\-\sCOMMENT\sBLOCK\sFOR\sEMBEDDED\sFILE:\s$fname[\s\n]+DO\sNOT\sEDIT\sTHIS\sCOMMENT\sBLOCK[\s\n\]+_\/$reftag\\_[\s\n]+END\sOF\sBLOCK\sON\sNEXT\sLINE[\s\n\]+\-\->/$newtag/;
 4930: #                      print STDERR $$settings{maindata}{text};
 4931:                     }
 4932:                 } else {
 4933:                     my $filename=$$settings{files}[$filecount]{'relfile'};
 4934:                     my $newfilename="$destresdir/resfiles/$res/$$settings{files}[$filecount]{relfile}";
 4935:                     $$settings{maindata}{text} =~ s#(src|SRC|value)=("|&quot;)$filename("|&quot;)#$1="$newfilename"#g;
 4936:                 }
 4937:             } elsif ($$settings{files}[$filecount]{fileaction} eq 'link') {
 4938:                 unless (($$settings{files}[$filecount]{packageparent} ne '') && (grep/^$$settings{files}[$filecount]{packageparent}$/,@{$$settings{files}}) ) {
 4939:                     $linktag .= qq|<a href="$destresdir/resfiles/$res/$$settings{files}[$filecount]{relfile}"|;
 4940:                     if ($$settings{newwindow} eq "true") {
 4941:                         $linktag .= qq| target="$res$filecount"|;
 4942:                     }
 4943:                     foreach my $entry (keys %{$$settings{files}[$filecount]{registry}}) {
 4944:                         $linktag .= qq| $entry="$$settings{files}[$filecount]{registry}{$entry}"|;
 4945:                     }
 4946:                       $linktag .= qq|>$$settings{files}[$filecount]{linkname}</a><br/>\n|;
 4947:                 }
 4948:             } elsif ( ($$settings{files}[$filecount]{fileaction} eq 'PACKAGE') || ($$settings{files}[$filecount]{fileaction} eq 'package') ) {
 4949:                my $open_package = '';
 4950:                if ($$settings{files}[$filecount]{'relfile'} =~ m|\.zip$|i) {
 4951:                    $open_package = &expand_zip("$docroot/$res",$$settings{files}[$filecount]{'relfile'});
 4952:                }
 4953:                if ($open_package eq 'ok') {
 4954:                    opendir(DIR,"$docroot/$res");
 4955:                    my @dircontents = grep(!/^\./,readdir(DIR));
 4956:                    closedir(DIR);
 4957:                    push @{$resrcfiles}, @dircontents;
 4958:                    @{$$hrefs{$res}} = @dircontents;
 4959:                    push @{$packages}, $res;
 4960:                }
 4961:             } elsif ( ($$settings{files}[$filecount]{fileaction} eq 'BROKEN_IMAGE') && ($cms eq 'bb6') ) {
 4962:                 my $filename=$$settings{files}[$filecount]{'relfile'};
 4963:                 my $newfilename="$destresdir/resfiles/$res/$$settings{files}[$filecount]{relfile}";
 4964:                 $$settings{maindata}{text} =~ s#(src|SRC|value)=("|&quot;)$filename("|&quot;)#$1="$newfilename"#g;
 4965:             } elsif ( ($$settings{files}[$filecount]{fileaction} eq 'LINK') && ($cms eq 'bb6') ) {
 4966:                 my $filename=$$settings{files}[$filecount]{'relfile'};
 4967:                 my $newfilename="$destresdir/resfiles/$res/$$settings{files}[$filecount]{relfile}";
 4968:                 my $filetitle = $$settings{files}[$filecount]{'linkname'};
 4969:                 $$settings{maindata}{text} = '<a href="'.$newfilename.'">'.$filetitle.'</a><br /><br />'. $$settings{maindata}{text};
 4970:             }
 4971:         }
 4972:     }
 4973:     if (defined($$settings{maindata}{textcolor})) {
 4974:         $fontcol =  qq|<font color="$$settings{maindata}{textcolor}">|;
 4975:     }
 4976:     if (defined($$settings{maindata}{text})) {
 4977:         if ($$settings{maindata}{bodytype} eq "S") {
 4978:             $$settings{maindata}{text} =~ s#\n#<br/>#g;
 4979:         }
 4980:         if ($$settings{maindata}{ishtml} eq "false") {
 4981:             if ($$settings{maindata}{isnewline} eq "true") {
 4982:                 $$settings{maindata}{text} =~ s#\n#<br/>#g;
 4983:             }
 4984:         } else {
 4985: #            $$settings{maindata}{text} = &HTML::Entities::decode($$settings{maindata}{text});
 4986:         }
 4987:     }
 4988: 
 4989:     if (!open(FILE,">$destdir/resfiles/$res.html")) {
 4990:         &Apache::lonnet::logthis("IMS import error: Cannot open file - $destdir/resfiles/$res.html - $!");
 4991:     } else {
 4992:         push @{$resrcfiles}, "$res.html";
 4993:         my $htmldoc = 0;
 4994: #        if ($$settings{maindata}{text} =~ m-&lt;(html|HTML)>.+&lt;\\(html|HTML)-) {
 4995:         if ($$settings{maindata}{text} =~ m-<(html|HTML)>-) {
 4996:             $htmldoc = 1;
 4997:         }
 4998:         unless ($htmldoc) {
 4999:             print FILE qq|<html>
 5000: <head>
 5001: <title>$$settings{title}</title>
 5002: </head>
 5003: <body bgcolor='#ffffff'>
 5004: $fontcol
 5005: |;
 5006:         }
 5007:         unless ($$settings{title} eq '') { 
 5008:             print FILE qq|$$settings{title}<br/><br/>\n|;
 5009:         }
 5010:         print FILE qq|
 5011: $$settings{maindata}{text}
 5012: $linktag|;
 5013:         unless ($htmldoc) {
 5014:             if (defined($$settings{maindata}{textcolor})) {
 5015:                 print FILE qq|</font>|;
 5016:             }
 5017:             print FILE qq|
 5018:   </body>
 5019:  </html>|;
 5020:         }
 5021:         close(FILE);
 5022:     }
 5023: }
 5024: 
 5025: 
 5026: sub process_angelboards {
 5027:     my ($context,$destdir,$boards,$timestamp,$crs,$cdom,$uname,$db_handling,$messages,$items,$resources,$hrefs,$tempdir,$longcrs) = @_;
 5028:     for (my $i=0; $i<@{$boards}; $i++) {
 5029:         my %msgidx = ();
 5030:         my $forumtext = '';
 5031:         my $boardname = 'bulletinpage_'.$$timestamp[$i];
 5032:         my $forumfile = $tempdir.'/_assoc/'.$$boards[$i].'/pg'.$$boards[$i].'.htm';
 5033:         my @state = ();
 5034:         my $p = HTML::Parser->new
 5035:         (
 5036:            xml_mode => 1,
 5037:            start_h =>
 5038:            [sub {
 5039:                 my ($tagname, $attr) = @_;
 5040:                 push @state, $tagname;
 5041:                 },  "tagname, attr"],
 5042:            text_h =>
 5043:            [sub {
 5044:                 my ($text) = @_;
 5045:                 if ("@state" eq "html body div div") {
 5046:                     $forumtext = $text;
 5047:                 }
 5048:               }, "dtext"],
 5049:             end_h =>
 5050:             [sub {
 5051:                   my ($tagname) = @_;
 5052:                   pop @state;
 5053:                }, "tagname"],
 5054:         );
 5055:         $p->parse_file($forumfile);
 5056:         $p->eof;
 5057: 
 5058:         my %boardinfo = (
 5059:                   'aaa_title' => $$items{$$resources{$$boards[$i]}{revitm}}{title},
 5060:                   'bbb_content' => $forumtext,
 5061:                   'ccc_webreferences' => '',
 5062:                   'uploaded.lastmodified' => time,
 5063:                   );
 5064:         my $msgcount = 0; 
 5065:                                                                                                      
 5066:         my $putresult = &Apache::lonnet::put($boardname,\%boardinfo,$cdom,$crs);
 5067:         if ($db_handling eq 'importall') {
 5068:             foreach my $msg_id (@{$$messages{$$boards[$i]}}) {
 5069:                 $msgcount ++;
 5070:                 $msgidx{$msg_id} = $msgcount;
 5071:                 my %contrib = (
 5072:                             'sendername' => 'NoName',
 5073:                             'senderdomain' => $cdom,
 5074:                             'screenname' => '',
 5075:                             'message' => $$items{$$resources{$msg_id}{revitm}}{title}
 5076:                             );
 5077:                 unless ( $$items{$$resources{$msg_id}{revitm}}{parentseq} eq $$resources{$$boards[$i]}{revitm} ) {
 5078:                     unless ( $msgidx{$$items{$$items{$$resources{$msg_id}{revitm}}{parentseq}}{resnum}} eq ''){
 5079:                         $contrib{replyto} = $msgidx{$$items{$$items{$$resources{$msg_id}{revitm}}{parentseq}}{resnum}};
 5080:                     }
 5081:                 }
 5082:                 if ( @{$$hrefs{$msg_id}} > 1 )  {
 5083:                     my $newurl = '';
 5084:                     foreach my $file (@{$$hrefs{$msg_id}}) {
 5085:                         unless ($file eq 'pg'.$msg_id.'.htm') {
 5086:                             $newurl = $msg_id.$file;
 5087:                              unless ($longcrs eq '') {
 5088:                                 if ($context eq 'CSTR') {
 5089:                                     if (!-e "/home/httpd/lonUsers/$cdom/$longcrs/userfiles") {
 5090:                                         mkdir("/home/httpd/lonUsers/$cdom/$longcrs/userfiles",0755);
 5091:                                     }
 5092:                                     if (!-e "/home/httpd/lonUsers/$cdom/$longcrs/userfiles/$newurl") {
 5093:                                         rename("$destdir/resfiles/$msg_id/$file","/home/httpd/lonUsers/$cdom/$longcrs/userfiles/$newurl");
 5094:                                     }
 5095:                                 }
 5096:                                 $contrib{attachmenturl} = '/uploaded/'.$cdom.'/'.$crs.'/'.$file;
 5097:                             }
 5098:                         }
 5099:                     }
 5100:                 }
 5101:                 my $xmlfile = $tempdir.'/_assoc/'.$msg_id.'/'.$$resources{$msg_id}{file};
 5102:                 &angel_message($msg_id,\%contrib,$xmlfile);
 5103:                 unless ($$resources{$msg_id}{file} eq '') {
 5104:                     unlink($xmlfile);
 5105:                 }
 5106:                 my $symb = 'bulletin___'.$$timestamp[$i].'___adm/wrapper/adm/'.$cdom.'/'.$uname.'/'.$$timestamp[$i].'/bulletinboard';
 5107:                 my $postresult = &addposting($symb,\%contrib,$cdom,$crs);
 5108:             }
 5109:         }
 5110:     }
 5111: }
 5112: 
 5113: # ---------------------------------------------------------------- Process ANGEL message board messages
 5114: sub angel_message {
 5115:     my ($msg_id,$contrib,$xmlfile) = @_;
 5116:     my @state = ();
 5117:     my $p = HTML::Parser->new
 5118:     (
 5119:        xml_mode => 1,
 5120:        start_h =>
 5121:        [sub {
 5122:              my ($tagname, $attr) = @_;
 5123:              push @state, $tagname;
 5124:              },  "tagname, attr"],
 5125:         text_h =>
 5126:         [sub {
 5127:              my ($text) = @_;
 5128:              if ("@state" eq "html body table tr td div small span") {
 5129:                   $$contrib{'plainname'} = $text;
 5130:              } elsif ("@state" eq "html body div div") {
 5131:                   $$contrib{'message'} .= '<br /><br />'.$text;
 5132:              }
 5133:            }, "dtext"],
 5134:          end_h =>
 5135:          [sub {
 5136:                my ($tagname) = @_;
 5137:                pop @state;
 5138:             }, "tagname"],
 5139:     );
 5140:     $p->parse_file($xmlfile);
 5141:     $p->eof;
 5142: }
 5143: 
 5144: # ---------------------------------------------------------------- ANGEL content
 5145: sub angel_content {
 5146:     my ($res,$docroot,$destdir,$settings,$dom,$user,$type,$title,$resrcfiles) = @_;
 5147:     my $xmlfile = $docroot.'/_assoc/'.$res.'/pg'.$res.'.htm';
 5148:     my $filecount = 0;
 5149:     my $firstline;
 5150:     my $lastline;
 5151:     my @buffer = ();
 5152:     my @state;
 5153:     @{$$settings{links}} = ();
 5154:     my $p = HTML::Parser->new
 5155:     (
 5156:        xml_mode => 1,
 5157:        start_h =>
 5158:        [sub {
 5159:              my ($tagname, $attr) = @_;
 5160:              push @state, $tagname;
 5161:             },  "tagname, attr"],
 5162:        text_h =>
 5163:        [sub {
 5164:              my ($text) = @_;
 5165:              if ("@state" eq "html body table tr td div small span") {
 5166:                  $$settings{'subtitle'} = $text;
 5167:              } elsif ("@state" eq "html body div div") {
 5168:                  $$settings{'text'} = $text;
 5169:              } elsif ("@state" eq "html body div div a") {
 5170:                 push @{$$settings{'links'}}, $text;
 5171:              }
 5172:             }, "dtext"],
 5173:        end_h =>
 5174:        [sub {
 5175:              my ($tagname) = @_;
 5176:              pop @state;
 5177:             }, "tagname"],
 5178:     );
 5179:     $p->parse_file($xmlfile);
 5180:     $p->eof;
 5181:     if ($type eq "PAGE") {
 5182:         open(FILE,"<$xmlfile");
 5183:         @buffer = <FILE>;
 5184:         close(FILE);
 5185:         chomp(@buffer);
 5186:         $firstline = -1;
 5187:         $lastline = 0;
 5188:         for (my $i=0; $i<@buffer; $i++) {
 5189:             if (($firstline == -1) && ($buffer[$i] =~ m/<div\sclass="normalDiv"><div\sclass="normalSpan">/)) {
 5190:                 $firstline = $i;
 5191:                 $buffer[$i] = substr($buffer[$i],index($buffer[$i],'"normalSpan"')+13);
 5192:             }
 5193:             if (($firstline > -1) && ($buffer[$i] =~ m-<p></p></div></div>-)) {
 5194:                 $buffer[$i] = substr($buffer[$i],0,index($buffer[$i],'<p></p></div></div>'));
 5195:                 $lastline = $i;
 5196:             }
 5197:         }
 5198:     }
 5199:     open(FILE,">$destdir/resfiles/$res.html");
 5200:     push @{$resrcfiles}, "$res.html";
 5201:     print FILE qq|<html>
 5202: <head>
 5203: <title>$title</title>
 5204: </head>
 5205: <body bgcolor='#ffffff'>
 5206:     |;
 5207:     unless ($title eq '') {
 5208:         print FILE qq|<b>$title</b><br/>\n|;
 5209:     }
 5210:     unless ($$settings{subtitle} eq '') {
 5211:         print FILE qq|$$settings{subtitle}<br/>\n|;
 5212:     }
 5213:     print FILE "<br/>\n";
 5214:     if ($type eq "LINK") {
 5215:         foreach my $link (@{$$settings{links}}) {
 5216:             print FILE qq|<a href="$link">$link</a><br/>\n|; 
 5217:         }
 5218:     } elsif ($type eq "PAGE") {
 5219:         if ($firstline > -1) {
 5220:             for (my $i=$firstline; $i<=$lastline; $i++) {
 5221:                 print FILE "$buffer[$i]\n";
 5222:             }
 5223:         }
 5224:     }
 5225:     print FILE qq|
 5226:   </body>
 5227:  </html>|;
 5228:     close(FILE);
 5229: }
 5230: 
 5231: # ---------------------------------------------------------------- WebCT content
 5232: sub webct4_content {
 5233:     my ($res,$docroot,$destdir,$settings,$dom,$user,$type,$title,$resrcfiles) = @_;
 5234:     if (!open(FILE,">$destdir/resfiles/$res.html")) {
 5235:         &Apache::lonnet::logthis("IMS import error: Cannot open file - $destdir/resfiles/$res.html - $!");
 5236:     } else {
 5237:         push(@{$resrcfiles}, "$res.html");
 5238:         my $linktag = '';
 5239:         if (defined($$settings{url})) {
 5240:             $linktag = qq|<a href="$$settings{url}"|;
 5241:             if ($title ne '') {
 5242:                 $linktag .= qq|>$title</a>|;
 5243:             } else {
 5244:                 $linktag .= qq|>$$settings{url}|;
 5245:             }
 5246:         }
 5247:         print FILE qq|<html>
 5248: <head>
 5249: <title>$title</title>
 5250: </head>
 5251: <body bgcolor='#ffffff'>
 5252: $linktag
 5253: </body>
 5254: </html>|;
 5255:         close(FILE);
 5256:     }
 5257: }
 5258: 
 5259: sub process_html {
 5260:     my ($text,$caller,$html_cond,$context,$res,$dirname,$cdom,$cnum,$docroot,$destdir) = @_;
 5261:     my $pathstart;
 5262:     if ($context eq 'CSTR') {
 5263:         $pathstart = '../..';
 5264:     } else {
 5265:         $pathstart = $dirname;
 5266:     }
 5267:     if ($caller eq 'bb5') {
 5268:         if ($html_cond eq 'true') {
 5269:             $$text = &HTML::Entities::decode($$text);
 5270:         }
 5271:     } elsif ($caller eq 'bb6') {
 5272:         if ($html_cond eq 'HTML') {
 5273:             $$text = &HTML::Entities::decode($$text);
 5274:         }
 5275:     }
 5276:     if ($$text =~ m#<img src=['"]?(https?://[^\s]+/)([^/\s\'"]+)['"]?[^>]*>#) {
 5277:         if (&retrieve_image($context,$res,$dirname,$cdom,$cnum,$docroot,$destdir,$1,$2) eq 'ok') {
 5278:             $$text =~ s#(<img src=['"]?)(https?://[^\s]+/)([^/\s'"]+)(['"]?[^>]*>)#$1$pathstart/resfiles/$res/webimages/$3$4#g;
 5279:         }
 5280:     }
 5281:     $$text =~ s#(<img src=[^>]+)/*>#$1 />#gi;
 5282:     $$text =~ s#<br>#<br />#g;
 5283:     return;
 5284: }
 5285: 
 5286: sub add_images_links {
 5287:     my ($type,$context,$settings,$id,$dirname,$res) = @_;
 5288:     my ($image,$imglink,$url,$pathstart);
 5289:     if ($context eq 'CSTR') {
 5290:         $pathstart = '../..';
 5291:     } else {
 5292:         $pathstart = $dirname;
 5293:     }
 5294:     if ((defined($$settings{$id}{$type}{image})) && ($$settings{$id}{$type}{image} ne '')) {
 5295:         if ( $$settings{$id}{$type}{style} eq 'Inline' ) {
 5296:             $image = qq|<br /><img src="$pathstart/resfiles/$res/$$settings{$id}{$type}{image}" alt="$$settings{$id}{$type}{label}"/><br />|;
 5297:         } else {
 5298:             $imglink = qq|<br /><a href="$pathstart/resfiles/$res/$$settings{$id}{$type}{image}">$$settings{$id}{$type}{label}</a><br />|;
 5299:         }
 5300:     }
 5301:     if ((defined($$settings{$id}{$type}{link})) && ($$settings{$id}{$type}{link} ne '' )) {
 5302:         $url = qq|<br /><a href="$$settings{$id}{$type}{link}">$$settings{$id}{$type}{linkname}</a><br />|;
 5303:     }
 5304:     return $image.$imglink.$url; 
 5305: }
 5306: 
 5307: sub remove_html {
 5308:     my ($choice_text) = @_;
 5309:     return $choice_text;
 5310: }
 5311: 
 5312: 
 5313: 1;
 5314: __END__

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