Diff for /loncom/imspackages/imsimport.pm between versions 1.1 and 1.19

version 1.1, 2004/02/10 23:36:32 version 1.19, 2006/04/04 08:18:33
Line 1 Line 1
 package Apache::imsimport;  # Copyright Michigan State University Board of Trustees
   #
   # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
   #
   # LON-CAPA is free software; you can redistribute it and/or modify
   # it under the terms of the GNU General Public License as published by
   # the Free Software Foundation; either version 2 of the License, or
   # (at your option) any later version.
   #
   # LON-CAPA is distributed in the hope that it will be useful,
   # but WITHOUT ANY WARRANTY; without even the implied warranty of
   # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   # GNU General Public License for more details.
   #
   # You should have received a copy of the GNU General Public License
   # along with LON-CAPA; if not, write to the Free Software
   # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   #
   # /home/httpd/html/adm/gpl.txt
   #
   # http://www.lon-capa.org/
   #
   
   use strict;  package Apache::imsimport;
   use Apache::Constants qw(:common :http :methods);  
   use Apache::loncacc;  
   use Apache::loncommon();  
   use Apache::Log();  
   use Apache::lonnet;  
   use HTML::Parser;  
   use HTML::Entities();  
   use Apache::lonlocal;  
   use Apache::lonupload;  
   use File::Basename();                                                                                              
 # ---------------------------------------------------------------- Display Control  
 sub display_control {  
 # figure out what page we're on and where we're heading.  
     my $page = $ENV{'form.page'};  
     my $command = $ENV{'form.go'};  
     my $current_page = &calculate_page($page,$command);  
     return $current_page;  
 }  
                                                                                                
 # CALCULATE THE CURRENT PAGE  
 sub calculate_page($$) {  
     my ($prev,$dir) = @_;  
     return 0 if $prev eq '';    # start with first page  
     return $prev + 1 if $dir eq 'NextPage';  
     return $prev - 1 if $dir eq 'PreviousPage';  
     return $prev     if $dir eq 'ExitPage';  
     return 0 if $dir eq 'BackToStart';  
 }  
   
 # ----------------------------------------------------------------  Jscript Zero  use strict;
 sub jscript_zero {  use Apache::Constants qw(:common :http :methods);
   use Apache::loncacc;
   use Apache::loncommon();
   use Apache::lonnet;
   use Apache::imsprocessor;
   use HTML::Parser;
   use HTML::Entities();
   use Apache::lonlocal;
   use Apache::lonupload;
   use File::Basename();
                                                                                               
   # ----------------------------------------------------------------  Jscript One
   sub jscript_one {
     my ($fullpath,$jsref) = @_;      my ($fullpath,$jsref) = @_;
     my $source = '';  
     if (exists($ENV{'form.go'}) ) {      my $start_page = 
         $source = $ENV{'form.go'};   &Apache::loncommon::start_page('Create IMS import directory',undef,
     }         {'only_body'   => 1,
    'add_entries' => "topmargin='0' leftmargin='0' marginheight='0'marginwidth='0' rightmargin='0'",
    'js_ready'    => 1,});
       my $end_page = 
    &Apache::loncommon::end_page({'js_ready' => 1,});
   
     $$jsref = <<"END_OF_ONE";      $$jsref = <<"END_OF_ONE";
 function verify() {  function verify() {
  if ((document.forms.dataForm.newdir.value == '')  || (!document.forms.dataForm.newdir.value)) {   if ((document.forms.dataForm.newdir.value == '')  || (!document.forms.dataForm.newdir.value)) {
Line 46  function verify() { Line 56  function verify() {
  if (document.forms.dataForm.source.selectedIndex == 0) {   if (document.forms.dataForm.source.selectedIndex == 0) {
    alert("You must choose the Course Management System from which the IMS package was exported");     alert("You must choose the Course Management System from which the IMS package was exported");
    return false     return false
  }    }
  return true   return true
 }  }
                                                                                                 
 function nextPage() {  function nextPage() {
  if (verify()) {    if (verify()) {
    document.forms.dataForm.go.value="NextPage"      document.forms.dataForm.submit()
    document.forms.dataForm.submit()    }
  }  
 }  }
   
 function createWin() {  function createWin() {
   document.dataForm.newdir.value = "";    document.dataForm.newdir.value = "";
   newWindow = window.open("","CreateDir","HEIGHT=400,WIDTH=750,scrollbars=yes")    newWindow = window.open("","CreateDir","HEIGHT=400,WIDTH=750,scrollbars=yes")
   newWindow.document.open()    newWindow.document.open()
   newWindow.document.write("<html><head><title>Create IMS import directory</title><meta http-equiv='pragma' content='no-cache'>\\n")    newWindow.document.write('$start_page')
   newWindow.document.write("</head><body bgcolor='#CCFFDD' topmargin='0' leftmargin='0' marginheight='0'marginwidth='0' rightmargin='0'>\\n")    newWindow.document.write("\\n<img border='0' src='/adm/lonInterFace/author.jpg' alt='[Author Header]'>\\n")
   newWindow.document.write("<img border='0' src='/adm/lonInterFace/author.jpg' alt='[Author Header]'>\\n")  
   newWindow.document.write("<table border='0' cellspacing='0' cellpadding='0' width='600' bgcolor='#CCFFDD'>\\n")    newWindow.document.write("<table border='0' cellspacing='0' cellpadding='0' width='600' bgcolor='#CCFFDD'>\\n")
   newWindow.document.write("<tr><td width='2'>&nbsp;</td><td width='3'>&nbsp;</td>\\n")    newWindow.document.write("<tr><td width='2'>&nbsp;</td><td width='3'>&nbsp;</td>\\n")
   newWindow.document.write("<td><h3>Location: <tt>$fullpath</tt></h3><h3>New Directory</h3></td></tr>\\n")    newWindow.document.write("<td><h3>Location: <tt>$fullpath</tt></h3><h3>New Directory</h3></td></tr>\\n")
   newWindow.document.write("<tr><td width='2'>&nbsp;</td><td width='3'>&nbsp;</td>\\n")    newWindow.document.write("<tr><td width='2'>&nbsp;</td><td width='3'>&nbsp;</td>\\n")
   newWindow.document.write("<td><form name='fileaction' action='/adm/cfile' method='post'>\\n")    newWindow.document.write("<td><form name='fileaction' action='/adm/cfile' method='post'>\\n")
   newWindow.document.write("<font face='arial,helvetica,sans-serif'>Enter the name of the new directory where you will store the contents of your IMS package.<br /><br />")    newWindow.document.write("<font face='arial,helvetica,sans-serif'>Enter the name of the new directory where you will store the contents of your IMS package.<br /><br />")
   newWindow.document.write("<input type='hidden' name='filename' value='$fullpath'>")    newWindow.document.write("<input type='hidden' name='filename' value='$fullpath' />")
   newWindow.document.write("<input type='hidden' name='action' value='newdir'>")    newWindow.document.write("<input type='hidden' name='action' value='newdir' />")
   newWindow.document.write("<input type='hidden' name='callingmode' value='imsimport'>")    newWindow.document.write("<input type='hidden' name='callingmode' value='imsimport' />")
   newWindow.document.write("$fullpath<input type='text' name='newfilename' value=''/>")    newWindow.document.write("$fullpath<input type='text' name='newfilename' value='' />")
   newWindow.document.write("<input type='button' value='Go' onClick='document.fileaction.submit();' />")    newWindow.document.write("<input type='button' value='Go' onClick='document.fileaction.submit();' />")
   newWindow.document.write("</td></tr>\\n")    newWindow.document.write("</td></tr>\\n")
   newWindow.document.write("</table></body></html>")    newWindow.document.write("</table>")
     newWindow.document.write('$end_page')
   newWindow.document.close()    newWindow.document.close()
   newWindow.focus()    newWindow.focus()
 }  }
   
 END_OF_ONE  END_OF_ONE
   
 }  }
   
 # ---------------------------------------------------------------- Display Zero  # ----------------------------------------------------------------  Jscript Two
 sub display_zero {  sub jscript_two {
     my ($r,$uname,$fn,$page) = @_;      my ($javascript,$user,$dom,$numcrs) = @_;
       my %crsentry = ();
       my $course_list;
       my $title_list;
       my @crslist = ();
       &get_ccroles($user,$dom,\%crsentry,\@crslist);
       if (@crslist > 0) {
           $crsentry{$crslist[0]} =~ s/("|,)//g;
           $title_list = '"'.$crsentry{$crslist[0]}.'"';
           if (@crslist > 1) {
               for (my $i=1; $i<@crslist; $i++) {
                   $crsentry{$crslist[$i]} =~ s/("|,)//g;
                   $title_list .= ',"'.$crsentry{$crslist[$i]}.'"';
               }
           }
       }
       $course_list = '"'.join('","',@crslist).'"';
       $$numcrs = @crslist;
   
       $$javascript = qq#
   
   function checkCourse() {
     courseID_array = new Array($course_list)
     courseTitle_array = new Array($title_list)
     var step2Form = document.forms.pickoptions
     var conditionType = step2Form.conditions.value
     var curVal = step2Form.targetcourse.options[step2Form.targetcourse.selectedIndex].value
     if (curVal == -1) {
         if ( conditionType == 'both'  )  {
             if ( step2Form.board.checked == true || step2Form.users.checked == true ) {
                 setCourse(step2Form,'add')
             }
         }
         if ( conditionType == 'users'  )  {
             if ( step2Form.users.checked == true ) {
                 setCourse(step2Form,'add')
             }
         }
         if ( conditionType == 'board'  )  {
             if ( step2Form.board.checked == true ) {
                 setCourse(step2Form,'add')
             }
         }
     }
     else { 
         if ( conditionType == 'both'  )  {
             if ( step2Form.board.checked == false && step2Form.users.checked == false ) {
                 setCourse(step2Form,'clear')
             }
         }
         if ( conditionType == 'users'  )  {
             if ( step2Form.users.checked == false ) {
                 setCourse(step2Form,'clear')
             }
         }
         if ( conditionType == 'board'  )  {
             if ( step2Form.board.checked == false ) {
                 setCourse(step2Form,'clear')
             }
         }
     }
   }
   
   function setCourse(step2Form,call) {
       step2Form.targetcourse.length = 0
       if (call == 'add') {
           step2Form.targetcourse.length = 0
           step2Form.targetcourse.options[0] = new Option("Please Select","0",true,true)
           for (var i=0; i<courseID_array.length; i++) {
               step2Form.targetcourse.options[i+1] = new Option(courseTitle_array[i],courseID_array[i],false,false)
           }
           step2Form.targetcourse.selectedIndex = 0
       }
       else {
           step2Form.targetcourse.options[0] = new Option("Not required","-1",true,true)
           step2Form.targetcourse.selectedIndex = 0
       }
   }
   
   
   function setOptions(caller,itemnum) {
     var numCrs = $$numcrs
     var opForm = document.forms.pickoptions
     var menu = 1 + itemnum*2
     opForm.elements[menu].length = 0
     if (opForm.elements[itemnum*2].checked == true) {
       if (caller == "board") {
         opForm.elements[menu].options[0] = new Option("Select","-1",true,true)
         opForm.elements[menu].options[1] = new Option("Import topics only","topics",true,true)
         opForm.elements[menu].options[2] = new Option("Import topics + posts (with author)","allpost",true,true)
         opForm.elements[menu].options[3] = new Option("Import topics + posts (no author)","allanon",true,true)
       }
       else { 
         if (caller == "users") {
           opForm.elements[menu].length = 0
           opForm.elements[menu].options[0] = new Option("Select","-1",true,true)
           opForm.elements[menu].options[1] = new Option("Enroll students only","students",true,true)
           opForm.elements[menu].options[2] = new Option("Enroll all users","all",true,true)
         }
       }
     }
     else {
       opForm.elements[menu].options[0] = new Option("Not required","0",true,true)
     }
     opForm.elements[menu].selectedIndex = 0
     if (numCrs > 0) {
         checkCourse()
     }
   }
   
   function verify(caller) {
     var numCrs = $$numcrs
     var opForm = document.forms.pickoptions
     var totcheck = 0;
     var totchg = 0;
     for (var i=0; i<caller; i++) {
       if (opForm.elements[2*i].checked == true) {
         totcheck ++
         if (opForm.elements[2*i].name == "board") { 
           if (opForm.elements[2*i+1].selectedIndex == 0) {     
             alert("You must select one of the additional options when importing Discussion Boards ")
             return false
           }
           if (numCrs == 0) {
               opForm.elements[2*i].checked = false
               totchg ++
           }
           else {
             if (opForm.targetcourse.selectedIndex == 0) {
               alert("You must select a target course when importing Discussion Boards")
               return false
             }
           }
         }
         if (opForm.elements[2*i].name == "users") {
           if (opForm.elements[2*i+1].selectedIndex == 0) {     
             alert("You must select one of the additional options when importing Enrollment")
             return false
           }
           if (numCrs == 0) {
               opForm.elements[2*i].checked = false
               totchg ++ 
           }
           else {
             if (opForm.targetcourse.selectedIndex == 0) {
               alert("You must select a target course when importing enrollment information")
               return false
             }
           }
         }
       }
     }
     if (totcheck == 0) {
       alert("You must check the Checkbox for at least one Content Type");
       return false
     }
     return true
   }
   
   function nextPage(caller) {
     if (verify(caller)) {
       document.forms.pickoptions.submit()
     }
   }
   
   #;
   
   }
   
   # ----------------------------------------------------------------  Jscript Three
   sub jscript_three {
       my $javascript = shift;
   }
   
   # ---------------------------------------------------------------- Display One
   sub display_one {
       my ($r,$uname,$fn,$fullpath) = @_;
     $r->print(<<"END_OF_ONE");      $r->print(<<"END_OF_ONE");
  <h3><font face='arial,helvetica,sans-serif'>Step 1: Selection of IMS package type and destination directory for the package contents</b>&nbsp;</font></h3>  
 <form name="dataForm" method="post">  <form name="dataForm" method="post">
 <table border='0' bgcolor='#CCFFDD' cellspacing='0' cellpadding ='0' width='100%'>  <table border='0' bgcolor='#CCFFDD' cellspacing='0' cellpadding ='0' width='100%'>
     <tr>      <tr>
Line 100  sub display_zero { Line 284  sub display_zero {
         </td>          </td>
        </tr>         </tr>
        <tr bgcolor='#ccddaa'>         <tr bgcolor='#ccddaa'>
         <td width='30' align='top'>&nbsp;          <td valign='middle'><img src='/res/adm/pages/bl_step1.gif'>&nbsp;
         </td>          </td>
         <td width='100%' align='left'>&nbsp;&nbsp;          <td width='100%' align='left'>&nbsp;&nbsp;
          <font size='+1' face='arial,helvetica,sans-serif'><b>Specify the Course Management system used to create the package.</b></font>           <font face='arial,helvetica,sans-serif'><b>Specify the Course Management system used to create the package.</b>&nbsp;&nbsp;
            </font>
        </td>         </td>
       </tr>        </tr>
       <tr>        <tr>
Line 113  sub display_zero { Line 298  sub display_zero {
        <td>&nbsp;</td>         <td>&nbsp;</td>
        <td>         <td>
         <font face='Arial,Helvetica,sans-serif'>          <font face='Arial,Helvetica,sans-serif'>
 Please choose the CMS used to create your IMS content package.</font>  Please choose the CMS used to create your IMS content package.&nbsp;&nbsp;
           <select name="source">
            <option value='-1' selected="true">Please select</option>
            <option value='bb5'>Blackboard 5</option>
            <option value='bb6'>Blackboard 6</option>
            <option value='angel'>ANGEL</option>
            <option value='webctce4'>WebCT 4 Campus Edition</option>
            <option value='webctvista4'>WebCT Vista 4</option>
           </select>
           </font>
        </td>         </td>
       </tr>        </tr>
       <tr>        <tr>
        <td colspan='2'>&nbsp;</td>         <td colspan='2'>&nbsp;</td>
       </tr>        </tr>
       <tr>        <tr>
       <tr>  
        <td>&nbsp;</td>  
        <td>  
         <font face='Arial,Helvetica,sans-serif'>  
         <select name="source">  
          <option value='-1' selected="true">Please select  
          <option value='bb5'>Blackboard 4 or 5  
          <option value='bb6'>Blackboard 6  
          <option value='angel'>ANGEL  
          <option value='webct'>WebCT  
         </select>  
        </td>  
       </tr>  
       <tr>  
        <td colspan='2'>&nbsp;</td>         <td colspan='2'>&nbsp;</td>
       </tr>        </tr>
       <tr bgcolor='#ccddaa'>        <tr bgcolor='#ccddaa'>
        <td width='30' align='top'>&nbsp;         <td valign='middle'><img src='/res/adm/pages/bl_step2.gif'>
        </td>         </td>
        <td width='100%' align='left'>&nbsp;&nbsp;         <td width='100%' align='left'>&nbsp;&nbsp;
         <font size='+1' face='arial,helvetica,sans-serif'><b>Create a directory where you will unpack your IMS package.</b></font>          <font face='arial,helvetica,sans-serif'><b>Create a directory where you will unpack your IMS package.</b>&nbsp;&nbsp;</font></td>
        </td>  
       </tr>        </tr>
       <tr>        <tr>
        <td colspan='2'>&nbsp;</td>         <td colspan='2'>&nbsp;</td>
       </tr>        </tr>
       <tr>  
        <td>&nbsp;</td>         <td>&nbsp;</td>
        <td>         <td>
         <font face='Arial,Helvetica,sans-serif'>          <font face='Arial,Helvetica,sans-serif'>
 Please choose a destination LON-CAPA directory in which to store the contents of the IMS package file</font>  Please choose a destination LON-CAPA directory in which to store the contents of the IMS package file. <input type="button" name="createdir" value="Create Directory" onClick="javascript:createWin()" /><input type="hidden" name="newdir" value="" /></font>
        </td>         </td>
       </tr>        </tr>
       <tr>        <tr>
        <td colspan='2'>&nbsp;</td>         <td colspan='2'>&nbsp;<br /><br /></td>
       </tr>        </tr>
       <tr>        <tr>
        <td>&nbsp;</td>         <td>&nbsp;</td>
        <td><input type="button" name="createdir" value="Create Directory" onClick="javascript:createWin()"><input type="hidden" name="newdir" value=""></td>         <td><font face='arial,helvetica,sans-serif'>If you have selected the CMS used to create the IMS package, and have created a destination directory, click the 'Proceed' button to continue the IMS package upload process.</font></td>
       </tr>  
       <tr>  
        <td colspan='2'>&nbsp;</td>  
       </tr>  
       <tr>  
        <td>&nbsp;</td>  
        <td><font face='arial,helvetica,sans-serif'>If you have created a destination directory you should use the "Next Page" button to complete the process of unpacking your IMS package.</font></td>  
       </tr>        </tr>
       <tr>        <tr>
        <td colspan='2'>         <td colspan='2'>
           <input type='hidden' name="go" value="">            <input type="hidden" name="uploaduname" value="$uname" />
           <input type="hidden" name="uploaduname" value="$uname">            <input type="hidden" name="filename" value="$fn" />
           <input type="hidden" name="filename" value="$fn">            <input type="hidden" name="phase" value="three" />
           <input type='hidden' name="page" value="$page">  
           <input type="hidden" name="phase" value="three">  
        </td>         </td>
       </tr>        </tr>
       <tr>        <tr>
Line 183  Please choose a destination LON-CAPA dir Line 352  Please choose a destination LON-CAPA dir
        <td colspan='2'>         <td colspan='2'>
         <table border='0' cellspacing='0' cellpadding='0' width="100%">          <table border='0' cellspacing='0' cellpadding='0' width="100%">
          <tr>           <tr>
           <td align='left'>&nbsp;            <td align='left'>
              <input type='button' name='exitpage' value='Exit now' onClick="javascript:location.href='$fullpath'" />
           </td>            </td>
           <td align='right'>            <td align='right'>
            <input type="button" name="nextpage" value="Continue to step 2" onClick="javascript:nextPage()">             <input type="button" name="nextpage" value="Proceed" onClick="javascript:nextPage()" />
           </td>            </td>
          </tr>           </tr>
         </table>          </table>
Line 200  Please choose a destination LON-CAPA dir Line 370  Please choose a destination LON-CAPA dir
 END_OF_ONE  END_OF_ONE
 }  }
   
 # ---------------------------------------------------------------- Display One  # ---------------------------------------------------------------- Display Two
                                                                                                 sub display_two {
 sub expand_bb5 {      my ($r,$zipupload,$areas,$areaname,$cmsmap,$uname,$newdir,$numcrs,$fullpath) = @_;
     my ($r,$uname,$udom,$fn,$page) = @_;      &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['folder','source']);
     my @state = ();      my $cms = $env{'form.source'};
     my @seq = "Top";      my $dirname = $env{'form.newdir'};
     my $lastitem;      my $tempdir = &Apache::imsprocessor::create_tempdir('CSTR',$dirname,'');
     my %resnum = ();      my $fname = &Apache::imsprocessor::uploadzip('CSTR',$tempdir,$zipupload);
     my %title = ();      my $unzip_result = '';
     my %filepath = ();      my $manifest_result = '';
     my %contentscount = ('Top' => 0);      unless ($tempdir eq '') {
     my %contents = ();          $unzip_result = &Apache::imsprocessor::expand_zip($tempdir,$fname);
     my %parentseq = ();      }
     my %base = ();      my %resources = ();
     my %file = ();      my %includedres = ();
     my %type = ();      my %includeditems = ();
     my %href = ();      my %items = ();
     my $identifier = '';      my %hrefs = ();
     my %resinfo = ();      my %resinfo = ();
     my $numfolders = 0;      my %count = ();
     my $numpages = 0;      my @bgcolors = ("#eeeeee","#dddddd");
     my $docroot = $ENV{'form.newdir'};  
     if (!-e "$docroot/temp") {  
         mkdir "$docroot/temp";  
     }  
     my $newdir = '';  
     if ($docroot =~ m|public_html/(.+)$|) {  
         $newdir = $1;  
     }  
     my $dirname = "/res/$udom/$uname/$newdir";  
     my $zipfile = '/home/'.$uname.'/public_html'.$fn;  
     if ($fn =~ m|\.zip$|i) {  
             open(OUTPUT, "unzip -o $zipfile -d $docroot/temp  2> /dev/null |");  
             while (<OUTPUT>) {  
                 print "$_<br />";  
             }  
             close(OUTPUT);  
     }  
   
     my $xmlfile = $docroot.'/temp/imsmanifest.xml';      my $counter = 0;
 #    print STDERR "XML file is $xmlfile\n";      my $iter = 0;
     my $p = HTML::Parser->new      my %count = (
     (                  announce => 0,
        xml_mode => 1,                  board => 0,
        start_h =>                  doc => 0,
            [sub {                  extlink => 0,
                 my ($tagname, $attr) = @_;                  msg => 0,
                 push @state, $tagname;                  pool => 0,
                 my $num = @state - 3;                  quiz => 0,
                 my $start = $num;                  staff => 0,
                 my $statestr = '';                  survey => 0,
                 foreach (@state) {                  users => 0,
                   $statestr .= "$_ ";                  );
                 }      my $conditions;
                 if ( ($state[0] eq "manifest") && ($state[1] eq "organizations") && ($state[2] eq "tableofcontents") ) {  
                   my $searchstr = "manifest organizations tableofcontents";      if ($unzip_result eq 'ok') {
                   while ($num > 0) {          $manifest_result = &Apache::imsprocessor::process_manifest($cms,
                     $searchstr .= " item";                              $tempdir,\%resources,\%items,\%hrefs,\%resinfo,
                     $num --;                               'choose',\%includedres,\%includeditems);
                   }          if ($manifest_result eq 'ok') {
                   if (("@state" eq $searchstr) && (@state > 3)) {              foreach my $res (sort keys %resources) {
                     my $itm = $attr->{identifier};                  if ($cms eq 'bb5' || $cms eq 'bb6' || $cms eq 'webctce4' 
                     $resnum{$itm} = $attr->{identifierref};                      || $cms eq 'webctvista4') {
                     $title{$itm} = $attr->{title};                      foreach my $area (keys %{$$cmsmap{$cms}}) {
                     if ($start > @seq) {                          if ($resources{$res}{type} eq $$cmsmap{$cms}{$area}) {
                         unless ($lastitem eq '') {                              $count{$area} ++;
                             push @seq, $lastitem;  
                             unless ( defined($contents{$seq[-1]}) ) {  
                                 @{$contents{$seq[-1]}} = ();  
                             }  
                             push @{$contents{$seq[-1]}},$itm;  
                             $parentseq{$itm} = $seq[-1];   
                         }                          }
                     }                      }
                     elsif ($start < @seq) {                  } elsif ($cms eq 'angel') {
                       my $diff = @seq - $start;                      foreach my $area (keys %{$$cmsmap{$cms}}) {
                       while ($diff > 0) {                          if ($area eq 'doc') {
                         pop @seq;                              if (grep/^$resources{$res}{type}$/,@{$$cmsmap{$cms}{doc}}) {
                         $diff --;                                  $count{$area} ++;
                       }                              }
                       if (@seq) {                          } elsif ($resources{$res}{type} eq $$cmsmap{$cms}{$area}) {
                         push @{$contents{$seq[-1]}}, $itm;                              $count{$area} ++;                                
                       }                          }
                     } else {  
                        push @{$contents{$seq[-1]}}, $itm;  
                     }  
                     my $path;  
                     if (@seq > 1) {  
                       $path = join(',',@seq);  
                     } elsif (@seq > 0) {  
                       $path = $seq[0];  
                     }                      }
                     $filepath{$itm} = $path;  
                     $contentscount{$seq[-1]} ++;  
                     $lastitem = $itm;  
                   }  
                 } elsif ("@state" eq "manifest resources resource" ) {  
                     $identifier = $attr->{identifier};  
                     $base{$identifier} = $attr->{baseurl};                   
                     $file{$identifier} = $attr->{file};  
                     $type{$identifier} = $attr->{type};  
                 } elsif ("@state" eq "manifest resources resource file") {  
                     push@{$href{$identifier}},$attr->{href};  
                 }  
            }, "tagname, attr"],  
         text_h =>  
             [sub {  
                 my ($text) = @_;  
               }, "dtext"],  
         end_h =>  
               [sub {  
                   my ($tagname) = @_;  
                   pop @state;  
                }, "tagname"],  
     );  
   
     $p->parse_file($xmlfile);  
     $p->eof;  
   
     my $topnum = 0;  
     my $destdir = $docroot;  
 #    print STDERR "Destdir is $destdir\n";  
     if (!-e "$destdir") {  
         mkdir("$destdir",0755);  
     }  
     if (!-e "$destdir/sequences") {  
         mkdir("$destdir/sequences",0755);  
     }  
     if (!-e "$destdir/resfiles") {  
         mkdir("$destdir/resfiles",0755);  
     }  
     if (!-e "$destdir/pages") {  
         mkdir("$destdir/pages",0755);  
     }  
     if (!-e "$destdir/problems") {  
         mkdir("$destdir/problems",0755);  
     }  
     open(FILE,">$destdir/sequences/ims_import.sequence");  
     print FILE "<map>\n";  
   
     foreach my $key (sort keys %href) {  
         foreach my $file (@{$href{$key}}) {  
             my $filepath = $file;  
             if (!-e "$destdir/resfiles/$key") {   
                 mkdir("$destdir/resfiles/$key",0755);  
             }   
             while ($filepath =~ m-(\w+)/(.+)-) {  
                 $filepath = $2;  
                 if (!-e "$destdir/resfiles/$key/$1") {  
                     mkdir("$destdir/resfiles/$key/$1",0755);  
                 }                  }
             }              }
             system("cp $docroot/temp/$key/$file $destdir/resfiles/$key/$file");              if ($count{board} > 0) {
         }                  if ($count{users} > 0) {
     }                         $conditions = 'both';
   
     foreach my $key (sort keys %type) {  
         if ($type{$key} eq "resource/x-bb-document") {  
             %{$resinfo{$key}} = ();  
             &process_content($key,$docroot,$destdir,\%{$resinfo{$key}},$udom,$uname);  
         } elsif ($type{$key} eq "resource/x-bb-staffinfo") {  
             %{$resinfo{$key}} = ();  
             &process_staff($key,$docroot,$destdir,\%{$resinfo{$key}});  
         } elsif ($type{$key} eq "resource/x-bb-externallink") {  
             %{$resinfo{$key}} = ();  
             &process_link($key,$docroot,$destdir,\%{$resinfo{$key}});  
         } elsif ($type{$key} eq "resource/x-bb-discussionboard") {  
             %{$resinfo{$key}} = ();  
             &process_db($key,$docroot,$destdir,\%{$resinfo{$key}});  
         } elsif ($type{$key} eq "resource/x-bb-announcement") {  
             %{$resinfo{$key}} = ();  
             &process_announce($key,$docroot,$destdir,\%{$resinfo{$key}});  
         } elsif ($type{$key} eq "assessment/x-bb-pool") {  
             %{$resinfo{$key}} = ();  
             &process_assessment($key,$docroot,'pool',$dirname,$destdir,\%{$resinfo{$key}});  
         } elsif ($type{$key} eq "assessment/x-bb-quiz") {  
             %{$resinfo{$key}} = ();  
             &process_assessment($key,$docroot,'quiz',$dirname,$destdir,\%{$resinfo{$key}});  
         } elsif ($type{$key} eq "assessment/x-bb-survey") {  
             %{$resinfo{$key}} = ();  
             &process_assessment($key,$docroot,'survey',$dirname,$destdir,\%{$resinfo{$key}});  
         } elsif ($type{$key} eq "assessment/x-bb-group") {  
             %{$resinfo{$key}} = ();  
             &process_group($key,$docroot,$destdir,\%{$resinfo{$key}});  
         } elsif ($type{$key} eq "resource/x-bb-user") {     
             %{$resinfo{$key}} = ();  
             &process_user($key,$docroot,$destdir,\%{$resinfo{$key}});  
         }  
     }  
   
     my $nextnum = 0;  
     open(TOPFILE,">$destdir/sequences/ims_import.sequence");  
     print TOPFILE "<map>\n";  
     my $fileopen = 0;  
     my $areakey;  
     my $areacount = 0;  
     my $lastentry = '';  
     my $notlastentry = '';  
     my %pagecount = ();  
     my %pagecontents = ();  
     my %pageflag = ();  
     my %seqflag = ();  
     my %seqcount = ();  
   
     foreach my $key (sort keys %resnum) {  
 #        print STDERR "$key $filepath{$key} $resnum{$key} $title{$key}\n";  
         $pageflag{$key} = 0;  
         $seqflag{$key} = 0;  
         $seqcount{$key} = 0;  
         $pagecount{$key} = -1;  
         if ($filepath{$key} eq 'Top') {  
             $topnum ++;  
             $nextnum = $topnum +1;  
             print TOPFILE qq|<resource id="$topnum" src="/res/$udom/$uname/$newdir/sequences/$key.sequence" title="$title{$key}"|;  
             if ($topnum == 1) {  
                 print TOPFILE qq| type="start"></resource>  
 <link from="$topnum" to="$nextnum" index="$topnum"></link>\n|;  
                 if ($topnum == $contentscount{'Top'}) {  
                     print TOPFILE qq|<resource id="$nextnum" src="" type="finish"></resource>\n|;  
                 }  
             } else {  
                 if ($topnum == $contentscount{'Top'}) {  
                     print TOPFILE qq| type="finish"></resource>\n|;  
                 } else {  
                     print TOPFILE qq|></resource>  
 <link from="$topnum" to="$nextnum" index="$topnum"></link>\n|;  
                 }  
             }  
             my $seqname = $title{$key};  
             $seqname =~ s/\s//g;  
             $seqname =~ tr/A-Z/a-z/;  
             if ($fileopen) {  
                 if ($areacount == 0) {  
                     print AREAFILE qq|<resource id="1" src="" type="start">  
 <link from="1" to="2" index="1"></link>  
 <resource id="2" src="" type="finish">\n|;  
                 } elsif ($areacount == 1) {  
                     print AREAFILE qq|<resource id="2" src="" type="finish">\n|;  
                 } else {                  } else {
                     print AREAFILE qq|$lastentry\n|;                      $conditions = 'board';
                 }                  }
                 print AREAFILE "</map>\n";               } elsif ($count{users} > 0) {
                 close(AREAFILE);                  $conditions = 'users';
                 $fileopen = 0;              } else {
                   $conditions = 'none';
             }              }
             $areakey = $key;  
             @{$pagecontents{$areakey}} = ();              $r->print(<<ENDBLOCK);
             open(AREAFILE,">$destdir/sequences/$key.sequence");  <form name="pickoptions" method="post">
             print AREAFILE "<map>\n";    <table border='0' cellspacing='0' cellpadding ='0' width='100%'>
             $fileopen = 1;     <tr>
             $areacount = 0;      <td colspan='2'>
         } else {       <table border='0' cellspacing='0' cellpadding='0'>
             if ($filepath{$key} eq "Top,$areakey") {        <tr>
 #                print STDERR "$key $filepath{$key} $resnum{$key} $title{$key}\n";         <td colspan='2'  align='left'>&nbsp;
                 my $src = '';         </td>
                 if ($areacount == 0) {        </tr>
                     if ($resinfo{$resnum{$key}}{'isfolder'} eq "true") {        <tr bgcolor='#ccddaa'>
                         $src = 'sequences/'.$key.".sequence";         <td valign='middle'><img src='/res/adm/pages/bl_step3.gif'>
                         $pageflag{$areakey} = 0;         </td>
                         $seqflag{$areakey} = 1;         <td width='100%' align='left'>&nbsp;&nbsp;
                     } else {          <font face='arial,helvetica,sans-serif'><b>Choose which content types you wish to import</b></font>
                         if ($pageflag{$areakey}) {         </td>
                             push @{$pagecontents{$areakey}[$pagecount{$areakey}]},$key;        </tr>
                         } else {        <tr>
                             $pagecount{$areakey} ++;         <td colspan='2'>&nbsp;</td>
                             $src = 'pages/'.$areakey.'_'.$pagecount{$areakey}.'.page';        </tr>
                             @{$pagecontents{$areakey}[$pagecount{$areakey}]} = ("$key");        <tr>
                             $seqflag{$areakey} = 0;         <td>&nbsp;</td>
                         }         <td>
                     }          <table border='0' cellspacing='0' cellpadding='1' bgcolor='#000000'>
                     unless ($pageflag{$areakey}) {           <tr>
                         print AREAFILE qq|<resource id="1" src="/res/$udom/$uname/$newdir/$src" title="$title{$key}" type="start">            <td>
 <link from="1" to="2" index="1"></link>\n|;             <table border='0' cellspacing='0' cellpadding='0' bgcolor='#ffffff' width='100%'>
                         $areacount ++;              <tr>
                         $notlastentry = "";               <td>
                         unless ($seqflag{$areakey}) {                <table border='0' cellspacing='1' cellpadding='1' bgcolor='#ffffff' width='100%'>
                             $pageflag{$areakey} = 1;                 <tr bgcolor='#ccddaa'>
                         }                  <td align='center'><font face='arial,helvetica,sans-serif'><b>Import?</b></font></td>           
                     }                  <td align='center'><font face='arial,helvetica,sans-serif'><b>Content type</b></font></td>
                 } else {                  <td align='center'><font face='arial,helvetica,sans-serif'><b>Additional options</b></font></td>
                     my $id = $areacount +1;                 </tr>
                     my $nextid = $id +1;  ENDBLOCK
                     $areacount ++;              foreach my $area (@{$areas}) {
                     if ($resinfo{$resnum{$key}}{'isfolder'} eq "true") {                  if ($count{$area} > 0) {
                         $src = 'sequences/'.$key.".sequence";                      my $count_tag = 'flag_'.$counter;
                         $pageflag{$areakey} = 0;                      $r->print("               <tr bgcolor='@bgcolors[$iter]'>
                         $seqflag{$areakey} = 1;                  <td align='left'><font face='arial,helvetica,sans-serif'><input name='$area' type='checkbox' ");
                       if ($area eq 'board' || $area eq 'users') {
                           $r->print(qq|onClick='javascript:setOptions("$area","$counter")'|);
                       }
                       $r->print("/></font></td>
                   <td align='left'><font face='arial,helvetica,sans-serif'>&nbsp;&nbsp;$$areaname{$area}&nbsp;&nbsp; - $count{$area} item(s)</font></td>");
                       if ($area eq 'board') {
                           $r->print("            <td align='left'><font face='arial,helvetica,sans-serif'>&nbsp;&nbsp;
                    <select name='db_handling'>
                     <option value='-2'>&lt;-- Check Import first</option>
                    </select></font>
                   </td>");
                       } elsif ($area eq 'users') {
                           $r->print("            <td align='left'><font face='arial,helvetica,sans-serif'>&nbsp;&nbsp;
                    <select name='user_handling'>
                     <option value='-2'>&lt;-- Check Import first</option>
                    </select>
                    </font>        
                   </td>");
                     } else {                      } else {
                         if ($pageflag{$areakey}) {                          $r->print("            <td align='left'><font face='arial,helvetica,sans-serif'>&nbsp;&nbsp;None<input type='hidden' name='$count_tag' /></font></td>");
                             push @{$pagecontents{$areakey}[$pagecount{$areakey}]},$key;  
                         } else {  
                             $pagecount{$areakey} ++ ;  
                             $src = 'pages/'.$areakey.'_'.$pagecount{$areakey}.'.page';  
                             @{$pagecontents{$areakey}[$pagecount{$areakey}]} = ("$key");  
                             $seqflag{$areakey} = 0;  
                         }   
                     }  
                     unless ($pageflag{$areakey}) {  
                         print AREAFILE $notlastentry.qq|<resource id="$id" src="/res/$udom/$uname/$newdir/$src" title="$title{$key}" |;  
                         unless ($seqflag{$areakey}) {  
                             $pageflag{$areakey} = 1;  
                         }  
                     }                      }
                     $lastentry = qq|type="finish"></resource>|;                      $counter ++;
                     $notlastentry = qq|></resource>                      $iter = $counter%2;
 <link from="$id" to="$nextid" index="$id"></link>\n|;  
                 }                  }
             }              }
             my $src ="";              $r->print(<<ENDBLOCKTWO);
             my $next_id = 1;                 </tr>
             my $curr_id = 0;                </table>
             if ( (($type{$resnum{$key}} eq "resource/x-bb-document") || ($type{$resnum{$key}} eq "resource/x-bb-staffinfo") || ($type{$resnum{$key}} eq "resource/x-bb-externallink")) && ($resinfo{$resnum{$key}}{'isfolder'} eq "true") ) {               </td>
 #   if ( ($type{$resnum{$key}} eq "resource/x-bb-staffinfo") && ($resinfo{$resnum{$key}}{'isfolder'} eq "true") ) {              </tr>
 #      print "$key $filepath{$key} $resnum{$key} $title{$key}\n";             </table>
 #      print "Folder for item - $key - res - $resnum{$key}\n";             </td>
 #      print "$key, $contentscount{$key}\n";           </tr>
 #      foreach (@{$contents{$key}}) {          </table>
 #          print "$key, $_\n";         </td>
 #      }        </tr>
 #                print STDERR "Contents Count for $key is $contentscount{$key}\n";        <tr>
                 open(LOCFILE,">$destdir/sequences/$key.sequence");         <td colspan='2'  align='left'>&nbsp;
                 print LOCFILE "<map>\n";         </td>
                 if ($contentscount{$key} == 0) {        </tr>
                     print LOCFILE qq|<resource id="1" src="" type="start"></resource>  ENDBLOCKTWO
 <link from="1" to="2" index="1"></link>              if ($count{board} + $count{users} > 0) {
 <resource id="2" src="" type="finish"></resource>\n|;                  $r->print("
         <tr bgcolor='#ccddaa'>
          <td valign='middle'><img src='/res/adm/pages/bl_step4.gif'>
          </td>
          <td width='100%' align='left'>&nbsp;&nbsp;
           <font face='arial,helvetica,sans-serif'><b>Choose a course to receive bulletin boards and user enrollment.</b></font>
          </td>
         </tr>
         <tr>
          <td colspan='2'>&nbsp;</td>
         </tr>
                   ");
                   if ($$numcrs > 0) {
                       $r->print("      <tr>
          <td>&nbsp;</td>
          <td><font face='arial,helvetica,sans-serif'>A listing of possible course targets will be displayed if import of bulletin boards and/or enrollment is checked above (step 3). If you do not plan to import either of these content types, there is no need to specify a course.
   <br /><br />
   Choose course:&nbsp;&nbsp;
                    <select name='targetcourse'>
                     <option value='-1'>Not required</option>
                    </select></font>
          </td>
         </tr>
   ");
                 } else {                  } else {
                     if ($resinfo{$resnum{$contents{$key}[0]}}{'isfolder'} eq "true") {                      $r->print("       <tr>
                         $src = 'sequences/'.$contents{$key}[0].".sequence";  <td>&nbsp;</td>
                         $pageflag{$key} = 0;  <td><font face='arial,helvetica,sans-serif'>You do not have active course coordinator status in any LON-CAPA courses currently, so bulletin boards and enrollment information included in your IMS package will be discarded, regardless of your import choice for these two items above (step 3). If you wish to import bulletin boards and/or user information into LON-CAPA please click 'Exit now' to quit the current IMS import process, and contact your domain coordinator and request a course coordinator role in a LON-CAPA course into which you can upload bulletin boards and/or enroll users.</font>
                         $seqflag{$key} = 1;          ");
                         $seqcount{$key} ++;  
                     } else {  
                         if ($pageflag{$key}) {  
                             push @{$pagecontents{$key}[$pagecount{$key}]},$contents{$key}[0];  
                         } else {  
                             $pagecount{$key} ++;  
                             $src = 'pages/'.$key.'_'.$pagecount{$key}.'.page';  
                             @{$pagecontents{$key}[$pagecount{$key}]} = ("$contents{$key}[0]");  
                             $seqflag{$key} = 0;  
                         }  
                     }  
                     unless ($pageflag{$key}) {  
                         print LOCFILE qq|<resource id="1" src="/res/$udom/$uname/$newdir/$src" title="$title{$contents{$key}[0]}" type="start"|;  
                         unless ($seqflag{$key}) {  
                             $pageflag{$key} = 1;  
                         }  
                     }  
                     if ($contentscount{$key} == 1) {  
         print LOCFILE qq|></resource>  
 <link from="1" to="2" index="1"></link>  
 <resource id="2" src="" type="finish"></resource>\n|;  
                     } else {  
                         if ($contentscount{$key} > 2 ) {   
                             for (my $i=1; $i<$contentscount{$key}-1; $i++) {  
                                 if ($resinfo{$resnum{$contents{$key}[$i]}}{'isfolder'} eq "true") {  
                                     $src = 'sequences/'.$contents{$key}[$i].".sequence";  
                                     $pageflag{$key} = 0;  
                                     $seqflag{$key} = 1;  
                                     $seqcount{$key} ++;  
                                 } else {  
                                     if ($pageflag{$key}) {  
                                         push @{$pagecontents{$key}[$pagecount{$key}]},$contents{$key}[$i];  
                                     } else {  
                                         $pagecount{$key} ++;  
                                         $src = 'pages/'.$key.'_'.$pagecount{$key}.'.page';  
                                         @{$pagecontents{$key}[$pagecount{$key}]} = ("$contents{$key}[$i]");  
                                         $seqflag{$key} = 0;  
                                     }  
                                 }  
                                 unless ($pageflag{$key}) {  
                                     $curr_id ++;  
                                     $next_id ++;  
                                     print LOCFILE qq|></resource>  
 <link from="$curr_id" to="$next_id" index="$curr_id"></link>  
 <resource id="$next_id" src="/res/$udom/$uname/$newdir/$src" title="$title{$contents{$key}[$i]}"|;  
                                     unless ($seqflag{$key}) {  
                                         $pageflag{$key} = 1;  
                                     }  
                                 }  
                             }  
                         }  
                         if ($resinfo{$resnum{$contents{$key}[$contentscount{$key}-1]}}{'isfolder'} eq "true") {  
                             $src = 'sequences/'.$contents{$key}[$contentscount{$key}-1].".sequence";  
                             $pageflag{$key} = 0;  
                             $seqflag{$key} = 1;  
                         } else {  
                             if ($pageflag{$key}) {  
                                 push @{$pagecontents{$key}[$pagecount{$key}]},$contents{$key}[$contentscount{$key}-1];  
                             } else {  
                                 $pagecount{$key} ++;  
                                 $src = 'pages/'.$key.'_'.$pagecount{$key}.'.page';  
                                 @{$pagecontents{$key}[$pagecount{$key}]} = ("$contents{$key}[$contentscount{$key}-1]");  
                             }  
                         }  
                         if ($pageflag{$key}) {  
                             if ($seqcount{$key} + $pagecount{$key} +1 == 1) {  
                                 print LOCFILE qq|></resource>  
 <link from="1" index="1" to="2">  
 <resource id ="2" src="" title="" type="finish"></resource>\n|;  
                             } else {  
                                 print LOCFILE qq| type="finish"></resource>\n|;  
                             }  
                             print STDERR "seqcount is $seqcount{$key}, pagecount is $pagecount{$key} for $key\n";  
                         } else {  
                             $curr_id ++;  
                             $next_id ++;  
                             print LOCFILE qq|></resource>  
 <link from="$curr_id" to="$next_id" index="$curr_id"></link>  
 <resource id="$next_id" src="/res/$udom/$uname/$newdir/$src" title="$title{$contents{$key}[$contentscount{$key}-1]}" type="finish"></resource>\n|;  
                         }  
                     }  
                 }                  }
                 print LOCFILE "</map>\n";  
                 close(LOCFILE);  
             }              }
         }              $r->print(<<ENDBLOCK);
     }        <tr>
     print TOPFILE "</map>";         <td colspan='2'>&nbsp;<br /><br /></td>
     close(TOPFILE);        </tr>
     foreach my $key (sort keys %pagecontents) {        <tr>
         for (my $i=0; $i<@{$pagecontents{$key}}; $i++) {         <td>&nbsp;</td>
             my $filestem = "/res/$udom/$uname/$newdir";         <td><font face='arial,helvetica,sans-serif'>Once you have checked the checkboxes for all areas you wish to import from the IMS package, and selected additional options (if available) you should click the 'Import package' button.</font></td>
             my $filename = $destdir.'/pages/'.$key.'_'.$i.'.page';        </tr>
             open(PAGEFILE,">$filename");        <tr>
             print PAGEFILE qq|<map>         <td colspan='2'>&nbsp;
 <resource src="$filestem/resfiles/$resnum{$pagecontents{$key}[$i][0]}.html" id="1" type="start" title="$title{$pagecontents{$key}[$i][0]}"></resource>            <input type="hidden" name="newdir" value="$env{'form.newdir'}" />
 <link to="2" index="1" from="1">\n|;            <input type="hidden" name="conditions" value="$conditions" />
             if (@{$pagecontents{$key}[$i]} == 1) {            <input type="hidden" name="source" value="$cms" />
                 print PAGEFILE qq|<resource src="" id="2" type="finish"></resource>|;            <input type="hidden" name="tempdir" value="$tempdir" />
             } elsif (@{$pagecontents{$key}[$i]} == 2)  {            <input type="hidden" name="uploaduname" value="$uname">
                 print PAGEFILE qq|<resource src="$filestem/resfiles/$resnum{$pagecontents{$key}[$i][1]}.html" id="2" type="finish" title="$title{$pagecontents{$key}[$i][1]}"></resource>|;            <input type="hidden" name="filename" value="$fname">
             } else {             <input type="hidden" name="phase" value="four" />
                 for (my $j=1; $j<@{$pagecontents{$key}[$i]}-1; $j++) {  ENDBLOCK
                     my $curr_id = $j+1;              if ($count{board} == 0) {
                     my $next_id = $j+2;                  $r->print('            <input type="hidden" name="board" value="" />'."\n");
                     my $resource = $filestem.'/resfiles/'.$resnum{$pagecontents{$key}[$i][$j]}.'.html';              }
                     print PAGEFILE qq|<resource src="$resource" id="$curr_id" title="$title{$pagecontents{$key}[$i][$j]}"></resource>              if ($count{users} == 0) {
 <link to="$next_id" index="$curr_id" from="$curr_id">\n|;                  $r->print('            <input type="hidden" name="users" value="" />'."\n");
                 }  
                 my $final_id = @{$pagecontents{$key}[$i]};  
                 print PAGEFILE qq|<resource src="$filestem/resfiles/$resnum{$pagecontents{$key}[$i][-1]}.html" id="$final_id" type="finish" title="$title{$pagecontents{$key}[$i][-1]}"></resource>\n|;  
             }              }
             print PAGEFILE "</map>";              $r->print(<<ENDDOCUMENT);
             close(PAGEFILE);         </td>
         </tr>
         <tr>
          <td colspan='2'>
           <table border='0' cellspacing='0' cellpadding='0' width="100%">
            <tr>
             <td align='left'>
              <input type='button' name='exitpage' value='Exit now' onClick="javascript:location.href='$fullpath'" />
             </td>
             <td align='right'>
              <input type="button" name="nextpage" value="Import package" onClick="javascript:nextPage($counter)" />
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
       </td>
      </tr>
     </table>
   ENDDOCUMENT
           } else {
               $r->print("Unpacking of your IMS package failed because an IMS manifest file was not located in the package\n");
         }          }
       } else {
           $r->print("Processing of your IMS package failed because the file you uploaded could not be unzipped\n");
     }      }
     system(" rm -r $docroot/temp");  
 }  
   
 sub process_user {  
   my ($res,$docroot,$destdir,$settings) = @_;  
   my $xmlfile = $docroot."/temp/".$res.".dat";  
   my $filecount = 0;  
   my @state;  
   my $userid = '';  
   my $linknum = 0;  
   
   my $p = HTML::Parser->new  
     (  
      xml_mode => 1,  
      start_h =>  
      [sub {  
         my ($tagname, $attr) = @_;  
         push @state, $tagname;  
         if (@state eq " USERS USER") {  
             $userid = $attr->{value};  
             %{$$$settings{$userid}} = ();  
             @{$$settings{$userid}{links}} = ();  
         } elsif (@state eq "USERS USER LOGINID") {    
             $$settings{$userid}{loginid} = $attr->{value};  
         } elsif (@state eq "USERS USER PASSPHRASE") {    
             $$settings{$userid}{passphrase} = $attr->{value};  
         } elsif ("@state" eq "USERS USER STUDENTID" ) {  
             $$settings{$userid}{studentid} = $attr->{value};  
         } elsif ("@state" eq "USERS USER NAMES FAMILY" ) {  
             $$settings{$userid}{family} = $attr->{value};  
         } elsif ("@state" eq "USERS USER NAMES GIVEN" ) {  
             $$settings{$userid}{given} = $attr->{value};  
         } elsif ("@state" eq "USERS USER ADDRESSES BUSINESS DATA EMAIL") {  
             $$settings{$userid}{email} = $attr->{value};  
         } elsif ("@state" eq "USERS USER USER_ROLE") {  
             $$settings{$userid}{user_role} = $attr->{value};  
         } elsif ("@state" eq "USERS USER FLAGS ISAVAILABLE") {  
             $$settings{$userid}{isavailable} = $attr->{value};  
         } elsif ("@state" eq "USERS USER PERSONALPAGE FILELIST IMAGE") {  
             $$settings{$userid}{image} = $attr->{value};  
         } elsif ( ($state[-2] eq "LINKLIST") && ($state[-1] eq "LINK") ) {  
             %{$$settings{$userid}{links}[$linknum]} = ();  
             $$settings{$userid}{links}[$linknum]{url} = $attr->{value};  
             $linknum ++;  
         }  
      }, "tagname, attr"],  
      text_h =>  
      [sub {  
         my ($text) = @_;  
         if ("@state" eq "USERS USER PERSONALPAGE TITLE") {  
             $$settings{$userid}{title} = $text;  
         } elsif ("@state" eq "USERS USER PERSONALPAGE DESCRIPTION") {  
             $$settings{$userid}{description} = $text;  
         } elsif (($state[-2] eq "LINK") && ($state[-1] eq "TITLE")) {  
             $$settings{$userid}{links}[$linknum]{title} = $text;  
         } elsif (($state[-3] eq "LINK") && ($state[-2] eq  "DESCRIPTION") && ($state[-1] eq "TEXT")) {  
             $$settings{$userid}{links}[$linknum]{text} = $text;  
         }  
       }, "dtext"],  
      end_h =>  
      [sub {  
         my ($tagname) = @_;  
         if (@state eq "USERS USER") {  
             $linknum = 0;  
         }  
         pop @state;  
      }, "tagname"],  
     );  
   $p->unbroken_text(1);  
   $p->parse_file($xmlfile);  
   $p->eof;  
 }  }
   
 sub process_group {    # ---------------------------------------------------------------- Display Three
   my ($res,$docroot,$destdir,$settings) = @_;  sub display_three {
   my $xmlfile = $docroot."/".$res.".dat";      my ($r,$uname,$udom,$areas,$areaname,$cmsmap,$destdir,$newdir) = @_;
   my $filecount = 0;      my $crs = '';
   my @state;      my $cdom = '';
   my $grp;      my $db_handling = '';
       my $timenow = time; 
   my $p = HTML::Parser->new      my $announce_handling = 'ok';
     (      my $cms = $env{'form.source'};
      xml_mode => 1,      if ( defined($env{'form.bb_crs'}) ) {
      start_h =>          ($cdom,$crs) = split/\//,$env{'form.bb_crs'};
      [sub {      } 
         my ($tagname, $attr) = @_;      my $user_crs = '';
         push @state, $tagname;      my $user_cdom = '';
         if (@state eq "GROUPS GROUP") {      my $user_handling = '';
             $grp = $attr->{id};      if ( defined($env{'form.user_crs'}) ) {
         }                  ($user_cdom,$user_crs) = split/\//,$env{'form.user_crs'};
         if (@state eq "GROUPS GROUP TITLE") {      }
             $$settings{$grp}{title} = $attr->{value};      my $seqstem = "/res/$udom/$uname/$newdir";
         } elsif (@state eq "GROUPS GROUP FLAGS ISAVAILABLE") {        my %importareas = ();
             $$settings{$grp}{isavailable} = $attr->{value};      my %includedres = ();
         } elsif (@state eq "GROUPS GROUP FLAGS HASCHATROOM") {        my %includeditems = ();
             $$settings{$grp}{chat} = $attr->{value};      my %randompicks = ();
         } elsif ("@state" eq "GROUPS GROUP FLAGS HASDISCUSSIONBOARD") {      my @targets = ();
             $$settings{$grp}{discussion} = $attr->{value};      my %resources = ();
         } elsif ("@state" eq "GROUPS GROUP FLAGS HASTRANSFERAREA") {      my %items = ();
             $$settings{$grp}{transfer} = $attr->{value};      my %hrefs = ();
         } elsif ("@state" eq "GROUPS GROUP FLAGS ISPUBLIC") {      my %urls = ();
             $$settings{$grp}{public} = $attr->{value};      my %resinfo = ();
         }      my %total = (
      }, "tagname, attr"],                     page => 0,
      text_h =>                     prob => 0,
      [sub {                     seq => 0,
         my ($text) = @_;                     board => 0,         
         if ("@state" eq "GROUPS DESCRIPTION") {                     quiz => 0,
           $$settings{$grp}{description} = $text;                     surv => 0,
 #          print "Staff text is $text\n";  
         }  
       }, "dtext"],  
      end_h =>  
      [sub {  
         my ($tagname) = @_;  
         pop @state;  
      }, "tagname"],  
     );  
   $p->unbroken_text(1);  
   $p->parse_file($xmlfile);  
   $p->eof;  
 }  
   
 sub process_staff {  
   my ($res,$docroot,$destdir,$settings) = @_;  
   my $xmlfile = $docroot."/temp/".$res.".dat";  
   my $filecount = 0;  
   my @state;  
   %{$$settings{name}} = ();  
   %{$$settings{office}} = ();    
   
   my $p = HTML::Parser->new  
     (  
      xml_mode => 1,  
      start_h =>  
      [sub {  
         my ($tagname, $attr) = @_;  
         push @state, $tagname;  
         if (@state eq "STAFFINFO TITLE") {  
             $$settings{title} = $attr->{value};  
         } elsif (@state eq "STAFFINFO BIOGRAPHY TEXTCOLOR") {    
             $$settings{textcolor} = $attr->{value};  
         } elsif (@state eq "STAFFINFO BIOGRAPHY FLAGS ISHTML") {    
             $$settings{ishtml} = $attr->{value};                                 
         } elsif ("@state" eq "STAFFINFO FLAGS ISAVAILABLE" ) {  
             $$settings{isavailable} = $attr->{value};  
         } elsif ("@state" eq "STAFFINFO FLAGS ISFOLDER" ) {  
             $$settings{isfolder} = $attr->{value};  
         } elsif ("@state" eq "STAFFINFO POSITION" ) {  
             $$settings{position} = $attr->{value};  
         } elsif ("@state" eq "STAFFINFO HOMEPAGE" ) {  
             $$settings{homepage} = $attr->{value};  
         } elsif ("@state" eq "STAFFINFO IMAGE") {  
             $$settings{image} = $attr->{value};  
         }  
      }, "tagname, attr"],  
      text_h =>  
      [sub {  
         my ($text) = @_;  
         if ("@state" eq "STAFFINFO BIOGRAPHY TEXT") {  
           $$settings{text} = $text;  
 #          print "Staff text is $text\n";  
         } elsif ("@state" eq "STAFFINFO CONTACT PHONE") {  
           $$settings{phone} = $text;  
         } elsif ("@state" eq "STAFFINFO CONTACT EMAIL") {  
           $$settings{email} = $text;  
         } elsif ("@state" eq "STAFFINFO CONTACT NAME FORMALTITLE") {  
           $$settings{name}{formaltitle} = $text;  
         } elsif ("@state" eq "STAFFINFO CONTACT NAME FAMILY") {  
           $$settings{name}{family} = $text;  
         } elsif ("@state" eq "STAFFINFO CONTACT NAME GIVEN") {  
           $$settings{name}{given} = $text;  
         } elsif ("@state" eq "STAFFINFO CONTACT OFFICE HOURS") {  
           $$settings{office}{hours} = $text;  
         }  elsif ("@state" eq "STAFFINFO CONTACT OFFICE ADDRESS") {  
           $$settings{office}{address} = $text;  
         }          
       }, "dtext"],  
      end_h =>  
      [sub {  
         my ($tagname) = @_;  
         pop @state;  
      }, "tagname"],  
     );  
   $p->unbroken_text(1);  
   $p->parse_file($xmlfile);  
   $p->eof;  
 }  
   
 sub process_link {  
   my ($res,$docroot,$destdir,$settings) = @_;  
   my $xmlfile = $docroot."/temp/".$res.".dat";  
   my @state = ();  
   %{$$settings{name}} = ();  
   %{$$settings{office}} = ();    
   
   my $p = HTML::Parser->new  
     (  
      xml_mode => 1,  
      start_h =>  
      [sub {  
         my ($tagname, $attr) = @_;  
         push @state, $tagname;  
         if (@state eq "EXTERNALLINK TITLE") {  
             $$settings{title} = $attr->{value};  
         } elsif (@state eq "EXTERNALLINK TEXTCOLOR") {    
             $$settings{textcolor} = $attr->{value};  
         } elsif (@state eq "EXTERNALLINK DESCRIPTION FLAGS ISHTML") {    
             $$settings{ishtml} = $attr->{value};                                 
         } elsif ("@state" eq "EXTERNALLINKS FLAGS ISAVAILABLE" ) {  
             $$settings{isavailable} = $attr->{value};  
         } elsif ("@state" eq "EXTERNALLINKS FLAGS LAUNCHINNEWWINDOW" ) {  
             $$settings{newwindow} = $attr->{value};  
         } elsif ("@state" eq "EXTERNALLINKS FLAGS ISFOLDER" ) {  
             $$settings{isfolder} = $attr->{value};  
         } elsif ("@state" eq "EXTERNALLINKS POSITION" ) {  
             $$settings{position} = $attr->{value};  
         } elsif ("@state" eq "EXTERNALLINKS URL" ) {  
             $$settings{url} = $attr->{value};  
         }  
      }, "tagname, attr"],  
      text_h =>  
      [sub {  
         my ($text) = @_;  
         if ("@state" eq "EXTERNALLINKS DESCRIPTION TEXT") {  
           $$settings{text} = $text;  
         }  
       }, "dtext"],  
      end_h =>  
      [sub {  
         my ($tagname) = @_;  
         pop @state;  
      }, "tagname"],  
     );      );
   $p->unbroken_text(1);  
   $p->parse_file($xmlfile);  
   $p->eof;  
 }  
   
 sub process_db {      my @pages = ();
   my ($res,$docroot,$destdir,$settings) = @_;      my @sequences = ();
   my $xmlfile = $docroot."/temp/".$res.".dat";      my @resrcfiles = ();
   my @state = ();      my @assessmentfiles = ();
   my %threads; # all quotes, keyed by message ID  
   my $msg_id; # the current message ID      my $tempdir = $env{'form.tempdir'};
   my %message; # the current message being accumulated for $msg_id  
       foreach my $area (@{$areas}) {
   my $p = HTML::Parser->new          if (defined($env{"form.$area"}) ) {
     (              if ($cms eq 'angel' && $area eq 'doc') {
      xml_mode => 1,                  foreach (@{$$cmsmap{$cms}{$area}}) {
      start_h =>                      $importareas{$_} = 1;
      [sub {  
         my ($tagname, $attr) = @_;  
         push @state, $tagname;  
         my $depth = 0;  
         my @seq = ();  
         if (@state eq "FORUM TITLE") {  
             $$settings{title} = $attr->{value};  
         } elsif (@state eq "STAFFINFO BIOGRAPHY TEXTCOLOR") {    
             $$settings{textcolor} = $attr->{value};  
         } elsif (@state eq "FORUM DESCRIPTION FLAGS ISHTML") {    
             $$settings{ishtml} = $attr->{value};  
         } elsif (@state eq "FORUM DESCRIPTION FLAGS ISNEWLINELITERAL") {    
             $$settings{newline} = $attr->{value};  
         } elsif ("@state" eq "FORUM POSITION" ) {  
             $$settings{position} = $attr->{value};  
         } elsif ("@state" eq "FORUM FLAGS ISREADONLY") {  
             $$settings{isavailable} = $attr->{value};                                                        
         } elsif ("@state" eq "FORUM FLAGS ISAVAILABLE" ) {  
             $$settings{isavailable} = $attr->{value};  
         } elsif ("@state" eq "FORUM FLAGS ALLOWANONYMOUSPOSTINGS" ) {  
             $$settings{isfolder} = $attr->{value};  
         } elsif ( ($state[0] eq "FORUM") && ($state[1] eq "MESSAGETHREADS") && ($state[2] eq "MSG") ) {  
             if ($state[@state-1] eq "MSG") {  
                 $depth = @state - 3;  
                 if ($depth > @seq) {  
                     unless ($msg_id eq '') {  
                         push @seq, $msg_id;   
                     }  
                 }  
                 if ($depth < @seq) {  
                     pop @seq;  
                 }                  
                 $msg_id = $attr->{value};                  
                 %message = ();  
                 $message{depth} = $depth;  
                 if ($depth > 0) {  
                     $message{parent} = $seq[-1];  
                 } else {  
                     $message{parent} = "None";  
                 }                  }
             } elsif ($state[@state-1] eq "TITLE") {              } else {
                 $message{title} = $attr->{value};                  $importareas{$$cmsmap{$cms}{$area}} = 1;
             } elsif ( ( $state[@state-3] eq "MESSAGETEXT" ) && ( $state[@state-2] eq "FLAGS" ) && ( $state[@state-1] eq "ISHTML" ) ) {  
                 $message{ishtml} = $attr->{value};  
             } elsif ( ( $state[@state-3] eq "MESSAGETEXT" ) && ( $state[@state-2] eq "FLAGS" ) && ( $state[@state-1] eq "ISNEWLINELITERAL" ) ) {  
                 $message{newline} = $attr->{value};  
             } elsif ( ( $state[@state-2] eq "DATES" ) && ( $state[@state-1] eq "CREATED" ) ) {  
                 $message{created} = $attr->{value};  
             } elsif ( $state[@state-2] eq "FLAGS") {  
                 if ($state[@state-1] eq "ISANONYMOUS") {  
                     $message{isanonymous} =  $attr->{value};  
                 }  
             } elsif ( $state[@state-2] eq "USER" ) {  
                 if ($state[@state-1] eq "USERID") {  
                     $message{userid} =  $attr->{value};  
                 } elsif ($state[@state-1] eq "USERNAME") {  
                     $message{username} =  $attr->{value};  
                 } elsif ($state[@state-1] eq "EMAIL") {  
                     $message{email} =  $attr->{value};  
                 }            
             } elsif ( ($state[@state-2] eq "FILELIST") && ($state[@state-2] eq "IMAGE") ) {  
                 $message{attachment} = $attr->{value};  
             }              }
         }              if ($area eq 'board') {
      }, "tagname, attr"],                  $db_handling = $env{'form.db_handling'};
      text_h =>              } elsif ($area eq 'users') {
      [sub {                  $user_handling = $env{'form.user_handling'};
         my ($text) = @_;  
         if ("@state" eq "FORUM DESCRIPTION TEXT") {  
             $$settings{text} = $text;  
         } elsif ( ($state[0] eq "FORUM") && ($state[1] eq "MESSAGETHREADS") && ($state[2] eq "MSG") ) {  
               if ( ($state[@state-2] eq "MESSAGETEXT") && ($state[@state-1] eq "TEXT") ){  
                   $message{text} = $text;  
               }  
         }  
       }, "dtext"],  
      end_h =>  
      [sub {  
         my ($tagname) = @_;  
         if ( ($state[0] eq "FORUM") && ($state[1] eq "MESSAGETHREADS") && ($state[2] eq "MSG") ) {  
             if ($state[@state-1] eq "MSG") {  
                 push @{$threads{$msg_id}}, { %message };  
             }              }
         }          }
         pop @state;      }
      }, "tagname"],  
     );  
   $p->unbroken_text(1);  
   $p->parse_file($xmlfile);  
   $p->eof;  
 }  
   
 sub process_assessment {      my $manifest_result = &Apache::imsprocessor::process_manifest($cms,$tempdir,
   my ($res,$docroot,$container,$dirname,$destdir,$settings) = @_;                            \%resources,\%items,\%hrefs,\%resinfo,'prepare',
   my $xmlfile = $docroot."/temp/".$res.".dat";                            \%includedres);
 #  print "XML file is $xmlfile\n";      if ($manifest_result eq 'ok') {
   my @state = ();          foreach my $res (sort keys %resources) {
   my @allids = ();              if ($importareas{$resources{$res}{type}}) {
   my %allanswers = ();                  $includedres{$res} = 1;
   my %allchoices = ();                  if ($resources{$res}{type} eq 'webct.manifest' || 
   my $id; # the current question ID                       $resources{$res}{type} eq 'webct.assessment' ||
   my $answer_id; # the current answer ID                       $resources{$res}{type} eq 'webct.question') {
   my %toptag = ( pool => 'POOL',                      push(@assessmentfiles,$res);
                  quiz => 'ASSESSMENT',                  }   
                  survey => 'ASSESSMENT'  
                );  
 #  print "process_assessment is called, incoming: $res,$docroot,$container,$destdir\n";  
   
   my $p = HTML::Parser->new  
     (  
      xml_mode => 1,  
      start_h =>  
      [sub {  
         my ($tagname, $attr) = @_;  
         push @state, $tagname;  
         my $depth = 0;  
         my @seq = ();  
         my $class;  
         my $state_str = join(" ",@state);  
 #        print "Current state is $state_str\n";  
         if ($container eq "pool") {  
             if ("@state" eq "POOL TITLE") {  
                 $$settings{title} = $attr->{value};  
 #                print "Title is $attr->{value}\n";  
             }  
         } else {  
             if ("@state" eq "ASSESSMENT TITLE") {    
                 $$settings{title} = $attr->{value};            
             } elsif ("@state" eq "ASSESSMENT FLAG" ) {  
                 $$settings{isnewline} = $attr->{value};  
             } elsif ("@state" eq "ASSESSMENT FLAGS ISAVAILABLE") {  
                 $$settings{isavailable} = $attr->{value};  
             } elsif ("@state" eq "ASSESSMENT FLAGS ISANONYMOUS" ) {  
                 $$settings{isanonymous} = $attr->{id};  
             } elsif ("@state" eq "ASSESSMENT FLAGS GIVE FEEDBACK" ) {  
                 $$settings{feedback} = $attr->{id};          
             } elsif ("@state" eq "ASSESSMENT FLAGS SHOWCORRECT" ) {  
                 $$settings{showcorrect} = $attr->{id};          
             } elsif ("@state" eq "ASSESSMENT FLAGS SHOWRESULTS" ) {  
                 $$settings{showresults} = $attr->{id};          
             } elsif ("@state" eq "ASSESSMENT FLAGS ALLOWMULTIPLE" ) {  
                 $$settings{allowmultiple} = $attr->{id};          
             } elsif ("@state" eq "ASSESSMENT ASSESSMENTTYPE" ) {  
                 $$settings{type} = $attr->{id};          
             }  
         }      
         if ("@state" eq "$toptag{$container} QUESTIONLIST QUESTION") {    
             $id = $attr->{id};  
             push @allids, $id;  
             %{$$settings{$id}} = ();  
             @{$allanswers{$id}} = ();  
             $$settings{$id}{class} = $attr->{class};  
             unless ($container eq "pool") {  
                 $$settings{$id}{points} = $attr->{points};  
             }  
             @{$$settings{$id}{correctanswer}} = ();                                
         } elsif ( ($state[0] eq $toptag{$container}) && ($state[-1] =~ m/^QUESTION_(\w+)$/) ) {  
             $id = $attr->{id};  
         } elsif ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[2] eq "BODY") && ($state[3] eq "FLAGS") && ($state[4] eq "ISHTML") ) {  
             $$settings{$id}{html} = $attr->{value};  
         } elsif ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[2] eq "BODY") && ($state[3] eq "FLAGS") && ($state[4] eq "ISNEWLINELITERAL") ) {  
             $$settings{$id}{newline} = $attr->{value};  
         } elsif ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[2] eq "IMAGE") ) {  
             $$settings{$id}{image} = $attr->{value};  
             $$settings{$id}{style} = $attr->{style};  
         } elsif ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[2] eq "URL") ) {  
             $$settings{$id}{url} = $attr->{value};  
             $$settings{$id}{name} = $attr->{name};  
         } elsif ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[-1] eq "ANSWER") ) {  
             $answer_id = $attr->{id};  
             push @{$allanswers{$id}},$answer_id;  
             %{$$settings{$id}{$answer_id}} = ();  
             $$settings{$id}{$answer_id}{position} = $attr->{position};  
             if ($$settings{$id}{class} eq 'QUESTION_MATCH') {  
                 $$settings{$id}{$answer_id}{placement} = $attr->{placement};  
                 $$settings{$id}{$answer_id}{type} = 'answer';  
             }  
         } elsif ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[-1] eq "CHOICE") ) {  
             $answer_id = $attr->{id};  
             push @{$allchoices{$id}},$answer_id;   
             %{$$settings{$id}{$answer_id}} = ();  
             $$settings{$id}{$answer_id}{position} = $attr->{position};  
             $$settings{$id}{$answer_id}{placement} = $attr->{placement};  
             $$settings{$id}{$answer_id}{type} = 'choice';  
         } elsif ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[2] eq "ANSWER") && ($state[3] eq "IMAGE") ) {  
             $$settings{$id}{$answer_id}{image} = $attr->{value};  
             $$settings{$id}{$answer_id}{style} = $attr->{style};  
         } elsif ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[2] eq "ANSWER") && ($state[3] eq "URL") ) {  
             $$settings{$id}{$answer_id}{url} = $attr->{value};  
         } elsif ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[2] eq "CHOICE") && ($state[3] eq "IMAGE") ) {  
             $$settings{$id}{$answer_id}{image} = $attr->{value};  
             $$settings{$id}{$answer_id}{style} = $attr->{style};  
         } elsif ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[2] eq "CHOICE") && ($state[3] eq "URL") ) {  
             $$settings{$id}{$answer_id}{url} = $attr->{value};              
         } elsif ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[2] eq "GRADABLE") && ($state[3] eq "CORRECTANSWER") ) {  
             my $corr_answer = $attr->{answer_id};  
             push @{$$settings{$id}{correctanswer}}, $corr_answer;  
 #            print "Answer $corr_answer for question $id is correct\n";         
             my $type = $1;  
             if ($type eq 'TRUEFALSE') {  
                 $$settings{$id}{$corr_answer}{answer_position} = $attr->{position};  
             } elsif ($type eq 'ORDER') {  
                 $$settings{$id}{$corr_answer}{order} = $attr->{order};  
             } elsif ($type eq 'MATCH') {  
                 $$settings{$id}{$corr_answer}{choice_id} = $attr->{choice_id};  
             }              }
         }          }
      }, "tagname, attr"],          foreach my $itm (sort keys %items) {
      text_h =>              &Apache::imsprocessor::get_imports(\%includeditems,\%items,\%resources,\%importareas,$itm);
      [sub {  
         my ($text) = @_;  
         unless ($container eq "pool") {          
             if ("@state" eq "ASSESSMENT DESCRIPTION TEXT") {  
                 $$settings{description} = $text;  
             } elsif ("@state" eq "ASSESSMENT INSTRUCTIONS ") {  
                 $$settings{instructions}{text} = $text;  
             }  
         }  
         if ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[2] eq "BODY") && ($state[3] eq "TEXT") ) {  
             $$settings{$id}{text} = $text;  
         } elsif ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[2] eq "ANSWER") && ($state[3] eq "TEXT") ) {  
             $$settings{$id}{$answer_id}{text} = $text;  
         } elsif ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[2] eq "CHOICE") && ($state[3] eq "TEXT") ) {  
             $$settings{$id}{$answer_id}{text} = $text;              
         } elsif ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[2] eq "GRADABLE") && ($state[3] eq "FEEDBACK_WHEN_CORRECT") ) {  
             $$settings{$id}{feedback_corr} = $text;  
         } elsif ( ($state[0] eq $toptag{$container}) && ($state[1] =~ m/^QUESTION_(\w+)$/) && ($state[2] eq "GRADABLE") && ($state[3] eq "FEEDBACK_WHEN_INCORRECT") ) {  
             $$settings{$id}{feedback_incorr} = $text;         
         }          }
       }, "dtext"],  
      end_h =>  
      [sub {  
         my ($tagname) = @_;  
         pop @state;  
      }, "tagname"],  
     );  
   $p->unbroken_text(1);  
   $p->parse_file($xmlfile);  
   $p->eof;  
   
   my $dirtitle = $$settings{'title'};  
   $dirtitle =~ s/\W//g;  
   $dirtitle .= '_'.$res;  
   if (!-e "$destdir/problems/$dirtitle") {  
       mkdir("$destdir/problems/$dirtitle",0755);  
   }  
   my $newdir = "$destdir/problems/$dirtitle";  
   foreach my $id (@allids) {  
 #      print "Current ID is $id, type is $$settings{$id}{class} \n";  
       if ($$settings{$id}{class} eq "QUESTION_ESSAY") {  
           my $output;  
           if ($container eq 'pool') {  
               $output = qq|<problem>  
  <startouttext />$$settings{$id}{text}<endouttext />  
 |;  
           } else {  
               $output = qq|<problem>  
  <startouttext />$$settings{$id}{text}<endouttext />  
 |;  
           }  
           $output .= qq|  
    <essayresponse>  
    <textfield></textfield>  
    </essayresponse>  
    <postanswerdate>  
    $$settings{$id}{feedbackcorr}  
    </postanswerdate>  
 |;  
           if ($container eq 'pool') {  
               $output .= qq|</problem>  
         |;  
               open(PROB,">$newdir/$id.problem");  
               print PROB $output;  
               close PROB;  
           } else {  
               $output .= qq|</problem>  
         |;  
               open(PROB,">$newdir/$id.problem");  
               print PROB $output;  
               close PROB;  
           }  
       } else {  
     my $output;  
     if ($container eq 'pool') {   
         $output = qq|<problem>  
 |;  
     } else {  
         $output = qq|<problem>  
 |;  
     }      }
     $output .= qq|<startouttext />$$settings{$id}{text}\n|;  
     if ( defined($$settings{$id}{image}) ) {       foreach my $itm (sort keys %includeditems) {
         if ( $$settings{$id}{style} eq 'embed' ) {          &Apache::imsprocessor::get_parents(\%includeditems,\%items,$itm);
             $output .= qq|<br /><img src="$dirname/resfiles/$res/$$settings{$id}{image}" /><br />|;      }
         } else {  
             $output .= qq|<br /><a href="$dirname/resfiles/$res/$$settings{$id}{image}">Link to file</a><br />|;      $manifest_result = &Apache::imsprocessor::process_manifest($cms,$tempdir,
                          \%resources,\%items,\%hrefs,\%resinfo,'build',
                          \%includedres,\%includeditems);
       if ($manifest_result eq 'ok') {
           &Apache::imsprocessor::target_resources(\%resources,\%importareas,\@targets);
   
           my @boards = ();
           my @announcements = ();
           my @quizzes = ();
           my @surveys = ();
           my @pools = ();
           my @groups = ();
           my %messages = ();
           my @timestamp = ();
           my %boardnum = ();
           my @topurls = ();
           my @topnames = ();
           my @packages = ();
   
           &Apache::imsprocessor::process_resinfo($cms,'CSTR',$tempdir,$destdir,\%items,\%resources,\@targets,\@boards,\@announcements,\@quizzes,\@surveys,\@pools,\@groups,\%messages,\@timestamp,\%boardnum,\%resinfo,$udom,$uname,$cdom,$crs,$db_handling,$user_handling,\%total,$seqstem,$seqstem,\@resrcfiles,\@packages,\%hrefs,\@pages,\@sequences,\%randompicks);
   
           my $copy_result = &Apache::imsprocessor::copy_resources('CSTR',$cms,\%hrefs,$tempdir,\@targets,\%urls,$crs,$cdom,$destdir,$timenow,\%importareas,\@assessmentfiles);
      
           &Apache::imsprocessor::build_structure($cms,'CSTR',$destdir,\%items,\%resinfo,\%resources,\@targets,\%hrefs,$udom,$uname,$newdir,$timenow,$cdom,$crs,\@timestamp,\%total,\@boards,\@announcements,\@quizzes,\@surveys,\@pools,\%boardnum,\@pages,\@sequences,\@topurls,\@topnames,\@packages,\%includeditems,\%randompicks);
   
           $r->print("<h3>IMS import completed</h3>");
   
           if ($cms eq 'bb5') {
               $r->print("<font face='arial,helvetica,sans-serif'>Your IMS package has been processed successfully. A total of $total{seq} sequences, $total{page} pages, $total{board} bulletin boards, $total{quiz} quizzes, $total{surv} surveys and $total{prob} problems have been created.<br /><br />\n");
           } elsif ($cms eq 'angel') {
               $r->print("<font face='arial,helvetica,sans-serif'>Your IMS package has been processed successfully. A total of $total{seq} sequences, $total{page} pages, and $total{board} bulletin boards have been created.<br /><br />\n");
         }          }
          $r->print("Please view the imported items and use the LON-CAPA editing tools to make changes.  The sequences directory contains a file named 'Top.sequence' which includes links to the items found at the top level of your IMS package. From there you can follow links to display all the imported items. Alternatively, you can browse the pages, sequences, problems and resfiles directories directly. Note if you rename a file, you will need to modify any .sequence files or .page files which include a reference to the renamed file.<br /><br />The final step in the IMS import process is to publish the materials you have imported into your Construction Space so that you can use them in a course. Once your file are published, subsequent re-publication will result in the storage of information about changes between the different versions.<br /><br /><a href='/priv/".$uname."/".$newdir."'>Display new directory</a></font>"); 
           if ($destdir =~ m-^/home/$uname/public_html/-) { 
               system (" rm -r -f $destdir/temp");
           }
       } elsif ($manifest_result eq 'nomanifest') {
           $r->print("<font face='arial,helvetica,sans-serif'>Processing of your IMS package failed, because the IMS content package did not contain an IMS manifest file.</font>");
     }      }
     if ( defined($$settings{$id}{url}) ) {  }
         $output .= qq|<br /><a href="$$settings{$id}{url}">$$settings{$id}{name}</a><br />|;  
   # ---------------------------------------------------------------- Get LON-CAPA Course Coordinator roles for this user
   sub get_ccroles {
       my ($user,$dom,$crsentry,$crslist) = @_;
       my %roles = ();
       unless ($user eq '') {
           %roles = &Apache::lonnet::dump('roles',$dom,$user);
     }      }
     $output .= qq|      my $iter = 0;
 <endouttext />|;      my @codes = ();
     if ($$settings{$id}{class} eq 'QUESTION_MULTIPLECHOICE') {      my %courses = ();
         my $numfoils = @{$allanswers{$id}};      my @crslist = ();
         $output .= qq|      my %descrip =();
    <radiobuttonresponse max="$numfoils" randomize="yes">      foreach my $key (keys %roles ) {
     <foilgroup>          if ($key =~ m/^\/(\w+)\/(\w+)_cc$/) {
         |;              my $cdom = $1;
         for (my $k=0; $k<@{$allanswers{$id}}; $k++) {              my $crs = $2;
             $output .= "   <foil name=\"foil".$k."\" value=\"";              my $role_end = 0;
             if (grep/^$allanswers{$id}[$k]$/,@{$$settings{$id}{correctanswer}}) {              my $role_start = 0;
                 $output .= "true\" location=\"";              my $active_chk = 1;
             } else {              if ( $roles{$key} =~ m/^cc_(\d+)/ ) {
                 $output .= "false\" location=\"";                  $role_end = $1;
             }                  if ( $roles{$key} =~ m/^cc_($role_end)_(\d+)$/ )
             if (lc ($allanswers{$id}[$k]) =~ m/^\s?([Aa]ll)|([Nn]one)\sof\sthe\sabove\.?/) {                  {
                 $output .= "bottom\"";                      $role_start = $2;
             } else {  
                 $output .= "random\"";  
             }  
             $output .= "\><startouttext />".$$settings{$id}{$allanswers{$id}[$k]}{text};  
             if ( defined($$settings{$id}{$allanswers{$id}[$k]}{image}) ) {  
                 if ( $$settings{$id}{$allanswers{$id}[$k]}{style} eq 'embed' ) {  
                     $output .= qq|<br /><img src="$dirname/resfiles/$res/$$settings{$id}{$allanswers{$id}[$k]}{image}" /><br />|;  
                 } else {  
                     $output .= qq|<br /><a href="$dirname/resfiles/$res/$$settings{$id}{$allanswers{$id}[$k]}{image}" />Link to file</a><br/>|;  
                 }                  }
             }              }
             $output .= qq|<endouttext /></foil>\n|;              if ($role_start > 0) {
         }                  if (time < $role_start) {
         chomp($output);                      $active_chk = 0;
         $output .= qq|                  }
     </foilgroup>  
    </radiobuttonresponse>  
   |;  
     } elsif ($$settings{$id}{class} eq 'QUESTION_TRUEFALSE') {  
         my $numfoils = @{$allanswers{$id}};  
 #        print "Number of foils is $numfoils\n";  
         $output .= qq|  
    <radiobuttonresponse max="$numfoils" randomize="yes">  
     <foilgroup>  
         |;  
         for (my $k=0; $k<@{$allanswers{$id}}; $k++) {  
             $output .= "   <foil name=\"foil".$k."\" value=\"";  
             if (grep/^$allanswers{$id}[$k]$/,@{$$settings{$id}{correctanswer}}) {  
                 $output .= "true\" location=\"random\"";  
             } else {  
                 $output .= "false\" location=\"random\"";  
             }  
             $output .= "\><startouttext />".$$settings{$id}{$allanswers{$id}[$k]}{text}."<endouttext /></foil>\n";  
         }  
         chomp($output);  
         $output .= qq|  
     </foilgroup>  
    </radiobuttonresponse>  
   |;  
     } elsif ($$settings{$id}{class} eq 'QUESTION_MULTIPLEANSWER') {  
         my $numfoils = @{$allanswers{$id}};  
 #        print "Number of foils is $numfoils\n";  
         $output .= qq|  
    <optionresponse max="$numfoils" randomize="yes">  
     <foilgroup options="('True','False')">  
         |;  
         for (my $k=0; $k<@{$allanswers{$id}}; $k++) {  
             $output .= "   <foil name=\"foil".$k."\" value=\"";  
             if (grep/^$allanswers{$id}[$k]$/,@{$$settings{$id}{correctanswer}}) {  
                 $output .= "True\"";  
             } else {  
                 $output .= "False\"";  
             }              }
             $output .= "\><startouttext />".$$settings{$id}{$allanswers{$id}[$k]}{text}."<endouttext /></foil>\n";              if ($role_end > 0) {
         }                  if (time > $role_end) {
         chomp($output);                      $active_chk = 0;
         $output .= qq|                  }
     </foilgroup>  
    </radiobuttonresponse>  
   |;  
     } elsif ($$settings{$id}{class} eq 'QUESTION_ORDER') {  
         my $numfoils = @{$allanswers{$id}};  
         $output .= qq|  
    <rankresponse max="$numfoils" randomize="yes">  
     <foilgroup>  
         |;  
         for (my $k=0; $k<@{$allanswers{$id}}; $k++) {  
             $output .= "   <foil location=\"random\" name=\"foil".$k."\" value=\"".$$settings{$id}{$allanswers{$id}[$k]}{order}."\"><startouttext />".$$settings{$id}{$allanswers{$id}[$k]}{text}."<endouttext /></foil>\n";  
         }  
         chomp($output);  
         $output .= qq|  
     </foilgroup>  
    </rankresponse>  
         |;  
     } elsif ($$settings{$id}{class} eq 'QUESTION_FILLINBLANK') {  
         my $numerical = 1;  
         for (my $k=0; $k<@{$allanswers{$id}}; $k++) {  
             unless ($$settings{$id}{$allanswers{$id}[$k]}{text} =~ m/^\d+\.?\d*$/) {  
                 $numerical = 0;  
             }              }
         }              if ($active_chk) {
         if ($numerical) {                  my $currcode = '';
             my $numans;                  my %settings = &Apache::lonnet::get('environment',['internal.coursecode','description'],$cdom,$crs);
             my $tol;                  if (defined($settings{'description'}) ) {
             if (@{$allanswers{$id}} == 1) {                      $descrip{$crs} = $settings{'description'};
                 $tol = 5;                  } else {
                 $numans = $$settings{$id}{$allanswers{$id}[0]}{text};                      $descrip{$crs} = 'Unknown';
             } else {                  }
                 my $min = $$settings{$id}{$allanswers{$id}[0]}{text};                  if (defined($settings{'internal.coursecode'}) ) {
                 my $max = $$settings{$id}{$allanswers{$id}[0]}{text};                      $currcode = $settings{'internal.coursecode'};
                 for (my $k=1; $k<@{$allanswers{$id}}; $k++) {                      if ($currcode eq '') {
                     if ($$settings{$id}{$allanswers{$id}[$k]}{text} <= $min) {                          $currcode = "____".$iter;
                         $min = $$settings{$id}{$allanswers{$id}[$k]}{text};                          $iter ++;
                     }  
                     if ($$settings{$id}{$allanswers{$id}[$k]}{text} >= $max) {  
                         $max = $$settings{$id}{$allanswers{$id}[$k]}{text};  
                     }                      }
                   } else {
                       $currcode = "____".$iter;
                       $iter ++;
                 }                  }
                 $numans = ($max + $min)/2;                  unless (grep/^$currcode$/,@codes) {
                 $tol = 100*($max - $min)/($numans*2);                      push @codes,$currcode;
             }                      @{$courses{$currcode}} = ();
             $output .= qq|  
 <numericalresponse answer="$numans">  
         <responseparam type="tolerance" default="$tol%" name="tol" description="Numerical Tolerance" />  
         <responseparam name="sig" type="int_range,0-16" default="0,15" description="Significant Figures"  
 />  
         <textline />  
 </numericalresponse>  
             |;  
         } else {  
             if (@{$allanswers{$id}} == 1) {  
                 $output .= qq|  
 <stringresponse answer="$$settings{$id}{$allanswers{$id}[0]}{text}" type="ci">  
 <textline>  
 </textline>  
 </stringresponse>  
             |;  
             } else {  
                 my @answertext = ();  
                 for (my $k=0; $k<@{$allanswers{$id}}; $k++) {  
                     $$settings{$id}{$allanswers{$id}[$k]}{text} =~ s/\|/\|/g;  
                     push @answertext, $$settings{$id}{$allanswers{$id}[$k]}{text};  
                 }                  }
                 my $regexpans = join('|',@answertext);                  push @{$courses{$currcode}}, $cdom.'/'.$crs;
                 $regexpans = '/^('.$regexpans.')\b/';  
                 $output .= qq|  
 <stringresponse answer="$regexpans" type="re">  
 <textline>  
 </textline>  
 </stringresponse>  
             |;  
             }              }
         }          }
     } elsif ($$settings{$id}{class} eq "QUESTION_MATCH") {  
         $output .= qq|  
 <matchresponse max="10" randomize="yes">  
     <foilgroup>  
         <itemgroup>  
 |;  
         for (my $k=0; $k<@{$allchoices{$id}}; $k++) {  
             $output .= qq|  
 <item name="$allchoices{$id}[$k]">  
 <startouttext />$$settings{$id}{$allchoices{$id}[$k]}{text}<endouttext />  
 </item>  
             |;  
         }  
         $output .= qq|  
         </itemgroup>  
 |;  
         for (my $k=0; $k<@{$allanswers{$id}}; $k++) {  
             $output .= qq|  
 <foil location="random" value="$$settings{$id}{$allanswers{$id}[$k]}{choice_id}" name="$allanswers{$id}[$k]">  
 <startouttext />$$settings{$id}{$allanswers{$id}[$k]}{text}<endouttext />  
 </foil>  
             |;  
         }  
         $output .= qq|  
     </foilgroup>  
 </matchresponse>  
         |;  
     }  
     if ($container eq 'pool') {  
         $output .= qq|</problem>  
         |;  
         open(PROB,">$newdir/$id.problem");  
         print PROB $output;  
         close PROB;  
     } else {  
         $output .= qq|</problem>  
         |;  
         open(PROB,">$newdir/$id.problem");  
         print PROB $output;  
         close PROB;  
     }      }
       foreach my $code (sort @codes) {
       }          foreach my $crsdom (@{$courses{$code}}) {
   }              my ($cdom,$crs) = split/\//,$crsdom;
 }              my $showcode = '';
               unless ($code =~m/^____\d+$/) {  $showcode = $code; }
               $$crsentry{$crsdom} = $showcode.':'.$descrip{$crs};
 sub create_ess {              push @{$crslist}, $crsdom;
     my ($newdir,$qnid,$qsettings,$container) = @_;          }
     my $output;  
     if ($container eq 'pool') {  
         $output = qq|<problem>  
  <startouttext />$$qsettings{text}<endouttext />  
 |;  
     } else {  
         $output = qq|<problem>  
  <startouttext />$$qsettings{text}<endouttext />  
 |;  
     }  
     $output .= qq|  
    <essayresponse>  
    <textfield></textfield>  
    </essayresponse>  
    <postanswerdate>  
    $$qsettings{feedbackcorr}  
    </postanswerdate>  
 |;  
     if ($container eq 'pool') {  
         $output .= qq|</problem>  
         |;  
         open(PROB,">$newdir/$qnid.problem");  
         print PROB $output;  
         close PROB;  
     } else {  
         $output .= qq|</problem>  
         |;  
         open(PROB,">$newdir/$qnid.problem");  
         print PROB $output;  
         close PROB;  
     }      }
     return;      return;
 }  }
   
 sub process_announce {  
   my ($res,$docroot,$destdir,$settings) = @_;  
   my $xmlfile = $docroot."/temp/".$res.".dat";  
   my @state = ();  
   my $id;  
   my $p = HTML::Parser->new  
     (  
      xml_mode => 1,  
      start_h =>  
      [sub {  
         my ($tagname, $attr) = @_;  
         push @state, $tagname;  
         if ("@state" eq "ANNOUNCEMENT TITLE") {  
             $$settings{title} = $attr->{value};  
             $$settings{startassessment} = ();  
 #            print "Title is $$settings{title}\n";  
         } elsif (@state eq "ANNOUNCEMENT DESCRIPTION FLAGS ISHTML") {    
             $$settings{ishtml} = $attr->{value};            
         } elsif ("@state" eq "ANNOUNCEMENT DESCRIPTION FLAGS ISNEWLINELITERAL" ) {  
             $$settings{isnewline} = $attr->{value};  
         } elsif ("@state" eq "CONTENT ISPERMANENT" ) {  
             $$settings{ispermanent} = $attr->{value};  
         } elsif ("@state" eq "ANNOUNCEMENT FILES STARTASSESSMENT" ) {  
             $id = $attr->{id};  
             $$settings{startassessment}{$id} = ();  
         } elsif ("@state" eq "ANNOUNCEMENT FILES STARTASSESSMENT ATTRIB" ) {  
             my $key = $attr->{key};  
             $$settings{startassessment}{$id}{$key} = $attr->{value};  
         }  
      }, "tagname, attr"],  
      text_h =>  
      [sub {  
         my ($text) = @_;  
         if ("@state" eq "ANNOUNCEMENT DESCRIPTION TEXT") {  
           $$settings{maindata}{text} = $text;  
 #          print "TEXT $text\n";  
         }  
       }, "dtext"],  
      end_h =>  
      [sub {  
         my ($tagname) = @_;  
         pop @state;  
      }, "tagname"],  
     );  
   $p->unbroken_text(1);  
   $p->parse_file($xmlfile);  
   $p->eof;  
 }  
   
 sub process_content {  
   my ($res,$docroot,$destdir,$settings,$dom,$user) = @_;  
   my $xmlfile = $docroot."/temp/".$res.".dat";  
   my $destresdir = $destdir;  
   $destresdir =~ s|/home/$user/public_html/|/res/$dom/$user/|;  
   my $filecount = 0;  
   my @state;  
   @{$$settings{files}} = ();   
   my $p = HTML::Parser->new  
     (  
      xml_mode => 1,  
      start_h =>  
      [sub {  
         my ($tagname, $attr) = @_;  
         push @state, $tagname;  
         if (@state eq "CONTENT MAINDATA") {  
             %{$$settings{maindata}} = ();  
         } elsif (@state eq "CONTENT MAINDATA TEXTCOLOR") {  
             $$settings{maindata}{color} = $attr->{value};  
         } elsif (@state eq "CONTENT MAINDATA FLAGS ISHTML") {    
             $$settings{maindata}{ishtml} = $attr->{value};   
         } elsif (@state eq "CONTENT MAINDATA FLAGS ISNEWLINELITERAL") {    
             $$settings{maindata}{isnewline} = $attr->{value};  
         } elsif ("@state" eq "CONTENT FLAGS ISAVAILABLE" ) {  
             $$settings{isavailable} = $attr->{value};  
         } elsif ("@state" eq "CONTENT FLAGS ISFOLDER" ) {  
             $$settings{isfolder} = $attr->{value};  
         } elsif ("@state" eq "CONTENT FLAGS LAUNCHINNEWWINDOW" ) {  
             $$settings{newwindow} = $attr->{value};  
         } elsif ("@state" eq "CONTENT FILES") {  
 #            @{$$settings{files}} = ();  
         } elsif ("@state" eq "CONTENT FILES FILEREF") {  
             %{$$settings{files}[$filecount]} = ();  
             %{$$settings{files}[$filecount]{registry}} = ();   
         } elsif ("@state" eq "CONTENT FILES FILEREF RELFILE" ) {  
             $$settings{files}[$filecount]{'relfile'} = $attr->{value};  
         } elsif ("@state" eq "CONTENT FILES FILEREF MIMETYPE") {  
             $$settings{files}[$filecount]{mimetype} = $attr->{value};  
         } elsif ("@state" eq "CONTENT FILES FILEREF CONTENTTYPE") {  
             $$settings{files}[$filecount]{contenttype} = $attr->{value};  
         } elsif ("@state" eq "CONTENT FILES FILEREF FILEACTION") {  
             $$settings{files}[$filecount]{fileaction} = $attr->{value};  
         } elsif ("@state" eq "CONTENT FILES FILEREF PACKAGEPARENT") {  
             $$settings{files}[$filecount]{packageparent} = $attr->{value};  
         } elsif ("@state" eq "CONTENT FILES FILEREF LINKNAME") {  
             $$settings{files}[$filecount]{linkname} = $attr->{value};  
         } elsif ("@state" eq "CONTENT FILES FILEREF REGISTRY REGISTRYENTRY") {  
             my $key = $attr->{key};  
             $$settings{files}[$filecount]{registry}{$key} = $attr->{value};  
         }  
      }, "tagname, attr"],  
      text_h =>  
      [sub {  
         my ($text) = @_;  
         if ("@state" eq "CONTENT TITLE") {  
             $$settings{title} = $text;  
         } elsif ("@state" eq "CONTENT MAINDATA TEXT") {  
             $$settings{maindata}{text} = $text;  
         }  elsif ("@state" eq "CONTENT FILES FILEREF REFTEXT") {  
             $$settings{files}[$filecount]{reftext} = $text;  
         }  
       }, "dtext"],  
      end_h =>  
      [sub {  
         my ($tagname) = @_;  
         if ("@state" eq "CONTENT FILES FILEREF") {  
             $filecount ++;  
         }  
         pop @state;  
      }, "tagname"],  
     );  
   $p->unbroken_text(1);  
   $p->parse_file($xmlfile);  
   $p->eof;  
   my $linktag = '';  
   my $fontcol = '';  
   if (@{$$settings{files}} > 0) {  
       for (my $filecount=0;  $filecount<@{$$settings{files}}; $filecount++) {  
           if ($$settings{files}[$filecount]{'fileaction'} eq 'embed') {  
               if ( $$settings{files}[$filecount]{reftext} =~ m#<\!\-\-\s_(\d+)\\_\s\-\-\>#) {   
                   my $newtag = qq|<img src="$destresdir/resfiles/$res/$$settings{files}[$filecount]{relfile}"/>|;  
                   $$settings{maindata}{text} =~ s#<\!\-\-\s_/($1)\\_\s\-\-\>#$newtag#;  
               } elsif ( $$settings{files}[$filecount]{reftext} =~m#^_/(\d+)\\_$# ) {  
                   my $reftag = $1;  
                   my $newtag;  
                   if ($$settings{files}[$filecount]{mimetype} =~ m/^image/) {  
                       $newtag = qq|<img src="$destresdir/resfiles/$res/$$settings{files}[$filecount]{relfile}"|;  
                       if ( defined($$settings{files}[$filecount]{registry}{alttext}) ) {  
                           $newtag .= qq| alt="$$settings{files}[$filecount]{registry}{alttext}"|;  
                       }  
                       if ( defined($$settings{files}[$filecount]{registry}{alignment}) )  
 {  
                           $newtag .= qq| align="$$settings{files}[$filecount]{registry}{alignment}"|;   
                       }  
                       if ( defined($$settings{files}[$filecount]{registry}{border}) ) {  
                           $newtag .= qq| border="$$settings{files}[$filecount]{registry}{border}"|;  
                       }  
                       $newtag .= " />";  
                       my $reftext =  $$settings{files}[$filecount]{reftext};  
                       my $fname = $$settings{files}[$filecount]{'relfile'};  
                       $$settings{maindata}{text} =~ s/<!\-\-\sCOMMENT\sBLOCK\sFOR\sEMBEDDED\sFILE:\s$fname[\s\n]+DO\sNOT\sEDIT\sTHIS\sCOMMENT\sBLOCK[\s\n]+//;  
 #                      $$settings{maindata}{text} =~ s/DO\sNOT\sEDIT\sTHIS\sCOMMENT\sBLOCK[\s\n]+//;  
                       $$settings{maindata}{text} =~ s/Move\swhole\scomment\sto\schange\sfile\splacement\swithin\spage\.[\s\n]+//;  
                       $$settings{maindata}{text} =~ s/_\/$reftag\\_/$newtag/;  
                       $$settings{maindata}{text} =~ s/END\sOF\sBLOCK\sON\sNEXT\sLINE[\s\n]+//;  
                       $$settings{maindata}{text} =~ s/\-\->//;  
 #                      $$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/;  
 #                      print STDERR $$settings{maindata}{text};  
                   }  
               } else {  
                   my $filename=$$settings{files}[$filecount]{'relfile'};  
 #                  print "File is $filename\n";  
                   my $newfilename="$destresdir/resfiles/$res/$$settings{files}[$filecount]{relfile}";  
 #                  print "New filename is $newfilename\n";  
                   $$settings{maindata}{text} =~ s#(src|SRC|value)="$filename"#$1="$newfilename"#g;  
               }  
           } elsif ($$settings{files}[$filecount]{fileaction} eq 'link') {  
               $linktag = qq|<a href="$destresdir/resfiles/$res/$$settings{files}[$filecount]{relfile}"|;  
               if ($$settings{newwindow} eq "true") {  
                   $linktag .= qq| target="$res$filecount"|;  
               }  
               foreach my $entry (keys %{$$settings{files}[$filecount]{registry}}) {  
                   $linktag .= qq| $entry="$$settings{files}[$filecount]{registry}{$entry}"|;  
               }  
               $linktag .= qq|>$$settings{files}[$filecount]{linkname}</a>|;  
           } elsif ($$settings{files}[$filecount]{fileaction} eq 'package') {  
 #              print "Found a package\n";  
           }  
       }  
   }  
   if (defined($$settings{maindata}{textcolor})) {  
       $fontcol =  qq|<font color="$$settings{maindata}{textcolor}">|;  
   }  
   if (defined($$settings{maindata}{text})) {  
       if ($$settings{maindata}{ishtml} eq "false") {  
           if ($$settings{maindata}{isnewline} eq "true") {  
               $$settings{maindata}{text} =~ s#\n#<br/>#g;  
           }  
       } else {  
           $$settings{maindata}{text} = &HTML::Entities::decode($$settings{maindata}{text});  
       }  
   }  
   
   open(FILE,">$destdir/resfiles/$res.html");  
   print FILE qq|<html>  
 <head>  
 <title>$$settings{title}</title>  
 </head>  
 <body bgcolor='#ffffff'>  
 $fontcol  
   |;  
   unless ($$settings{title} eq '') {   
       print FILE qq|$$settings{title}<br/><br/>\n|;  
   }  
   print FILE qq|  
 $$settings{maindata}{text}  
 $linktag|;  
   if (defined($$settings{maindata}{textcolor})) {  
       print FILE qq|</font>|;  
   }  
   print FILE qq|  
   </body>  
  </html>|;  
   close(FILE);  
 }  
   
   
                                                                                                
 # ---------------------------------------------------------------- Main Handler  # ---------------------------------------------------------------- Main Handler
 sub handler {  sub handler {
     my $r=shift;      my $r=shift;
Line 1659  sub handler { Line 823  sub handler {
     my $current_page = '';      my $current_page = '';
     my $loadentries = '';      my $loadentries = '';
     my $qcount = '';      my $qcount = '';
   
   # get personal information for this user
       my $user=$env{'user.name'};
       my $dom=$env{'user.domain'};
   
 #  #
 # phase two: re-attach user  # re-attach user
 #  #
     if ($ENV{'form.uploaduname'}) {      if ($env{'form.uploaduname'}) {
         $ENV{'form.filename'}='/priv/'.$ENV{'form.uploaduname'}.'/'.          $env{'form.filename'}='/priv/'.$env{'form.uploaduname'}.'/'.
             $ENV{'form.filename'};              $env{'form.filename'};
     }      }
     ($uname,$udom)=      ($uname,$udom)=
         &Apache::loncacc::constructaccess($ENV{'form.filename'},          &Apache::loncacc::constructaccess($env{'form.filename'},
                                           $r->dir_config('lonDefDomain'));                                            $r->dir_config('lonDefDomain'));
     unless (($uname) && ($udom)) {      unless (($uname) && ($udom)) {
         $r->log_reason($uname.' at '.$udom.          $r->log_reason($uname.' at '.$udom.
                        ' trying to publish file '.$ENV{'form.filename'}.                         ' trying to publish file '.$env{'form.filename'}.
                        ' - not authorized',                         ' - not authorized',
                        $r->filename);                         $r->filename);
         return HTTP_NOT_ACCEPTABLE;          return HTTP_NOT_ACCEPTABLE;
     }      }
                                                                                                                                                                                             
     my $fn;      my $fn;
     if ($ENV{'form.filename'}) {      if ($env{'form.filename'}) {
         $fn=$ENV{'form.filename'};          $fn=$env{'form.filename'};
         $fn=~s/^http\:\/\/[^\/]+\///;          $fn=~s/^http\:\/\/[^\/]+\///;
         $fn=~s/^\///;          $fn=~s/^\///;
         $fn=~s/(\~|priv\/)(\w+)//;          $fn=~s/(\~|priv\/)(\w+)//;
         $fn=~s/\/+/\//g;          $fn=~s/\/+/\//g;
     } else {      } else {
         $r->log_reason($ENV{'user.name'}.' at '.$ENV{'user.domain'}.          $r->log_reason($env{'user.name'}.' at '.$env{'user.domain'}.
                        ' unspecified filename for upload', $r->filename);                         ' unspecified filename for upload', $r->filename);
         return HTTP_NOT_FOUND;          return HTTP_NOT_FOUND;
     }      }
       my $zipupload = '/home/'.$uname.'/public_html'.$fn;
     my $pathname = &File::Basename::dirname($fn);      my $pathname = &File::Basename::dirname($fn);
     my $fullpath = '/priv/'.$uname.$pathname;      my $fullpath = '/priv/'.$uname.$pathname;
     unless ($pathname eq '/') {      unless ($pathname eq '/') {
         $fullpath .= '/';          $fullpath .= '/';
     }      }
     my $loadentries = '';      my $loadentries = '';
   
       my @areas = ();
       my %cmsmap = ();
       my %areaname = ();
       my $numcrs = 0;
                
       &Apache::imsprocessor::ims_config(\@areas,\%cmsmap,\%areaname);
 # ----------------------------------------------------------- Start page output  # ----------------------------------------------------------- Start page output
     &Apache::loncommon::content_type($r,'text/html');      &Apache::loncommon::content_type($r,'text/html');
     $r->send_http_header;      $r->send_http_header;
                                                                                                
     if ($ENV{'form.phase'} eq 'three') {      if ($env{'form.phase'} eq 'two') {
         $current_page = &display_control();          &jscript_one($fullpath,\$javascript,$uname,$udom);
         my @PAGES = ('ChooseDir','Blackboard5','ANGEL','WebCT');      } elsif ($env{'form.phase'} eq 'three') {
         $page_name = $PAGES[$current_page];          &jscript_two(\$javascript,$user,$dom,\$numcrs);
               } elsif ($env{'form.phase'} eq 'four') {
         if ($page_name eq 'ChooseDir') {          &jscript_three(\$javascript);
             &jscript_zero($fullpath,\$javascript);      }
         } elsif ($page_name eq 'Confirmation') {      $javascript = "<script type=\"text/javascript\">\n//<!--\n$javascript\n// --></script>\n";
             &jscript_two(\$javascript,$uname);  
         }      my $title = 'Upload IMS package to Construction Space';
     } elsif ($ENV{'form.phase'} eq 'two') {      $r->print(&Apache::loncommon::start_page($title, $javascript,
         &jscript_zero($fullpath,\$javascript);       {'add_entries' =>
     }    $loadentries,}));
     $r->print("<html><head><title>LON-CAPA Construction Space</title><script type=\"text/javascript\">\n//<!--\n$javascript\n// --></script>\n</head>");  
                                                                                                    if (($uname ne $env{'user.name'}) || ($udom ne $env{'user.domain'})) {
     $r->print(&Apache::loncommon::bodytag('Upload IMS package to Construction Space',undef,$loadentries));  
                                                                                                
     if (($uname ne $ENV{'user.name'}) || ($udom ne $ENV{'user.domain'})) {  
         $r->print('<h3><font color=red>'.&mt('Co-Author').': '.$uname.          $r->print('<h3><font color=red>'.&mt('Co-Author').': '.$uname.
                   &mt(' at ').$udom.'</font></h3>');                    &mt(' at ').$udom.'</font></h3>');
     }      }   
                                                                                                    if ($env{'form.phase'} eq 'two') {
     if ($ENV{'form.phase'} eq 'three') {  
         &display_zero ($r,$uname,$fn,$current_page) if $page_name eq 'ChooseDir';  
         &expand_bb5 ($r,$uname,$udom,$fn,$fullpath,$current_page) if $page_name eq 'Blackboard5';  
         &expand_angel ($r,$uname,$udom,$fn,$fullpath,$current_page) if $page_name eq 'ANGEL';  
         &expand_webct ($r,$uname,$udom,$fn,$fullpath,$current_page) if $page_name eq 'WebCT';  
   
     } elsif ($ENV{'form.phase'} eq 'two') {  
         my $flag = &Apache::lonupload::phasetwo($r,$fn,$uname,$udom,'imsimport');          my $flag = &Apache::lonupload::phasetwo($r,$fn,$uname,$udom,'imsimport');
         if ($flag eq 'ok') {          if ($flag eq 'ok') {
             my $current_page = 0;              &display_one($r,$uname,$fn,$fullpath);
             &display_zero($r,$uname,$fn,$current_page);          }
       } elsif ( ($env{'form.phase'} eq 'three') || ($env{'form.phase'} eq 'four') ) {
           my $docroot = $env{'form.newdir'};
           my $newdir = '';
           if ($docroot =~ m|public_html/(.+)$|) {
               $newdir = $1;
           }
           if ($env{'form.phase'} eq 'three') {
               &display_two ($r,$zipupload,\@areas,\%areaname,\%cmsmap,$uname,$newdir,\$numcrs,$fullpath);
           } elsif ($env{'form.phase'} eq 'four') {
               &display_three ($r,$uname,$udom,\@areas,\%areaname,\%cmsmap,$docroot,$newdir);
         }          }
     } else {      } else {
         &Apache::lonupload::phaseone($r,$fn,$uname,$udom,'imsimport');          &Apache::lonupload::phaseone($r,$fn,$uname,$udom,'imsimport');
     }      }
     $r->print('</body></html>');      $r->print(&Apache::loncommon::end_page());
     return OK;      return OK;
 }  }
 1;  1;

Removed from v.1.1  
changed lines
  Added in v.1.19


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