version 1.273, 2010/05/30 18:30:52
|
version 1.283, 2010/08/30 02:55:17
|
Line 121 sub dragmath_button {
|
Line 121 sub dragmath_button {
|
my ($textarea,$helpicon) = @_; |
my ($textarea,$helpicon) = @_; |
my $help_text; |
my $help_text; |
if ($helpicon) { |
if ($helpicon) { |
$help_text = &Apache::loncommon::help_open_topic('Authoring_Math_Editor'); |
$help_text = &Apache::loncommon::help_open_topic('Authoring_Math_Editor',undef,undef,undef,undef,'mathhelpicon_'.$textarea); |
} |
} |
my $buttontext=&mt('Edit Math'); |
my $buttontext=&mt('Edit Math'); |
return <<ENDDRAGMATH; |
return <<ENDDRAGMATH; |
Line 927 Returns: none
|
Line 927 Returns: none
|
|
|
=item Increment_PrgWin |
=item Increment_PrgWin |
|
|
Increment the count of items completed for the progress window by 1. |
Increment the count of items completed for the progress window by $step or 1 if no step is provided. |
|
|
Inputs: |
Inputs: |
|
|
Line 940 Inputs:
|
Line 940 Inputs:
|
=item $extraInfo A description of the items being iterated over. Typically |
=item $extraInfo A description of the items being iterated over. Typically |
'student'. |
'student'. |
|
|
|
=item $step (optional) counter step. Will be set to default 1 if ommited. step must be greater than 0 or empty. |
|
|
=back |
=back |
|
|
Returns: none |
Returns: none |
Line 1049 sub Update_PrgWin {
|
Line 1051 sub Update_PrgWin {
|
|
|
# increment progress state |
# increment progress state |
sub Increment_PrgWin { |
sub Increment_PrgWin { |
my ($r,$prog_state,$extraInfo)=@_; |
my ($r,$prog_state,$extraInfo,$step)=@_; |
$$prog_state{'done'}++; |
$step = $step > 0 ? $step : 1; |
|
$$prog_state{'done'} += $step; |
|
|
|
# Catch (max modulo step) <> 0 |
|
my $current = $$prog_state{'done'}; |
|
my $last = ($$prog_state{'max'} - $current); |
|
if ($last <= 0) { |
|
$last = 1; |
|
$current = $$prog_state{'max'}; |
|
} |
|
|
my $time_est= (&Time::HiRes::time() - $$prog_state{'firststart'})/ |
my $time_est= (&Time::HiRes::time() - $$prog_state{'firststart'})/ |
$$prog_state{'done'} * |
$current * $last; |
($$prog_state{'max'}-$$prog_state{'done'}); |
|
$time_est = int($time_est); |
$time_est = int($time_est); |
# |
# |
my $min = int($time_est/60); |
my $min = int($time_est/60); |
my $sec = $time_est % 60; |
my $sec = $time_est % 60; |
# |
|
my $str; |
|
if ($min == 0 && $sec > 1) { |
|
$str = '[_1] seconds'; |
|
} elsif ($min == 1 && $sec > 1) { |
|
$str = '1 minute [_2] seconds'; |
|
} elsif ($min == 1 && $sec < 2) { |
|
$str = '1 minute'; |
|
} elsif ($min < 10 && $sec > 1) { |
|
$str = '[_1] minutes, [_2] seconds'; |
|
} elsif ($min >= 10 || $sec < 2) { |
|
$str = '[_1] minutes'; |
|
} |
|
$time_est = &mt($str,$min,$sec); |
|
# |
|
my $lasttime = &Time::HiRes::time()-$$prog_state{'laststart'}; |
my $lasttime = &Time::HiRes::time()-$$prog_state{'laststart'}; |
if ($lasttime > 9) { |
if ($lasttime > 9) { |
$lasttime = int($lasttime); |
$lasttime = int($lasttime); |
Line 1081 sub Increment_PrgWin {
|
Line 1078 sub Increment_PrgWin {
|
} else { |
} else { |
$lasttime = sprintf("%3.2f",$lasttime); |
$lasttime = sprintf("%3.2f",$lasttime); |
} |
} |
if ($lasttime == 1) { |
|
$lasttime = '('.$lasttime.' '.&mt('second for').' '.$extraInfo.')'; |
$sec = 0 if ($min >= 10); # Don't show seconds if remaining time >= 10 min. |
} else { |
$sec = 1 if ( ($min == 0) && ($sec == 0) ); # Little cheating: pretend to have 1 second remaining instead of 0 to have something to display |
$lasttime = '('.$lasttime.' '.&mt('seconds for').' '.$extraInfo.')'; |
|
} |
my $timeinfo = |
# |
&mt('[_1]/[_2]:' |
my $user_browser = $env{'browser.type'} if (exists($env{'browser.type'})); |
.' [quant,_3,minute,minutes,] [quant,_4,second ,seconds ,]remaining' |
my $user_os = $env{'browser.os'} if (exists($env{'browser.os'})); |
.' ([quant,_5,second] for '.$extraInfo.')', |
if (! defined($user_browser) || ! defined($user_os)) { |
$current, |
(undef,$user_browser,undef,undef,undef,$user_os) = |
$$prog_state{'max'}, |
&Apache::loncommon::decode_user_agent(); |
$min, |
} |
$sec, |
if ($user_browser eq 'explorer' && $user_os =~ 'mac') { |
$lasttime); |
$lasttime = ''; |
|
} |
|
&r_print($r,&Apache::lonhtmlcommon::scripttag( |
&r_print($r,&Apache::lonhtmlcommon::scripttag( |
$$prog_state{'window'}.'.document.'. |
$$prog_state{'window'}.'.document.'. |
$$prog_state{'formname'}.'.'. |
$$prog_state{'formname'}.'.'. |
$$prog_state{'inputname'}.'.value="'. |
$$prog_state{'inputname'}.'.value="'.$timeinfo.'";' |
$$prog_state{'done'}.'/'.$$prog_state{'max'}. |
|
': '.$time_est.' '.&mt('remaining').' '.$lasttime.'";' |
|
)); |
)); |
$$prog_state{'laststart'}=&Time::HiRes::time(); |
$$prog_state{'laststart'}=&Time::HiRes::time(); |
} |
} |
Line 1218 sub spelllink {
|
Line 1212 sub spelllink {
|
ENDLINK |
ENDLINK |
} |
} |
|
|
# ------------------------------------------------- Output headers for HTMLArea |
# ------------------------------------------------- Output headers for CKEditor |
|
|
{ |
|
my @htmlareafields; |
|
sub init_htmlareafields { |
|
undef(@htmlareafields); |
|
} |
|
|
|
sub add_htmlareafields { |
|
my (@newfields) = @_; |
|
push(@htmlareafields,@newfields); |
|
} |
|
|
|
sub get_htmlareafields { |
|
return @htmlareafields; |
|
} |
|
} |
|
|
|
sub htmlareaheaders { |
sub htmlareaheaders { |
my $s=""; |
my $s=""; |
Line 1253 ENDJQUERY
|
Line 1231 ENDJQUERY
|
|
|
# ----------------------------------------------------------------- Preferences |
# ----------------------------------------------------------------- Preferences |
|
|
sub disablelink { |
|
my @fields=@_; |
|
if (defined($#fields)) { |
|
unless ($#fields>=0) { return ''; } |
|
} |
|
return '<a href="'.&HTML::Entities::encode('/adm/preferences?action=set_wysiwyg&wysiwyg=off&returnurl=','<>&"').&escape($ENV{'REQUEST_URI'}).'">'.&mt('Disable WYSIWYG Editor').'</a>'; |
|
} |
|
|
|
sub enablelink { |
|
my @fields=@_; |
|
if (defined($#fields)) { |
|
unless ($#fields>=0) { return ''; } |
|
} |
|
return '<a href="'.&HTML::Entities::encode('/adm/preferences?action=set_wysiwyg&wysiwyg=on&returnurl=','<>&"').&escape($ENV{'REQUEST_URI'}).'">'.&mt('Enable WYSIWYG Editor').'</a>'; |
|
} |
|
|
|
# ------------------------------------------------- lang to use in html editor |
# ------------------------------------------------- lang to use in html editor |
sub htmlarea_lang { |
sub htmlarea_lang { |
my $lang='en'; |
my $lang='en'; |
Line 1281 sub htmlarea_lang {
|
Line 1243 sub htmlarea_lang {
|
# ----------------------------------------- Script to activate only some fields |
# ----------------------------------------- Script to activate only some fields |
|
|
sub htmlareaselectactive { |
sub htmlareaselectactive { |
my @fields=@_; |
my ($args) = @_; |
unless (&htmlareabrowser()) { return ''; } |
unless (&htmlareabrowser()) { return ''; } |
my $output='<script type="text/javascript" defer="defer">'."\n" |
my $output='<script type="text/javascript" defer="defer">'."\n" |
.'// <![CDATA['."\n"; |
.'// <![CDATA['."\n"; |
my $lang = &htmlarea_lang(); |
my $lang = &htmlarea_lang(); |
|
my $fullpage = 'false'; |
|
my ($dragmath_prefix,$dragmath_helpicon,$dragmath_whitespace); |
|
if (ref($args) eq 'HASH') { |
|
if (exists($args->{'lang'})) { |
|
if ($args->{'lang'} ne '') { |
|
$lang = $args->{'lang'}; |
|
} |
|
} |
|
if (exists($args->{'fullpage'})) { |
|
if ($args->{'fullpage'} eq 'true') { |
|
$fullpage = $args->{'fullpage'}; |
|
} |
|
} |
|
if (exists($args->{'dragmath'})) { |
|
if ($args->{'dragmath'} ne '') { |
|
$dragmath_prefix = $args->{'dragmath'}; |
|
$dragmath_helpicon=&Apache::loncommon::lonhttpdurl("/adm/help/help.png"); |
|
$dragmath_whitespace=&Apache::loncommon::lonhttpdurl("/adm/lonIcons/transparent1x1.gif"); |
|
} |
|
} |
|
} |
$output.=' |
$output.=' |
|
|
function containsBlockHtml(id) { |
function containsBlockHtml(id) { |
var re = $("#"+id).html().search(/(?:\<\;|\<)(br|h1|h2|h3|h4|h5|h6|p|ol|ul|table|pre|address|blockquote|center|div)[\s]*((?:\/[\s]*(?:\>\;|\>)|(?:\>\;|\>)[\s\S]*(?:\<\;|\<)\/[\s]*\1[\s]*\(?:\>\;|\>))/im); |
var re = $("#"+id).html().search(/(?:\<\;|\<)(br|h1|h2|h3|h4|h5|h6|p|ol|ul|table|pre|address|blockquote|center|div)[\s]*((?:[\/]*[\s]*(?:\>\;|\>)|(?:\>\;|\>)[\s\S]*(?:\<\;|\<)\/[\s]*\1[\s]*\(?:\>\;|\>))/im); |
return (re >= 0); |
return (re >= 0); |
} |
} |
|
|
function startRichEditor(id) { |
function startRichEditor(id) { |
CKEDITOR.replace(id, |
CKEDITOR.replace(id, |
{ |
{ |
customConfig: "/ckeditor/loncapaconfig.js" |
customConfig: "/ckeditor/loncapaconfig.js", |
|
language : "'.$lang.'", |
|
fullPage : '.$fullpage.', |
} |
} |
); |
); |
} |
} |
Line 1307 sub htmlareaselectactive {
|
Line 1292 sub htmlareaselectactive {
|
|
|
function editorHandler(event) { |
function editorHandler(event) { |
var rawid = $(this).attr("id"); |
var rawid = $(this).attr("id"); |
var id = new RegExp("LC_rt_(.*)").exec(rawid)[1] |
var id = new RegExp("LC_rt_(.*)").exec(rawid)[1]; |
event.preventDefault(); |
event.preventDefault(); |
if ($(this).hasClass("LC_enable_rt")) { |
var rt_enabled = $(this).hasClass("LC_enable_rt"); |
|
if (rt_enabled) { |
startRichEditor(id); |
startRichEditor(id); |
$("#LC_rt_"+id).html("<b>« Plain text</b>"); |
$("#LC_rt_"+id).html("<b>« Plain text</b>"); |
$("#LC_rt_"+id).attr("title", "Disable rich text formatting and edit in plain text"); |
$("#LC_rt_"+id).attr("title", "Disable rich text formatting and edit in plain text"); |
Line 1321 sub htmlareaselectactive {
|
Line 1307 sub htmlareaselectactive {
|
$("#LC_rt_"+id).attr("title", "Enable rich text formatting (bold, italic, etc.)"); |
$("#LC_rt_"+id).attr("title", "Enable rich text formatting (bold, italic, etc.)"); |
$("#LC_rt_"+id).addClass("LC_enable_rt"); |
$("#LC_rt_"+id).addClass("LC_enable_rt"); |
$("#LC_rt_"+id).removeClass("LC_disable_rt"); |
$("#LC_rt_"+id).removeClass("LC_disable_rt"); |
} |
}'; |
} |
if ($dragmath_prefix ne '') { |
|
$output .= "\n var visible = ''; |
|
if (rt_enabled) { |
|
visible = 'none'; |
|
} |
|
editmath_visibility(id,visible);\n"; |
|
} |
|
$output .= ' |
|
} |
$(document).ready(function(){ |
$(document).ready(function(){ |
$(".LC_richAlwaysOn").each(function() { |
$(".LC_richAlwaysOn").each(function() { |
startRichEditor($(this).attr("id")); |
startRichEditor($(this).attr("id")); |
}); |
}); |
$(".LC_richDetectHtml").each(function() { |
$(".LC_richDetectHtml").each(function() { |
var id = $(this).attr("id"); |
var id = $(this).attr("id"); |
if(containsBlockHtml(id)) { |
var rt_enabled = containsBlockHtml(id); |
|
if(rt_enabled) { |
$(this).before("<div><a href=\"#\" id=\"LC_rt_"+id+"\" title=\"Disable rich text formatting and edit in plain text\" class=\"LC_disable_rt\"><b>« Plain text</b></a></div>"); |
$(this).before("<div><a href=\"#\" id=\"LC_rt_"+id+"\" title=\"Disable rich text formatting and edit in plain text\" class=\"LC_disable_rt\"><b>« Plain text</b></a></div>"); |
startRichEditor(id); |
startRichEditor(id); |
$("#LC_rt_"+id).click(editorHandler); |
$("#LC_rt_"+id).click(editorHandler); |
} |
} |
else { |
else { |
$(this).before("<div><a href=\"#\" id=\"LC_rt_"+id+"\" title=\"Enable rich text formatting (bold, italic, etc.)\" class=\"LC_enable_rt\"><b>Rich formatting »</b></a></div>"); |
$(this).before("<div><a href=\"#\" id=\"LC_rt_"+id+"\" title=\"Enable rich text formatting (bold, italic, etc.)\" class=\"LC_enable_rt\"><b>Rich formatting »</b></a></div>"); |
$("#LC_rt_"+id).click(editorHandler); |
$("#LC_rt_"+id).click(editorHandler); |
} |
}'; |
|
if ($dragmath_prefix ne '') { |
|
$output .= "\n var visible = ''; |
|
if (rt_enabled) { |
|
visible = 'none'; |
|
} |
|
editmath_visibility(id,visible);\n"; |
|
} |
|
$output .= ' |
}); |
}); |
$(".LC_richDefaultOn").each(function() { |
$(".LC_richDefaultOn").each(function() { |
var id = $(this).attr("id"); |
var id = $(this).attr("id"); |
Line 1349 sub htmlareaselectactive {
|
Line 1351 sub htmlareaselectactive {
|
$(".LC_richDefaultOff").each(function() { |
$(".LC_richDefaultOff").each(function() { |
var id = $(this).attr("id"); |
var id = $(this).attr("id"); |
$(this).before("<div><a href=\"#\" id=\"LC_rt_"+id+"\" title=\"Enable rich text formatting (bold, italic, etc.)\" class=\"LC_enable_rt\"><b>Rich formatting »</b></a></div>"); |
$(this).before("<div><a href=\"#\" id=\"LC_rt_"+id+"\" title=\"Enable rich text formatting (bold, italic, etc.)\" class=\"LC_enable_rt\"><b>Rich formatting »</b></a></div>"); |
$("#LC_rt_"+id).click(editorHandler); |
$("#LC_rt_"+id).click(editorHandler); |
}); |
}); |
|
|
}); |
}); |
'; |
'; |
|
if ($dragmath_prefix ne '') { |
|
$output .= ' |
|
|
|
function editmath_visibility(id,value) { |
|
|
|
if ((id == "") || (id == null)) { |
|
return; |
|
} |
|
var mathid = "'.$dragmath_prefix.'_"+id; |
|
mathele = document.getElementById(mathid); |
|
if (mathele == null) { |
|
return; |
|
} |
|
mathele.style.display = value; |
|
var mathhelpicon = "'.$dragmath_prefix.'helpicon'.'_"+id; |
|
mathhelpiconele = document.getElementById(mathhelpicon); |
|
if (mathhelpiconele == null) { |
|
return; |
|
} |
|
if (value == "none") { |
|
mathhelpiconele.src = "'.$dragmath_whitespace.'"; |
|
} else { |
|
mathhelpiconele.src = "'.$dragmath_helpicon.'"; |
|
} |
|
} |
|
'; |
|
|
|
} |
$output.="\nwindow.status='Activated Editfields';\n" |
$output.="\nwindow.status='Activated Editfields';\n" |
.'// ]]>'."\n" |
.'// ]]>'."\n" |
.'</script><br />'; |
.'</script>'; |
return $output; |
return $output; |
} |
} |
|
|
Line 1481 returns: nothing
|
Line 1510 returns: nothing
|
my $lasttext = $last->{'no_mt'} ? $last->{'text'} |
my $lasttext = $last->{'no_mt'} ? $last->{'text'} |
: mt( $last->{'text'} ); |
: mt( $last->{'text'} ); |
|
|
$links .= htmltag( 'li', htmltag('h1', $lasttext), {title => $lasttext}); |
# last breadcrumb is the first order heading of a page |
|
# for course breadcrumbs it's just bold |
|
$links .= htmltag( 'li', htmltag($CourseBreadcrumbs ? 'b' : 'h1', |
|
$lasttext), {title => $lasttext}); |
|
|
my $icons = ''; |
my $icons = ''; |
$faq = $last->{'faq'} if (exists($last->{'faq'})); |
$faq = $last->{'faq'} if (exists($last->{'faq'})); |
Line 1812 sub role_select_row {
|
Line 1844 sub role_select_row {
|
|
|
sub course_select_row { |
sub course_select_row { |
my ($title,$formname,$totcodes,$codetitles,$idlist,$idlist_titles, |
my ($title,$formname,$totcodes,$codetitles,$idlist,$idlist_titles, |
$css_class,$crstype) = @_; |
$css_class,$crstype,$standardnames) = @_; |
my $output = &row_title($title,$css_class); |
my $output = &row_title($title,$css_class); |
$output .= &course_selection($formname,$totcodes,$codetitles,$idlist,$idlist_titles,$crstype); |
$output .= &course_selection($formname,$totcodes,$codetitles,$idlist,$idlist_titles,$crstype,$standardnames); |
$output .= &row_closure(); |
$output .= &row_closure(); |
return $output; |
return $output; |
} |
} |
|
|
sub course_selection { |
sub course_selection { |
my ($formname,$totcodes,$codetitles,$idlist,$idlist_titles,$crstype) = @_; |
my ($formname,$totcodes,$codetitles,$idlist,$idlist_titles,$crstype,$standardnames) = @_; |
my $output = qq| |
my $output = qq| |
<script type="text/javascript"> |
<script type="text/javascript"> |
// <![CDATA[ |
// <![CDATA[ |
Line 1867 sub course_selection {
|
Line 1899 sub course_selection {
|
if ($numtitles > 0) { |
if ($numtitles > 0) { |
$output .= '<input type="radio" name="coursepick" value="category" onclick="coursePick(this.form);alert('."'".&mt('Choose categories, from left to right')."'".')" />'.&mt('Pick courses by category:').' <br />'; |
$output .= '<input type="radio" name="coursepick" value="category" onclick="coursePick(this.form);alert('."'".&mt('Choose categories, from left to right')."'".')" />'.&mt('Pick courses by category:').' <br />'; |
$output .= '<table><tr><td>'.$$codetitles[0].'<br />'."\n". |
$output .= '<table><tr><td>'.$$codetitles[0].'<br />'."\n". |
'<select name="'.$$codetitles[0]. |
'<select name="'.$standardnames->[0]. |
'" onChange="setPick(this.form);courseSet('."'$$codetitles[0]'".')">'."\n". |
'" onChange="setPick(this.form);courseSet('."'$$codetitles[0]'".')">'."\n". |
' <option value="-1" />Select'."\n"; |
' <option value="-1" />Select'."\n"; |
my @items = (); |
my @items = (); |
Line 1897 sub course_selection {
|
Line 1929 sub course_selection {
|
$output .= '</select></td>'; |
$output .= '</select></td>'; |
for (my $i=1; $i<$numtitles; $i++) { |
for (my $i=1; $i<$numtitles; $i++) { |
$output .= '<td>'.$$codetitles[$i].'<br />'."\n". |
$output .= '<td>'.$$codetitles[$i].'<br />'."\n". |
'<select name="'.$$codetitles[$i]. |
'<select name="'.$standardnames->[$i]. |
'" onChange="courseSet('."'$$codetitles[$i]'".')">'."\n". |
'" onChange="courseSet('."'$$codetitles[$i]'".')">'."\n". |
'<option value="-1"><-Pick '.$$codetitles[$i-1].'</option>'."\n". |
'<option value="-1"><-Pick '.$$codetitles[$i-1].'</option>'."\n". |
'</select>'."\n". |
'</select>'."\n". |
Line 2443 sub generate_menu {
|
Line 2475 sub generate_menu {
|
# create the markup for the current $link and push it into @links. |
# create the markup for the current $link and push it into @links. |
# each entry consists of an image and a text optionally followed |
# each entry consists of an image and a text optionally followed |
# by a help link. |
# by a help link. |
|
my $src; |
|
if ($$link{icon} ne '') { |
|
$src = '/res/adm/pages/'.$$link{icon}; |
|
} |
push(@links,$li->( |
push(@links,$li->( |
$a->( |
$a->( |
$img->("", { |
$img->("", { |
class => "LC_noBorder LC_middle", |
class => "LC_noBorder LC_middle", |
src => "/res/adm/pages/$$link{icon}", |
src => $src, |
alt => mt(defined($$link{alttext}) ? |
alt => mt(defined($$link{alttext}) ? |
$$link{alttext} : $$link{linktext}) |
$$link{alttext} : $$link{linktext}) |
}), { |
}), { |