Diff for /loncom/interface/loncreatecourse.pm between versions 1.16 and 1.19

version 1.16, 2002/12/23 18:04:54 version 1.19, 2003/03/24 14:53:46
Line 65  sub print_course_creation_page { Line 65  sub print_course_creation_page {
     $course_home .= "\n</select>\n";      $course_home .= "\n</select>\n";
     my $domform = &Apache::loncommon::select_dom_form($defdom,'ccdomain');      my $domform = &Apache::loncommon::select_dom_form($defdom,'ccdomain');
     my $bodytag=&Apache::loncommon::bodytag('Create a New Course');      my $bodytag=&Apache::loncommon::bodytag('Create a New Course');
       my $helplink=&Apache::loncommon::help_open_topic('Create_Course','Help on Creating Courses');
     $r->print(<<ENDDOCUMENT);      $r->print(<<ENDDOCUMENT);
 <html>  <html>
 <script language="JavaScript" type="text/javascript">  <script language="JavaScript" type="text/javascript">
Line 91  function openbrowser(formname,elementnam Line 91  function openbrowser(formname,elementnam
 <title>The LearningOnline Network with CAPA</title>  <title>The LearningOnline Network with CAPA</title>
 </head>  </head>
 $bodytag  $bodytag
   $helplink
 <form action="/adm/createcourse" method="post" name="ccrs">  <form action="/adm/createcourse" method="post" name="ccrs">
 <h2>Course Information</h2>  <h2>Course Information</h2>
 <p>  <p>
Line 114  $bodytag Line 115  $bodytag
 </p>  </p>
 <p>  <p>
 <b>First Resource</b> (standard courses only):  <b>First Resource</b> (standard courses only):
 <input type="radio" name="firstres" value="blank" checked>Blank  <input type="radio" name="firstres" value="blank">Blank
 &nbsp;  &nbsp;
 <input type="radio" name="firstres" value="syl">Syllabus  <input type="radio" name="firstres" value="syl" checked>Syllabus
 &nbsp;  &nbsp;
 <input type="radio" name="firstres" value="nav">Navigate  <input type="radio" name="firstres" value="nav">Navigate
 </p>  </p>
Line 139  $bodytag Line 140  $bodytag
 <b>Disable student resource discussion: </b>  <b>Disable student resource discussion: </b>
 <input type="checkbox" name="disresdis" />  <input type="checkbox" name="disresdis" />
 </p>  </p>
   <h2>Access Control</h2>
   <p>
   <b>Students need access key to enter course: </b>
   <input type="checkbox" name="setkeys" />
   </p>
 <h2>Course Coordinator</h2>  <h2>Course Coordinator</h2>
 <p>  <p>
 <b>Username:</b> <input type="text" size="15" name="ccuname" />  <b>Username:</b> <input type="text" size="15" name="ccuname" />
Line 226  ENDENHEAD Line 232  ENDENHEAD
            $cenv{'question.email'}=$ccuname.':'.$ccdomain;             $cenv{'question.email'}=$ccuname.':'.$ccdomain;
        }         }
     }      }
       if ($ENV{'form.setkeys'}) {
          $envflag=1;
          $cenv{'keyaccess'}='yes';
       }
     if ($ENV{'form.disresdis'}) {      if ($ENV{'form.disresdis'}) {
  $envflag=1;   $envflag=1;
         $cenv{'pch.roles.denied'}='st';          $cenv{'pch.roles.denied'}='st';

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


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