Diff for /loncom/imspackages/imsimport.pm between versions 1.3 and 1.45

version 1.3, 2004/02/24 15:21:16 version 1.45, 2013/09/30 17:42:12
Line 1 Line 1
 package Apache::imsimport;  # The LearningOnline Network with CAPA
   # 
   use strict;  # $Id$
   use Apache::Constants qw(:common :http :methods);  #
   use Apache::loncacc;  # Copyright Michigan State University Board of Trustees
   use Apache::loncommon();  #
   use Apache::Log();  # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
   use Apache::lonnet;  #
   use HTML::Parser;  # LON-CAPA is free software; you can redistribute it and/or modify
   use HTML::Entities();  # it under the terms of the GNU General Public License as published by
   use Apache::lonlocal;  # the Free Software Foundation; either version 2 of the License, or
   use Apache::lonupload;  # (at your option) any later version.
   use File::Basename();                                                                                              #
 # ---------------------------------------------------------------- Display Control  # LON-CAPA is distributed in the hope that it will be useful,
 sub display_control {  # but WITHOUT ANY WARRANTY; without even the implied warranty of
 # figure out what page we're on and where we're heading.  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     my $page = $ENV{'form.page'};  # GNU General Public License for more details.
     my $command = $ENV{'form.go'};  #
     my $current_page = &calculate_page($page,$command);  # You should have received a copy of the GNU General Public License
     return $current_page;  # along with LON-CAPA; if not, write to the Free Software
 }  # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                                                                                                #
 # CALCULATE THE CURRENT PAGE  # /home/httpd/html/adm/gpl.txt
 sub calculate_page($$) {  #
     my ($prev,$dir) = @_;  # http://www.lon-capa.org/
     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  package Apache::imsimport;
 sub jscript_zero {  
     my ($fullpath,$jsref,$uname,$dom) = @_;  
     my $source = '';  
     if (exists($ENV{'form.go'}) ) {  
         $source = $ENV{'form.go'};  
     }  
     my %crsentry = ();  
     my $course_list;  
     my $title_list;  
     my @crslist = ();  
     @crslist = &get_ccroles($uname,$dom,\%crsentry);  
     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).'"';  
   
     $$jsref = <<"END_OF_ONE";  use strict;
   use Apache::Constants qw(:common :http :methods);
   use Apache::loncommon();
   use Apache::lonnet;
   use Apache::imsprocessor;
   use Apache::lonlocal;
   use HTML::Parser;
   use HTML::Entities();
   use Apache::lonlocal;
   use Apache::lonupload;
   use File::Basename();
   use LONCAPA;
   
   # ----------------------------------------------------------------  Jscript One
   sub jscript_one {
       my ($fullpath,$formname) = @_;
   
       my %body_layout = ('rightmargin'  => "0",
          'leftmargin'   => "0",
          'marginwidth'  => "0",
          'topmargin'    => "0",
          'marginheight' => "0");
       my $start_page = 
    &Apache::loncommon::start_page('Create IMS import directory',undef,
          {'only_body'   => 1,
    'add_entries' => \%body_layout,
    'js_ready'    => 1,});
       my $end_page = 
    &Apache::loncommon::end_page({'js_ready' => 1,});
   
       my %lt = &Apache::lonlocal::texthash( 
                  ddir => 'You must choose a destination directory for the import',
                  cmss => 'You must choose the Course Management System from which the IMS package was exported',
                  loca => 'Location:',
                  newd => 'New Directory',
                  nndi => 'Enter the name of the new directory where you will store the contents of your IMS package.',
                  go => 'Go', 
                );
       return <<"END_OF_ONE";
 function verify() {  function verify() {
  if ((document.forms.dataForm.newdir.value == '')  || (!document.forms.dataForm.newdir.value)) {   if ((document.forms.$formname.newdir.value == '')  || (!document.forms.$formname.newdir.value)) {
    alert("You must choose a destination directory for the import")     alert('$lt{'ddir'}')
    return false     return false
  }   }
  if (document.forms.dataForm.source.selectedIndex == 0) {   if (document.forms.$formname.source.selectedIndex == 0) {
    alert("You must choose the Course Management System from which the IMS package was exported");     alert('$lt{'cmss'}');
    return false     return false
  }   }
  return true   return true
 }  }
   
 function nextPage() {  function nextPage() {
  if (verify()) {    if (verify()) {
    document.forms.dataForm.go.value="NextPage"      document.forms.$formname.submit();
    document.forms.dataForm.submit()    }
  }  
 }  }
   
 function createWin() {  function createWin() {
   document.dataForm.newdir.value = "";    document.$formname.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'>\\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>$lt{'loca'} <tt>$fullpath</tt></h3><h3>$lt{'newd'}</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("$lt{'nndi'}<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='$lt{'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()
 }  }
   
 function setCourse(caller) {  
  courseID_array = new Array($course_list)  
  courseTitle_array = new Array($title_list)  
  var step1Form = document.forms.dataForm  
  var curVal = step1Form.elements[caller*2+3].options[step1Form.elements[caller*2+3].selectedIndex].value  
  step1Form.elements[caller*2+4].length = 0  
  if (step1Form.elements[caller*2+3].options[step1Form.elements[caller*2+3].selectedIndex].value == "-1") {  
    step1Form.elements[caller*2+4].options[0] = new Option("<--- Set type ","-1",true,true)  
  }  
  else {  
    if ((step1Form.elements[caller*2+3].selectedIndex == 2 ) || (step1Form.elements[caller*2+3].selectedIndex == 3)) {  
      step1Form.elements[caller*2+4].options[0] = new Option("Please Select","-1",true,true)  
      if (courseID_array.length > 0) {  
          step1Form.elements[caller*2+4].options[0] = new Option("Please Select","-1",true,true)  
          for (var i=0; i<courseID_array.length; i++) {  
              step1Form.elements[caller*2+4].options[i+1] = new Option(courseTitle_array[i],courseID_array[i],false,false)  
          }  
      }  
      else {  
           step1Form.elements[caller*2+4].options[0] = new Option("No courses available","-2",true,true)  
           step1Form.elements[caller*2+3].selectedIndex == 1  
      }  
      step1Form.elements[caller*2+4].selectedIndex = 0  
    }  
    else {  
        step1Form.elements[caller*2+4].options[0] = new Option("Not required","0",true,true)  
    }  
  }  
 }  
   
 END_OF_ONE  END_OF_ONE
   
 }  }
   
 # ---------------------------------------------------------------- Display Zero  # ----------------------------------------------------------------  Jscript Two
 sub display_zero {  sub jscript_two {
     my ($r,$uname,$fn,$page,$fullpath) = @_;      my ($user,$dom,$numcrs) = @_;
     $r->print(<<"END_OF_ONE");      my %crsentry = ();
 <form name="dataForm" method="post">      my $course_list;
 <table border='0' bgcolor='#CCFFDD' cellspacing='0' cellpadding ='0' width='100%'>      my $title_list;
     <tr>      my @crslist = ();
      <td colspan='2'>      &get_ccroles($user,$dom,\%crsentry,\@crslist);
       <table border='0' cellspacing='0' cellpadding='0'>      if (@crslist > 0) {
        <tr>          $crsentry{$crslist[0]} =~ s/("|,)//g;
         <td colspan='2'  align='left'>&nbsp;          $title_list = '"'.$crsentry{$crslist[0]}.'"';
         </td>          if (@crslist > 1) {
        </tr>              for (my $i=1; $i<@crslist; $i++) {
        <tr bgcolor='#ccddaa'>                  $crsentry{$crslist[$i]} =~ s/("|,)//g;
         <td valign='middle'><img src='/res/adm/pages/bl_step1.gif'>&nbsp;                  $title_list .= ',"'.$crsentry{$crslist[$i]}.'"';
         </td>  
         <td width='100%' align='left'>&nbsp;&nbsp;  
          <font face='arial,helvetica,sans-serif'><b>Specify the Course Management system used to create the package.</b>&nbsp;&nbsp;  
          </font>  
        </td>  
       </tr>  
       <tr>  
        <td colspan='2'>&nbsp;</td>  
       </tr>  
       <tr>  
        <td>&nbsp;</td>  
        <td>  
         <font face='Arial,Helvetica,sans-serif'>  
 Please choose the CMS used to create your IMS content package.&nbsp;&nbsp;  
         <select name="source">  
          <option value='-1' selected="true">Please select  
          <option value='bb5'>Blackboard 5  
          <option value='angel'>ANGEL  
         </select>  
         </font>  
        </td>  
       </tr>  
       <tr>  
        <td colspan='2'>&nbsp;</td>  
       </tr>  
       <tr>  
        <td colspan='2'>&nbsp;</td>  
       </tr>  
       <tr bgcolor='#ccddaa'>  
        <td valign='middle'><img src='/res/adm/pages/bl_step2.gif'>  
        </td>  
        <td width='100%' align='left'>&nbsp;&nbsp;  
         <font face='arial,helvetica,sans-serif'><b>Create a directory where you will unpack your IMS package.</b>&nbsp;&nbsp;</font></td>  
       </tr>  
       <tr>  
        <td colspan='2'>&nbsp;</td>  
       </tr>  
        <td>&nbsp;</td>  
        <td>  
         <font face='Arial,Helvetica,sans-serif'>  
 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>  
       </tr>  
       <tr>  
        <td colspan='2'>&nbsp;<br /><br /></td>  
       </tr>  
       <tr bgcolor='#ccddaa'>  
        <td valign='middle'><img src='/res/adm/pages/bl_step3.gif'>  
        </td>  
        <td width='100%' align='left'>&nbsp;&nbsp;  
         <font face='arial,helvetica,sans-serif'><b>Indicate how any discussion boards and user data in the package should be handled</b></font>  
        </td>  
       </tr>  
       <tr>  
        <td colspan='2'>&nbsp;</td>  
       </tr>  
       <tr>  
        <td>&nbsp;</td>  
        <td>  
         <table border='0' cellspacing='0' cellpadding='1' bgcolor='#000000'>  
          <tr>  
           <td>  
            <table border='0' cellspacing='0' cellpadding='0' bgcolor='#ffffff' width='100%'>  
             <tr>  
              <td>  
               <table border='0' cellspacing='1' cellpadding='1' bgcolor='#CCFFDD' width='100%'>  
                <tr bgcolor='#ccddaa'>  
                 <td align='center'><font face='arial,helvetica,sans-serif'><b>Type of data</b></font></td>  
                 <td align='center'><font face='arial,helvetica,sans-serif'><b>Action</b></font></td>  
                 <td align='center'><font face='arial,helvetica,sans-serif'><b>Target course</b></font></td>  
                </tr>  
                <tr bgcolor='#eeeeee'>  
                 <td align='left'><font face='arial,helvetica,sans-serif'>&nbsp;&nbsp;Discussion boards&nbsp&nbsp;</font></td>  
                 <td align='left'><font face='arial,helvetica,sans-serif'>&nbsp;&nbsp;  
                  <select name='bb_handling' onChange="setCourse('0')">  
                   <option value='-1'>Select  
                   <option value='ignore'>Disregard  
                   <option value='topics'>Import topics only  
                   <option value='importall'>Import topics &amp; posts  
                  </select>  
                  </font>&nbsp;&nbsp;  
                 </td>  
                 <td align='left'>&nbsp;&nbsp;<font face='arial,helvetica,sans-serif'>  
                  <select name='bb_crs'>  
                   <option value='-1'>&lt;--Pick action first  
                  </select>  
                  </font>&nbsp;&nbsp;  
                 </td>  
                </tr>  
                <tr bgcolor='#dddddd'>  
                 <td align='left'><font face='arial,helvetica,sans-serif'>&nbsp;&nbsp;User information</font>&nbsp;&nbsp;</td>  
                 <td align='left'>&nbsp;&nbsp;  
                  <select name='user_handling' onChange="setCourse('1')">  
                   <option value='-1'>Select  
                   <option value='ignore'>Disregard  
                   <option value='students'>Enroll students only  
                   <option value='enrollall'>Emroll all users  
                  </select>  
                  </font>&nbsp;&nbsp;  
                 </td>  
                 <td align='left'>&nbsp;&nbsp;  
                  <font face='arial,helvetica,sans-serif'>  
                   <select name='user_crs'>  
                    <option value='-1'>&lt;--Pick action first  
                   </select>  
                  </font>&nbsp;&nbsp;  
                 </td>  
                </tr>  
               </table>  
              </td>  
             </tr>  
            </table>  
           </td>  
          </tr>  
         </table>  
        </td>  
       </tr>  
       <tr>  
        <td colspan='2'>&nbsp;<br /><br /></td>  
       </tr>  
       <tr>  
        <td>&nbsp;</td>  
        <td><font face='arial,helvetica,sans-serif'>If you have created a destination directory, and have made your selections for the disposition of bulletin boards and user information, you should click the 'Convert' button to unpack your IMS package.</font></td>  
       </tr>  
       <tr>  
        <td colspan='2'>  
           <input type='hidden' name="go" value="">  
           <input type="hidden" name="uploaduname" value="$uname">  
           <input type="hidden" name="filename" value="$fn">  
           <input type='hidden' name="page" value="$page">  
           <input type="hidden" name="phase" value="three">  
        </td>  
       </tr>  
       <tr>  
        <td colspan='2'>&nbsp;</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="Convert" onClick="javascript:nextPage()">  
           </td>  
          </tr>  
         </table>  
        </td>  
       </tr>  
      </table>  
     </td>  
    </tr>  
   </table>  
 </form>  
 END_OF_ONE  
 }  
   
 # ---------------------------------------------------------------- Expand bb5  
 sub expand_bb5 {  
     my ($r,$uname,$udom,$fn,$page,$bb_crs,$bb_cdom,$bb_handling,$users_crs,$users_cdom,$users_handling) = @_;  
     my @state = ();  
     my @seq = "Top";  
     my $lastitem;  
     my %resnum = ();  
     my %title = ();  
     my %filepath = ();  
     my %contentscount = ('Top' => 0);  
     my %contents = ();  
     my %parentseq = ();  
     my %base = ();  
     my %file = ();  
     my %type = ();  
     my %href = ();  
     my $identifier = '';  
     my %resinfo = ();  
     my $numfolders = 0;  
     my $numpages = 0;  
     my @timestamp = ();  
     my @boards = ();  
     my @groups = ();  
     my $board_count = 0;  
     my $board_id = time;  
     my $totseq = 0;  
     my $totpage = 0;  
     my $totprob = 0;  
     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 $p = HTML::Parser->new  
     (  
        xml_mode => 1,  
        start_h =>  
            [sub {  
                 my ($tagname, $attr) = @_;  
                 push @state, $tagname;  
                 my $num = @state - 3;  
                 my $start = $num;  
                 my $statestr = '';  
                 foreach (@state) {  
                     $statestr .= "$_ ";  
                 }  
                 if ( ($state[0] eq "manifest") && ($state[1] eq "organizations") && ($state[2] eq "tableofcontents") ) {  
                     my $searchstr = "manifest organizations tableofcontents";  
                     while ($num > 0) {  
                         $searchstr .= " item";  
                         $num --;   
                     }  
                     if (("@state" eq $searchstr) && (@state > 3)) {  
                         my $itm = $attr->{identifier};  
                         $resnum{$itm} = $attr->{identifierref};  
                         $title{$itm} = $attr->{title};  
                         if ($start > @seq) {  
                             unless ($lastitem eq '') {  
                                 push @seq, $lastitem;  
                                 unless ( defined($contents{$seq[-1]}) ) {  
                                     @{$contents{$seq[-1]}} = ();  
                                 }  
                                 push @{$contents{$seq[-1]}},$itm;  
                                 $parentseq{$itm} = $seq[-1];  
                             }  
                         }  
                         elsif ($start < @seq) {  
                             my $diff = @seq - $start;  
                             while ($diff > 0) {  
                                 pop @seq;  
                                 $diff --;  
                             }  
                             if (@seq) {  
                                 push @{$contents{$seq[-1]}}, $itm;  
                             }  
                         } 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;  
     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);  
     }  
     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");  
         }  
     }     
   
     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,$dirname,$destdir,\%{$resinfo{$key}});  
         } elsif ($type{$key} eq "resource/x-bb-externallink") {  
             %{$resinfo{$key}} = ();  
             &process_link($key,$docroot,$dirname,$destdir,\%{$resinfo{$key}});  
         } elsif ($type{$key} eq "resource/x-bb-discussionboard") {  
             %{$resinfo{$key}} = ();  
             unless ($bb_handling eq 'ignore') {  
                 $contentscount{Top} ++;  
                 push @boards, $key;  
                 $timestamp[$board_count] = $board_id;  
                 &process_db($key,$docroot,$destdir,$board_id,$bb_crs,$bb_cdom,$bb_handling,$uname,\%{$resinfo{$key}});  
                 $board_id ++;  
                 $board_count ++;  
             }  
         } 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}},\$totpage,\$totprob);  
         } elsif ($type{$key} eq "assessment/x-bb-quiz") {  
             %{$resinfo{$key}} = ();  
             &process_assessment($key,$docroot,'quiz',$dirname,$destdir,\%{$resinfo{$key}},\$totpage,\$totprob);  
         } elsif ($type{$key} eq "assessment/x-bb-survey") {  
             %{$resinfo{$key}} = ();  
             &process_assessment($key,$docroot,'survey',$dirname,$destdir,\%{$resinfo{$key}},\$totpage,\$totprob);  
         } elsif ($type{$key} eq "assessment/x-bb-group") {  
             %{$resinfo{$key}} = ();  
             $contentscount{Top} ++;  
             push @groups, $key;  
             &process_group($key,$docroot,$destdir,\%{$resinfo{$key}});  
         } elsif ($type{$key} eq "resource/x-bb-user") {     
             %{$resinfo{$key}} = ();  
             unless ($users_handling eq 'ignore') {  
                 &process_user($key,$docroot,$destdir,\%{$resinfo{$key}},$users_crs,$users_cdom,$users_handling);  
             }              }
         }          }
     }      }
       $course_list = '"'.join('","',@crslist).'"';
       $$numcrs = @crslist;
   
     my $nextnum = 0;      my %lt = &Apache::lonlocal::texthash(
     open(TOPFILE,">$destdir/sequences/ims_import.sequence");                    sel    => 'Please select',
     print TOPFILE "<map>\n";                    impto  => 'Import topics only',
     my $fileopen = 0;                    imptpa => 'Import topics + posts (with author)',
     my $areakey;                    imptpn => 'Import topics + posts (no author)',
     my $areacount = 0;                    enrst  => 'Enroll students only',
     my $lastentry = '';                    enrall => 'Enroll all users',
     my $notlastentry = '';                    notreq => 'Not required',
     my %pagecount = ();                    errao  => 'You must select one of the additional options when importing Discussion Boards.',
     my %pagecontents = ();                    errtd  => 'You must select a target course when importing Discussion Boards.',
     my %pageflag = ();                    errap  => 'You must select one of the additional options when importing Enrollment.',
     my %seqflag = ();                    errte  => 'You must select a target course when importing enrollment information.',
     my %seqcount = ();                    errcc  => 'You must check at least one Content Type.',
          );
     foreach my $key (sort keys %resnum) {      return <<"END_OF_TWO";
         $pageflag{$key} = 0;  
         $seqflag{$key} = 0;  function checkCourse() {
         $seqcount{$key} = 0;    courseID_array = new Array($course_list)
         $pagecount{$key} = -1;    courseTitle_array = new Array($title_list)
         if ($filepath{$key} eq 'Top') {    var step2Form = document.forms.pickoptions
             $topnum ++;    var conditionType = step2Form.conditions.value
             $nextnum = $topnum +1;    var curVal = step2Form.targetcourse.options[step2Form.targetcourse.selectedIndex].value
             print TOPFILE qq|<resource id="$topnum" src="/res/$udom/$uname/$newdir/sequences/$key.sequence" title="$title{$key}"|;    if (curVal == -1) {
             if ($topnum == 1) {        if ( conditionType == 'both'  )  {
                 print TOPFILE qq| type="start"></resource>            if ( step2Form.board.checked == true || step2Form.users.checked == true ) {
 <link from="$topnum" to="$nextnum" index="$topnum"></link>\n|;                setCourse(step2Form,'add')
                 if ($topnum == $contentscount{'Top'}) {            }
                     print TOPFILE qq|<resource id="$nextnum" src="" type="finish"></resource>\n|;        }
                 }        if ( conditionType == 'users'  )  {
             } else {            if ( step2Form.users.checked == true ) {
                 if ($topnum == $contentscount{'Top'}) {                setCourse(step2Form,'add')
                     print TOPFILE qq| type="finish"></resource>\n|;            }
                 } else {        }
                     print TOPFILE qq|></resource>        if ( conditionType == 'board'  )  {
 <link from="$topnum" to="$nextnum" index="$topnum"></link>\n|;            if ( step2Form.board.checked == true ) {
                 }                setCourse(step2Form,'add')
             }            }
             my $seqname = $title{$key};        }
             $seqname =~ s/\s//g;    }
             $seqname =~ tr/A-Z/a-z/;    else { 
             if ($fileopen) {        if ( conditionType == 'both'  )  {
                 if ($areacount == 0) {            if ( step2Form.board.checked == false && step2Form.users.checked == false ) {
                     print AREAFILE qq|<resource id="1" src="" type="start">                setCourse(step2Form,'clear')
 <link from="1" to="2" index="1"></link>            }
 <resource id="2" src="" type="finish">\n|;        }
                 } elsif ($areacount == 1) {        if ( conditionType == 'users'  )  {
                     print AREAFILE qq|<resource id="2" src="" type="finish">\n|;            if ( step2Form.users.checked == false ) {
                 } else {                setCourse(step2Form,'clear')
                     print AREAFILE qq|$lastentry\n|;            }
                 }        }
                 print AREAFILE "</map>\n";         if ( conditionType == 'board'  )  {
                 close(AREAFILE);            if ( step2Form.board.checked == false ) {
                 $fileopen = 0;                setCourse(step2Form,'clear')
             }            }
             $areakey = $key;        }
             @{$pagecontents{$areakey}} = ();    }
             open(AREAFILE,">$destdir/sequences/$key.sequence");  }
             print AREAFILE "<map>\n";  
             $fileopen = 1;  function setCourse(step2Form,call) {
             $areacount = 0;      step2Form.targetcourse.length = 0
         } else {      if (call == 'add') {
             if ($filepath{$key} eq "Top,$areakey") {          step2Form.targetcourse.length = 0
                 my $src = '';          step2Form.targetcourse.options[0] = new Option("$lt{'sel'}","0",true,true)
                 if ($areacount == 0) {          for (var i=0; i<courseID_array.length; i++) {
                     if ($resinfo{$resnum{$key}}{'isfolder'} eq "true") {              step2Form.targetcourse.options[i+1] = new Option(courseTitle_array[i],courseID_array[i],false,false)
                         $src = 'sequences/'.$key.".sequence";          }
                         $pageflag{$areakey} = 0;          step2Form.targetcourse.selectedIndex = 0
                         $seqflag{$areakey} = 1;      }
                     } else {      else {
                         if ($pageflag{$areakey}) {          step2Form.targetcourse.options[0] = new Option("Not required","-1",true,true)
                             push @{$pagecontents{$areakey}[$pagecount{$areakey}]},$key;          step2Form.targetcourse.selectedIndex = 0
                         } else {  
                             $pagecount{$areakey} ++;  
                             $src = 'pages/'.$areakey.'_'.$pagecount{$areakey}.'.page';  
                             @{$pagecontents{$areakey}[$pagecount{$areakey}]} = ("$key");  
                             $seqflag{$areakey} = 0;  
                         }  
                     }  
                     unless ($pageflag{$areakey}) {  
                         print AREAFILE qq|<resource id="1" src="/res/$udom/$uname/$newdir/$src" title="$title{$key}" type="start">  
 <link from="1" to="2" index="1"></link>\n|;  
                         $areacount ++;  
                         $notlastentry = "";  
                         unless ($seqflag{$areakey}) {  
                             $pageflag{$areakey} = 1;  
                         }  
                     }  
                 } else {  
                     my $id = $areacount +1;  
                     my $nextid = $id +1;  
                     $areacount ++;  
                     if ($resinfo{$resnum{$key}}{'isfolder'} eq "true") {  
                         $src = 'sequences/'.$key.".sequence";  
                         $pageflag{$areakey} = 0;  
                         $seqflag{$areakey} = 1;  
                     } else {  
                         if ($pageflag{$areakey}) {  
                             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>|;  
                     $notlastentry = qq|></resource>  
 <link from="$id" to="$nextid" index="$id"></link>\n|;  
                 }  
             }  
             my $src ="";  
             my $next_id = 1;  
             my $curr_id = 0;  
             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") ) {  
                 open(LOCFILE,">$destdir/sequences/$key.sequence");  
                 print LOCFILE "<map>\n";  
                 $totseq ++;  
                 if ($contentscount{$key} == 0) {  
                     print LOCFILE qq|<resource id="1" src="" type="start"></resource>  
 <link from="1" to="2" index="1"></link>  
 <resource id="2" src="" type="finish"></resource>\n|;  
                 } else {  
                     if ($resinfo{$resnum{$contents{$key}[0]}}{'isfolder'} eq "true") {  
                         $src = 'sequences/'.$contents{$key}[0].".sequence";  
                         $pageflag{$key} = 0;  
                         $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|;  
                             }  
                         } 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);  
             }  
         }  
     }  
     if (@boards > 0) {  
         $topnum ++;  
         print TOPFILE qq|<resource id="$topnum" src="/res/$udom/$uname/$newdir/sequences/bulletinboards.sequence" title="Course Bulletin Boards"|;  
         $nextnum = $topnum +1;  
         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|;  
             }  
         }  
         open(BOARD,">$destdir/sequences/bulletinboards.sequence");  
         print BOARD qq|<map>  
 <resource id="1" src="/adm/$udom/$uname/$timestamp[0]/bulletinboard" title="$resinfo{$boards[0]}{title}" type="start"></resource>  
 <link from="1" to="2" index="1"></link>|;  
         if (@boards == 1) {  
             print BOARD qq|  
 <resource id="2" src="" type="finish"></resource>\n|;  
         } else {  
             for (my $i=1; $i<@boards; $i++) {  
                 print BOARD qq|<resource id="$i" src="/adm/$udom/$uname/$timestamp[$i]/bulletinboard" title="$resinfo{$boards[$i]}{title}"|;  
                 my $curr = $i+1;  
                 my $next = $i+2;  
                 if (@boards == $i) {  
                     print BOARD qq| type="finish"></resource>\n|;  
                 } else {  
                     print BOARD qq|></resource>  
 <link from="$curr" to="$next" index="$next">\n|;  
                 }  
             }  
         }  
         print BOARD qq|</map>|;  
         close(BOARD);  
     }  
     print TOPFILE "</map>";  
     close(TOPFILE);  
     foreach my $key (sort keys %pagecontents) {  
         for (my $i=0; $i<@{$pagecontents{$key}}; $i++) {  
             my $filestem = "/res/$udom/$uname/$newdir";  
             my $filename = $destdir.'/pages/'.$key.'_'.$i.'.page';  
             $totpage ++;  
             open(PAGEFILE,">$filename");  
             print PAGEFILE qq|<map>  
 <resource src="$filestem/resfiles/$resnum{$pagecontents{$key}[$i][0]}.html" id="1" type="start" title="$title{$pagecontents{$key}[$i][0]}"></resource>  
 <link to="2" index="1" from="1">\n|;  
             if (@{$pagecontents{$key}[$i]} == 1) {  
                 print PAGEFILE qq|<resource src="" id="2" type="finish"></resource>|;  
             } elsif (@{$pagecontents{$key}[$i]} == 2)  {  
                 print PAGEFILE qq|<resource src="$filestem/resfiles/$resnum{$pagecontents{$key}[$i][1]}.html" id="2" type="finish" title="$title{$pagecontents{$key}[$i][1]}"></resource>|;  
             } else {   
                 for (my $j=1; $j<@{$pagecontents{$key}[$i]}-1; $j++) {  
                     my $curr_id = $j+1;  
                     my $next_id = $j+2;  
                     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>  
 <link to="$next_id" index="$curr_id" from="$curr_id">\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>";  
             close(PAGEFILE);  
         }  
     }      }
     system(" rm -r $docroot/temp");  
     return($totseq,$totpage,$totprob);  
 }  }
   
   
 sub process_user {  function setOptions(caller,itemnum) {
   my ($res,$docroot,$destdir,$settings,$user_crs,$user_cdom,$user_handling) = @_;    var numCrs = $$numcrs
   my $xmlfile = $docroot."/temp/".$res.".dat";    var opForm = document.forms.pickoptions
   my $filecount = 0;    var menu = 1 + itemnum*2
   my @state;    opForm.elements[menu].length = 0
   my $userid = '';    if (opForm.elements[itemnum*2].checked == true) {
   my $linknum = 0;      if (caller == "board") {
         opForm.elements[menu].options[0] = new Option("$lt{'sel'}","-1",true,true)
   my $p = HTML::Parser->new        opForm.elements[menu].options[1] = new Option("$lt{'impto'}","topics",true,true)
     (        opForm.elements[menu].options[2] = new Option("$lt{'imptpa'}","allpost",true,true)
      xml_mode => 1,        opForm.elements[menu].options[3] = new Option("$lt{'imptpn'}","allanon",true,true)
      start_h =>      }
      [sub {      else { 
         my ($tagname, $attr) = @_;        if (caller == "users") {
         push @state, $tagname;          opForm.elements[menu].length = 0
         if (@state eq "USERS USER") {          opForm.elements[menu].options[0] = new Option("$lt{'sel'}","-1",true,true)
             $userid = $attr->{value};          opForm.elements[menu].options[1] = new Option("$lt{'enrst'}","students",true,true)
             %{$$settings{$userid}} = ();          opForm.elements[menu].options[2] = new Option("$lt{'enrall'}","all",true,true)
             @{$$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;  
     
   my $configvars = &LONCAPA::Configuration::read_conf('loncapa.conf');  
   my $xmlstem =  $$configvars{'lonDaemons'}."/tmp/".$user_cdom."_".$user_crs."_";  
   
   foreach my $user_id (keys %{$settings}) {  
       if ($$settings{$user_id}{user_role} eq "s") {  
              
       } elsif ($user_handling eq 'enrollall') {  
   
       }        }
       }
     }
     else {
       opForm.elements[menu].options[0] = new Option("$lt{'notreq'}","0",true,true)
     }
     opForm.elements[menu].selectedIndex = 0
     if (numCrs > 0) {
         checkCourse()
   }    }
 }  }
   
 sub process_group {    function verify(caller) {
   my ($res,$docroot,$destdir,$settings) = @_;    var numCrs = $$numcrs
   my $xmlfile = $docroot."/".$res.".dat";    var opForm = document.forms.pickoptions
   my $filecount = 0;    var totcheck = 0;
   my @state;    var totchg = 0;
   my $grp;    for (var i=0; i<caller; i++) {
       if (opForm.elements[2*i].checked == true) {
   my $p = HTML::Parser->new        totcheck ++
     (        if (opForm.elements[2*i].name == "board") { 
      xml_mode => 1,          if (opForm.elements[2*i+1].selectedIndex == 0) {     
      start_h =>            alert("$lt{'errao'}")
      [sub {            return false
         my ($tagname, $attr) = @_;          }
         push @state, $tagname;          if (numCrs == 0) {
         if (@state eq "GROUPS GROUP") {              opForm.elements[2*i].checked = false
             $grp = $attr->{id};              totchg ++
         }                  }
         if (@state eq "GROUPS GROUP TITLE") {          else {
             $$settings{$grp}{title} = $attr->{value};            if (opForm.targetcourse.selectedIndex == 0) {
         } elsif (@state eq "GROUPS GROUP FLAGS ISAVAILABLE") {                alert("$lt{'errtd'}")
             $$settings{$grp}{isavailable} = $attr->{value};              return false
         } elsif (@state eq "GROUPS GROUP FLAGS HASCHATROOM") {              }
             $$settings{$grp}{chat} = $attr->{value};  
         } elsif ("@state" eq "GROUPS GROUP FLAGS HASDISCUSSIONBOARD") {  
             $$settings{$grp}{discussion} = $attr->{value};  
         } elsif ("@state" eq "GROUPS GROUP FLAGS HASTRANSFERAREA") {  
             $$settings{$grp}{transfer} = $attr->{value};  
         } elsif ("@state" eq "GROUPS GROUP FLAGS ISPUBLIC") {  
             $$settings{$grp}{public} = $attr->{value};  
         }  
      }, "tagname, attr"],  
      text_h =>  
      [sub {  
         my ($text) = @_;  
         if ("@state" eq "GROUPS DESCRIPTION") {  
           $$settings{$grp}{description} = $text;  
 #          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,$dirname,$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 =>        if (opForm.elements[2*i].name == "users") {
      [sub {          if (opForm.elements[2*i+1].selectedIndex == 0) {     
         my ($text) = @_;            alert("$lt{'errap'}")
         if ("@state" eq "STAFFINFO BIOGRAPHY TEXT") {            return false
           $$settings{text} = $text;          }
 #          print "Staff text is $text\n";          if (numCrs == 0) {
         } elsif ("@state" eq "STAFFINFO CONTACT PHONE") {              opForm.elements[2*i].checked = false
           $$settings{phone} = $text;              totchg ++ 
         } elsif ("@state" eq "STAFFINFO CONTACT EMAIL") {          }
           $$settings{email} = $text;          else {
         } elsif ("@state" eq "STAFFINFO CONTACT NAME FORMALTITLE") {            if (opForm.targetcourse.selectedIndex == 0) {
           $$settings{name}{formaltitle} = $text;              alert("$lt{'errte'}")
         } elsif ("@state" eq "STAFFINFO CONTACT NAME FAMILY") {              return false
           $$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;  
   
     my $fontcol = '';  
     if (defined($$settings{textcolor})) {  
         $fontcol =  qq|color="$$settings{textcolor}"|;  
     }  
     if (defined($$settings{text})) {  
         if ($$settings{ishtml} eq "true") {  
             $$settings{text} = &HTML::Entities::decode($$settings{text});  
         }          }
         }
     }      }
     my $staffentry = qq|    }
 <table border="0" cellpadding="0" cellspacing="0" width="100%">    if (totcheck == 0) {
   <tr>      alert("$lt{'errcc'}");
     <td colspan="2"><hr /><font face="arial,helv" size="3"><b>$$settings{name}{formaltitle} $$settings{name}{given} $$settings{name}{family}</b></font>      return false
     </td>    }
   </tr>    return true
   <tr>  
     <td valign="top">  
       <table width="100% border="0" cols="2" cellpadding="0" cellspacing="0">|;  
     if ( defined($$settings{email}) && $$settings{email} ne '') {  
         $staffentry .= qq|  
         <tr>  
           <td width="100" valign="top">  
            <font face="arial" size="2"><b>Email:</b></font>  
           </td>  
           <td>  
            <font face="arial" size="2"><a href="mailto:$$settings{email}">$$settings{email}</a></font>  
           </td>  
         </tr>  
         |;  
     }  
     if (defined($$settings{phone}) && $$settings{phone} ne '') {  
         $staffentry .= qq|  
         <tr>  
           <td width="100" valign="top">  
             <font face="arial" size="2"><b>Phone:</b></font>  
           </td>  
           <td>  
             <font face="arial" size="2">$$settings{phone}</font>  
           </td>  
         </tr>  
         |;  
     }  
     if (defined($$settings{office}{address}) && $$settings{office}{address} ne '') {  
         $staffentry .= qq|  
         <tr>  
          <td width="100" valign="top">  
            <font face="arial" size="2"><b>Address:</b></font>  
          </td>  
          <td>  
            <font face="arial" size="2">$$settings{office}{address}</font>  
          </td>  
         </tr>  
         |;  
     }  
     if (defined($$settings{office}{hours}) && $$settings{office}{hours} ne '') {  
         $staffentry .= qq|  
         <tr>  
           <td width="100" valign="top">  
             <font face="arial" size="2"><b>Office Hours:</b></font>  
           </td>  
           <td>  
             <font face=arial size=2>$$settings{office}{hours}</font>  
           </td>  
         </tr>  
         |;  
     }  
     if ( defined($$settings{homepage}) && $$settings{homepage} ne '') {  
         $staffentry .= qq|  
         <tr>  
           <td width="100" valign="top">  
             <font face="arial" size="2"><b>Personal Link:</b></font>  
           </td>  
           <td>  
             <font face="arial" size="2"><a href="$$settings{homepage}">$$settings{homepage}</a></font>  
           </td>  
         </tr>  
         |;  
     }  
     if (defined($$settings{text}) && $$settings{text} ne '') {  
         $staffentry .= qq|  
         <tr>  
           <td colspan="2">  
             <font face="arial" size="2" $fontcol><b>Other Information:</b><br/>$$settings{text}</font>  
           </td>  
         </tr>  
         |;  
      }  
      $staffentry .= qq|  
       </table>  
     </td>  
     <td align="right" valign="top">  
      |;  
      if ( defined($$settings{image}) ) {  
          $staffentry .= qq|  
       <img src="$dirname/resfiles/$res/$$settings{image}">  
          |;  
      }  
      $staffentry .= qq|  
     </td>  
   </tr>  
 </table>  
     |;  
     open(FILE,">$destdir/resfiles/$res.html");  
     print FILE qq|<html>  
 <head>  
 <title>$$settings{title}</title>  
 </head>  
 <body bgcolor='#ffffff'>  
 $staffentry  
 </body>  
 </html>|;  
     close(FILE);  
 }  }
   
 sub process_link {  function nextPage(caller) {
     my ($res,$docroot,$dirname,$destdir,$settings) = @_;    if (verify(caller)) {
     my $xmlfile = $docroot."/temp/".$res.".dat";      document.forms.pickoptions.submit()
     my @state = ();    }
     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;  
   
     my $linktag = '';  
     my $fontcol = '';  
     if (defined($$settings{textcolor})) {  
         $fontcol =  qq|<font color="$$settings{textcolor}">|;  
     }  
     if (defined($$settings{text})) {  
         if ($$settings{ishtml} eq "true") {  
             $$settings{text} = &HTML::Entities::decode($$settings{text});  
         }  
     }  
   
     if (defined($$settings{url}) ) {  END_OF_TWO
         $linktag = qq|<a href="$$settings{url}"|;  
         if ($$settings{newwindow} eq "true") {  
             $linktag .= qq| target="launch"|;  
         }  
         $linktag .= qq|>$$settings{title}</a>|;  
     }  
   
     open(FILE,">$destdir/resfiles/$res.html");  
     print FILE qq|<html>  
 <head>  
 <title>$$settings{title}</title>  
 </head>  
 <body bgcolor='#ffffff'>  
 $fontcol  
 $linktag  
 $$settings{text}  
 |;  
     if (defined($$settings{textcolor})) {  
         print FILE qq|</font>|;  
     }  
     print FILE qq|  
   </body>  
  </html>|;  
     close(FILE);  
 }  }
   
 sub process_db {  # ---------------------------------------------------------------- Display One
     my ($res,$docroot,$destdir,$timestamp,$crs,$cdom,$handling,$uname,$settings) = @_;  sub display_one {
     my $xmlfile = $docroot."/temp/".$res.".dat";      my ($r,$fn,$fullpath,$formname) = @_;
     my @state = ();      $r->print('<form name="'.$formname.'" method="post" action="">'.
     my @allmsgs = ();                &Apache::lonhtmlcommon::topic_bar(1,&mt('Specify the Course Management system used to create the package')).
     my %msgidx = ();          &mt('Choose the CMS used to create your IMS content package.').'&nbsp;&nbsp;
     my $longcrs = '';          <select name="source">
     if ($crs =~ m/^(\d)(\d)(\d)/) {           <option value="-1" selected="selected">'.&mt('Please select').'</option>
         $longcrs = $1.'/'.$2.'/'.$3.'/'.$crs;           <option value="bb5">Blackboard 5</option>
     }           <option value="bb6">Blackboard 6</option>
     my %threads; # all quotes, keyed by message ID           <option value="angel5">ANGEL 5.5</option>
     my $msg_id; # the current message ID           <option value="webctce4">WebCT 4 Campus Edition</option>
     my %message; # the current message being accumulated for $msg_id           <option value="webctvista4">WebCT Vista 4</option>
           </select><br />'."\n".
     my $p = HTML::Parser->new          &Apache::lonhtmlcommon::topic_bar(2,&mt('Create a directory where you will unpack your IMS package'))."\n".
     (           &mt('Create a destination LON-CAPA directory in which to store the contents of the IMS package file.').'&nbsp;&nbsp;<input type="button" name="createdir" value="'.&mt('Create Directory').'" onclick="javascript:createWin()" /><input type="hidden" name="newdir" value="" /><br /><br />
        xml_mode => 1,            <input type="hidden" name="filename" value="'.$fn.'" />
        start_h =>            <input type="hidden" name="phase" value="three" />
        [sub {            <input type="button" name="nextpage" value="'.&mt('Proceed').'" onclick="javascript:nextPage();" />&nbsp;&nbsp;&nbsp;&nbsp;
            my ($tagname, $attr) = @_;            <input type="button" name="exitpage" value="'.&mt('Exit now').'" onclick="javascript:location.href='."'$fullpath'".'" />
            push @state, $tagname;           </form>');
            my $depth = 0;  }
            my @seq = ();  
            if ("@state" eq "FORUM TITLE") {  # ---------------------------------------------------------------- Display Two
                $$settings{title} = $attr->{value};  sub display_two {
            } elsif ("@state" eq "FORUM DESCRIPTION TEXTCOLOR") {        my ($r,$zipupload,$areas,$areaname,$cmsmap,$fn,$numcrs,$fullpath) = @_;
                $$settings{textcolor} = $attr->{value};      &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['folder','source']);
            } elsif ("@state" eq "FORUM DESCRIPTION FLAGS ISHTML") {        my $cms = $env{'form.source'};
                $$settings{ishtml} = $attr->{value};      my $tempdir = &Apache::imsprocessor::create_tempdir('CSTR',$env{'form.newdir'},'');
            } elsif ("@state" eq "FORUM DESCRIPTION FLAGS ISNEWLINELITERAL") {        my $fname = &Apache::imsprocessor::uploadzip('CSTR',$tempdir,$zipupload);
                $$settings{newline} = $attr->{value};      my $unzip_result = '';
            } elsif ("@state" eq "FORUM POSITION" ) {      my $manifest_result = '';
                $$settings{position} = $attr->{value};      unless ($tempdir eq '') {
            } elsif ("@state" eq "FORUM FLAGS ISREADONLY") {          $unzip_result = &Apache::imsprocessor::expand_zip($tempdir,$fname);
                $$settings{isreadonly} = $attr->{value};      }
            } elsif ("@state" eq "FORUM FLAGS ISAVAILABLE" ) {      my %resources = ();
                $$settings{isavailable} = $attr->{value};      my %includedres = ();
            } elsif ("@state" eq "FORUM FLAGS ALLOWANONYMOUSPOSTINGS" ) {      my %includeditems = ();
                $$settings{allowanon} = $attr->{value};      my %items = ();
            } elsif ( ($state[0] eq "FORUM") && ($state[1] eq "MESSAGETHREADS") && ($state[2] eq "MSG") ) {      my %hrefs = ();
                if ($state[-1] eq "MSG") {      my %resinfo = ();
                    unless ($msg_id eq '') {      my %count = ();
                        push @{$threads{$msg_id}}, { %message };  
                        $depth = @state - 3;      my %lt = &Apache::lonlocal::texthash(
                        if ($depth > @seq) {                    cont => 'Choose which content types you wish to import',
                            push @seq, $msg_id;                     impo => 'Import',
                        }                    type => 'Content type',
                    }                    addo => 'Additional options',
                    if ($depth < @seq) {                    chec => 'Check Import first',
                        pop @seq;                    bbus => 'Choose a course to receive discussion boards and user enrollment',
                    }                                    list => 'A listing of possible course targets will be displayed if import of discussion 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.',
                    $msg_id = $attr->{id};                    chco => 'Choose course:',
                    push @allmsgs, $msg_id;                    nreq => 'Not required',
                    $msgidx{$msg_id} = @allmsgs;                    yodo => 'You do not have active course coordinator status in any LON-CAPA courses currently, so discussion boards and enrollment information included in your IMS package will be discarded, regardless of your import choice for these two items above (step 3).',
                    %message = ();                    ifyo => "If you wish to import discussion 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 discussion boards and/or enroll users.",
                    $message{depth} = $depth;                    impa => 'Import package',
                    if ($depth > 0) {                    unpa => 'Unpacking of your IMS package failed because an IMS manifest file was not located in the package',
                        $message{parent} = $seq[-1];                    proc => 'Processing of your IMS package failed because the file you uploaded could not be unzipped',
                    } else {                    exit => 'Exit now',
                        $message{parent} = "None";  
                    }  
                } elsif ($state[-1] eq "TITLE") {  
                    $message{title} = $attr->{value};  
                } elsif ( ( $state[-3] eq "MESSAGETEXT" ) && ( $state[-2] eq "FLAGS" ) && ( $state[-1] eq "ISHTML" ) ) {  
                    $message{ishtml} = $attr->{value};  
                } elsif ( ( $state[-3] eq "MESSAGETEXT" ) && ( $state[-2] eq "FLAGS" ) && ( $state[-1] eq "ISNEWLINELITERAL" ) ) {  
                    $message{newline} = $attr->{value};  
                } elsif ( ( $state[-2] eq "DATES" ) && ( $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[-2] eq "USER" ) {  
                    if ($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[-2] eq "FILELIST") && ($state[-1] eq "IMAGE") ) {  
                    $message{attachment} = $attr->{value};  
                }  
            }  
        }, "tagname, attr"],  
        text_h =>  
        [sub {  
            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[-2] eq "MESSAGETEXT") && ($state[-1] eq "TEXT") ){  
                    $message{text} = $text;  
                }  
            }  
        }, "dtext"],  
        end_h =>  
        [sub {  
            my ($tagname) = @_;  
            if ( $state[-1] eq "MESSAGETHREADS" ) {  
                push @{$threads{$msg_id}}, { %message };  
            }  
            pop @state;  
        }, "tagname"],  
     );      );
     $p->unbroken_text(1);  
     $p->parse_file($xmlfile);      my $counter = 0;
     $p->eof;      my $iter = 0;
       my %count = (
     if (defined($$settings{text})) {                  announce => 0,
         if ($$settings{ishtml} eq "false") {                  board => 0,
             if ($$settings{isnewline} eq "true") {                  doc => 0,
                 $$settings{text} =~ s#\n#<br/>#g;                  extlink => 0,
             }                  msg => 0,
         } else {                  pool => 0,
             $$settings{text} = &HTML::Entities::decode($$settings{text});                  quiz => 0,
         }                  staff => 0,
         if (defined($$settings{fontcolor}) ) {                  survey => 0,
             $$settings{text} = "<font color=\"".$$settings{textcolor}."\">".$$settings{text}."</font>";                  users => 0,
         }                  );
     }      my $conditions;
     my $boardname = 'bulletinpage_'.$timestamp;      if ($unzip_result eq 'ok') {
     my %boardinfo = (          $manifest_result = &Apache::imsprocessor::process_manifest($cms,
                   'aaa_title' => $$settings{title},                              $tempdir,\%resources,\%items,\%hrefs,\%resinfo,
                   'bbb_content' => $$settings{text},                              'choose',\%includedres,\%includeditems);
                   'ccc_webreferences' => '',          if ($manifest_result eq 'ok') {
                   'uploaded.lastmodified' => time,              foreach my $res (sort keys %resources) {
                   );                  if ($cms eq 'bb5' || $cms eq 'bb6' || $cms eq 'webctce4' 
                         || $cms eq 'webctvista4') {
     my $putresult = &Apache::lonnet::put($boardname,\%boardinfo,$cdom,$crs);                      foreach my $area (keys %{$$cmsmap{$cms}}) {
     if ($handling eq 'importall') {                          if ($resources{$res}{type} eq $$cmsmap{$cms}{$area}) {
         foreach my $msg_id (@allmsgs) {                              $count{$area} ++;
             foreach my $message ( @{$threads{$msg_id}} ) {                          }
                 my %contrib = (                      }
                             'sendername' => $$message{userid},                  } elsif ($cms eq 'angel5') {
                             'senderdomain' => $cdom,                      foreach my $area (keys %{$$cmsmap{$cms}}) {
                             'screenname' => '',                          if ($area eq 'doc') {
                             'plainname' => $$message{username},                              if (grep/^$resources{$res}{type}$/,@{$$cmsmap{$cms}{doc}}) {
                             );                                  $count{$area} ++;
                 unless ($$message{parent} eq 'None') {                              }
                     $contrib{replyto} = $msgidx{$$message{parent}};                          } elsif ($resources{$res}{type} eq $$cmsmap{$cms}{$area}) {
                 }                              $count{$area} ++;                                
                 if (defined($$message{isanonymous}) ) {  
                     if ($$message{isanonymous} eq 'true') {  
                         $contrib{'anonymous'} = 'true';  
                     }  
                 }  
                 if ( defined($$message{attachment}) )  {  
                     my $url = $$message{attachment};  
                     my $oldurl = $url;  
                     my $newurl = $url;  
                     unless ($url eq '') {  
                         $newurl =~ s/\//_/g;  
                         unless ($longcrs eq '') {  
                             if (!-e "/home/httpd/lonUsers/$cdom/$longcrs/userfiles") {  
                                 mkdir("/home/httpd/lonUsers/$cdom/$longcrs/userfiles",0755);  
                             }  
                             if (!-e "/home/httpd/lonUsers/$cdom/$longcrs/userfiles/$newurl") {  
                                 system("cp $destdir/resfiles/$res/$$message{attachment} /home/httpd/lonUsers/$cdom/$longcrs/userfiles/$newurl");  
                             }  
                             $contrib{attachmenturl} = '/uploaded/'.$cdom.'/'.$crs.'/'.$newurl;  
                         }                          }
                     }                      }
                 }                  }
                 if (defined($$message{title}) ) {              }
                     $contrib{'message'} = $$message{title};              if ($count{board} > 0) {
                   if ($count{users} > 0) {
                       $conditions = 'both';
                   } else {
                       $conditions = 'board';
                 }                  }
                 if (defined($$message{text})) {              } elsif ($count{users} > 0) {
                     if ($$message{ishtml} eq "false") {                  $conditions = 'users';
                         if ($$message{isnewline} eq "true") {              } else {
                             $$message{text} =~ s#\n#<br/>#g;                  $conditions = 'none';
                         }              }
   
               $r->print('<form name="pickoptions" method="post" action="">'.
                         &Apache::lonhtmlcommon::topic_bar(3,$lt{'cont'}).
                         &Apache::loncommon::start_data_table().
                         &Apache::loncommon::start_data_table_header_row().
                         '<th>'.$lt{'impo'}.'</th><th>'.$lt{'type'}.'</th><th>'.
                         $lt{'addo'}.'</th>'.
                         &Apache::loncommon::end_data_table_header_row());
               foreach my $area (@{$areas}) {
                   if ($count{$area} > 0) {
                       my $count_tag = 'flag_'.$counter;
                       $r->print(&Apache::loncommon::start_data_table_row()."\n".
                                 '<td><input name="'.$area.'" type="checkbox" ');
                       if ($area eq 'board' || $area eq 'users') {
                           $r->print('onclick="javascript:setOptions('."'$area','$counter'".');" ');
                       }
                       $r->print('/></td>'.
                                 '<td>&nbsp;&nbsp;'.$$areaname{$area}.'&nbsp;&nbsp; - '.
                                 &mt('[quant,_1,item]',$count{$area}).'</td>');
                       if ($area eq 'board') {
                           $r->print('<td>&nbsp;&nbsp;
                    <select name="db_handling">
                     <option value="-2">&lt;-- '.$lt{'chec'}.'</option>
                    </select>
                   </td>');
                       } elsif ($area eq 'users') {
                           $r->print('<td>&nbsp;&nbsp;
                    <select name="user_handling">
                     <option value="-2">&lt;-- '.$lt{'chec'}.'</option>
                    </select>
                   </td>');
                     } else {                      } else {
                         $$message{text} = &HTML::Entities::decode($$message{text});                          $r->print('<td>&nbsp;&nbsp;'.&mt('None')."\n".
                                     '<input type="hidden" name="'.$count_tag.'" /></td>');
                     }                      }
                     $contrib{'message'} .= '<br /><br />'.$$message{text};                      $counter ++;
                     my $symb = 'bulletin___'.$timestamp.'___adm/wrapper/adm/'.$cdom.'/'.$uname.'/'.$timestamp.'/bulletinboard';                      $r->print(&Apache::loncommon::end_data_table_row());
                     my $postresult = &addposting($symb,\%contrib,$cdom,$crs);                  }
               }
               $r->print(&Apache::loncommon::end_data_table());
               if ($count{board} + $count{users} > 0) {
                   $r->print(&Apache::lonhtmlcommon::topic_bar(4,$lt{'bbus'}));
                   if ($$numcrs > 0) {
                       $r->print($lt{'list'}.'<br /><br />'.$lt{'chco'}.'&nbsp;&nbsp;'."\n".
                                 '<select name="targetcourse">
                                   <option value="-1">'.$lt{'nreq'}.'</option>
                                  </select>');
                   } else {
                       $r->print($lt{'yodo'}.' '.$lt{'ifyo'});
                 }                  }
             }              }
               $r->print('<br /><br />
             <input type="hidden" name="newdir" value="'.$env{'form.newdir'}.'" />
             <input type="hidden" name="conditions" value="'.$conditions.'" />
             <input type="hidden" name="source" value="'.$cms.'" />
             <input type="hidden" name="tempdir" value="'.$tempdir.'" />
             <input type="hidden" name="filename" value="'.$fn.'" />
             <input type="hidden" name="phase" value="four" />'."\n");
               if ($count{board} == 0) {
                   $r->print('<input type="hidden" name="board" value="" />'."\n");
               }
               if ($count{users} == 0) {
                   $r->print('<input type="hidden" name="users" value="" />'."\n");
               }
               $r->print('<input type="button" name="nextpage" value="'.$lt{'impa'}.'" onclick="javascript:nextPage('."'$counter.'".')" />&nbsp;&nbsp;&nbsp;
              <input type="button" name="exitpage" value="'.$lt{'exit'}.'" onclick="javascript:location.href='."'$fullpath'".'" /></form>');
           } else {
               $r->print($lt{'unpa'});
         }          }
     }  
 }  
   
 sub addposting {  
     my ($symb,$contrib,$cdom,$crs)=@_;  
     my $status='';  
     if (($symb) && ($$contrib{message})) {  
        my $crsdom = $cdom.'_'.$crs;  
        &Apache::lonnet::store($contrib,$symb,$crsdom,$cdom,$crs);  
        my %storenewentry=($symb => time);  
        &Apache::lonnet::put('discussiontimes',\%storenewentry,$cdom,$crs);  
     }  
     my %record=&Apache::lonnet::restore('_discussion');  
     my ($temp)=keys %record;  
     unless ($temp=~/^error\:/) {  
         my %newrecord=();  
         $newrecord{'resource'}=$symb;  
         $newrecord{'subnumber'}=$record{'subnumber'}+1;  
         &Apache::lonnet::cstore(\%newrecord,'_discussion');  
         $status = 'ok';  
     } else {      } else {
         $status.='Failed.';          $r->print(
               '<br />'.&Apache::loncommon::confirmwrapper(
                   &Apache::lonhtmlcommon::confirm_success($lt{'proc'},1)
                  .'<br />'.&mt('Error: [_1]',$unzip_result))
           );
     }      }
     return $status;  
 }  }
   
 sub process_assessment {  # ---------------------------------------------------------------- Display Three
   my ($res,$docroot,$container,$dirname,$destdir,$settings,$totpageref,$totprobref) = @_;  sub display_three {
   my $xmlfile = $docroot."/temp/".$res.".dat";      my ($r,$uname,$udom,$areas,$areaname,$cmsmap,$destdir,$dirpath) = @_;
 #  print "XML file is $xmlfile\n";      my $crs = '';
   my @state = ();      my $cdom = '';
   my @allids = ();      my $db_handling = '';
   my %allanswers = ();      my $timenow = time; 
   my %allchoices = ();      my $announce_handling = 'ok';
   my $id; # the current question ID      my $cms = $env{'form.source'};
   my $answer_id; # the current answer ID      if ( defined($env{'form.bb_crs'}) ) {
   my %toptag = ( pool => 'POOL',          ($cdom,$crs) = split/\//,$env{'form.bb_crs'};
                  quiz => 'ASSESSMENT',      } 
                  survey => 'ASSESSMENT'      my $user_crs = '';
                );      my $user_cdom = '';
 #  print "process_assessment is called, incoming: $res,$docroot,$container,$destdir\n";      my $user_handling = '';
       if ( defined($env{'form.user_crs'}) ) {
   my $p = HTML::Parser->new          ($user_cdom,$user_crs) = split/\//,$env{'form.user_crs'};
     (      }
      xml_mode => 1,      my $seqstem = "/res/$udom/$uname/$dirpath";
      start_h =>      my %importareas = ();
      [sub {      my %includedres = ();
         my ($tagname, $attr) = @_;      my %includeditems = ();
         push @state, $tagname;      my %randompicks = ();
         my $depth = 0;      my @targets = ();
         my @seq = ();      my %resources = ();
         my $class;      my %items = ();
         my $state_str = join(" ",@state);      my %hrefs = ();
 #        print "Current state is $state_str\n";      my %urls = ();
         if ($container eq "pool") {      my %resinfo = ();
             if ("@state" eq "POOL TITLE") {      my %total = (
                 $$settings{title} = $attr->{value};                     page => 0,
 #                print "Title is $attr->{value}\n";                     prob => 0,
             }                     seq => 0,
         } else {                     board => 0,         
             if ("@state" eq "ASSESSMENT TITLE") {                       quiz => 0,
                 $$settings{title} = $attr->{value};                               surv => 0,
             } elsif ("@state" eq "ASSESSMENT FLAG" ) {                     file => 0,
                 $$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};  
             unless ($container eq 'pool') {  
                 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"],  
      text_h =>  
      [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";  
   my $pagedir = "$destdir/pages";  
   my $curr_id = 0;  
   my $next_id = 0;  
   unless ($container eq 'pool') {  
       open(PAGEFILE,">$pagedir/$res.page");  
       print PAGEFILE qq|<map>  
 |;  
       $$totpageref ++;   
   }  
   foreach my $id (@allids) {  
       $curr_id ++;  
       $next_id = $curr_id + 1;  
       if ($curr_id == 0) {  
           print PAGEFILE qq|<resource id="1" src="$newdir/$id.problem" type="start"></resource>\n|;  
       } else {  
           print PAGEFILE qq|  
 <link from="$curr_id" to="$next_id" index="$curr_id"></link>  
 <resource id="$curr_id" src="$newdir/$id.problem"|;  
           $curr_id ++;  
           $next_id = $curr_id + 1;  
           if ($curr_id == @allids) {  
               print PAGEFILE qq| type="finish"></resource>\n|;  
           } else {  
               print PAGEFILE qq|></resource>|;  
           }  
       }  
 #      print "Current ID is $id, type is $$settings{$id}{class} \n";  
       if (@allids == 1) {  
           print PAGEFILE qq|<link from="1" to="2" index="1"></link>  
 <resource id="2" src="" type="finish">\n|;  
       }  
   
       my $output = qq|<problem>      my @pages = ();
 |;      my @sequences = ();
       $$totprobref ++;      my @resrcfiles = ();
       if ($$settings{$id}{class} eq "QUESTION_ESSAY") {      my @assessmentfiles = ();
           $output .= qq|<startouttext />$$settings{$id}{text}<endouttext />  
    <essayresponse>      my $tempdir = $env{'form.tempdir'};
    <textfield></textfield>  
    </essayresponse>      foreach my $area (@{$areas}) {
    <postanswerdate>          if (defined($env{"form.$area"}) ) {
    $$settings{$id}{feedbackcorr}              if ($cms eq 'angel5' && $area eq 'doc') {
    </postanswerdate>                  foreach (@{$$cmsmap{$cms}{$area}}) {
 |;                      $importareas{$_} = 1;
       } else {  
     $output .= qq|<startouttext />$$settings{$id}{text}\n|;  
     if ( defined($$settings{$id}{image}) ) {   
         if ( $$settings{$id}{style} eq 'embed' ) {  
             $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 />|;  
         }  
     }  
     if ( defined($$settings{$id}{url}) ) {  
         $output .= qq|<br /><a href="$$settings{$id}{url}">$$settings{$id}{name}</a><br />|;  
     }  
     $output .= qq|  
 <endouttext />|;  
     if ($$settings{$id}{class} eq 'QUESTION_MULTIPLECHOICE') {  
         my $numfoils = @{$allanswers{$id}};  
         $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=\"";  
             } else {  
                 $output .= "false\" location=\"";  
             }  
             if (lc ($allanswers{$id}[$k]) =~ m/^\s?([Aa]ll)|([Nn]one)\sof\sthe\sabove\.?/) {  
                 $output .= "bottom\"";  
             } 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|;  
         }  
         chomp($output);  
         $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 {              } else {
                 $output .= "false\" location=\"random\"";                  $importareas{$$cmsmap{$cms}{$area}} = 1;
             }              }
             $output .= "\><startouttext />".$$settings{$id}{$allanswers{$id}[$k]}{text}."<endouttext /></foil>\n";              if ($area eq 'board') {
         }                  $db_handling = $env{'form.db_handling'};
         chomp($output);              } elsif ($area eq 'users') {
         $output .= qq|                  $user_handling = $env{'form.user_handling'};
     </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";  
         }  
         chomp($output);  
         $output .= qq|  
     </foilgroup>  
    </optionresponse>  
   |;  
     } 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>      my %lt = &Apache::lonlocal::texthash (
    </rankresponse>                   yims => 'Your IMS package has been processed successfully.',
         |;                   plsv => 'Please view the imported items and use the LON-CAPA editing tools to make changes.',
     } elsif ($$settings{$id}{class} eq 'QUESTION_FILLINBLANK') {                   tseq => "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.",
         my $numerical = 1;                   tfin => 'The final step in the IMS import process is to publish the materials you have imported into your Authoring Space so that you can use them in a course. Once your files are published, subsequent re-publication will result in the storage of information about changes between the different versions.',
         for (my $k=0; $k<@{$allanswers{$id}}; $k++) {                   disp => 'Display new directory',
             if ($$settings{$id}{$allanswers{$id}[$k]}{text} =~ m/([^\d\.]|\.\.)/) {                   proc => 'Processing of your IMS package failed, because the IMS content package did not contain an IMS manifest file.'
                 $numerical = 0;               );
       my $manifest_result = &Apache::imsprocessor::process_manifest($cms,$tempdir,
                             \%resources,\%items,\%hrefs,\%resinfo,'prepare',
                             \%includedres);
   
       if ($manifest_result eq 'ok') {
           my %possibledep;
           foreach my $res (sort keys %resources) {
               if ($importareas{$resources{$res}{type}}) {
                   $includedres{$res} = 1;
                   if ($resources{$res}{type} eq 'webct.manifest' || 
                        $resources{$res}{type} eq 'webct.assessment' ||
                        $resources{$res}{type} eq 'webct.question') {
                       push(@assessmentfiles,$res);
                   }   
               } elsif ($resources{$res}{usedby}) {
                   $possibledep{$res} = 1;
             }              }
         }          }
         if ($numerical) {          foreach my $res (sort(keys(%possibledep))) {
             my $numans;              if ($includedres{$resources{$res}{usedby}}) {
             my $tol;                  $includedres{$res} = 1;
             if (@{$allanswers{$id}} == 1) {  
                 $tol = 5;  
                 $numans = $$settings{$id}{$allanswers{$id}[0]}{text};  
             } else {  
                 my $min = $$settings{$id}{$allanswers{$id}[0]}{text};  
                 my $max = $$settings{$id}{$allanswers{$id}[0]}{text};  
                 for (my $k=1; $k<@{$allanswers{$id}}; $k++) {  
                     if ($$settings{$id}{$allanswers{$id}[$k]}{text} <= $min) {  
                         $min = $$settings{$id}{$allanswers{$id}[$k]}{text};  
                     }  
                     if ($$settings{$id}{$allanswers{$id}[$k]}{text} >= $max) {  
                         $max = $$settings{$id}{$allanswers{$id}[$k]}{text};  
                     }  
                 }  
                 $numans = ($max + $min)/2;  
                 $tol = 100*($max - $min)/($numans*2);  
             }              }
             $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);  
                 $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|          foreach my $itm (sort keys %items) {
         </itemgroup>              &Apache::imsprocessor::get_imports(\%includeditems,\%items,\%resources,\%importareas,$itm);
 |;  
         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>  
         |;  
     }      }
       }  
       $output .= qq|</problem>  
 |;  
       open(PROB,">$newdir/$id.problem");  
       print PROB $output;  
       close PROB;  
   }  
   unless ($container eq 'pool') {  
       print PAGEFILE qq|</map>|;  
       close(PAGEFILE);  
   }  
 }  
   
   
 sub create_ess {      foreach my $itm (sort keys %includeditems) {
     my ($newdir,$qnid,$qsettings,$container) = @_;          &Apache::imsprocessor::get_parents(\%includeditems,\%items,$itm);
     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;  
 }  
   
 sub process_announce {      $manifest_result = &Apache::imsprocessor::process_manifest($cms,$tempdir,
   my ($res,$docroot,$destdir,$settings) = @_;                         \%resources,\%items,\%hrefs,\%resinfo,'build',
   my $xmlfile = $docroot."/temp/".$res.".dat";                         \%includedres,\%includeditems);
   my @state = ();  
   my @assess = ();  
   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}} = ();  
             push @assess,$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{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;  
   
   if (defined($$settings{text})) {  
       if ($$settings{ishtml} eq "false") {  
           if ($$settings{isnewline} eq "true") {  
               $$settings{text} =~ s#\n#<br/>#g;  
           }  
       } else {  
           $$settings{text} = &HTML::Entities::decode($$settings{text});  
       }  
   }  
     
   if (@assess > 0) {  
       foreach my $id (@assess) {  
           $$settings{text} .= "Please use 'NAV' to locate the link to the folder of problems entitled -";  
           foreach my $key (keys %{$$settings{startassessment}{$id}}) {  
 #              print STDERR "Quiz announcement - $id, key: $key, value: $$settings{startassessment}{$id}{$key}\n";  
           }  
       }  
   }  
   
   open(FILE,">$destdir/resfiles/$res.html");      if ($manifest_result eq 'ok') {
   print FILE qq|<html>          &Apache::imsprocessor::target_resources(\%resources,\%importareas,\@targets);
 <head>  
 <title>$$settings{title}</title>  
 </head>  
 <body bgcolor='#ffffff'>  
 $$settings{text}  
 |;  
   print FILE qq|  
   </body>  
  </html>|;  
   close(FILE);  
 }  
   
 sub process_content {          my @boards = ();
   my ($res,$docroot,$destdir,$settings,$dom,$user) = @_;          my @announcements = ();
   my $xmlfile = $docroot."/temp/".$res.".dat";          my @quizzes = ();
   my $destresdir = $destdir;          my @surveys = ();
   $destresdir =~ s|/home/$user/public_html/|/res/$dom/$user/|;          my @pools = ();
   my $filecount = 0;          my @groups = ();
   my @state;          my %messages = ();
   @{$$settings{files}} = ();           my @timestamp = ();
   my $p = HTML::Parser->new          my %boardnum = ();
     (          my @topurls = ();
      xml_mode => 1,          my @topnames = ();
      start_h =>          my @packages = ();
      [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");          &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);
   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);  
 }  
   
 sub expand_angel {          my $copy_result = &Apache::imsprocessor::copy_resources('CSTR',$cms,\%hrefs,\%resources,$tempdir,\@targets,\%urls,$crs,$cdom,$destdir,$timenow,\@assessmentfiles,\%total);
     my ($r,$uname,$udom,$fn,$page,$bb_crs,$bb_cdom,$bb_handling) = @_;     
     my @state = ();          &Apache::imsprocessor::build_structure($cms,'CSTR',$destdir,\%items,\%resinfo,\%resources,\@targets,\%hrefs,$udom,$uname,$dirpath,$timenow,$cdom,$crs,\@timestamp,\%total,\@boards,\@announcements,\@quizzes,\@surveys,\@pools,\%boardnum,\@pages,\@sequences,\@topurls,\@topnames,\@packages,\%includeditems,\%randompicks);
     my @seq = "Top";  
     my $lastitem;  
     my $itm = '';  
     my %resnum = ();  
     my %revitm = ();  
     my %title = ();  
     my %filepath = ();  
     my %contentscount = ("Top" => 0);  
     my %contents = ();  
     my %parentseq = ();  
     my %file = ();  
     my %type = ();  
     my %href = ();  
     my $identifier = '';  
     my %resinfo = ();  
     my $numfolders = 0;  
     my $numpages = 0;  
     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 $p = HTML::Parser->new  
     (  
        xml_mode => 1,  
        start_h =>  
            [sub {  
                 my ($tagname, $attr) = @_;  
                 push @state, $tagname;  
                 my $num = @state - 3;  
                 my $start = $num;  
                 my $statestr = '';  
                 foreach (@state) {  
                   $statestr .= "$_ ";  
                 }  
                 if ( ($state[0] eq "manifest") && ($state[1] eq "organizations") && ($state[2] eq "organization") ) {  
                   my $searchstr = "manifest organizations organization";  
                   while ($num > 0) {  
                     $searchstr .= " item";  
                     $num --;  
                   }  
                   if (("@state" eq $searchstr) && (@state > 3)) {  
                     $itm = $attr->{identifier};  
                     if ($attr->{identifierref} =~ m/^res(.+)$/) {  
                         $resnum{$itm} = $1;  
                     }  
                     $revitm{$resnum{$itm}} = $itm;  
                     if ($start > @seq) {  
                         unless ($lastitem eq '') {  
                             push @seq, $lastitem;  
                             unless ( defined($contents{$seq[-1]}) ) {  
                                 @{$contents{$seq[-1]}} = ();  
                             }  
                             push @{$contents{$seq[-1]}},$itm;  
                             $parentseq{$itm} = $seq[-1];  
                         }  
                     }  
                     elsif ($start < @seq) {  
                       my $diff = @seq - $start;  
                       while ($diff > 0) {  
                         pop @seq;  
                         $diff --;  
                       }  
                       if (@seq) {  
                         push @{$contents{$seq[-1]}}, $itm;  
                       }  
                     } 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};  
                     $identifier = substr($identifier,3);  
                     if ($attr->{href} =~ m-^_assoc/$identifier/(.+)$-) {  
                         $file{$identifier} = $1;  
                     }  
                     @{$href{$identifier}} = ();  
                 } elsif ("@state" eq "manifest resources resource file") {  
                     if ($attr->{href} =~ m/^_assoc\\$identifier\\(.+)$/) {  
                         push @{$href{$identifier}},$1;  
                     } elsif ($attr->{href} =~ m/^Icons\\icon(\w+)\.gif/) {  
                         $type{$identifier} = $1;  
                     }  
                 }  
            }, "tagname, attr"],  
         text_h =>  
             [sub {  
                 my ($text) = @_;  
                 if ($state[0] eq "manifest" && $state[1] eq "organizations" && $state[2] eq "organization" && $state[-1] eq "title") {  
                     $title{$itm} = $text;  
                 }  
               }, "dtext"],  
         end_h =>  
               [sub {  
                   my ($tagname) = @_;  
                   pop @state;  
                }, "tagname"],  
     );  
     $p->parse_file($xmlfile);  
     $p->eof;  
                                                                                                       
     my $topnum = 0;  
     my $destdir = $docroot;  
     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);  
     }  
     foreach my $key (sort keys %href) {  
         foreach my $file (@{$href{$key}}) {  
             print STDERR "File is $file, for $key\n";  
             $file =~ s-\\-/-g;  
             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/_assoc/$key/$file $destdir/resfiles/$key/$file");  
         }  
     }  
   
           my $message =
               &Apache::lonhtmlcommon::confirm_success(
                   &mt('IMS import completed'))
              .'<br />'.$lt{'yims'}.' ';
   
 # ANGEL types FILE FOLDER PAGE LINK MESSAGE FORM QUIZ BOARD          if ($cms eq 'angel5') {
     my $currboard = '';              $message .= &mt('A total of [quant,_1,sequence], [quant,_2,composite page], and [quant,_3,discussion board] have been created, and [quant,_4,file] copied.',$total{seq},$total{page},$total{board},$total{file})."\n";
     my @boards = ();          } else {
     my %messages = ();              $message .= &mt('A total of [quant,_1,sequence], [quant,_2,composite page], [quant,_3,discussion board], [quant,_4,quiz,quizzes], [quant,_5,survey], and [quant,_6,problem] have been created, and [quant,_7,file] copied.',$total{seq},$total{page},$total{board},$total{quiz},$total{surv},$total{prob},$total{file})."\n";
     my @timestamp = ();  
     my %boardnum = ();  
     my $board_id = time;  
     my $board_count = 0;  
     foreach my $key (sort keys %type) {  
         if ($type{$key} eq "BOARD") {  
             push @boards, $key;  
             $boardnum{$revitm{$key}} = $board_count ;  
             $currboard = $key;  
             @{$messages{$key}} = ();  
             $timestamp[$board_count] = $board_id;  
             $board_id ++;  
             $board_count ++;  
         } elsif ($type{$key} eq "MESSAGE") {  
             push @{$messages{$currboard}}, $key;  
         } elsif ($type{$key} eq "FILE" || $type{$key} eq "FOLDER" || $type{$key} eq "PAGE" || $type{$key} eq "LINK") {  
             %{$resinfo{$key}} = ();  
         } elsif ($type{$key} eq "QUIZ") {  
             %{$resinfo{$key}} = ();  
 #            &angel_assessment($key,$docroot,$dirname,$destdir,\%{$resinfo{$key}});  
         } elsif ($type{$key} eq "FORM") {  
             %{$resinfo{$key}} = ();  
 #            &angel_assessment($key,$docroot,$dirname,$destdir,\%{$resinfo{$key}});  
         }          }
     }          $r->print(
               '<br />'.&Apache::loncommon::confirmwrapper($message)
     my $longcrs = '';             .'<p>'.$lt{'plsv'}.' '.$lt{'tseq'}.'</p>'
     if ($bb_crs =~ m/^(\d)(\d)(\d)/) {             .'<p>'.$lt{'tfin'}.'</p>'
         $longcrs = $1.'/'.$2.'/'.$3.'/'.$bb_crs;             .&Apache::lonhtmlcommon::actionbox(
     }                  ['<a href="/priv/'.$udom.'/'.$uname.'/'.$dirpath.'/">'.$lt{'disp'}.'</a>'])
     for (my $i=0; $i<@boards; $i++) {          );
         my %msgidx = ();          my $londocroot = $r->dir_config('lonDocRoot');
         my $forumtext = '';          if ($destdir =~ m{^\Q$londocroot/priv/$udom/$uname/$dirpath\E}) {
         my $boardname = 'bulletinpage_'.$timestamp[$i];              system (" rm -r -f $destdir/temp");
         my $forumfile = "$destdir/resfiles/$boards[$i]/$file{$boards[$i]}";          }
         my @state = ();      } elsif ($manifest_result eq 'nomanifest') {
         my $p = HTML::Parser->new          $r->print(
         (              '<br />'.&Apache::loncommon::confirmwrapper(
            xml_mode => 1,                  &Apache::lonhtmlcommon::confirm_success($lt{'proc'},1))
            start_h =>  
            [sub {  
                 my ($tagname, $attr) = @_;  
                 push @state, $tagname;  
                 },  "tagname, attr"],  
            text_h =>  
            [sub {  
                 my ($text) = @_;  
                 if ("@state" eq "html body div div") {  
                     $forumtext = $text;  
                 }  
               }, "dtext"],  
             end_h =>  
             [sub {  
                   my ($tagname) = @_;  
                   pop @state;  
                }, "tagname"],  
         );          );
         $p->parse_file($xmlfile);  
         $p->eof;  
   
         my %boardinfo = (  
                   'aaa_title' => $title{$revitm{$boards[$i]}},  
                   'bbb_content' => $forumtext,  
                   'ccc_webreferences' => '',  
                   'uploaded.lastmodified' => time,  
                   );  
         my $msgcount = 0;   
                                                                                                        
         my $putresult = &Apache::lonnet::put($boardname,\%boardinfo,$bb_cdom,$bb_crs);  
         if ($bb_handling eq 'importall') {  
             foreach my $msg_id (@{$messages{$boards[$i]}}) {  
                 $msgcount ++;  
                 $msgidx{$msg_id} = $msgcount;  
                 my %contrib = (  
                             'sendername' => 'Username not recorded',  
                             'senderdomain' => $bb_cdom,  
                             'screenname' => '',  
                             'message' => $title{$revitm{$msg_id}}  
                             );  
                 unless ( $parentseq{$revitm{$msg_id}} eq $revitm{$boards[$i]} ) {  
                     $contrib{replyto} = $msgidx{$resnum{$parentseq{$revitm{$msg_id}}}};  
                 }  
                 if ( @{$href{$msg_id}} > 1 )  {  
                     my $newurl = '';  
                     foreach my $file (@{$href{$msg_id}}) {  
                         unless ($file eq 'pg'.$msg_id.'.htm') {  
                             $newurl = $msg_id.$file;  
                             unless ($longcrs eq '') {  
                                 if (!-e "/home/httpd/lonUsers/$bb_cdom/$longcrs/userfiles") {  
                                     mkdir("/home/httpd/lonUsers/$bb_cdom/$longcrs/userfiles",0755);  
                                 }  
                                 if (!-e "/home/httpd/lonUsers/$bb_cdom/$longcrs/userfiles/$newurl") {  
                                     system("cp $destdir/resfiles/$file /home/httpd/lonUsers/$bb_cdom/$longcrs/userfiles/$newurl");  
                                 }  
                                 $contrib{attachmenturl} = '/uploaded/'.$bb_cdom.'/'.$bb_crs.'/'.$newurl;  
                             }  
                         }  
                     }  
                 }  
                 my $xmlfile = "$destdir/resfiles/$msg_id/$file{$msg_id}";  
                 &angel_message($msg_id,\%contrib,$xmlfile);  
                 unless ($file{$msg_id} eq '') {  
                     unlink($xmlfile);  
                 }  
                 my $symb = 'bulletin___'.$timestamp[$i].'___adm/wrapper/adm/'.$bb_cdom.'/'.$uname.'/'.$timestamp[$i].'/bulletinboard';  
                 my $postresult = &addposting($symb,\%contrib,$bb_cdom,$bb_crs);  
             }  
         }  
     }  
   
     my @resources = sort keys %resnum;  
     unshift @resources, "Top";  
     $resnum{'Top'} = 'toplevel';  
     $type{'toplevel'} = "FOLDER";  
   
     my %pagecount = ();  
     my %pagecontents = ();  
     my %pageflag = ();  
     my %seqflag = ();  
     my %seqcount = ();  
     my %boardflag = ();  
     my %boardcount = ();  
   
     foreach my $key (@resources) {  
         print STDERR "Key is $key, resnum is $resnum{$key}, type is $type{$resnum{$key}}\n";  
         $pageflag{$key} = 0;  
         $seqflag{$key} = 0;  
         $seqcount{$key} = 0;  
         $pagecount{$key} = -1;  
         $boardflag{$key} = 0;  
         $boardcount{$key} = 0;  
         my $src ="";  
         my $next_id = 1;  
         my $curr_id = 0;  
         if ($type{$resnum{$key}} eq "FOLDER") {  
             open(LOCFILE,">$destdir/sequences/$key.sequence");  
             print LOCFILE "<map>\n";  
             if ($contentscount{$key} == 0) {  
                 print LOCFILE qq|<resource id="1" src="" type="start"></resource>  
 <link from="1" to="2" index="1"></link>  
 <resource id="2" src="" type="finish"></resource>\n|;  
             } else {  
                 if ($type{$resnum{$contents{$key}[0]}} eq "FOLDER") {  
                     $src = 'sequences/'.$contents{$key}[0].".sequence";  
                     $pageflag{$key} = 0;  
                     $seqflag{$key} = 1;  
                     $seqcount{$key} ++;  
                 } elsif ($type{$resnum{$contents{$key}[0]}} eq "BOARD") {  
                     $src = "/adm/$bb_cdom/$uname/$timestamp[$boardnum{$key}]/bulletinboard";   
                     $pageflag{$key} = 0;  
                     $boardflag{$key} = 1;  
                     $boardcount{$key} ++;  
                 } elsif ($type{$resnum{$contents{$key}[0]}} ne "MESSAGE") {  
                     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} || $boardflag{$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 ($type{$resnum{$contents{$key}[$i]}} eq "FOLDER") {  
                                 $src = 'sequences/'.$contents{$key}[$i].".sequence";  
                                 $pageflag{$key} = 0;  
                                 $seqflag{$key} = 1;  
                                 $seqcount{$key} ++;  
                             } elsif ($type{$resnum{$contents{$key}[0]}} eq "BOARD") {  
                                 $src = "/adm/$bb_cdom/$uname/$timestamp[$boardnum{$key}]/bulletinboard";  
                                 $pageflag{$key} = 0;  
                                 $boardflag{$key} = 1;  
                                 $boardcount{$key} ++;  
                             } elsif ($type{$resnum{$contents{$key}[0]}} ne "MESSAGE") {  
                                 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} || $boardflag{$key}) {  
                                     $pageflag{$key} = 1;  
                                 }  
                             }  
                         }  
                     }  
                     if ($type{$resnum{$contents{$key}[$contentscount{$key}-1]}} eq "FOLDER") {  
                         $src = 'sequences/'.$contents{$key}[$contentscount{$key}-1].".sequence";  
                         $pageflag{$key} = 0;  
                         $seqflag{$key} = 1;  
                     } elsif ($type{$resnum{$contents{$key}[0]}} eq "BOARD") {  
                         $src = "/adm/$bb_cdom/$uname/$timestamp[$boardnum{$key}]/bulletinboard";  
                         $pageflag{$key} = 0;  
                         $boardflag{$key} = 1;  
                     } elsif ($type{$resnum{$contents{$key}[0]}} ne "MESSAGE") {  
                         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} + $boardcount{$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|;  
                         }  
                     } 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);  
         }  
     }  
   
     foreach my $key (sort keys %pagecontents) {  
         for (my $i=0; $i<@{$pagecontents{$key}}; $i++) {  
             my $filestem = "/res/$udom/$uname/$newdir";  
             my $filename = $destdir.'/pages/'.$key.'_'.$i.'.page';  
             open(PAGEFILE,">$filename");  
             print PAGEFILE qq|<map>  
 <resource src="$filestem/resfiles/$resnum{$pagecontents{$key}[$i][0]}.html" id="1" type="start" title="$title{$pagecontents{$key}[$i][0]}"></resource>  
 <link to="2" index="1" from="1">\n|;  
             if (@{$pagecontents{$key}[$i]} == 1) {  
                 print PAGEFILE qq|<resource src="" id="2" type="finish"></resource>|;  
             } elsif (@{$pagecontents{$key}[$i]} == 2)  {  
                 print PAGEFILE qq|<resource src="$filestem/resfiles/$resnum{$pagecontents{$key}[$i][1]}.html" id="2" type="finish" title="$title{$pagecontents{$key}[$i][1]}"></resource>|;  
             } else {  
                 for (my $j=1; $j<@{$pagecontents{$key}[$i]}-1; $j++) {  
                     my $curr_id = $j+1;  
                     my $next_id = $j+2;  
                     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>  
 <link to="$next_id" index="$curr_id" from="$curr_id">\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>";  
             close(PAGEFILE);  
         }  
     }      }
 #    system(" rm -r $docroot/temp");  
 }  
   
 sub angel_message {  
     my ($msg_id,$contrib,$xmlfile) = @_;  
     my @state = ();  
     my $p = HTML::Parser->new  
     (  
        xml_mode => 1,  
        start_h =>  
        [sub {  
              my ($tagname, $attr) = @_;  
              push @state, $tagname;  
              },  "tagname, attr"],  
         text_h =>  
         [sub {  
              my ($text) = @_;  
              if ("@state" eq "html body table tr td div small span") {  
                   $$contrib{'plainname'} = $text;  
              } elsif ("@state" eq "html body div div") {  
                   $$contrib{'message'} .= '<br /><br />'.$text;  
              }  
            }, "dtext"],  
          end_h =>  
          [sub {  
                my ($tagname) = @_;  
                pop @state;  
             }, "tagname"],  
      );  
      $p->parse_file($xmlfile);  
      $p->eof;  
 }  }
   
   # ---------------------------------------------------------------- Get LON-CAPA Course Coordinator roles for this user
 sub get_ccroles {  sub get_ccroles {
     my ($uname,$dom,$crsentry) = @_;      my ($user,$dom,$crsentry,$crslist) = @_;
     my %roles = ();      my %roles;
     unless ($uname eq '') {      unless ($user eq '') {
         %roles = &Apache::lonnet::dump('roles',$dom,$uname);          my $ccrole = 'cc';
           %roles = &Apache::lonnet::get_my_roles($user,$dom,'userroles',undef,[$ccrole]);
     }      }
     my $iter = 0;      my $iter = 0;
     my @codes = ();      my @codes = ();
     my %courses = ();      my %courses = ();
     my @crslist = ();      my @crslist = ();
     my %descrip =();      my %descrip =();
     foreach my $key (keys %roles ) {      foreach my $key (keys(%roles)) {
         if ($key =~ m/^\/(\w+)\/(\w+)_cc$/) {          if ($key =~ m{^/($LONCAPA::domain_re)/($LONCAPA::username_re)_cc$}) {
             my $cdom = $1;              my $cdom = $1;
             my $crs = $2;              my $crs = $2;
             my $role_end = 0;              my $currcode = '';
             my $role_start = 0;              my %settings = &Apache::lonnet::get('environment',['internal.coursecode','description'],$cdom,$crs);
             my $active_chk = 1;              if (defined($settings{'description'}) ) {
             if ( $roles{$key} =~ m/^cc_(\d+)/ ) {                  $descrip{$crs} = $settings{'description'};
                 $role_end = $1;              } else {
                 if ( $roles{$key} =~ m/^cc_($role_end)_(\d+)$/ )                  $descrip{$crs} = 'Unknown';
                 {  
                     $role_start = $2;  
                 }  
             }  
             if ($role_start > 0) {  
                 if (time < $role_start) {  
                     $active_chk = 0;  
                 }  
             }  
             if ($role_end > 0) {  
                 if (time > $role_end) {  
                     $active_chk = 0;  
                 }  
             }              }
             if ($active_chk) {              if (defined($settings{'internal.coursecode'}) ) {
                 my $currcode = '';                  $currcode = $settings{'internal.coursecode'};
                 my %settings = &Apache::lonnet::get('environment',['internal.coursecode','description'],$cdom,$crs);                  if ($currcode eq '') {
                 if (defined($settings{'description'}) ) {  
                     $descrip{$crs} = $settings{'description'};  
                 } else {  
                     $descrip{$crs} = 'Unknown';  
                 }  
                 if (defined($settings{'internal.coursecode'}) ) {  
                     $currcode = $settings{'internal.coursecode'};  
                     if ($currcode eq '') {  
                         $currcode = "____".$iter;  
                         $iter ++;  
                     }  
                 } else {  
                     $currcode = "____".$iter;                      $currcode = "____".$iter;
                     $iter ++;                      $iter ++;
                 }                  }
                 unless (grep/^$currcode$/,@codes) {              } else {
                     push @codes,$currcode;                  $currcode = "____".$iter;
                     @{$courses{$currcode}} = ();                  $iter ++;
                 }              }
                 push @{$courses{$currcode}}, $cdom.'/'.$crs;              unless (grep/^$currcode$/,@codes) {
                   push @codes,$currcode;
                   @{$courses{$currcode}} = ();
             }              }
               push @{$courses{$currcode}}, $cdom.'/'.$crs;
         }          }
     }      }
     foreach my $code (sort @codes) {      foreach my $code (sort @codes) {
Line 2634  sub get_ccroles { Line 692  sub get_ccroles {
             my $showcode = '';              my $showcode = '';
             unless ($code =~m/^____\d+$/) {  $showcode = $code; }              unless ($code =~m/^____\d+$/) {  $showcode = $code; }
             $$crsentry{$crsdom} = $showcode.':'.$descrip{$crs};              $$crsentry{$crsdom} = $showcode.':'.$descrip{$crs};
             push @crslist, $crsdom;              push @{$crslist}, $crsdom;
         }          }
     }      }
     return @crslist;      return;
 }  }
   
 # ---------------------------------------------------------------- Main Handler  # ---------------------------------------------------------------- Main Handler
 sub handler {  sub handler {
     my $r=shift;      my $r=shift;
     my $uname;  
     my $udom;      my $fn=$env{'form.filename'};
     my $javascript = '';  
     my $page_name = '';      if ($env{'form.filename1'}) {
     my $current_page = '';          $fn=$env{'form.filename1'}.$env{'form.filename2'};
     my $loadentries = '';  
     my $qcount = '';  
 #  
 # phase two: re-attach user  
 #  
     if ($ENV{'form.uploaduname'}) {  
         $ENV{'form.filename'}='/priv/'.$ENV{'form.uploaduname'}.'/'.  
             $ENV{'form.filename'};  
     }  
     ($uname,$udom)=  
         &Apache::loncacc::constructaccess($ENV{'form.filename'},  
                                           $r->dir_config('lonDefDomain'));  
     unless (($uname) && ($udom)) {  
         $r->log_reason($uname.' at '.$udom.  
                        ' trying to publish file '.$ENV{'form.filename'}.  
                        ' - not authorized',  
                        $r->filename);  
         return HTTP_NOT_ACCEPTABLE;  
     }      }
                                                                                                    $fn=~s{\+}{}g;
     my $fn;  
     if ($ENV{'form.filename'}) {      unless ($fn) {
         $fn=$ENV{'form.filename'};          $r->log_reason($env{'user.name'}.' at '.$env{'user.domain'}.
         $fn=~s/^http\:\/\/[^\/]+\///;  
         $fn=~s/^\///;  
         $fn=~s/(\~|priv\/)(\w+)//;  
         $fn=~s/\/+/\//g;  
     } else {  
         $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 $pathname = &File::Basename::dirname($fn);  
     my $fullpath = '/priv/'.$uname.$pathname;      my ($uname,$udom) = &Apache::lonnet::constructaccess($fn);
     unless ($pathname eq '/') {      if (($uname eq '') || ($udom eq '')) {
           $r->log_reason($uname.' at '.$udom.
                          ' trying to publish file '.$fn.' - not authorized',
                          $r->filename);
           return HTTP_NOT_ACCEPTABLE;
       }
   
       my $londocroot = $r->dir_config('lonDocRoot');
       my $zipupload = $londocroot.$fn;
       my $fullpath = &File::Basename::dirname($fn);
       unless ($fullpath =~ m{/$}) {
         $fullpath .= '/';          $fullpath .= '/';
     }      }
     my $loadentries = '';  
   # get personal information for this user
       my $user=$env{'user.name'};
       my $dom=$env{'user.domain'};
   
       my $javascript = '';
       my $page_name = '';
       my $current_page = '';
       my $qcount = '';
       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') {  
         $current_page = &display_control();  
         my @PAGES = ('ChooseDir','Confirmation');  
         $page_name = $PAGES[$current_page];  
           
         if ($page_name eq 'ChooseDir') {  
             &jscript_zero($fullpath,\$javascript,$uname,$udom);  
         } elsif ($page_name eq 'Confirmation') {  
 #            &jscript_two(\$javascript,$uname);  
         }  
     } elsif ($ENV{'form.phase'} eq 'two') {  
         &jscript_zero($fullpath,\$javascript,$uname,$udom);  
     }  
     $r->print("<html><head><title>LON-CAPA Construction Space</title><script type=\"text/javascript\">\n//<!--\n$javascript\n// --></script>\n</head>");  
                                                                                                
     $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.  
                   &mt(' at ').$udom.'</font></h3>');  
     }  
                                                                                                
     if ($ENV{'form.phase'} eq 'three') {  
         my $bb_crs = '';  
         my $bb_cdom = '';  
         my $bb_handling = '';  
         my $source = $ENV{'form.source'};  
         if ( defined($ENV{'form.bb_crs'}) ) {  
             ($bb_cdom,$bb_crs) = split/\//,$ENV{'form.bb_crs'};  
         }  
         if ( defined($ENV{'form.bb_handling'}) ) {  
             $bb_handling = $ENV{'form.bb_handling'};  
         }  
         my $users_crs = '';  
         my $users_cdom = '';  
         my $users_handling = '';  
         if ( defined($ENV{'form.user_crs'}) ) {  
             ($users_cdom,$users_crs) = split/\//,$ENV{'form.user_crs'};  
         }  
         if ( defined($ENV{'form.user_handling'}) ) {  
             $users_handling = $ENV{'form.user_handling'};  
         }  
         my ($totseq,$totpage,$totprob);  
         print STDERR "Page name is $page_name\n";  
         if ($page_name eq 'ChooseDir') {  
             &display_zero ($r,$uname,$fn,$current_page,$fullpath);  
         } elsif ($page_name eq 'Confirmation') {  
             ($totseq,$totpage,$totprob) = &expand_bb5 ($r,$uname,$udom,$fn,$current_page,$bb_crs,$bb_cdom,$bb_handling,$users_crs,$users_cdom,$users_handling) if $source eq 'bb5';  
             ($totseq,$totpage,$totprob) = &expand_angel ($r,$uname,$udom,$fn,$current_page,$bb_crs,$bb_cdom,$bb_handling) if $source eq 'angel';  
             &expand_webct ($r,$uname,$udom,$fn,$current_page) if $source eq 'webct';  
         }  
         $r->print("<h3>Step 3: Publish your new LON-CAPA materials</h3>");  
         $r->print("<font face='arial,helvetica,sans-serif'>Your IMS package has been processed successfully. A total of $totseq sequences, $totpage pages, and $totprob problems have been created.<br /><br />\n");  
   
     } elsif ($ENV{'form.phase'} eq 'two') {      my $formname_one = 'info';
         my $flag = &Apache::lonupload::phasetwo($r,$fn,$uname,$udom,'imsimport');      if ($env{'form.phase'} eq 'two') {
           $javascript = &jscript_one($fullpath,$formname_one);
       } elsif ($env{'form.phase'} eq 'three') {
           $javascript = &jscript_two($user,$dom,\$numcrs);
       }
       if ($javascript ne '') {
           $javascript = <<"END_JS";
   <script type="text/javascript">
   // <![CDATA[
   
   $javascript
   
   // ]]>
   </script>
   END_JS
       }
   
       my $title = 'Upload IMS package to Authoring Space';
       $r->print(&Apache::loncommon::start_page($title, $javascript));
   
       if (($uname ne $env{'user.name'}) || ($udom ne $env{'user.domain'})) {
           $r->print('<p><span class="LC_info">'
                     .&mt('Co-Author [_1]',$uname.':'.$udom)
                     .'</span></p>'
           );
       }
       if ($env{'form.phase'} eq 'two') {
           my $flag = &Apache::lonupload::phasetwo($r,$fn,'imsimport');
         if ($flag eq 'ok') {          if ($flag eq 'ok') {
             my $current_page = 0;              &display_one($r,$fn,$fullpath,$formname_one);
             &display_zero($r,$uname,$fn,$current_page,$fullpath);          } else {
               $r->print(
                   '<br />'.&Apache::loncommon::confirmwrapper(
                       &Apache::lonhtmlcommon::confirm_success(
                           &mt('Error uploading IMS package'),1))
               );
           }
       } elsif ( ($env{'form.phase'} eq 'three') || ($env{'form.phase'} eq 'four') ) {
           my $destdir = $env{'form.newdir'};
           my $dirpath = $destdir;
           $dirpath =~ s{^\Q$londocroot/priv/$udom/$uname/\E}{};
   
           if ($env{'form.phase'} eq 'three') {
               &display_two($r,$zipupload,\@areas,\%areaname,\%cmsmap,$fn,\$numcrs,$fullpath);
           } elsif ($env{'form.phase'} eq 'four') {
               &display_three($r,$uname,$udom,\@areas,\%areaname,\%cmsmap,$destdir,$dirpath);
         }          }
     } else {      } else {
         &Apache::lonupload::phaseone($r,$fn,$uname,$udom,'imsimport');          &Apache::lonupload::phaseone($r,$fn,'imsimport',$uname,$udom);
     }      }
     $r->print('</body></html>');      $r->print(&Apache::loncommon::end_page());
     return OK;      return OK;
 }  }
 1;  1;

Removed from v.1.3  
changed lines
  Added in v.1.45


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