Diff for /loncom/interface/lonbulletin.pm between versions 1.1 and 1.14

version 1.1, 2002/09/10 19:01:53 version 1.14, 2003/09/15 19:56:44
Line 1 Line 1
 # The LearningOnline Network  # The LearningOnline Network
 # Bulletin Board  # Bulletin Board Handler
 #  #
 # $Id$  # $Id$
 #  #
Line 33  use Apache::Constants qw(:common); Line 33  use Apache::Constants qw(:common);
 use Apache::loncommon;  use Apache::loncommon;
 use Apache::lonnet;  use Apache::lonnet;
 use Apache::lontexconvert;  use Apache::lontexconvert;
   use Apache::lonfeedback;
   
 sub handler {  sub handler {
     my $r = shift;      my $r = shift;
Line 45  sub handler { Line 46  sub handler {
 <html>  <html>
 <head>  <head>
 <title>The LearningOnline Network with CAPA</title>  <title>The LearningOnline Network with CAPA</title>
 </head>  
 ENDDOCUMENT  ENDDOCUMENT
     my (undef,undef,$marker)=split(/\//,$r->uri);      my (undef,undef,undef,undef,$marker)=split(/\//,$r->uri);
 # Is this even in a course?  # Is this even in a course?
     unless ($ENV{'request.course.id'}) {      unless ($ENV{'request.course.id'}) {
  $r->print('<body>Not in a course</body>');   $r->print('</head><body>Not in a course</body></html>');
         return OK;          return OK;
     }      }
   
Line 66  ENDDOCUMENT Line 66  ENDDOCUMENT
   
 # --------------------------------------------------------- The syllabus fields  # --------------------------------------------------------- The syllabus fields
     my %syllabusfields=(      my %syllabusfields=(
        'aaa_title'         => 'Page Title',         'aaa_title'         => 'Topic',
        'bbb_content'       => 'Content',         'bbb_content'       => 'Task',
        'ccc_webreferences' => 'Web References');         'ccc_webreferences' => 'Web References');
   
 # --------------------------------------------------------------- Force Student  # ------------------------------------------------------------ Get Query String
     &Apache::loncommon::get_unprocessed_cgi      &Apache::loncommon::get_unprocessed_cgi
                                        ($ENV{'QUERY_STRING'},['forcestudent']);                           ($ENV{'QUERY_STRING'},['forcestudent','register']);
   # ----------------------------------------------------- Force menu registration
       my $addentries='';
       if ($ENV{'form.register'}) {
          $addentries=' onLoad="'.&Apache::lonmenu::loadevents().
      '" onUnload="'.&Apache::lonmenu::unloadevents().'"';
          $r->print(&Apache::lonmenu::registerurl(1));
       }
   # --------------------------------------------------------------- Force Student
     my $forcestudent='';      my $forcestudent='';
     if ($ENV{'form.forcestudent'}) { $forcestudent='student'; };      if ($ENV{'form.forcestudent'}) { $forcestudent='student'; };
   
Line 80  ENDDOCUMENT Line 88  ENDDOCUMENT
                 
 # --------------------------------------- There is such a user, get environment  # --------------------------------------- There is such a user, get environment
   
     $r->print(&Apache::loncommon::bodytag      $r->print('</head>'.&Apache::loncommon::bodytag
         ("Bulletin Board ".$syllabus{'aaa_title'},$forcestudent,'','',$dom));              ("Bulletin Board/Discussion",$forcestudent,$addentries,'',$dom,
                $ENV{'form.register'}));
   
     my $allowed=&Apache::lonnet::allowed('srm',$ENV{'request.course.id'});      my $allowed=&Apache::lonnet::allowed('mdc',$ENV{'request.course.id'});
   
        if ($forcestudent) { $allowed=0; }         if ($forcestudent) { $allowed=0; }
     
        if ($allowed) {         if ($allowed) {
           $r->print(            $r->print(
   '<p><a href="'.$r->uri.'?forcestudent=1">Show Public View</a></p>');    '<p>'.
   &Apache::loncommon::help_open_topic('Uploaded_Templates_TextBoxes','Help with filling in text boxes').'<br /><a href="'.$r->uri.'?forcestudent=1"><font size="+1">Show Student View</font></a>'.
    &Apache::loncommon::help_open_topic('Uploaded_Templates_PublicView').'</p>');
       }        }
       if (($ENV{'form.uploaddoc.filename'}) &&        if (($ENV{'form.uploaddoc.filename'}) &&
           ($ENV{'form.storeupl'}) && ($allowed)) {            ($ENV{'form.storeupl'}) && ($allowed)) {
    if ($ENV{'form.uploaddoc.filename'}=~/\.(gif|jpg|png|jpeg)$/) {     if ($ENV{'form.uploaddoc.filename'}=~/\.(gif|jpg|png|jpeg)$/i) {
              $syllabus{'uploaded.photourl'}=               $syllabus{'uploaded.photourl'}=
                  &Apache::lonnet::userfileupload('uploaddoc',1);                   &Apache::lonnet::userfileupload('uploaddoc',1);
    }     }
Line 104  ENDDOCUMENT Line 115  ENDDOCUMENT
    foreach (keys %syllabusfields) {     foreach (keys %syllabusfields) {
                my $field=$ENV{'form.'.$_};                 my $field=$ENV{'form.'.$_};
                $field=~s/\s+$//s;                 $field=~s/\s+$//s;
                $field=~s/\</\&lt\;/g;                 $field=&Apache::lonfeedback::clear_out_html($field,1);
                $field=~s/\>/\&gt\;/g;  
        $syllabus{$_}=$field;         $syllabus{$_}=$field;
            }             }
            $syllabus{'uploaded.lastmodified'}=time;             $syllabus{'uploaded.lastmodified'}=time;
Line 132  ENDDOCUMENT Line 142  ENDDOCUMENT
               my $message=$syllabus{$_};                my $message=$syllabus{$_};
               $message=~s/\n/\<br \/\>/g;                $message=~s/\n/\<br \/\>/g;
               $message                $message
              =~s/(http\:\/\/[^\s]+)/\<a href=\"$1\"\>\<tt\>$1\<\/tt\>\<\/a\>/g;          =~s/(https*\:\/\/[^\s]+)/\<a href=\"$1\"\>\<tt\>$1\<\/tt\>\<\/a\>/g;
       $message=&Apache::lontexconvert::msgtexconverted($message);        $message=&Apache::lontexconvert::msgtexconverted($message);
               $r->print('<h3>'.$syllabusfields{$_}.'</h3><blockquote>'.              unless ($_ eq 'aaa_title') {
    if (($_ ne 'bbb_content') || ($allowed)) {
                       $r->print('<h3>'.$syllabusfields{$_}.'</h3>');
    }
                    $r->print('<blockquote>'.
                         $message.'</blockquote>');                          $message.'</blockquote>');
               if ($allowed) {                   if ($allowed) {
                  $r->print('<br /><textarea cols="80" rows="6" name="'.$_.'">'.                  $r->print('<br /><textarea cols="80" rows="10" name="'.$_.'">'.
      $syllabus{$_}.
              '</textarea><input type="submit" name="storesyl" value="Store" />');
           }
       } else {
    $r->print('<h1>'.$message.'</h1>');
                   if ($allowed) {
                    $r->print(
                   '<br />Topic<br /><textarea cols="80" rows="2" name="'.$_.'">'.
    $syllabus{$_}.     $syllabus{$_}.
            '</textarea><input type="submit" name="storesyl" value="Store" />');             '</textarea><input type="submit" name="storesyl" value="Store" />');
       }                  }
               }
   }    }
        }         }
        if ($allowed) {         if ($allowed) {
Line 150  ENDDOCUMENT Line 173  ENDDOCUMENT
     } else {      } else {
        $r->print('<p>No page information provided.</p>');         $r->print('<p>No page information provided.</p>');
     }      }
     $r->print('</body></html>');      $r->print(&Apache::lonfeedback::list_discussion
         ('board','OPEN','bulletin___'.$marker.'___'.
          'adm/wrapper'.$r->uri).'</body></html>');
     return OK;      return OK;
 }   } 
   

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


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