version 1.99, 2004/11/23 16:04:33
|
version 1.107, 2005/06/06 15:54:28
|
Line 55 html.
|
Line 55 html.
|
|
|
package Apache::lonhtmlcommon; |
package Apache::lonhtmlcommon; |
|
|
|
use strict; |
use Time::Local; |
use Time::Local; |
use Time::HiRes; |
use Time::HiRes; |
use Apache::lonlocal; |
use Apache::lonlocal; |
use strict; |
use Apache::lonnet; |
|
|
############################################## |
############################################## |
############################################## |
############################################## |
Line 80 sub authorbombs {
|
Line 81 sub authorbombs {
|
foreach (keys %bombs) { |
foreach (keys %bombs) { |
if ($_=~/^$udom\/$uname\//) { |
if ($_=~/^$udom\/$uname\//) { |
return '<a href="/adm/bombs/'.$url. |
return '<a href="/adm/bombs/'.$url. |
'"><img src="/adm/lonMisc/bomb.gif" border="0" /></a>'. |
'"><img src="'.&Apache::loncommon::lonhttpdurl('/adm/lonMisc/bomb.gif').'" border="0" /></a>'. |
&Apache::loncommon::help_open_topic('About_Bombs'); |
&Apache::loncommon::help_open_topic('About_Bombs'); |
} |
} |
} |
} |
Line 258 The method used to restrict user input w
|
Line 259 The method used to restrict user input w
|
sub date_setter { |
sub date_setter { |
my ($formname,$dname,$currentvalue,$special,$includeempty,$state, |
my ($formname,$dname,$currentvalue,$special,$includeempty,$state, |
$no_hh_mm_ss) = @_; |
$no_hh_mm_ss) = @_; |
|
my $wasdefined=1; |
if (! defined($state) || $state ne 'disabled') { |
if (! defined($state) || $state ne 'disabled') { |
$state = ''; |
$state = ''; |
} |
} |
Line 267 sub date_setter {
|
Line 269 sub date_setter {
|
if (! defined($currentvalue) || $currentvalue eq 'now') { |
if (! defined($currentvalue) || $currentvalue eq 'now') { |
unless ($includeempty) { |
unless ($includeempty) { |
$currentvalue = time; |
$currentvalue = time; |
|
$wasdefined=0; |
} else { |
} else { |
$currentvalue = 0; |
$currentvalue = 0; |
} |
} |
Line 278 sub date_setter {
|
Line 281 sub date_setter {
|
localtime($currentvalue); |
localtime($currentvalue); |
$year += 1900; |
$year += 1900; |
} |
} |
|
unless ($wasdefined) { |
|
$sec=0; |
|
$min=0; |
|
} |
my $result = "\n<!-- $dname date setting form -->\n"; |
my $result = "\n<!-- $dname date setting form -->\n"; |
$result .= <<ENDJS; |
$result .= <<ENDJS; |
<script language="Javascript"> |
<script language="Javascript"> |
Line 435 sub get_date_from_form {
|
Line 442 sub get_date_from_form {
|
my ($dname) = @_; |
my ($dname) = @_; |
my ($sec,$min,$hour,$day,$month,$year); |
my ($sec,$min,$hour,$day,$month,$year); |
# |
# |
if (defined($ENV{'form.'.$dname.'_second'})) { |
if (defined($env{'form.'.$dname.'_second'})) { |
my $tmpsec = $ENV{'form.'.$dname.'_second'}; |
my $tmpsec = $env{'form.'.$dname.'_second'}; |
if (($tmpsec =~ /^\d+$/) && ($tmpsec >= 0) && ($tmpsec < 60)) { |
if (($tmpsec =~ /^\d+$/) && ($tmpsec >= 0) && ($tmpsec < 60)) { |
$sec = $tmpsec; |
$sec = $tmpsec; |
} |
} |
Line 444 sub get_date_from_form {
|
Line 451 sub get_date_from_form {
|
} else { |
} else { |
$sec = 0; |
$sec = 0; |
} |
} |
if (defined($ENV{'form.'.$dname.'_minute'})) { |
if (defined($env{'form.'.$dname.'_minute'})) { |
my $tmpmin = $ENV{'form.'.$dname.'_minute'}; |
my $tmpmin = $env{'form.'.$dname.'_minute'}; |
if (($tmpmin =~ /^\d+$/) && ($tmpmin >= 0) && ($tmpmin < 60)) { |
if (($tmpmin =~ /^\d+$/) && ($tmpmin >= 0) && ($tmpmin < 60)) { |
$min = $tmpmin; |
$min = $tmpmin; |
} |
} |
Line 453 sub get_date_from_form {
|
Line 460 sub get_date_from_form {
|
} else { |
} else { |
$min = 0; |
$min = 0; |
} |
} |
if (defined($ENV{'form.'.$dname.'_hour'})) { |
if (defined($env{'form.'.$dname.'_hour'})) { |
my $tmphour = $ENV{'form.'.$dname.'_hour'}; |
my $tmphour = $env{'form.'.$dname.'_hour'}; |
if (($tmphour =~ /^\d+$/) && ($tmphour >= 0) && ($tmphour < 24)) { |
if (($tmphour =~ /^\d+$/) && ($tmphour >= 0) && ($tmphour < 24)) { |
$hour = $tmphour; |
$hour = $tmphour; |
} |
} |
} else { |
} else { |
$hour = 0; |
$hour = 0; |
} |
} |
if (defined($ENV{'form.'.$dname.'_day'})) { |
if (defined($env{'form.'.$dname.'_day'})) { |
my $tmpday = $ENV{'form.'.$dname.'_day'}; |
my $tmpday = $env{'form.'.$dname.'_day'}; |
if (($tmpday =~ /^\d+$/) && ($tmpday > 0) && ($tmpday < 32)) { |
if (($tmpday =~ /^\d+$/) && ($tmpday > 0) && ($tmpday < 32)) { |
$day = $tmpday; |
$day = $tmpday; |
} |
} |
} |
} |
if (defined($ENV{'form.'.$dname.'_month'})) { |
if (defined($env{'form.'.$dname.'_month'})) { |
my $tmpmonth = $ENV{'form.'.$dname.'_month'}; |
my $tmpmonth = $env{'form.'.$dname.'_month'}; |
if (($tmpmonth =~ /^\d+$/) && ($tmpmonth > 0) && ($tmpmonth < 13)) { |
if (($tmpmonth =~ /^\d+$/) && ($tmpmonth > 0) && ($tmpmonth < 13)) { |
$month = $tmpmonth - 1; |
$month = $tmpmonth - 1; |
} |
} |
} |
} |
if (defined($ENV{'form.'.$dname.'_year'})) { |
if (defined($env{'form.'.$dname.'_year'})) { |
my $tmpyear = $ENV{'form.'.$dname.'_year'}; |
my $tmpyear = $env{'form.'.$dname.'_year'}; |
if (($tmpyear =~ /^\d+$/) && ($tmpyear > 1900)) { |
if (($tmpyear =~ /^\d+$/) && ($tmpyear > 1900)) { |
$year = $tmpyear - 1900; |
$year = $tmpyear - 1900; |
} |
} |
Line 536 sub javascript_nothing {
|
Line 543 sub javascript_nothing {
|
my $nothing = "''"; |
my $nothing = "''"; |
my $user_browser; |
my $user_browser; |
my $user_os; |
my $user_os; |
$user_browser = $ENV{'browser.type'} if (exists($ENV{'browser.type'})); |
$user_browser = $env{'browser.type'} if (exists($env{'browser.type'})); |
$user_os = $ENV{'browser.os'} if (exists($ENV{'browser.os'})); |
$user_os = $env{'browser.os'} if (exists($env{'browser.os'})); |
if (! defined($user_browser) || ! defined($user_os)) { |
if (! defined($user_browser) || ! defined($user_os)) { |
(undef,$user_browser,undef,undef,undef,$user_os) = |
(undef,$user_browser,undef,undef,undef,$user_os) = |
&Apache::loncommon::decode_user_agent(); |
&Apache::loncommon::decode_user_agent(); |
Line 555 sub javascript_docopen {
|
Line 562 sub javascript_docopen {
|
my $nothing = "''"; |
my $nothing = "''"; |
my $user_browser; |
my $user_browser; |
my $user_os; |
my $user_os; |
$user_browser = $ENV{'browser.type'} if (exists($ENV{'browser.type'})); |
$user_browser = $env{'browser.type'} if (exists($env{'browser.type'})); |
$user_os = $ENV{'browser.os'} if (exists($ENV{'browser.os'})); |
$user_os = $env{'browser.os'} if (exists($env{'browser.os'})); |
if (! defined($user_browser) || ! defined($user_os)) { |
if (! defined($user_browser) || ! defined($user_os)) { |
(undef,$user_browser,undef,undef,undef,$user_os) = |
(undef,$user_browser,undef,undef,undef,$user_os) = |
&Apache::loncommon::decode_user_agent(); |
&Apache::loncommon::decode_user_agent(); |
Line 583 enrollment status of students. The sele
|
Line 590 enrollment status of students. The sele
|
Inputs: |
Inputs: |
|
|
$status: the currently selected status. If undefined the value of |
$status: the currently selected status. If undefined the value of |
$ENV{'form.Status'} is taken. If that is undefined, a value of 'Active' |
$env{'form.Status'} is taken. If that is undefined, a value of 'Active' |
is used. |
is used. |
|
|
$formname: The name of the form. If defined the onchange attribute of |
$formname: The name of the form. If defined the onchange attribute of |
Line 605 sub StatusOptions {
|
Line 612 sub StatusOptions {
|
$size = 1 if (!defined($size)); |
$size = 1 if (!defined($size)); |
if (! defined($status)) { |
if (! defined($status)) { |
$status = 'Active'; |
$status = 'Active'; |
$status = $ENV{'form.Status'} if (exists($ENV{'form.Status'})); |
$status = $env{'form.Status'} if (exists($env{'form.Status'})); |
} |
} |
|
|
my $OpSel1 = ''; |
my $OpSel1 = ''; |
Line 759 sub Create_PrgWin {
|
Line 766 sub Create_PrgWin {
|
$prog_state{'type'}=$type; |
$prog_state{'type'}=$type; |
if ($type eq 'popup') { |
if ($type eq 'popup') { |
$prog_state{'window'}='popwin'; |
$prog_state{'window'}='popwin'; |
|
my $html=&Apache::lonxml::xmlbegin(); |
#the whole function called through timeout is due to issues |
#the whole function called through timeout is due to issues |
#in mozilla Read BUG #2665 if you want to know the whole story |
#in mozilla Read BUG #2665 if you want to know the whole story |
&r_print($r,'<script>'. |
&r_print($r,'<script>'. |
"var popwin; |
"var popwin; |
function openpopwin () { |
function openpopwin () { |
popwin=open(\'\',\'popwin\',\'width=400,height=100\');". |
popwin=open(\'\',\'popwin\',\'width=400,height=100\');". |
"popwin.document.writeln(\'<html><head><title>$title</title></head>". |
"popwin.document.writeln(\'".$html."<head><title>$title</title></head>". |
"<body bgcolor=\"#88DDFF\">". |
"<body bgcolor=\"#88DDFF\">". |
"<h4>$heading</h4>". |
"<h4>$heading</h4>". |
"<form name=popremain>". |
"<form name=popremain>". |
Line 854 sub Increment_PrgWin {
|
Line 862 sub Increment_PrgWin {
|
$lasttime = '('.$lasttime.' '.&mt('seconds for').' '.$extraInfo.')'; |
$lasttime = '('.$lasttime.' '.&mt('seconds for').' '.$extraInfo.')'; |
} |
} |
# |
# |
my $user_browser = $ENV{'browser.type'} if (exists($ENV{'browser.type'})); |
my $user_browser = $env{'browser.type'} if (exists($env{'browser.type'})); |
my $user_os = $ENV{'browser.os'} if (exists($ENV{'browser.os'})); |
my $user_os = $env{'browser.os'} if (exists($env{'browser.os'})); |
if (! defined($user_browser) || ! defined($user_os)) { |
if (! defined($user_browser) || ! defined($user_os)) { |
(undef,$user_browser,undef,undef,undef,$user_os) = |
(undef,$user_browser,undef,undef,undef,$user_os) = |
&Apache::loncommon::decode_user_agent(); |
&Apache::loncommon::decode_user_agent(); |
Line 899 sub crumbs {
|
Line 907 sub crumbs {
|
if (! defined($size)) { |
if (! defined($size)) { |
$size = '+2'; |
$size = '+2'; |
} |
} |
|
if ($target) { |
|
$target = ' target="'. |
|
&Apache::loncommon::escape_single($target).'"'; |
|
} |
my $output=''; |
my $output=''; |
unless ($noformat) { $output.='<br /><tt><b>'; } |
unless ($noformat) { $output.='<br /><tt><b>'; } |
$output.='<font size="'.$size.'">'.$prefix.'/'; |
$output.='<font size="'.$size.'">'.$prefix.'/'; |
if ($ENV{'user.adv'}) { |
if ($env{'user.adv'}) { |
my $path=$prefix.'/'; |
my $path=$prefix.'/'; |
foreach my $dir (split('/',$uri)) { |
foreach my $dir (split('/',$uri)) { |
if (! $dir) { next; } |
if (! $dir) { next; } |
Line 913 sub crumbs {
|
Line 925 sub crumbs {
|
$linkpath= |
$linkpath= |
qq{javascript:$form.action='$linkpath';$form.submit();}; |
qq{javascript:$form.action='$linkpath';$form.submit();}; |
} |
} |
if ($target) { |
|
$target = ' target="'. |
|
&Apache::loncommon::escape_single($target).'"'; |
|
} |
|
$output.=qq{<a href="$linkpath" $target>$dir</a>/}; |
$output.=qq{<a href="$linkpath" $target>$dir</a>/}; |
} |
} |
} else { |
} else { |
Line 929 sub crumbs {
|
Line 937 sub crumbs {
|
# --------------------- A function that generates a window for the spellchecker |
# --------------------- A function that generates a window for the spellchecker |
|
|
sub spellheader { |
sub spellheader { |
my $nothing = &javascript_nothing(); |
my $html=&Apache::lonxml::xmlbegin(); |
|
my $nothing=&javascript_nothing(); |
return (<<ENDCHECK); |
return (<<ENDCHECK); |
<script type="text/javascript"> |
<script type="text/javascript"> |
//<!-- BEGIN LON-CAPA Internal |
//<!-- BEGIN LON-CAPA Internal |
Line 937 var checkwin;
|
Line 946 var checkwin;
|
|
|
function spellcheckerwindow() { |
function spellcheckerwindow() { |
checkwin=window.open($nothing,'spellcheckwin','height=320,width=280,resizable=yes,scrollbars=yes,location=no,menubar=no,toolbar=no'); |
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.writeln('$html<head></head><body bgcolor="#DDDDDD"><form name="spellcheckform" action="/adm/spellcheck" method="post"><input type="hidden" name="text" value="" /></form></body></html>'); |
checkwin.document.close(); |
checkwin.document.close(); |
} |
} |
// END LON-CAPA Internal --> |
// END LON-CAPA Internal --> |
Line 951 sub spelllink {
|
Line 960 sub spelllink {
|
my ($form,$field)=@_; |
my ($form,$field)=@_; |
my $linktext=&mt('Check Spelling'); |
my $linktext=&mt('Check Spelling'); |
return (<<ENDLINK); |
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> |
<a href="javascript:if (typeof(document.$form.onsubmit)!='undefined') { if (document.$form.onsubmit!=null) { document.$form.onsubmit();}};spellcheckerwindow();checkwin.document.forms.spellcheckform.text.value=this.document.forms.$form.$field.value;checkwin.document.forms.spellcheckform.submit();">$linktext</a> |
ENDLINK |
ENDLINK |
} |
} |
|
|
Line 1034 sub htmlareaselectactive {
|
Line 1043 sub htmlareaselectactive {
|
# --------------------------------------------------------------------- Blocked |
# --------------------------------------------------------------------- Blocked |
|
|
sub htmlareablocked { |
sub htmlareablocked { |
unless ($ENV{'environment.wysiwygeditor'} eq 'on') { return 1; } |
unless ($env{'environment.wysiwygeditor'} eq 'on') { return 1; } |
return 0; |
return 0; |
} |
} |
|
|
Line 1109 returns: nothing
|
Line 1118 returns: nothing
|
# Make the faq and bug data cascade |
# Make the faq and bug data cascade |
my $faq = ''; |
my $faq = ''; |
my $bug = ''; |
my $bug = ''; |
|
my $help=''; |
# The last breadcrumb does not have a link, so handle it separately. |
# The last breadcrumb does not have a link, so handle it separately. |
my $last = pop(@Crumbs); |
my $last = pop(@Crumbs); |
# |
# |
Line 1116 returns: nothing
|
Line 1126 returns: nothing
|
if (!defined($menulink)) { $menulink=1; } |
if (!defined($menulink)) { $menulink=1; } |
if ($menulink) { |
if ($menulink) { |
my $description = 'Menu'; |
my $description = 'Menu'; |
if (exists($ENV{'request.course.id'}) && |
if (exists($env{'request.course.id'}) && |
$ENV{'request.course.id'} ne '') { |
$env{'request.course.id'} ne '') { |
$description = |
$description = |
$ENV{'course.'.$ENV{'request.course.id'}.'.description'}; |
$env{'course.'.$env{'request.course.id'}.'.description'}; |
} |
} |
unshift(@Crumbs,{ |
unshift(@Crumbs,{ |
href =>'/adm/menu', |
href =>'/adm/menu', |
Line 1133 returns: nothing
|
Line 1143 returns: nothing
|
map { |
map { |
$faq = $_->{'faq'} if (exists($_->{'faq'})); |
$faq = $_->{'faq'} if (exists($_->{'faq'})); |
$bug = $_->{'bug'} if (exists($_->{'bug'})); |
$bug = $_->{'bug'} if (exists($_->{'bug'})); |
|
$help = $_->{'help'} if (exists($_->{'help'})); |
my $result = '<a href="'.$_->{'href'}.'" '; |
my $result = '<a href="'.$_->{'href'}.'" '; |
if (defined($_->{'target'}) && $_->{'target'} ne '') { |
if (defined($_->{'target'}) && $_->{'target'} ne '') { |
$result .= 'target="'.$_->{'target'}.'" '; |
$result .= 'target="'.$_->{'target'}.'" '; |
Line 1148 returns: nothing
|
Line 1159 returns: nothing
|
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'})); |
|
$help = $last->{'help'} if (exists($last->{'help'})); |
|
$component_help=($component_help?$component_help:$help); |
# if ($faq ne '') { |
# if ($faq ne '') { |
# $icons .= &Apache::loncommon::help_open_faq($faq); |
# $icons .= &Apache::loncommon::help_open_faq($faq); |
# } |
# } |