version 1.67, 2008/08/25 14:50:01
|
version 1.69.4.2, 2010/01/28 17:25:10
|
Line 150 ENDSCRIPT
|
Line 150 ENDSCRIPT
|
&Apache::lonhtmlcommon::clear_breadcrumbs(); |
&Apache::lonhtmlcommon::clear_breadcrumbs(); |
&Apache::lonhtmlcommon::add_breadcrumb |
&Apache::lonhtmlcommon::add_breadcrumb |
({href=>"javascript:ToCatalog()", |
({href=>"javascript:ToCatalog()", |
text=>"Course Catalog"}); |
text=>"Course/Community Catalog"}); |
if ($env{'form.coursenum'} ne '') { |
if ($env{'form.coursenum'} ne '') { |
&Apache::lonhtmlcommon::add_breadcrumb |
&Apache::lonhtmlcommon::add_breadcrumb |
({href=>"javascript:ToCatalog('details')", |
({href=>"javascript:ToCatalog('details')", |
Line 179 ENDSCRIPT
|
Line 179 ENDSCRIPT
|
# -------------------------------------------------------- Get course personnel |
# -------------------------------------------------------- Get course personnel |
my %coursepersonnel=&Apache::lonnet::get_course_adv_roles($cdom.'/'.$cnum); |
my %coursepersonnel=&Apache::lonnet::get_course_adv_roles($cdom.'/'.$cnum); |
if ($target ne 'tex') { |
if ($target ne 'tex') { |
$r->print(&Apache::loncommon::start_data_table()); |
$r->print(&Apache::lonhtmlcommon::start_pick_box()); |
} else { |
} else { |
$r->print('\begin{tabular}{|p{0.45\textwidth}|p{0.45\textwidth}|}\hline'); |
$r->print('\begin{tabular}{|p{0.45\textwidth}|p{0.45\textwidth}|}\hline'); |
} |
} |
foreach my $element (sort keys %coursepersonnel) { |
my @personnel=sort(keys(%coursepersonnel)); |
|
my $lastpers=$personnel[$#personnel]; |
|
foreach my $element (@personnel) { |
if ($target ne 'tex') { |
if ($target ne 'tex') { |
$r->print(&Apache::loncommon::start_data_table_row(). |
$r->print(&Apache::lonhtmlcommon::row_title($element)); |
'<td>'.$element.'</td><td>'); |
|
} else { |
} else { |
$r->print(' '.&Apache::lonxml::xmlparse($r,'tex',$element).' & '); |
$r->print(' '.&Apache::lonxml::xmlparse($r,'tex',$element).' & '); |
} |
} |
Line 207 ENDSCRIPT
|
Line 208 ENDSCRIPT
|
} |
} |
} |
} |
if ($target ne 'tex') { |
if ($target ne 'tex') { |
$r->print('</td>'.&Apache::loncommon::end_data_table_row()); |
my $lastclose=$element eq $lastpers?1:0; |
|
$r->print(&Apache::lonhtmlcommon::row_closure($lastclose)); |
} else { |
} else { |
$r->print('\\\\ \hline'); |
$r->print('\\\\ \hline'); |
} |
} |
} |
} |
if ($target ne 'tex') { |
if ($target ne 'tex') { |
$r->print(&Apache::loncommon::end_data_table()); |
$r->print(&Apache::lonhtmlcommon::end_pick_box()); |
} else { |
} else { |
$r->print('\end{tabular}\\\\'); |
$r->print('\end{tabular}\\\\'); |
} |
} |
Line 237 ENDSCRIPT
|
Line 239 ENDSCRIPT
|
if ($forcestudent or $target eq 'tex') { $allowed=0; } |
if ($forcestudent or $target eq 'tex') { $allowed=0; } |
} |
} |
if ($allowed) { |
if ($allowed) { |
|
my $protocol = $Apache::lonnet::protocol{$homeserver}; |
|
$protocol = 'http' if ($protocol ne 'https'); |
$r->print('<p>'. |
$r->print('<p>'. |
&Apache::loncommon::help_open_topic('Uploaded_Templates_TextBoxes',&mt('Help with filling in text boxes')).'</p><p>'.&mt('This syllabus can be publicly viewed at') |
&Apache::loncommon::help_open_topic('Uploaded_Templates_TextBoxes',&mt('Help with filling in text boxes')).'</p><p>'.&mt('This syllabus can be publicly viewed at') |
.' <tt>http://'. |
.' <tt>'.$protocol.'://'. |
&Apache::lonnet::hostname($homeserver).$r->uri.'</tt>'. |
&Apache::lonnet::hostname($homeserver).$r->uri.'</tt>'. |
&Apache::loncommon::help_open_topic('Syllabus_ExtLink').'</p>'. |
&Apache::loncommon::help_open_topic('Syllabus_ExtLink').'</p>'. |
'<p>'.&mt('You can specify an external URL as Syllabus in the [_1].','<a href="/adm/parmset?action=crsenv">'.&mt('Course Parameters').'</a>').'</p>'. |
'<p class="LC_info">'. |
|
&mt('Instead of using this template you can specify an external URL as Syllabus in the [_1]Course Configuration[_2].', |
|
'<a href="/adm/courseprefs?actions=courseinfo&phase=display">','</a>'). |
|
'</p>'. |
'<p><a href="'.$r->uri.'?forcestudent=1"><font size="+1">'. |
'<p><a href="'.$r->uri.'?forcestudent=1"><font size="+1">'. |
&mt('Show Public View').'</font></a>'. |
&mt('Show Public View').'</font></a>'. |
&Apache::loncommon::help_open_topic('Uploaded_Templates_PublicView'). |
&Apache::loncommon::help_open_topic('Uploaded_Templates_PublicView'). |
Line 269 ENDSCRIPT
|
Line 276 ENDSCRIPT
|
# get rid of leading and trailing spaces |
# get rid of leading and trailing spaces |
$url=~s/^\s+//; |
$url=~s/^\s+//; |
$url=~s/\s+$//; |
$url=~s/\s+$//; |
if ($url=~m|^http://([^/]+)/(.+)$|) { |
if ($url=~m|^https?\://([^/]+)/(.+)$|) { |
my $host = $1; |
my $host = $1; |
my $remainder=$2; |
my $remainder=$2; |
# remove the hostname from internal URLs |
# remove the hostname from internal URLs |
Line 282 ENDSCRIPT
|
Line 289 ENDSCRIPT
|
} |
} |
} |
} |
# norm internal URLs |
# norm internal URLs |
unless ($url=~/^http\:/) { |
unless ($url=~/^https?\:/) { |
$url=&Apache::lonnet::clutter($url); |
$url=&Apache::lonnet::clutter($url); |
} |
} |
# re-assemble field |
# re-assemble field |
Line 358 ENDSCRIPT
|
Line 365 ENDSCRIPT
|
$r->print($message); |
$r->print($message); |
} |
} |
} else { |
} else { |
&Apache::lonfeedback::newline_to_br(\$message); |
if (!&Apache::lonfeedback::contains_block_html($message)) { |
$message =~s|(https*://[^\s]+)|<a href="$1"><tt>$1</tt></a>|g; |
&Apache::lonfeedback::newline_to_br(\$message); |
|
} |
|
$message=&Apache::lonhtmlcommon::raw_href_to_link($message); |
if ($allowed) { |
if ($allowed) { |
$message=&Apache::lonspeller::markeduptext($message); |
$message=&Apache::lonspeller::markeduptext($message); |
} |
} |