version 1.75, 2004/06/05 14:46:12
|
version 1.97, 2004/11/19 20:17:52
|
Line 117 sub store_recent {
|
Line 117 sub store_recent {
|
time.'&'.&Apache::lonnet::escape($value) }); |
time.'&'.&Apache::lonnet::escape($value) }); |
} |
} |
|
|
|
sub remove_recent { |
|
my ($area,$names)=@_; |
|
my $file=&recent_filename($area); |
|
return &Apache::lonnet::del($file,$names); |
|
} |
|
|
sub select_recent { |
sub select_recent { |
my ($area,$fieldname,$event)=@_; |
my ($area,$fieldname,$event)=@_; |
my %recent=&Apache::lonnet::dump(&recent_filename($area)); |
my %recent=&Apache::lonnet::dump(&recent_filename($area)); |
my $return="\n<select name='$fieldname'". |
my $return="\n<select name='$fieldname'". |
($event?" onChange='$event'":''). |
($event?" onchange='$event'":''). |
">\n<option value=''>--- ".&mt('Recent')." ---</option>"; |
">\n<option value=''>--- ".&mt('Recent')." ---</option>"; |
foreach (sort keys %recent) { |
foreach (sort keys %recent) { |
unless ($_=~/^error\:/) { |
unless ($_=~/^error\:/) { |
$return.="\n<option value='$_'>". |
my $escaped = &Apache::loncommon::escape_url($_); |
|
$return.="\n<option value='$escaped'>". |
&Apache::lonnet::unescape((split(/\&/,$recent{$_}))[1]). |
&Apache::lonnet::unescape((split(/\&/,$recent{$_}))[1]). |
'</option>'; |
'</option>'; |
} |
} |
Line 134 sub select_recent {
|
Line 141 sub select_recent {
|
return $return; |
return $return; |
} |
} |
|
|
|
sub get_recent { |
|
my ($area, $n) = @_; |
|
my %recent=&Apache::lonnet::dump(&recent_filename($area)); |
|
|
|
# Create hash with key as time and recent as value |
|
my %time_hash = (); |
|
foreach (keys %recent) { |
|
my $thistime=(split(/\&/,$recent{$_}))[0]; |
|
$time_hash{$thistime} = $_; |
|
} |
|
|
|
# Sort by decreasing time and return key value pairs |
|
my %return_hash = (); |
|
my $idx = 1; |
|
foreach (reverse sort keys %time_hash) { |
|
$return_hash{$time_hash{$_}} = |
|
&Apache::lonnet::unescape((split(/\&/,$recent{$_}))[1]); |
|
if ($n && ($idx++ >= $n)) {last;} |
|
} |
|
|
|
return %return_hash; |
|
} |
|
|
|
|
|
|
=pod |
=pod |
|
|
Line 280 sub date_setter {
|
Line 311 sub date_setter {
|
document.$formname.$dname\_day.value = 30; |
document.$formname.$dname\_day.value = 30; |
} |
} |
} |
} |
|
|
function $dname\_disable() { |
function $dname\_disable() { |
document.$formname.$dname\_month.disabled=true; |
document.$formname.$dname\_month.disabled=true; |
document.$formname.$dname\_day.disabled=true; |
document.$formname.$dname\_day.disabled=true; |
Line 312 document.$formname.$dname\_year.value,
|
Line 343 document.$formname.$dname\_year.value,
|
} |
} |
</script> |
</script> |
ENDJS |
ENDJS |
$result .= " <nobr><select name=\"$dname\_month\" ".$special.' '. |
$result .= ' <nobr>'; |
$state.' '. |
my $monthselector = qq{<select name="$dname\_month" $special $state onchange="javascript:$dname\_checkday()" >}; |
"onChange=\"javascript:$dname\_checkday()\" >\n"; |
|
# Month |
# Month |
my @Months = qw/January February March April May June |
my @Months = qw/January February March April May June |
July August September October November December/; |
July August September October November December/; |
# Pad @Months with a bogus value to make indexing easier |
# Pad @Months with a bogus value to make indexing easier |
unshift(@Months,'If you can read this an error occurred'); |
unshift(@Months,'If you can read this an error occurred'); |
if ($includeempty) { $result.="<option value=''></option>"; } |
if ($includeempty) { $monthselector.="<option value=''></option>"; } |
for(my $m = 1;$m <=$#Months;$m++) { |
for(my $m = 1;$m <=$#Months;$m++) { |
$result .= " <option value=\"$m\" "; |
$monthselector .= qq{ <option value="$m" }; |
$result .= "selected " if ($m-1 eq $month); |
$monthselector .= "selected " if ($m-1 eq $month); |
$result .= "> ".&mt($Months[$m])." </option>\n"; |
$monthselector .= '> '.&mt($Months[$m]).' </option>'; |
} |
} |
$result .= " </select>\n"; |
$monthselector.= ' </select>'; |
# Day |
# Day |
$result .= " <input type=\"text\" name=\"$dname\_day\" ".$state.' '. |
my $dayselector = qq{<input type="text" name="$dname\_day" $state value="$mday" size="3" $special onchange="javascript:$dname\_checkday()" />}; |
"value=\"$mday\" size=\"3\" ".$special.' '. |
|
"onChange=\"javascript:$dname\_checkday()\" />\n"; |
|
# Year |
# Year |
$result .= " <input type=\"year\" name=\"$dname\_year\" ".$state.' '. |
my $yearselector = qq{<input type="year" name="$dname\_year" $state value="$year" size="5" $special onchange="javascript:$dname\_checkday()" />}; |
"value=\"$year\" size=\"5\" ".$special.' '. |
# |
"onChange=\"javascript:$dname\_checkday()\" />\n"; |
my $hourselector = qq{<select name="$dname\_hour" $special $state >}; |
$result .= " "; |
if ($includeempty) { |
if (! $no_hh_mm_ss) { |
$hourselector.=qq{<option value=''></option>}; |
# Hours |
} |
$result .= " <select name=\"$dname\_hour\" ".$special." ".$state.' '. |
for (my $h = 0;$h<24;$h++) { |
">\n"; |
$hourselector .= qq{<option value="$h" }; |
if ($includeempty) { $result.="<option value=''></option>"; } |
$hourselector .= "selected " if (defined($hour) && $hour == $h); |
for (my $h = 0;$h<24;$h++) { |
$hourselector .= ">"; |
$result .= " <option value=\"$h\" "; |
my $timest=''; |
$result .= "selected " if (defined($hour) && $hour == $h); |
if ($h == 0) { |
$result .= "> "; |
$timest .= "12 am"; |
my $timest=''; |
} elsif($h == 12) { |
if ($h == 0) { |
$timest .= "12 noon"; |
$timest .= "12 am"; |
} elsif($h < 12) { |
} elsif($h == 12) { |
$timest .= "$h am"; |
$timest .= "12 noon"; |
} else { |
} elsif($h < 12) { |
$timest .= $h-12 ." pm"; |
$timest .= "$h am"; |
} |
} else { |
$timest=&mt($timest); |
$timest .= $h-12 ." pm"; |
$hourselector .= $timest." </option>\n"; |
} |
|
$timest=&mt($timest); |
|
$result .= $timest." </option>\n"; |
|
} |
|
$result .= " </select>\n"; |
|
$result .= " <input type=\"text\" name=\"$dname\_minute\" ". |
|
$special.' '. |
|
$state.' '. |
|
"value=\"$min\" size=\"3\" /> m\n"; |
|
$result .= " <input type=\"text\" name=\"$dname\_second\" ". |
|
$special.' '. |
|
$state.' '. |
|
"value=\"$sec\" size=\"3\" /> s\n"; |
|
} |
} |
$result .= "<a href=\"javascript:$dname\_opencalendar()\">". |
$hourselector .= " </select>\n"; |
&mt('Select Date')."</a></nobr>\n<!-- end $dname date setting form -->\n"; |
my $minuteselector = qq{<input type="text" name="$dname\_minute" $special $state value="$min" size="3" />}; |
|
my $secondselector= qq{<input type="text" name="$dname\_second" $special $state value="$sec" size="3" />}; |
|
my $cal_link = qq{<a href="javascript:$dname\_opencalendar()">}; |
|
# |
|
if ($no_hh_mm_ss) { |
|
$result .= &mt('[_1] [_2] [_3] [_4]Select Date[_5]', |
|
$monthselector,$dayselector,$yearselector, |
|
$cal_link,'</a>'); |
|
} else { |
|
$result .= &mt('[_1] [_2] [_3] [_4] [_5]m [_6]s [_7]Select Date[_8]', |
|
$monthselector,$dayselector,$yearselector, |
|
$hourselector,$minuteselector,$secondselector, |
|
$cal_link,'</a>'); |
|
} |
|
$result .= "</nobr>\n<!-- end $dname date setting form -->\n"; |
return $result; |
return $result; |
} |
} |
|
|
Line 519 sub javascript_nothing {
|
Line 548 sub javascript_nothing {
|
return $nothing; |
return $nothing; |
} |
} |
|
|
|
############################################## |
|
############################################## |
|
sub javascript_docopen { |
|
# safari does not understand document.open() and loads "text/html" |
|
my $nothing = "''"; |
|
my $user_browser; |
|
my $user_os; |
|
$user_browser = $ENV{'browser.type'} if (exists($ENV{'browser.type'})); |
|
$user_os = $ENV{'browser.os'} if (exists($ENV{'browser.os'})); |
|
if (! defined($user_browser) || ! defined($user_os)) { |
|
(undef,$user_browser,undef,undef,undef,$user_os) = |
|
&Apache::loncommon::decode_user_agent(); |
|
} |
|
if ($user_browser eq 'safari' && $user_os =~ 'mac') { |
|
$nothing = "document.clear()"; |
|
} else { |
|
$nothing = "document.open('text/html','replace')"; |
|
} |
|
return $nothing; |
|
} |
|
|
|
|
############################################## |
############################################## |
############################################## |
############################################## |
Line 772 sub Increment_PrgWin {
|
Line 822 sub Increment_PrgWin {
|
$$prog_state{'done'} * |
$$prog_state{'done'} * |
($$prog_state{'max'}-$$prog_state{'done'}); |
($$prog_state{'max'}-$$prog_state{'done'}); |
$time_est = int($time_est); |
$time_est = int($time_est); |
if (int ($time_est/60) > 0) { |
# |
my $min = int($time_est/60); |
my $min = int($time_est/60); |
my $sec = $time_est % 60; |
my $sec = $time_est % 60; |
$time_est = $min.' '.&mt('minutes'); |
# |
if ($min < 10) { |
my $str; |
if ($sec > 1) { |
if ($min == 0 && $sec > 1) { |
$time_est.= ', '.$sec.' '.&mt('seconds'); |
$str = '[_2] seconds'; |
} elsif ($sec > 0) { |
} elsif ($min == 1 && $sec > 1) { |
$time_est.= ', '.$sec.' '.&mt('second'); |
$str = '1 minute [_2] seconds'; |
} |
} elsif ($min == 1 && $sec < 2) { |
} |
$str = '1 minute'; |
} else { |
} elsif ($min < 10 && $sec > 1) { |
$time_est .= ' '.&mt('seconds'); |
$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 841 sub r_print {
|
Line 895 sub r_print {
|
# ------------------------------------------------------- Puts directory header |
# ------------------------------------------------------- Puts directory header |
|
|
sub crumbs { |
sub crumbs { |
my ($uri,$target,$prefix,$form,$size)=@_; |
my ($uri,$target,$prefix,$form,$size,$noformat)=@_; |
if (! defined($size)) { |
if (! defined($size)) { |
$size = '+2'; |
$size = '+2'; |
} |
} |
my $output='<br /><tt><b><font size="'.$size.'">'.$prefix.'/'; |
my $output=''; |
|
unless ($noformat) { $output.='<br /><tt><b>'; } |
|
$output.='<font size="'.$size.'">'.$prefix.'/'; |
if ($ENV{'user.adv'}) { |
if ($ENV{'user.adv'}) { |
my $path=$prefix.'/'; |
my $path=$prefix.'/'; |
foreach (split('/',$uri)) { |
foreach (split('/',$uri)) { |
Line 854 sub crumbs {
|
Line 910 sub crumbs {
|
unless ($path eq $uri) { $path.='/'; } |
unless ($path eq $uri) { $path.='/'; } |
my $linkpath=$path; |
my $linkpath=$path; |
if ($form) { |
if ($form) { |
$linkpath="javascript:$form.action='$path';$form.submit();"; |
my $escaped_path = &Apache::loncommon::escape_single($path); |
|
$linkpath="javascript:$form.action='$escaped_path';$form.submit();"; |
} |
} |
$output.='<a href="'.$linkpath.'"'.($target?' target="'.$target.'"':'').'>'.$_.'</a>/'; |
my $escaped_linkpath = &Apache::loncommon::escape_single($linkpath); |
|
my $escaped_target = &Apache::loncommon::escape_single($target); |
|
$output.='<a href="'.$escaped_linkpath.'"'.($target?' target="'.$escaped_target.'"':'').'>'.$_.'</a>/'; |
} |
} |
} else { |
} else { |
$output.=$uri; |
$output.=$uri; |
} |
} |
unless ($uri=~/\/$/) { $output=~s/\/$//; } |
unless ($uri=~/\/$/) { $output=~s/\/$//; } |
return $output.'</font></b></tt><br />'; |
return $output.'</font>'.($noformat?'':'</b></tt><br />'); |
|
} |
|
|
|
# --------------------- A function that generates a window for the spellchecker |
|
|
|
sub spellheader { |
|
my $nothing = &javascript_nothing(); |
|
return (<<ENDCHECK); |
|
<script type="text/javascript"> |
|
//<!-- BEGIN LON-CAPA Internal |
|
var checkwin; |
|
|
|
function spellcheckerwindow() { |
|
checkwin=window.open($nothing,'spellcheckwin','height=320,width=280,resizable=yes,scrollbars=yes,location=no,menubar=no,toolbar=no'); |
|
checkwin.document.writeln('<html><body bgcolor="#DDDDDD"><form name="spellcheckform" action="/adm/spellcheck" method="post"><input type="hidden" name="text" value="" /></form></body></html>'); |
|
checkwin.document.close(); |
|
} |
|
// END LON-CAPA Internal --> |
|
</script> |
|
ENDCHECK |
|
} |
|
|
|
# ---------------------------------- Generate link to spell checker for a field |
|
|
|
sub spelllink { |
|
my ($form,$field)=@_; |
|
my $linktext=&mt('Check Spelling'); |
|
return (<<ENDLINK); |
|
<a href="javascript:if (typeof(document.$form.onsubmit)!='undefined') { document.$form.onsubmit();};spellcheckerwindow();checkwin.document.forms.spellcheckform.text.value=this.document.forms.$form.$field.value;checkwin.document.forms.spellcheckform.submit();">$linktext</a> |
|
ENDLINK |
} |
} |
|
|
# ------------------------------------------------- Output headers for HTMLArea |
# ------------------------------------------------- Output headers for HTMLArea |
|
|
sub htmlareaheaders { |
sub htmlareaheaders { |
if (&htmlareablocked()) { return ''; } |
if (&htmlareablocked()) { return ''; } |
|
unless (&htmlareabrowser()) { return ''; } |
my $lang='en'; |
my $lang='en'; |
if (&mt('htmlarea_lang') ne 'htmlarea_lang') { |
if (&mt('htmlarea_lang') ne 'htmlarea_lang') { |
$lang=&mt('htmlarea_lang'); |
$lang=&mt('htmlarea_lang'); |
Line 886 ENDHEADERS
|
Line 975 ENDHEADERS
|
|
|
sub htmlareaaddbuttons { |
sub htmlareaaddbuttons { |
if (&htmlareablocked()) { return ''; } |
if (&htmlareablocked()) { return ''; } |
|
unless (&htmlareabrowser()) { return ''; } |
return (<<ENDADDBUTTON); |
return (<<ENDADDBUTTON); |
var config=new HTMLArea.Config(); |
var config=new HTMLArea.Config(); |
config.registerButton('ed_math','LaTeX Inline', |
config.registerButton('ed_math','LaTeX Inline', |
'/htmlarea/images/ed_math.gif',false, |
'/htmlarea/images/ed_math.gif',false, |
function(editor,id) { |
function(editor,id) { |
editor.surroundHTML('<m>\$','\$</m>'); |
editor.surroundHTML(' <m>\$','\$</m> '); |
} |
} |
); |
); |
config.registerButton('ed_math_eqn','LaTeX Equation', |
config.registerButton('ed_math_eqn','LaTeX Equation', |
'/htmlarea/images/ed_math_eqn.gif',false, |
'/htmlarea/images/ed_math_eqn.gif',false, |
function(editor,id) { |
function(editor,id) { |
editor.surroundHTML( |
editor.surroundHTML( |
'<center><m>\\\\[','\\\\]</m></center>'); |
' \\n<center><m>\\\\[','\\\\]</m></center>\\n '); |
} |
} |
); |
); |
config.toolbar.push(['ed_math','ed_math_eqn']); |
config.toolbar.push(['ed_math','ed_math_eqn']); |
ENDADDBUTTON |
ENDADDBUTTON |
} |
} |
# ---------------------------------------------------------- Script to activate |
|
|
|
sub htmlareaactive { |
# ----------------------------------------------------------------- Preferences |
if (&htmlareablocked()) { return ''; } |
|
my $addbuttons=&htmlareaaddbuttons(); |
sub disablelink { |
return (<<ENDSCRIPT); |
my @fields=@_; |
<script type="text/javascript" defer="1"> |
if (defined($#fields)) { |
$addbuttons |
unless ($#fields>=0) { return ''; } |
HTMLArea.replaceAll(config); |
} |
</script> |
return '<a href="'.&HTML::Entities::encode('/adm/preferences?action=set_wysiwyg&wysiwyg=off&returnurl=','<>&"').&Apache::lonnet::escape($ENV{'REQUEST_URI'}).'">'.&mt('Disable WYSIWYG Editor').'</a>'; |
ENDSCRIPT |
} |
|
|
|
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=','<>&"').&Apache::lonnet::escape($ENV{'REQUEST_URI'}).'">'.&mt('Enable WYSIWYG Editor').'</a>'; |
} |
} |
|
|
# ----------------------------------------- Script to activate only some fields |
# ----------------------------------------- Script to activate only some fields |
|
|
sub htmlareaselectactive { |
sub htmlareaselectactive { |
my @fields=@_; |
my @fields=@_; |
if (&htmlareablocked()) { return ''; } |
unless (&htmlareabrowser()) { return ''; } |
|
if (&htmlareablocked()) { return '<br />'.&enablelink(@fields); } |
my $output='<script type="text/javascript" defer="1">'. |
my $output='<script type="text/javascript" defer="1">'. |
&htmlareaaddbuttons(); |
&htmlareaaddbuttons(); |
foreach(@fields) { |
foreach(@fields) { |
$output.="\nHTMLArea.replace('$_',config);"; |
$output.="\nHTMLArea.replace('$_',config);"; |
} |
} |
$output.="\nwindow.status='Activated Editfields';\n</script>"; |
$output.="\nwindow.status='Activated Editfields';\n</script><br />". |
|
&disablelink(@fields); |
return $output; |
return $output; |
} |
} |
|
|
# --------------------------------------------------------------------- Blocked |
# --------------------------------------------------------------------- Blocked |
|
|
sub htmlareablocked { |
sub htmlareablocked { |
unless (&htmlareabrowser()) { return 1; } |
unless ($ENV{'environment.wysiwygeditor'} eq 'on') { return 1; } |
return 0; |
return 0; |
} |
} |
|
|
Line 991 returns: nothing
|
Line 1089 returns: nothing
|
my @Crumbs; |
my @Crumbs; |
|
|
sub breadcrumbs { |
sub breadcrumbs { |
my ($color,$component,$component_help,$function,$domain,$menulink) = |
my ($color,$component,$component_help,$function,$domain,$menulink, |
@_; |
$helplink) = @_; |
if (! defined($color)) { |
if (! defined($color)) { |
if (! defined($function)) { |
if (! defined($function)) { |
$function = &Apache::loncommon::get_users_function(); |
$function = &Apache::loncommon::get_users_function(); |
Line 1043 returns: nothing
|
Line 1141 returns: nothing
|
} @Crumbs |
} @Crumbs |
); |
); |
$links .= '->' if ($links ne ''); |
$links .= '->' if ($links ne ''); |
$links .= '<b>'.$last->{'text'}.'</b>'; |
$links .= '<b>'.&mt($last->{'text'}).'</b>'; |
# |
# |
my $icons = ''; |
my $icons = ''; |
$faq = $last->{'faq'} if (exists($last->{'faq'})); |
$faq = $last->{'faq'} if (exists($last->{'faq'})); |
$bug = $last->{'bug'} if (exists($last->{'bug'})); |
$bug = $last->{'bug'} if (exists($last->{'bug'})); |
if ($faq ne '') { |
# if ($faq ne '') { |
$icons .= &Apache::loncommon::help_open_faq($faq); |
# $icons .= &Apache::loncommon::help_open_faq($faq); |
} |
# } |
if ($bug ne '') { |
# if ($bug ne '') { |
$icons .= &Apache::loncommon::help_open_bug($bug); |
# $icons .= &Apache::loncommon::help_open_bug($bug); |
} |
# } |
|
if ($helplink ne 'nohelp') { |
|
$icons .= &Apache::loncommon::help_open_menu($color,$component,$component_help,$function,$faq,$bug); |
|
} |
if ($icons ne '') { |
if ($icons ne '') { |
$Str .= $icons.' '; |
$Str .= $icons.' '; |
} |
} |
Line 1062 returns: nothing
|
Line 1163 returns: nothing
|
# |
# |
if (defined($component)) { |
if (defined($component)) { |
$Str .= '<td align="right" bgcolor="'.$color.'">'. |
$Str .= '<td align="right" bgcolor="'.$color.'">'. |
'<font size="+1">'.&mt($component).'</font>'; |
'<font size="+1">'.&mt($component).'</font></td>'; |
if (defined($component_help)) { |
|
$Str .= |
|
&Apache::loncommon::help_open_topic($component_help); |
|
} |
|
$Str.= '</td>'; |
|
} |
} |
$Str .= '</tr></table>'."\n"; |
$Str .= '</tr></table>'."\n"; |
# |
# |