version 1.16, 2017/04/25 22:18:59
|
version 1.36, 2025/03/15 01:03:33
|
Line 60 sub handler {
|
Line 60 sub handler {
|
$symb,$type); |
$symb,$type); |
if (($env{'form.folderpath'} =~ /^supplemental/) && ($env{'form.suppurl'})) { |
if (($env{'form.folderpath'} =~ /^supplemental/) && ($env{'form.suppurl'})) { |
$supplementalflag = 1; |
$supplementalflag = 1; |
if (&unescape($env{'form.suppurl'}) =~ m{^/adm/$cdom/$cnum/\d+/exttools?$}) { |
if (&unescape($env{'form.suppurl'}) =~ m{^/adm/$cdom/$cnum/\d+/ext\.tool$}) { |
$type = 'tool'; |
$type = 'tool'; |
} |
} |
} |
} |
Line 79 sub handler {
|
Line 79 sub handler {
|
if ($symb ne $env{'form.symb'}) { |
if ($symb ne $env{'form.symb'}) { |
$env{'form.symb'} = $symb; |
$env{'form.symb'} = $symb; |
} |
} |
if ($url =~ m{/adm/$cdom/$cnum/\d+/exttools?$}) { |
if ($url =~ m{/adm/$cdom/$cnum/\d+/ext\.tool$}) { |
$type = 'tool'; |
$type = 'tool'; |
} |
} |
} |
} |
Line 98 sub handler {
|
Line 98 sub handler {
|
} |
} |
my %ltitools; |
my %ltitools; |
if ($type eq 'tool') { |
if ($type eq 'tool') { |
%ltitools = &Apache::lonnet::get_domain_ltitools($cdom); |
my (%domtools,%crstools); |
|
my %tooltypes = &Apache::loncommon::usable_exttools(); |
|
if ($tooltypes{'dom'}) { |
|
%domtools = &Apache::lonnet::get_domain_lti($cdom,'consumer'); |
|
} |
|
if ($tooltypes{'crs'}) { |
|
%crstools = &Apache::lonnet::get_course_lti($cnum,$cdom,'consumer'); |
|
} |
|
%ltitools = ( |
|
dom => \%domtools, |
|
crs => \%crstools, |
|
); |
} |
} |
my $js = &Apache::lonhtmlcommon::scripttag(&extedit_javascript()); |
my $js = &Apache::lonhtmlcommon::scripttag(&extedit_javascript()); |
my $pathitem = '<input type="hidden" name="folderpath" value="'. |
my $pathitem = '<input type="hidden" name="folderpath" value="'. |
Line 146 sub process_changes {
|
Line 157 sub process_changes {
|
$oldtitle = &unescape($env{'form.title'}); |
$oldtitle = &unescape($env{'form.title'}); |
$container = 'sequence'; |
$container = 'sequence'; |
$supplementalflag = 1; |
$supplementalflag = 1; |
if ($oldurl =~ m{^/adm/$cdom/$cnum/\d+/exttools?$}) { |
if ($oldurl =~ m{^/adm/$cdom/$cnum/\d+/ext\.tool$}) { |
$type = 'tool'; |
$type = 'tool'; |
} else { |
} else { |
$type = 'ext'; |
$type = 'ext'; |
Line 157 sub process_changes {
|
Line 168 sub process_changes {
|
if ($env{'form.importdetail'}) { |
if ($env{'form.importdetail'}) { |
($newtitle,$newurl,$newidx) = |
($newtitle,$newurl,$newidx) = |
map {&unescape($_)} split(/\=/,$env{'form.importdetail'}); |
map {&unescape($_)} split(/\=/,$env{'form.importdetail'}); |
if ($newurl =~ m{^(/adm/$cdom/$cnum/(\d+)/exttools?)\:?(.*)$}) { |
if ($newurl =~ m{^(/adm/$cdom/$cnum/(\d+)/ext\.tool)\:?(.*)$}) { |
$newurl = $1; |
$newurl = $1; |
$marker = $2; |
$marker = $2; |
$args = $3; |
$args = $3; |
|
if ((!$symb) && (!$supplementalflag)) { |
|
$symb = "uploaded/$cdom/$cnum/$folder.$container"."___$newidx"."___adm/$cdom/$cnum/$marker/ext.tool"; |
|
} |
} |
} |
} |
} |
if ($supplementalflag) { |
if ($supplementalflag) { |
Line 170 sub process_changes {
|
Line 184 sub process_changes {
|
} |
} |
if ($folder && $container) { |
if ($folder && $container) { |
if ($env{'form.importdetail'}) { |
if ($env{'form.importdetail'}) { |
my ($errtext,$fatal,$mismatchedid,@imports); |
my ($errtext,$fatal,$mismatchedid,$needreload,$newgradable,@imports); |
if (!$supplementalflag) { |
if (!$supplementalflag) { |
if (($oldidx) && ($oldidx != $newidx)) { |
if (($oldidx) && ($oldidx != $newidx)) { |
$mismatchedid = 1; |
$mismatchedid = 1; |
Line 181 sub process_changes {
|
Line 195 sub process_changes {
|
} elsif (($newtitle eq $oldtitle) && ($newurl eq $oldurl)) { |
} elsif (($newtitle eq $oldtitle) && ($newurl eq $oldurl)) { |
if ($type eq 'tool') { |
if ($type eq 'tool') { |
if ($args) { |
if ($args) { |
($updated,$errormsg) = &update_exttool($marker,$cdom,$cnum,$args); |
($updated,$newgradable,$errormsg) = &update_exttool($marker,$cdom,$cnum, |
unless ($updated) { |
$supplementalflag,$args); |
$output = &mt('No change'); |
if ($updated) { |
|
if ($newgradable) { |
|
my $map = "/uploaded/$cdom/$cnum/$folder.$container"; |
|
my ($errtext,$fatal) = &LONCAPA::map::mapread($map); |
|
if ($fatal) { |
|
$errormsg = &mt('Update failed: [_1].',$errtext); |
|
} else { |
|
&LONCAPA::map::storeparameter($residx,'parameter_0_gradable', |
|
$newgradable,'string_yesno'); |
|
my ($outtext,$errtext) = &LONCAPA::map::storemap($map,1,1); |
|
if ($errtext) { |
|
$errormsg = &mt('Update failed: [_1].',$errtext); |
|
} else { |
|
$needreload = 1; |
|
} |
|
} |
|
} |
|
} else { |
|
$output = &mt('No change'); |
} |
} |
} else { |
} else { |
$output = &mt('No change'); |
$output = &mt('No change'); |
Line 202 sub process_changes {
|
Line 234 sub process_changes {
|
my $ext = 'true'; |
my $ext = 'true'; |
if ($type eq 'tool') { |
if ($type eq 'tool') { |
if ($args) { |
if ($args) { |
($updated,$errormsg) = &update_exttool($marker,$cdom,$cnum,$args); |
($updated,$newgradable,$errormsg) = &update_exttool($marker,$cdom,$cnum, |
|
$supplementalflag,$args); |
|
if ($newgradable) { |
|
&LONCAPA::map::storeparameter($residx,'parameter_0_gradable',$newgradable, |
|
'string_yesno'); |
|
$needreload = 1; |
|
} |
} |
} |
$ext = 'false'; |
$ext = 'false'; |
} |
} |
|
my $dotimeupdate; |
|
unless ($supplementalflag) { |
|
if (($newgradable) || ($newurl ne $oldurl)) { |
|
$dotimeupdate = 1; |
|
} |
|
} |
$LONCAPA::map::resources[$residx] = |
$LONCAPA::map::resources[$residx] = |
join(':', ($savetitle,$saveurl,$ext,'normal','res')); |
join(':', ($savetitle,$saveurl,$ext,'normal','res')); |
my ($outtext,$errtext) = &LONCAPA::map::storemap($map,1); |
my ($outtext,$errtext) = &LONCAPA::map::storemap($map,1,$dotimeupdate); |
if ($errtext) { |
if ($errtext) { |
$errormsg = &mt('Update failed: [_1].',$errtext); |
$errormsg = &mt('Update failed: [_1].',$errtext); |
} else { |
} else { |
Line 230 sub process_changes {
|
Line 274 sub process_changes {
|
&Apache::lonnet::devalidate_title_cache($symb); |
&Apache::lonnet::devalidate_title_cache($symb); |
} |
} |
} |
} |
} |
$needreload = 1; |
my ($furl,$ferr) = |
|
&Apache::lonuserstate::readmap("$cdom/$cnum"); |
|
if ($ferr) { |
|
$errormsg = &mt('Reload failed: [_1].',$ferr); |
|
} else { |
|
unless ($supplementalflag) { |
|
&Apache::loncommon::update_content_constraints($cdom,$cnum,$chome,$cdom.'_'.$cnum); |
|
} |
|
} |
} |
} |
} |
} |
} |
} |
} |
|
if ($needreload) { |
|
my ($furl,$ferr) = &Apache::lonuserstate::readmap("$cdom/$cnum"); |
|
if ($ferr) { |
|
$errormsg = &mt('Reload failed: [_1].',$ferr); |
|
} else { |
|
&Apache::loncommon::update_content_constraints($cdom,$cnum,$chome, |
|
$cdom.'_'.$cnum); |
|
} |
|
} |
|
if (($type eq 'tool') && ($newgradable)) { |
|
my $uri = &Apache::lonnet::declutter($url); |
|
&Apache::lonnet::devalidate_cache_new('meta',$uri); |
|
} |
} else { |
} else { |
$output = &mt('No change'); |
$output = &mt('No change'); |
} |
} |
Line 257 sub process_changes {
|
Line 306 sub process_changes {
|
} |
} |
|
|
sub update_exttool { |
sub update_exttool { |
my ($marker,$cdom,$cnum,$args) = @_; |
my ($marker,$cdom,$cnum,$supplementalflag,$args) = @_; |
my %toolhash=&Apache::lonnet::dump('exttool_'.$marker,$cdom,$cnum); |
my (%newhash,$changed,$newgradable,@deleted,$errormsg); |
my (%newhash,$changed,@deleted,$errormsg); |
|
($newhash{'target'},$newhash{'width'},$newhash{'height'},$newhash{'linktext'},$newhash{'explanation'}, |
($newhash{'target'},$newhash{'width'},$newhash{'height'},$newhash{'linktext'},$newhash{'explanation'}, |
$newhash{'crslabel'},$newhash{'crstitle'}) = split(/:/,$args); |
$newhash{'crslabel'},$newhash{'crstitle'},$newhash{'crsappend'},$newhash{'gradable'}, |
foreach my $item ('linktext','explanation','crslabel','crstitle') { |
$newhash{'returnurl'},$newhash{'backtourl'}) = split(/:/,$args); |
|
foreach my $item ('linktext','explanation','crslabel','crstitle','crsappend','backtourl') { |
$newhash{$item} = &unescape($newhash{$item}); |
$newhash{$item} = &unescape($newhash{$item}); |
} |
} |
my %toolhash=&Apache::lonnet::dump('exttool_'.$marker,$cdom,$cnum); |
my %toolhash=&Apache::lonnet::dump('exttool_'.$marker,$cdom,$cnum); |
foreach my $item ('target','width','height','linktext','explanation','crslabel','crstitle') { |
foreach my $item ('target','width','height','linktext','explanation','crslabel','crstitle','crsappend','gradable','returnurl','backtourl') { |
$newhash{$item} =~ s/^\s+//; |
$newhash{$item} =~ s/^\s+//; |
$newhash{$item} =~ s/\s+$//; |
$newhash{$item} =~ s/\s+$//; |
if (($item eq 'width') || ($item eq 'height') || ($item eq 'linktext') || ($item eq 'explanation')) { |
if (($item eq 'width') || ($item eq 'height') || ($item eq 'linktext') || ($item eq 'explanation')) { |
if ($newhash{'target'} eq 'iframe') { |
if ($newhash{'target'} eq 'iframe') { |
$newhash{$item} = ''; |
$newhash{$item} = ''; |
|
} elsif ($newhash{'target'} eq 'tab') { |
|
if (($item eq 'width') || ($item eq 'height')) { |
|
$newhash{$item} = ''; |
|
} |
|
} |
|
} elsif ($item eq 'gradable') { |
|
unless ($newhash{$item} == 1) { |
|
$newhash{$item} = ''; |
|
} |
|
} elsif ($item eq 'backtourl') { |
|
unless ($newhash{'returnurl'} eq 'custom') { |
|
$newhash{$item} = ''; |
} |
} |
} |
} |
if ($toolhash{$item} ne $newhash{$item}) { |
if ($toolhash{$item} ne $newhash{$item}) { |
|
if (($item eq 'gradable') && (!$supplementalflag)) { |
|
if ($newhash{$item}) { |
|
$newgradable = 'yes'; |
|
} else { |
|
$newgradable = 'no'; |
|
} |
|
} |
if ($newhash{$item} eq '') { |
if ($newhash{$item} eq '') { |
unless (($item eq 'target') || |
unless (($item eq 'target') || |
((($item eq 'width') || ($item eq 'height') || ($item eq 'linktext') || ($item eq 'explanation')) && |
((($item eq 'width') || ($item eq 'height')) && |
(($newhash{'target'} eq 'window') || |
(($newhash{'target'} eq 'window') || |
(($newhash{'target'} eq '') && ($toolhash{'target'} eq 'window'))))) { |
(($newhash{'target'} eq '') && ($toolhash{'target'} eq 'window')))) || |
|
((($item eq 'linktext') || ($item eq 'explanation')) && |
|
((($newhash{'target'} =~ /^(window|tab)$/)) || |
|
(($newhash{'target'} eq '') && ($toolhash{'target'} =~ /^(window|tab)$/))))) { |
delete($toolhash{$item}); |
delete($toolhash{$item}); |
push(@deleted,$item); |
push(@deleted,$item); |
$changed = 1; |
$changed = 1; |
} |
} |
} else { |
} else { |
$toolhash{$item} = $newhash{$item}; |
$toolhash{$item} = $newhash{$item}; |
$changed = 1; |
$changed = 1; |
} |
} |
} |
} |
} |
} |
Line 299 sub update_exttool {
|
Line 370 sub update_exttool {
|
if (@deleted) { |
if (@deleted) { |
&Apache::lonnet::del('exttool_'.$marker,\@deleted,$cdom,$cnum); |
&Apache::lonnet::del('exttool_'.$marker,\@deleted,$cdom,$cnum); |
} |
} |
return ($changed,$errormsg); |
return ($changed,$newgradable,$errormsg); |
} |
} |
|
|
sub extedit_form { |
sub extedit_form { |
Line 320 sub extedit_form {
|
Line 391 sub extedit_form {
|
ti => 'Title', |
ti => 'Title', |
al => 'Add Link', |
al => 'Add Link', |
at => 'Add Tool', |
at => 'Add Tool', |
|
dd => 'Defined in domain', |
|
dc => 'Defined in course', |
); |
); |
my $tabid = 'aa'; |
my $tabid = 'aa'; |
my $size = 60; |
my $size = 60; |
if ($supplementalflag) { |
if ($supplementalflag) { |
$tabid = 'ee'; |
$tabid = 'ee'; |
} |
} |
my ($formname,$formid,$toggle,$fieldsetid,$urlid,$dispdivstyle,$dimendivstyle, |
my ($formname,$formid,$toggle,$fieldsetid,$urlid,$subdivid,$dispdivstyle,$dimendivstyle, |
$windivstyle,$linktextstyle,$explanationstyle,$labelstyle,$titlestyle, |
$windivstyle,$linktextstyle,$explanationstyle,$labelstyle,$titlestyle, |
$legend,$urlelem,$toolelem,%toolattr); |
$appendstyle,$gradablestyle,$returnurlstyle,$subdivstyle,$legend,$urlelem, |
|
$toolelem,%toolattr); |
$formname = 'new'.$type; |
$formname = 'new'.$type; |
$toggle = $type; |
$toggle = $type; |
$fieldsetid = 'upload'.$type.'form'; |
$fieldsetid = 'external'.$type.'form'; |
$urlid = $type.'url'; |
$urlid = $type.'url'; |
map { $toolattr{$_} = $type.$_; } ('dispdiv','dimendiv','dimenwidth','dimenheight', |
map { $toolattr{$_} = $type.$_; } ('dispdiv','dimendiv','dimenwidth','dimenheight', |
'crstitlediv','crslabeldiv','crstitle','crslabel', |
'crstitlediv','crslabeldiv','crsappenddiv', |
'windiv','linktextdiv','explanationdiv','linktext', |
'gradablediv','returnurldiv','crstitle','crslabel', |
'explanation'); |
'crsappend','windiv','linktextdiv','explanationdiv', |
|
'linktext','explanation','providerurl','customreturnurl'); |
$dispdivstyle = 'display:none'; |
$dispdivstyle = 'display:none'; |
$dimendivstyle = 'display:none'; |
$dimendivstyle = 'display:none'; |
$windivstyle = 'display:none'; |
$windivstyle = 'display:none'; |
Line 344 sub extedit_form {
|
Line 419 sub extedit_form {
|
$explanationstyle = 'display:none'; |
$explanationstyle = 'display:none'; |
$labelstyle = 'display:none'; |
$labelstyle = 'display:none'; |
$titlestyle = 'display:none'; |
$titlestyle = 'display:none'; |
|
$appendstyle = 'display:none'; |
|
$gradablestyle = 'display:none'; |
|
$returnurlstyle = 'display:none'; |
|
$subdivstyle = 'display:block'; |
if ($supplementalflag) { |
if ($supplementalflag) { |
$formname = 'newsupp'.$type; |
$formname = 'newsupp'.$type; |
$toggle = 'supp'.$type; |
$toggle = 'supp'.$type; |
$fieldsetid = 'uploadsupp'.$type.'form'; |
$fieldsetid = 'externalsupp'.$type.'form'; |
$urlid = 'supp'.$type.'url'; |
$urlid = 'supp'.$type.'url'; |
map { $toolattr{$_} = 'supp'.$toolattr{$_}; } (keys(%toolattr)); |
map { $toolattr{$_} = 'supp'.$toolattr{$_}; } (keys(%toolattr)); |
} |
} |
my ($link,$legend,$active,$srcclass,$extsrc,$preview,$title,$save,$crstitle,$crslabel, |
my ($link,$legend,$active,$srcclass,$extsrc,$preview,$title,$save,$crstitle,$crslabel, |
$fieldsetstyle,$action,$hiddenelem,$form,$width,$height,$tooltarget, |
$crsappend,$fieldsetstyle,$action,$hiddenelem,$form,$width,$height,$tooltarget, |
$linktext,$explanation,%chkstate); |
$linktext,$explanation,$providerurl,$returnurl,$chkgrd,$chknogrd,%chkstate, |
|
$chknoreturn,$chkreturndef,$chkreturncust,$customreturn,$backtourl); |
$fieldsetstyle = 'display: none;'; |
$fieldsetstyle = 'display: none;'; |
$action = '/adm/coursedocs'; |
$action = '/adm/coursedocs'; |
my $protocol = ($ENV{'SERVER_PORT'} == 443?'https':'http'); |
my $protocol = ($ENV{'SERVER_PORT'} == 443?'https':'http'); |
Line 366 sub extedit_form {
|
Line 446 sub extedit_form {
|
$rows = 10; |
$rows = 10; |
$cols = 45; |
$cols = 45; |
if ($type eq 'tool') { |
if ($type eq 'tool') { |
$legend = $lt{'ee'}; |
|
} else { |
|
$legend = $lt{'te'}; |
$legend = $lt{'te'}; |
|
} else { |
|
$legend = $lt{'ee'}; |
} |
} |
$legend = '<legend>'.$legend.'</legend>'; |
$legend = '<legend>'.$legend.'</legend>'; |
if ($symb) { |
if ($symb) { |
Line 385 sub extedit_form {
|
Line 465 sub extedit_form {
|
$active = '<input type="hidden" name="active" value="'.$tabid.'" />'; |
$active = '<input type="hidden" name="active" value="'.$tabid.'" />'; |
} |
} |
$formname = 'edit'.$type.'_'.$residx; |
$formname = 'edit'.$type.'_'.$residx; |
$fieldsetid = 'upload'.$type.$residx; |
$fieldsetid = 'external'.$type.$residx; |
$urlid = $type.'url_'.$residx; |
$urlid = $type.'url_'.$residx; |
map { $toolattr{$_} .= '_'.$residx; } (keys(%toolattr)); |
map { $toolattr{$_} .= '_'.$residx; } (keys(%toolattr)); |
$srcclass = ' class="LC_nobreak"'; |
$srcclass = ' class="LC_nobreak"'; |
Line 400 sub extedit_form {
|
Line 480 sub extedit_form {
|
if ($type eq 'tool') { |
if ($type eq 'tool') { |
$link = $lt{'et'}; |
$link = $lt{'et'}; |
} |
} |
$link = '<a class="LC_menubuttons_link" href="javascript:toggleUpload('."'$toggle'".');">'.$link.'</a>'.$helpitem; |
$link = '<a class="LC_menubuttons_link" href="javascript:toggleExternal('."'$toggle'".');">'.$link.'</a>'.$helpitem; |
if ($type eq 'tool') { |
if ($type eq 'tool') { |
$legend = $lt{'te'}; |
$legend = $lt{'te'}; |
} else { |
} else { |
Line 418 sub extedit_form {
|
Line 498 sub extedit_form {
|
} else { |
} else { |
$orig_title = $lt{'et'}; |
$orig_title = $lt{'et'}; |
$save = $lt{'at'}; |
$save = $lt{'at'}; |
$orig_url = "/adm/$cdom/$cnum/new/exttool"; |
$orig_url = "/adm/$cdom/$cnum/new/ext\.tool"; |
} |
} |
$pathitem .= '<br />'; |
$pathitem .= '<br />'; |
} |
} |
Line 429 sub extedit_form {
|
Line 509 sub extedit_form {
|
my $class = 'LC_nobreak'; |
my $class = 'LC_nobreak'; |
if ($residx) { |
if ($residx) { |
$class = 'LC_docs_ext_edit LC_nobreak'; |
$class = 'LC_docs_ext_edit LC_nobreak'; |
if ($orig_url =~ m{^/adm/$cdom/$cnum/(\d+)/exttools?$}) { |
if ($orig_url =~ m{^/adm/$cdom/$cnum/(\d+)/ext\.tool$}) { |
my $marker = $1; |
my $marker = $1; |
my %toolhash=&Apache::lonnet::dump('exttool_'.$marker,$cdom,$cnum); |
my %toolhash=&Apache::lonnet::dump('exttool_'.$marker,$cdom,$cnum); |
if ($toolhash{'id'}) { |
my ($tooltype,$tool,$ltihash); |
|
if ($toolhash{'id'} =~/^c(\d+)$/) { |
|
$tool = $1; |
|
$tooltype = 'crs'; |
if (ref($ltitools) eq 'HASH') { |
if (ref($ltitools) eq 'HASH') { |
if (keys(%{$ltitools})) { |
if (ref($ltitools->{'crs'}) eq 'HASH') { |
if (ref($ltitools->{$toolhash{'id'}}) eq 'HASH') { |
$ltihash = $ltitools->{'crs'}->{$tool}; |
my $tooltitle = $ltitools->{$toolhash{'id'}}->{'title'}; |
} |
my $icon = $ltitools->{$toolhash{'id'}}->{'image'}; |
} |
my $image; |
} elsif ($toolhash{'id'} =~/^\d+$/) { |
if ($icon) { |
$tooltype = 'dom'; |
$image = '<img src="'.$icon.'" alt="'.$tooltitle.'" />'; |
$tool = $toolhash{'id'}; |
} |
if (ref($ltitools) eq 'HASH') { |
$tooltarget = $toolhash{'target'}; |
if (ref($ltitools->{'dom'}) eq 'HASH') { |
if ($tooltarget eq 'window') { |
$ltihash = $ltitools->{'dom'}->{$tool}; |
$dimendivstyle = 'display:block'; |
} |
$windivstyle = 'display:block'; |
} |
$chkstate{'window'} = 'checked="checked" '; |
} |
} else { |
if (($tool ne '') && (ref($ltihash) eq 'HASH')) { |
$chkstate{'iframe'} = 'checked="checked" '; |
my $tooltitle = $ltihash->{'title'}; |
} |
my $icon = $ltihash->{'image'}; |
$width = $toolhash{'width'}; |
my $image; |
$height = $toolhash{'height'}; |
if ($icon) { |
$linktext = $toolhash{'linktext'}; |
$image = '<img src="'.$icon.'" alt="'.$tooltitle.'" />'; |
$explanation = $toolhash{'explanation'}; |
} |
if (ref($ltitools->{$toolhash{'id'}}->{'crsconf'}) eq 'HASH') { |
if ($ltihash->{'url'} =~ m{://}) { |
if ($ltitools->{$toolhash{'id'}}->{'crsconf'}->{'title'}) { |
(my $prot,my $host,$providerurl) = ($ltihash->{'url'} =~ m{^([^/]+)://([^/]+)(|/.+)$}); |
$crstitle = $toolhash{'crstitle'}; |
} else { |
$titlestyle = 'display:inline'; |
$providerurl = $ltihash->{'url'}; |
} |
} |
if ($ltitools->{$toolhash{'id'}}->{'crsconf'}->{'label'}) { |
$tooltarget = $toolhash{'target'}; |
$crslabel = $toolhash{'crslabel'}; |
if ($tooltarget eq 'window') { |
$labelstyle = 'display:inline'; |
$dimendivstyle = 'display:block'; |
} |
$windivstyle = 'display:block'; |
if ($ltitools->{$toolhash{'id'}}->{'crsconf'}->{'target'}) { |
$chkstate{'window'} = 'checked="checked" '; |
$dispdivstyle = 'display:block'; |
} elsif ($tooltarget eq 'tab') { |
} |
$windivstyle = 'display:block'; |
if ($ltitools->{$toolhash{'id'}}->{'crsconf'}->{'linktext'}) { |
$chkstate{'tab'} = 'checked="checked" '; |
$linktextstyle = 'padding:0;display:inline'; |
} else { |
} |
$chkstate{'iframe'} = 'checked="checked" '; |
if ($ltitools->{$toolhash{'id'}}->{'crsconf'}->{'explanation'}) { |
} |
$explanationstyle = 'padding:0;display:inline'; |
$width = $toolhash{'width'}; |
} |
$height = $toolhash{'height'}; |
} |
$linktext = $toolhash{'linktext'}; |
$toolelem = '<span class="LC_nobreak">'.$image.' '.$tooltitle.'</span><br />'; |
$explanation = $toolhash{'explanation'}; |
|
if ($toolhash{'gradable'}) { |
|
$chkgrd = ' checked="checked"'; |
|
} else { |
|
$chknogrd = ' checked="checked"'; |
|
} |
|
if (ref($ltihash->{'crsconf'}) eq 'HASH') { |
|
if ($ltihash->{'crsconf'}->{'title'}) { |
|
$crstitle = $toolhash{'crstitle'}; |
|
$titlestyle = 'display:inline'; |
|
} |
|
if ($ltihash->{'crsconf'}->{'label'}) { |
|
$crslabel = $toolhash{'crslabel'}; |
|
$labelstyle = 'display:inline'; |
|
} |
|
if ($ltihash->{'crsconf'}->{'append'}) { |
|
$crsappend = $toolhash{'crsappend'}; |
|
$appendstyle = 'display:inline'; |
|
} |
|
if ($ltihash->{'crsconf'}->{'target'}) { |
|
$dispdivstyle = 'display:block'; |
|
} |
|
if ($ltihash->{'crsconf'}->{'linktext'}) { |
|
$linktextstyle = 'padding:0;display:inline'; |
|
} |
|
if ($ltihash->{'crsconf'}->{'explanation'}) { |
|
$explanationstyle = 'padding:0;display:inline'; |
|
} |
|
if ($ltihash->{'crsconf'}->{'returnurl'}) { |
|
$returnurl = $toolhash{'returnurl'}; |
|
$returnurlstyle = 'display:inline'; |
|
$backtourl = $toolhash{'backtourl'}; |
|
if ($returnurl eq 'none') { |
|
$chknoreturn = ' checked="checked"'; |
|
$customreturn = 'hidden'; |
|
} elsif (($returnurl eq 'custom') && ($backtourl ne '')) { |
|
$chkreturncust = ' checked="checked"'; |
|
$customreturn = 'text'; |
|
} else { |
|
$chkreturndef = ' checked="checked"'; |
|
$customreturn = 'hidden'; |
} |
} |
} |
} |
} |
} |
|
$toolelem = '<span class="LC_nobreak">'.$image.' '.$tooltitle.'</span><br />'; |
|
$gradablestyle = 'display:inline'; |
} |
} |
} |
} |
} else { |
} else { |
$toolelem = '<span class="LC_docs_ext_edit">'."\n". |
$subdivstyle = 'display:none'; |
'<select name="exttoolid" id="LC_exttoolid" onchange="javascript:updateExttool(this,'. |
my $toolradio = 'exttooltype'; |
'this.form,'."'$supplementalflag'".');"'.$disabled.'>'."\n". |
my $exttypeon = 'LC_exttoolon'; |
'<option value="" selected="selected">'.&mt('Select').'</option>'; |
my $exttypeoff = 'LC_exttooloff'; |
my %bynum; |
my $exttypeonsty = 'display:none'; |
|
my $exttypeoffsty = 'display:none'; |
|
my $exttypeofftext; |
|
if ($supplementalflag) { |
|
$toolradio = 'suppexttooltype'; |
|
$exttypeon = 'LC_exttoolonsupp'; |
|
$exttypeoff = 'LC_exttooloffsupp'; |
|
} |
|
my ($numcrstools,$numdomtools,$typeclick,%defcheck,%typedesc); |
|
%typedesc = ( |
|
crs => 'Defined in course', |
|
dom => 'Defined in domain', |
|
); |
|
#FIXME need crstype |
|
my $seloptions; |
|
$subdivid = 'LC_addtool'; |
|
if ($supplementalflag) { |
|
$subdivid = 'LC_addtoolsupp'; |
|
} |
if (ref($ltitools) eq 'HASH') { |
if (ref($ltitools) eq 'HASH') { |
foreach my $id (keys(%{$ltitools})) { |
if (ref($ltitools->{'crs'}) eq 'HASH') { |
if (ref($ltitools->{$id}) eq 'HASH') { |
$numcrstools = scalar(keys(%{$ltitools->{'crs'}})); |
my $order = $ltitools->{$id}->{'order'}; |
|
$bynum{$order} = [$id,$ltitools->{$id}]; |
|
} |
|
} |
} |
} |
if (ref($ltitools->{'dom'}) eq 'HASH') { |
foreach my $item (sort { $a <=> $b } keys(%bynum)) { |
$numdomtools = scalar(keys(%{$ltitools->{'dom'}})); |
if (ref($bynum{$item}) eq 'ARRAY') { |
} |
if (ref($bynum{$item}->[1]) eq 'HASH') { |
if ($numcrstools || $numdomtools) { |
my $tooltitle = $bynum{$item}->[1]->{'title'}; |
$typeclick = ' onclick="'. |
my $icon = $bynum{$item}->[1]->{'image'}; |
'javascript:updateExttoolSel(this.form,'."'$toolradio','$supplementalflag'".');"'; |
$toolelem .= '<option value="'.$bynum{$item}->[0].'">'.$tooltitle.'</option>'; |
} else { |
|
$exttypeoffsty = 'display:block'; |
|
$exttypeofftext = &mt('No external tools defined in either the domain or the course are available for selection.'); |
|
} |
|
if ($numcrstools && !$numdomtools) { |
|
$defcheck{'crs'} = ' checked="checked"'; |
|
$subdivstyle = 'display:block'; |
|
$exttypeonsty = 'display:block'; |
|
my $firstoption = '<option value="" selected="selected">'.&mt('Select').'</option>'; |
|
$seloptions = &ordered_tooloptions($ltitools->{'crs'}); |
|
if ($seloptions) { |
|
$seloptions = "$firstoption\n$seloptions"; |
} |
} |
|
$exttypeofftext = &mt('No external tools defined in the domain are available for selection.'); |
|
} elsif (!$numcrstools && $numdomtools) { |
|
$defcheck{'dom'} = ' checked="checked"'; |
|
$subdivstyle = 'display:block'; |
|
$exttypeonsty = 'display:block'; |
|
my $firstoption = '<option value="" selected="selected">'.&mt('Select').'</option>'; |
|
$seloptions = &ordered_tooloptions($ltitools->{'dom'}); |
|
if ($seloptions) { |
|
$seloptions = "$firstoption\n$seloptions"; |
|
} |
|
#FIXME need crstype |
|
$exttypeofftext = &mt('No external tools defined in the course are available for selection.'); |
} |
} |
} |
} |
$toolelem .= '</select></span><br />'; |
foreach my $type ('crs','dom') { |
|
$toolelem .= '<span class="LC_nobreak"> <label>'. |
|
'<input type="radio" name="'.$toolradio.'" value="'.$type.'"'.$defcheck{$type}. |
|
$typeclick.$disabled.' />'.$typedesc{$type}.'</label></span> '."\n"; |
|
} |
|
$toolelem .= '<div id="'.$exttypeon.'" style="'.$exttypeonsty.'">'. |
|
'<select name="exttoolid" onchange="javascript:updateExttool(this,'. |
|
'this.form,'."'$supplementalflag'".');"'.$disabled.'>'."\n". |
|
$seloptions. |
|
'</select><br /></div>'."\n". |
|
'<div id="'.$exttypeoff.'" style="'.$exttypeoffsty.'">'. |
|
$exttypeofftext. |
|
'<br /></div>'."\n"; |
$crslabel = $env{'course.'.$cdom.'_'.$cnum.'.internal.coursecode'}; |
$crslabel = $env{'course.'.$cdom.'_'.$cnum.'.internal.coursecode'}; |
$crstitle = $env{'course.'.$cdom.'_'.$cnum.'.description'}; |
$crstitle = $env{'course.'.$cdom.'_'.$cnum.'.description'}; |
|
$crsappend = ''; |
|
$returnurl = ''; |
|
$backtourl = ''; |
|
$customreturn = 'hidden'; |
|
$chknogrd = ' checked="checked"'; |
|
$chknoreturn = ''; |
|
$chkreturndef = ' checked="checked"'; |
|
$chkreturncust = ''; |
} |
} |
|
my $onclickreturl = ' onclick="updateReturnUrl('."this.form,'$toolattr{'customreturnurl'}','$toolattr{'returnurldiv'}','exttoolreturnurl'".');"'; |
$toolelem .= '<div id="'.$toolattr{'dispdiv'}.'" style="'.$dispdivstyle.'">'. |
$toolelem .= '<div id="'.$toolattr{'dispdiv'}.'" style="'.$dispdivstyle.'">'. |
'<span class="'.$class.'">'.&mt('Display target:').' '. |
'<span class="'.$class.'">'.&mt('Display target:').' '. |
'<label><input type="radio" name="exttooltarget" value="iframe" '.$chkstate{'iframe'}.'onclick="updateTooldim(this.form,'. |
'<label><input type="radio" name="exttooltarget" value="iframe" '.$chkstate{'iframe'}.'onclick="updateTooldim(this.form,'. |
"'$toolattr{dimendiv}','$toolattr{windiv}','$toolattr{dimenwidth}','$toolattr{dimenheight}', |
"'$toolattr{dimendiv}','$toolattr{windiv}','$toolattr{dimenwidth}','$toolattr{dimenheight}', |
'$toolattr{linktext}','$toolattr{explanation}'".');"'.$disabled.' />'.&mt('iframe').'</label>'.(' 'x2). |
'$toolattr{linktext}','$toolattr{explanation}'".');"'.$disabled.' />'.&mt('iframe').'</label>'.(' 'x2). |
|
'<label><input type="radio" name="exttooltarget" value="tab" '.$chkstate{'tab'}.'onclick="updateTooldim(this.form,'. |
|
"'$toolattr{dimendiv}','$toolattr{windiv}','$toolattr{dimenwidth}','$toolattr{dimenheight}', |
|
'$toolattr{linktext}','$toolattr{explanation}'".');"'.$disabled.' />'.&mt('tab').'</label>'.(' 'x2). |
'<label><input type="radio" name="exttooltarget" value="window" '.$chkstate{'window'}.'onclick="updateTooldim(this.form,'. |
'<label><input type="radio" name="exttooltarget" value="window" '.$chkstate{'window'}.'onclick="updateTooldim(this.form,'. |
"'$toolattr{dimendiv}','$toolattr{windiv}','$toolattr{dimenwidth}','$toolattr{dimenheight}', |
"'$toolattr{dimendiv}','$toolattr{windiv}','$toolattr{dimenwidth}','$toolattr{dimenheight}', |
'$toolattr{linktext}','$toolattr{explanation}'".');"'.$disabled.' />'.&mt('window').'</label></span>'. |
'$toolattr{linktext}','$toolattr{explanation}'".');"'.$disabled.' />'.&mt('window').'</label></span>'. |
Line 530 sub extedit_form {
|
Line 717 sub extedit_form {
|
$toolelem .= '<div id="'.$toolattr{'crslabeldiv'}.'" style="'.$labelstyle.'">'. |
$toolelem .= '<div id="'.$toolattr{'crslabeldiv'}.'" style="'.$labelstyle.'">'. |
'<span class="'.$class.'">'.&mt('Course label:').' '. |
'<span class="'.$class.'">'.&mt('Course label:').' '. |
'<input type="text" id="'.$toolattr{'crslabel'}.'" name="exttoollabel" value="'.$crslabel.'"'.$disabled.' /></span><br />'. |
'<input type="text" id="'.$toolattr{'crslabel'}.'" name="exttoollabel" value="'.$crslabel.'"'.$disabled.' /></span><br />'. |
'</div>'. |
'</div>'."\n". |
'<div id="'.$toolattr{'crstitlediv'}.'" style="'.$titlestyle.'">'. |
'<div id="'.$toolattr{'crstitlediv'}.'" style="'.$titlestyle.'">'. |
'<span class="'.$class.'">'.&mt('Course title:').' '. |
'<span class="'.$class.'">'.&mt('Course title:').' '. |
'<input type="text" id="'.$toolattr{'crstitle'}.'" name="exttooltitle" value="'.$crstitle.'"'.$disabled.' /></span><br />'. |
'<input type="text" id="'.$toolattr{'crstitle'}.'" name="exttooltitle" value="'.$crstitle.'"'.$disabled.' /></span><br />'. |
'</div>'; |
'</div>'."\n". |
|
'<div id="'.$toolattr{'crsappenddiv'}.'" style="'.$appendstyle.'">'. |
|
'<span class="'.$class.'">'.&mt('Append to URL[_1]', |
|
'<span id="'.$toolattr{'providerurl'}.'"> ('.$providerurl.')<br /></span>'). |
|
'<input type="text" id="'.$toolattr{'crsappend'}.'" size="30" name="exttoolappend" value="'.$crsappend.'"'.$disabled.' /></span><br />'. |
|
'</div>'."\n". |
|
'<div id="'.$toolattr{'gradablediv'}.'" style="'.$gradablestyle.'">'. |
|
'<span class="'.$class.'">'.&mt('Gradable').' '. |
|
'<label><input type="radio" name="exttoolgradable" value="1"'.$chkgrd.$disabled. |
|
' />'.&mt('Yes').'</label>'.(' 'x2). |
|
'<label><input type="radio" name="exttoolgradable" value="0"'.$chknogrd.$disabled. |
|
' />'.&mt('No').'</label></span><br /></div>'."\n". |
|
'<div id="'.$toolattr{'returnurldiv'}.'" style="'.$returnurlstyle.'">'. |
|
'<span class="'.$class.'">'.&mt('Include return URL').': '. |
|
'<label><input type="radio" name="exttoolreturnurl" value="none"'.$chknoreturn.$disabled.$onclickreturl.' />'. |
|
&mt('No').'</label>'.(' 'x2). |
|
'<label><input type="radio" name="exttoolreturnurl" value="default"'.$chkreturndef.$disabled.$onclickreturl.' />'. |
|
&mt('Yes, default URL').'</label>'.(' 'x2). |
|
'<label><input type="radio" name="exttoolreturnurl" value="custom"'.$chkreturncust.$disabled.$onclickreturl.' />'. |
|
&mt('Yes, specify URL').'</label></span><br />'."\n". |
|
'<input type="'.$customreturn.'" id="'.$toolattr{'customreturnurl'}.'" size="35" name="exttoolbacktourl" value="'.$backtourl.'"'.$disabled.' />'. |
|
'</div>'."\n"; |
} |
} |
my $chooser = $toolelem; |
my $chooser = $toolelem; |
if ($type eq 'ext') { |
if ($type eq 'ext') { |
$chooser = " |
$chooser = " |
<div> |
<div> |
<span$srcclass> |
<span$srcclass> |
|
<label> |
$extsrc |
$extsrc |
$urlelem |
$urlelem |
|
</label> |
$preview |
$preview |
</span> |
</span> |
</div> |
</div> |
"; |
"; |
} |
} |
|
my $idattr; |
|
unless ($subdivid eq '') { |
|
$idattr = 'id="'.$subdivid.'"'; |
|
} |
$form = <<ENDFORM; |
$form = <<ENDFORM; |
<form action="$action" method="post" name="$formname" id="$formid"> |
<form action="$action" method="post" name="$formname" id="$formid"> |
<fieldset id="$fieldsetid" style="$fieldsetstyle"> |
<fieldset id="$fieldsetid" style="$fieldsetstyle"> |
$legend |
$legend |
$active |
$active |
$chooser |
$chooser |
<div> |
<div $idattr style="$subdivstyle"> |
<span$srcclass> |
<span$srcclass> |
|
<label> |
$title |
$title |
<input type="text" size="$size" name="exttitle" value="$orig_title" $disabled /> |
<input type="text" size="$size" name="exttitle" value="$orig_title" $disabled /> |
|
</label> |
<input type="hidden" name="importdetail" value="" /> |
<input type="hidden" name="importdetail" value="" /> |
$pathitem |
$pathitem |
$hiddenelem |
$hiddenelem |
Line 574 ENDFORM
|
Line 790 ENDFORM
|
} |
} |
} |
} |
|
|
|
sub ordered_tooloptions { |
|
my ($toolsref) = @_; |
|
my ($seloptions,@ids,@titles); |
|
if (ref($toolsref) eq 'HASH') { |
|
my %bynum; |
|
foreach my $id (keys(%{$toolsref})) { |
|
if (ref($toolsref->{$id}) eq 'HASH') { |
|
my $order = $toolsref->{$id}->{'order'}; |
|
$bynum{$order} = [$id,$toolsref->{$id}]; |
|
} |
|
} |
|
foreach my $item (sort { $a <=> $b } keys(%bynum)) { |
|
if (ref($bynum{$item}) eq 'ARRAY') { |
|
if (ref($bynum{$item}->[1]) eq 'HASH') { |
|
my $tooltitle = $bynum{$item}->[1]->{'title'}; |
|
push(@titles,$tooltitle); |
|
push(@ids,$bynum{$item}->[0]); |
|
$seloptions .= '<option value="'.$bynum{$item}->[0].'">'.$tooltitle.'</option>'."\n"; |
|
} |
|
} |
|
} |
|
} |
|
if (wantarray) { |
|
return (\@ids,\@titles); |
|
} else { |
|
return $seloptions; |
|
} |
|
} |
|
|
sub display_editor { |
sub display_editor { |
my ($url,$folderpath,$symb,$idx,$type,$cdom,$cnum,$hostname) = @_; |
my ($url,$folderpath,$symb,$idx,$type,$cdom,$cnum,$hostname) = @_; |
my ($residx,$supplementalflag,$title,$pathitem,$output,$js,$navmap); |
my ($residx,$supplementalflag,$title,$pathitem,$output,$js,$navmap); |
Line 589 sub display_editor {
|
Line 834 sub display_editor {
|
my $path = &Apache::loncommon::symb_to_docspath($symb,\$navmap); |
my $path = &Apache::loncommon::symb_to_docspath($symb,\$navmap); |
$pathitem = '<input type="hidden" name="folderpath" value="'.&HTML::Entities::encode($path,'<>&"').'" />'; |
$pathitem = '<input type="hidden" name="folderpath" value="'.&HTML::Entities::encode($path,'<>&"').'" />'; |
} |
} |
my %ltitools; |
my (%ltitools,%tooltypes); |
if ($type eq 'tool') { |
if ($type eq 'tool') { |
%ltitools = &Apache::lonnet::get_domain_ltitools($cdom); |
my (%domtools,%crstools); |
|
%tooltypes = &Apache::loncommon::usable_exttools(); |
|
if ($tooltypes{'dom'}) { |
|
%domtools = &Apache::lonnet::get_domain_lti($cdom,'consumer'); |
|
} |
|
if ($tooltypes{'crs'}) { |
|
%crstools = &Apache::lonnet::get_course_lti($cnum,$cdom,'consumer'); |
|
} |
|
%ltitools = ( |
|
dom => \%domtools, |
|
crs => \%crstools, |
|
); |
} |
} |
$js = &Apache::lonhtmlcommon::scripttag(&extedit_javascript()); |
$js = &Apache::lonhtmlcommon::scripttag(&extedit_javascript()); |
my $args = { 'force_register' => $env{'form.register'} }; |
my $args = { 'force_register' => $env{'form.register'} }; |
Line 612 sub display_editor {
|
Line 868 sub display_editor {
|
|
|
sub extedit_javascript { |
sub extedit_javascript { |
my ($toolsref) = @_; |
my ($toolsref) = @_; |
my $toolsjs; |
my ($toolsjs,$exttoolnums,$exttooloptions); |
if (ref($toolsref) eq 'HASH') { |
if (ref($toolsref) eq 'HASH') { |
my $num = scalar(keys(%{$toolsref})); |
$toolsjs = " var ltitools = new Array();\n". |
$toolsjs = " var ltitools = new Array($num);\n". |
" var ltitoolsUrl = new Array();\n". |
" var ltitoolsTarget = new Array($num);\n". |
" var ltitoolsTarget = new Array();\n". |
" var ltitoolsWidth = new Array($num);\n". |
" var ltitoolsWidth = new Array();\n". |
" var ltitoolsHeight = new Array($num);\n". |
" var ltitoolsHeight = new Array();\n". |
" var ltitoolsLinkDef = new Array($num);\n". |
" var ltitoolsLinkDef = new Array();\n". |
" var ltitoolsExplainDef = new Array($num);\n". |
" var ltitoolsExplainDef = new Array();\n". |
" var ltitoolsDisplay = new Array($num);\n". |
" var ltitoolsDisplay = new Array();\n". |
" var ltitoolsLink = new Array($num);\n". |
" var ltitoolsLink = new Array();\n". |
" var ltitoolsExplain = new Array($num);\n". |
" var ltitoolsExplain = new Array();\n". |
" var ltitoolsLabel = new Array($num);\n". |
" var ltitoolsLabel = new Array();\n". |
" var ltitoolsTitle = new Array($num);\n"; |
" var ltitoolsTitle = new Array();\n". |
my $i = 0; |
" var ltitoolsAppend = new Array();\n". |
foreach my $key (sort { $a <=> $b } keys(%{$toolsref})) { |
" var ltitoolsReturnUrl = new Array();\n"; |
if (ref($toolsref->{$key}) eq 'HASH') { |
$exttoolnums = " var ltitoolsnum = new Array();\n". |
if (ref($toolsref->{$key}->{'display'}) eq 'HASH') { |
" var tooloptval = new Array();\n". |
my $target = $toolsref->{$key}->{'display'}->{'target'}; |
" var toolopttxt = new Array();\n"; |
my $width = $toolsref->{$key}->{'display'}->{'width'}; |
my $idx = 0; |
my $height = $toolsref->{$key}->{'display'}->{'height'}; |
foreach my $type ('crs','dom') { |
my $linkdef = $toolsref->{$key}->{'display'}->{'linktext'}; |
if (ref($toolsref->{$type}) eq 'HASH') { |
my $explaindef = $toolsref->{$key}->{'display'}->{'explanation'}; |
my $num = scalar(keys(%{$toolsref->{$type}})); |
$toolsjs .= ' ltitools['.$i.'] = '."'$key';\n". |
$toolsjs .= " ltitools[$idx] = new Array($num);\n". |
' ltitoolsTarget['.$i.'] = '."'$target';\n". |
" ltitoolsUrl[$idx] = new Array($num);\n". |
' ltitoolsWidth['.$i.'] = '."'$width';\n". |
" ltitoolsTarget[$idx] = new Array($num);\n". |
' ltitoolsHeight['.$i.'] = '."'$height';\n". |
" ltitoolsWidth[$idx] = new Array($num);\n". |
' ltitoolsLinkDef['.$i.'] = '."'$linkdef';\n". |
" ltitoolsHeight[$idx] = new Array($num);\n". |
' ltitoolsExplainDef['.$i.'] = '."'$explaindef';\n"; |
" ltitoolsLinkDef[$idx] = new Array($num);\n". |
} |
" ltitoolsExplainDef[$idx] = new Array($num);\n". |
if (ref($toolsref->{$key}->{'crsconf'}) eq 'HASH') { |
" ltitoolsDisplay[$idx] = new Array($num);\n". |
my $display = $toolsref->{$key}->{'crsconf'}->{'target'}; |
" ltitoolsLink[$idx] = new Array($num);\n". |
$toolsjs .= ' ltitoolsDisplay['.$i.'] = '."'$display';\n"; |
" ltitoolsExplain[$idx] = new Array($num);\n". |
my $linktext = $toolsref->{$key}->{'crsconf'}->{'linktext'}; |
" ltitoolsLabel[$idx] = new Array($num);\n". |
$toolsjs .= ' ltitoolsLink['.$i.'] = '."'$linktext';\n"; |
" ltitoolsTitle[$idx] = new Array($num);\n". |
my $explanation = $toolsref->{$key}->{'crsconf'}->{'explanation'}; |
" ltitoolsAppend[$idx] = new Array($num);\n". |
$toolsjs .= ' ltitoolsExplain['.$i.'] = '."'$explanation';\n"; |
" ltitoolsReturnUrl[$idx] = new Array($num);\n"; |
my $label = $toolsref->{$key}->{'crsconf'}->{'label'}; |
my $i=0; |
$toolsjs .= ' ltitoolsLabel['.$i.'] = '."'$label';\n"; |
foreach my $key (sort { $a <=> $b } keys(%{$toolsref->{$type}})) { |
my $title = $toolsref->{$key}->{'crsconf'}->{'title'}; |
if (ref($toolsref->{$type}->{$key}) eq 'HASH') { |
$toolsjs .= ' ltitoolsTitle['.$i.'] = '."'$title';\n"; |
if (ref($toolsref->{$type}->{$key}->{'display'}) eq 'HASH') { |
|
my $target = $toolsref->{$type}->{$key}->{'display'}->{'target'}; |
|
my $width = $toolsref->{$type}->{$key}->{'display'}->{'width'}; |
|
my $height = $toolsref->{$type}->{$key}->{'display'}->{'height'}; |
|
my $linkdef = $toolsref->{$type}->{$key}->{'display'}->{'linktext'}; |
|
my $explaindef = $toolsref->{$type}->{$key}->{'display'}->{'explanation'}; |
|
my $providerurl; |
|
if ($toolsref->{$type}->{$key}->{'url'} =~ m{://}) { |
|
(my $prot,my $host,$providerurl) = |
|
($toolsref->{$type}->{$key}->{'url'} =~ m{^([^/]+)://([^/]+)(|/.+)$}); |
|
} else { |
|
$providerurl = $toolsref->{$type}->{$key}->{'url'}; |
|
} |
|
$providerurl = &LONCAPA::map::qtunescape($providerurl); |
|
$toolsjs .= " ltitools[$idx][$i] = '$key';\n". |
|
" ltitoolsTarget[$idx][$i] = '$target';\n". |
|
" ltitoolsWidth[$idx][$i] = '$width';\n". |
|
" ltitoolsHeight[$idx][$i] = '$height';\n". |
|
" ltitoolsLinkDef[$idx][$i] = '$linkdef';\n". |
|
" ltitoolsExplainDef[$idx][$i] = '$explaindef';\n". |
|
" ltitoolsUrl[$idx][$i] = '$providerurl';\n"; |
|
} |
|
if (ref($toolsref->{$type}->{$key}->{'crsconf'}) eq 'HASH') { |
|
my $display = $toolsref->{$type}->{$key}->{'crsconf'}->{'target'}; |
|
$toolsjs .= " ltitoolsDisplay[$idx][$i] = '$display';\n"; |
|
my $linktext = $toolsref->{$type}->{$key}->{'crsconf'}->{'linktext'}; |
|
$toolsjs .= " ltitoolsLink[$idx][$i] = '$linktext';\n"; |
|
my $explanation = $toolsref->{$type}->{$key}->{'crsconf'}->{'explanation'}; |
|
$toolsjs .= " ltitoolsExplain[$idx][$i] = '$explanation';\n"; |
|
my $label = $toolsref->{$type}->{$key}->{'crsconf'}->{'label'}; |
|
$toolsjs .= " ltitoolsLabel[$idx][$i] = '$label';\n"; |
|
my $title = $toolsref->{$type}->{$key}->{'crsconf'}->{'title'}; |
|
$toolsjs .= " ltitoolsTitle[$idx][$i] = '$title';\n"; |
|
my $append = $toolsref->{$type}->{$key}->{'crsconf'}->{'append'}; |
|
$toolsjs .= " ltitoolsAppend[$idx][$i] = '$append';\n"; |
|
my $returnurl = $toolsref->{$type}->{$key}->{'crsconf'}->{'returnurl'}; |
|
$toolsjs .= " ltitoolsReturnUrl[$idx][$i] = '$returnurl';\n"; |
|
} |
|
} |
|
$i++; |
|
} |
|
my $firstoption = '<option value="" selected="selected">'.&mt('Select').'</option>'; |
|
my ($idsref,$titlesref) = &ordered_tooloptions($toolsref->{$type}); |
|
if ((ref($idsref) eq 'ARRAY') && (ref($titlesref) eq 'ARRAY')) { |
|
my $count = scalar(@{$idsref}); |
|
$exttooloptions .= " tooloptval[$idx] = new Array($count);\n". |
|
" toolopttxt[$idx] = new Array($count);\n"; |
|
for (my $n=0; $n<@{$idsref}; $n++) { |
|
my $id = $idsref->[$n]; |
|
my $text = $titlesref->[$n]; |
|
$exttooloptions .= " tooloptval[$idx][$n] = '$id';\n". |
|
" toolopttxt[$idx][$n] = '$text';\n"; |
|
} |
} |
} |
$i++; |
$exttoolnums .= " ltitoolsnum[$idx] = $i;\n"; |
} |
} |
|
$idx ++; |
} |
} |
} |
} |
my %js_lt = &Apache::lonlocal::texthash( |
my %js_lt = &Apache::lonlocal::texthash( |
invurl => 'Invalid URL', |
invurl => 'Invalid URL', |
titbl => 'Title is blank', |
titbl => 'Title is blank', |
invtool => 'Please select an external tool', |
invtool => 'Please select an external tool', |
|
mixfra => 'Show preview in pop-up? (http in https page + no framing)', |
|
mixonly => 'Show preview in pop-up? (http in https page)', |
|
fraonly => 'Show preview in pop-up? (framing disallowed)', |
|
nopopup => 'Pop-up blocked', |
|
nopriv => 'Insufficient privileges to use preview', |
|
badurl => 'URL is not: http://hostname/path or https://hostname/path', |
|
sele => 'Select', |
); |
); |
&js_escape(\%js_lt); |
&js_escape(\%js_lt); |
|
|
Line 700 function setExternal(extform,residx,type
|
Line 1016 function setExternal(extform,residx,type
|
} else { |
} else { |
title = escape(title); |
title = escape(title); |
var info = exttoolurl; |
var info = exttoolurl; |
|
var prefix = ''; |
|
if (supplementalflag == 1) { |
|
prefix = 'supp'; |
|
} |
if (residx == 0) { |
if (residx == 0) { |
var toolid = parseInt(extform.exttoolid.options[extform.exttoolid.selectedIndex].value); |
var toolid = parseInt(extform.exttoolid.options[extform.exttoolid.selectedIndex].value); |
if (isNaN(toolid)) { |
if (isNaN(toolid)) { |
alert("$js_lt{'invtool'}"); |
alert("$js_lt{'invtool'}"); |
return; |
return; |
} |
} |
info += ':'+toolid; |
var typeelem = extform.elements[prefix+'exttooltype']; |
} |
if (typeelem.length) { |
var prefix = ''; |
for (var i=0; i<typeelem.length; i++) { |
if (supplementalflag == 1) { |
if (typeelem[i].checked) { |
prefix = 'supp'; |
tooltype = typeelem[i].value; |
|
} |
|
} |
|
} |
|
if (tooltype == 'crs') { |
|
info += ':c'+toolid; |
|
} else { |
|
info += ':'+toolid; |
|
} |
} |
} |
var dispdiv = prefix+'tooldispdiv'; |
var dispdiv = prefix+'tooldispdiv'; |
var windiv = prefix+'toolwindiv'; |
var windiv = prefix+'toolwindiv'; |
Line 729 function setExternal(extform,residx,type
|
Line 1057 function setExternal(extform,residx,type
|
var height = extform.exttoolheight.value; |
var height = extform.exttoolheight.value; |
height.trim(); |
height.trim(); |
info += ':window:'+width+':'+height; |
info += ':window:'+width+':'+height; |
|
} else if (extform.exttooltarget[i].value == 'tab') { |
|
info += ':tab::'; |
} else { |
} else { |
info += ':iframe::'; |
info += ':iframe::'; |
} |
} |
Line 771 function setExternal(extform,residx,type
|
Line 1101 function setExternal(extform,residx,type
|
} |
} |
var labelinput = prefix+'toolcrslabel'; |
var labelinput = prefix+'toolcrslabel'; |
var titleinput = prefix+'toolcrstitle'; |
var titleinput = prefix+'toolcrstitle'; |
|
var appendinput = prefix+'toolcrsappend'; |
|
var customreturnurl = prefix+'customreturnurl'; |
if (residx > 0) { |
if (residx > 0) { |
labelinput += '_'+residx; |
labelinput += '_'+residx; |
titleinput += '_'+residx; |
titleinput += '_'+residx; |
|
appendinput += '_'+residx; |
|
customreturnurl += '_'+residx; |
} |
} |
if (document.getElementById(labelinput)) { |
if (document.getElementById(labelinput)) { |
var crslabel = document.getElementById(labelinput).value; |
var crslabel = document.getElementById(labelinput).value; |
Line 789 function setExternal(extform,residx,type
|
Line 1123 function setExternal(extform,residx,type
|
} else { |
} else { |
info += ':'; |
info += ':'; |
} |
} |
|
if (document.getElementById(appendinput)) { |
|
var crsappend = document.getElementById(appendinput).value; |
|
crsappend.trim(); |
|
info += ':'+escape(crsappend); |
|
} else { |
|
info += ':'; |
|
} |
|
var gradablediv = prefix+'toolgradablediv'; |
|
if (residx > 0) { |
|
gradablediv += '_'+residx; |
|
} |
|
if (document.getElementById(gradablediv)) { |
|
if (document.getElementById(gradablediv).style.display == 'inline') { |
|
if (extform.exttoolgradable.length) { |
|
for (var i=0; i<extform.exttoolgradable.length; i++) { |
|
if (extform.exttoolgradable[i].checked) { |
|
if (extform.exttoolgradable[i].value == '1') { |
|
info += ':1'; |
|
} else { |
|
info += ':'; |
|
} |
|
break; |
|
} |
|
} |
|
} else { |
|
info += ':'; |
|
} |
|
} else { |
|
info += ':'; |
|
} |
|
} else { |
|
info += ':'; |
|
} |
|
var returnurldiv = prefix+'toolreturnurldiv'; |
|
if (residx > 0) { |
|
returnurldiv += '_'+residx; |
|
} |
|
if (document.getElementById(returnurldiv)) { |
|
if (document.getElementById(returnurldiv).style.display == 'inline') { |
|
if (extform.exttoolreturnurl.length) { |
|
for (var i=0; i<extform.exttoolreturnurl.length; i++) { |
|
if (extform.exttoolreturnurl[i].checked) { |
|
if (extform.exttoolreturnurl[i].value == 'custom') { |
|
var backtourl = extform.exttoolbacktourl.value; |
|
backtourl.trim(); |
|
info += ':custom:'+escape(backtourl); |
|
} else if (extform.exttoolreturnurl[i].value == 'default') { |
|
info += ':default:'; |
|
} else { |
|
info += ':none:'; |
|
} |
|
} |
|
} |
|
} |
|
} else { |
|
info += '::'; |
|
} |
|
} else { |
|
info += '::'; |
|
} |
info=escape(info); |
info=escape(info); |
if (residx > 0) { |
if (residx > 0) { |
eval("extform.importdetail.value=title+'='+info+'='+residx;extform.submit();"); |
eval("extform.importdetail.value=title+'='+info+'='+residx;extform.submit();"); |
Line 799 function setExternal(extform,residx,type
|
Line 1193 function setExternal(extform,residx,type
|
} |
} |
|
|
function editext(residx,type) { |
function editext(residx,type) { |
if (document.getElementById('upload'+type+residx)) { |
if (document.getElementById('external'+type+residx)) { |
var curr = document.getElementById('upload'+type+residx).style.display; |
var curr = document.getElementById('external'+type+residx).style.display; |
if (curr == 'none') { |
if (curr == 'none') { |
disp = 'block'; |
disp = 'block'; |
} else { |
} else { |
disp = 'none'; |
disp = 'none'; |
} |
} |
document.getElementById('upload'+type+residx).style.display=disp; |
document.getElementById('external'+type+residx).style.display=disp; |
} |
} |
resize_scrollbox('contentscroll','1','1'); |
resize_scrollbox('contentscroll','1','1'); |
return; |
return; |
Line 817 function extUrlPreview(caller,protocol)
|
Line 1211 function extUrlPreview(caller,protocol)
|
var url = document.getElementById(caller).value; |
var url = document.getElementById(caller).value; |
if (regexp.test(url)) { |
if (regexp.test(url)) { |
var http_regex = /^http\:\/\//gi; |
var http_regex = /^http\:\/\//gi; |
|
var mixed = 0; |
|
var noiframe = 0; |
|
var nopriv = 0; |
|
var badurl = 0; |
|
var name = "externalpreview"; |
if ((protocol == 'https') && (http_regex.test(url))) { |
if ((protocol == 'https') && (http_regex.test(url))) { |
window.open(url,"externalpreview","height=400,width=500,scrollbars=1,resizable=1,menubar=0,location=1"); |
mixed = 1; |
} else { |
|
openMyModal(url,500,400,'yes'); |
|
} |
} |
|
var http = new XMLHttpRequest(); |
|
var lcurl = "/adm/exturlcheck"; |
|
var params = "exturl="+url; |
|
http.open("POST",lcurl, true); |
|
http.setRequestHeader("Content-type", "application/x-www-form-urlencoded"); |
|
http.onreadystatechange = function() { |
|
if (http.readyState == 4) { |
|
if (http.status == 200) { |
|
if (http.responseText.length > 0) { |
|
if (http.responseText == 1) { |
|
noiframe = 1; |
|
} else if (http.responseText == -1) { |
|
nopriv = 1; |
|
} else if (http.responseText == 0) { |
|
badurl = 1; |
|
} |
|
} |
|
openPreviewWindow(url,name,noiframe,mixed,nopriv,badurl); |
|
} |
|
} |
|
} |
|
http.send(params); |
} else { |
} else { |
alert("$js_lt{'invurl'}"); |
alert("$js_lt{'invurl'}"); |
} |
} |
} |
} |
} |
} |
|
|
|
var previewLCWindow = null; |
|
function openPreviewWindow(url,name,noiframe,mixed,nopriv,badurl) { |
|
if (previewLCWindow !=null) { |
|
previewLCWindow.close(); |
|
} |
|
if (badurl) { |
|
alert("$js_lt{'badurl'}"); |
|
} else if (nopriv) { |
|
alert("$js_lt{'nopriv'}"); |
|
} else if ((noiframe == 1) || (mixed == 1)) { |
|
var encurl = encodeURI(url); |
|
var msg; |
|
if (mixed == 1) { |
|
if (noiframe == 1) { |
|
msg = "$js_lt{'mixfra'}"; |
|
} else { |
|
msg = "$js_lt{'mixonly'}"; |
|
} |
|
} else { |
|
msg = "$js_lt{'fraonly'}"; |
|
} |
|
if (confirm(msg)) { |
|
previewLCWindow = window.open(url,name,"height=400,width=500,scrollbars=1,resizable=1,menubar=0,location=1"); |
|
if (previewLCWindow != null) { |
|
previewLCWindow.focus(); |
|
} else { |
|
alert("$js_lt{'nopopup'}"); |
|
} |
|
} |
|
} else { |
|
openMyModal(url,500,400,'yes'); |
|
} |
|
} |
|
|
|
function updateExttoolSel(form,radioname,supplementalflag) { |
|
var prefix = ''; |
|
var typepick; |
|
var radelem = form.elements[radioname]; |
|
if (radelem.length) { |
|
for (var i=0; i<radelem.length; i++) { |
|
if (radelem[i].checked) { |
|
if (radelem[i].value == 'crs') { |
|
typepick = 0; |
|
} else if (radelem[i].value == 'dom') { |
|
typepick = 1; |
|
} |
|
break; |
|
} |
|
} |
|
} |
|
if (supplementalflag == 1) { |
|
prefix = 'supp'; |
|
} |
|
$exttoolnums |
|
$exttooloptions |
|
if ((typepick == 0) || (typepick == 1)) { |
|
var selelem = form.elements['exttoolid']; |
|
var i, numopts = selelem.options.length -1; |
|
if (numopts >=0) { |
|
for (i = numopts; i >= 0; i--) { |
|
selelem.remove(i); |
|
} |
|
} |
|
if (ltitoolsnum[typepick]) { |
|
if ((Array.isArray(tooloptval[typepick])) && (Array.isArray(toolopttxt[typepick]))) { |
|
var len = tooloptval[typepick].length; |
|
if (len) { |
|
selelem.options[selelem.options.length] = new Option('$js_lt{sele}','',1,1); |
|
var j; |
|
for (j=0; j<len; j++) { |
|
selelem.options[selelem.options.length] = new Option(toolopttxt[typepick][j],tooloptval[typepick][j]); |
|
} |
|
selelem.selectedIndex = 0; |
|
} |
|
} |
|
if (document.getElementById('LC_exttoolon'+prefix)) { |
|
document.getElementById('LC_exttoolon'+prefix).style.display = 'block'; |
|
} |
|
if (document.getElementById('LC_exttooloff'+prefix)) { |
|
document.getElementById('LC_exttooloff'+prefix).style.display = 'none'; |
|
} |
|
if (document.getElementById('LC_addtool'+prefix)) { |
|
document.getElementById('LC_addtool'+prefix).style.display = 'block'; |
|
} |
|
} else { |
|
if (document.getElementById('LC_exttoolon'+prefix)) { |
|
document.getElementById('LC_exttoolon'+prefix).style.display = 'none'; |
|
} |
|
if (document.getElementById('LC_exttooloff'+prefix)) { |
|
document.getElementById('LC_exttooloff'+prefix).style.display = 'block'; |
|
} |
|
if (document.getElementById('LC_addtool'+prefix)) { |
|
document.getElementById('LC_addtool'+prefix).style.display = 'none'; |
|
} |
|
} |
|
if (selelem.options.length == 0) { |
|
selelem.options[selelem.options.length] = new Option('',''); |
|
selelem.selectedIndex = 0; |
|
} |
|
updateExttool(selelem,form,supplementalflag); |
|
resize_scrollbox('contentscroll','1','1'); |
|
} |
|
return; |
|
} |
|
|
function updateExttool(caller,form,supplementalflag) { |
function updateExttool(caller,form,supplementalflag) { |
var prefix = ''; |
var prefix = ''; |
if (supplementalflag == 1) { |
if (supplementalflag == 1) { |
Line 839 function updateExttool(caller,form,suppl
|
Line 1363 function updateExttool(caller,form,suppl
|
heightinput = prefix+'tooldimenheight'; |
heightinput = prefix+'tooldimenheight'; |
labeldiv = prefix+'toolcrslabeldiv'; |
labeldiv = prefix+'toolcrslabeldiv'; |
titlediv = prefix+'toolcrstitlediv'; |
titlediv = prefix+'toolcrstitlediv'; |
|
appenddiv = prefix+'toolcrsappenddiv'; |
|
gradablediv = prefix+'toolgradablediv'; |
|
returnurldiv = prefix+'toolreturnurldiv'; |
|
providerurl = prefix+'toolproviderurl'; |
labelinput = prefix+'toolcrslabel'; |
labelinput = prefix+'toolcrslabel'; |
titleinput = prefix+'toolcrstitle'; |
titleinput = prefix+'toolcrstitle'; |
|
appendinput = prefix+'toolcrsappend'; |
windiv = prefix+'toolwindiv'; |
windiv = prefix+'toolwindiv'; |
linktextdiv = prefix+'toollinktextdiv'; |
linktextdiv = prefix+'toollinktextdiv'; |
linktextinput = prefix+'toollinktext'; |
linktextinput = prefix+'toollinktext'; |
Line 871 function updateExttool(caller,form,suppl
|
Line 1400 function updateExttool(caller,form,suppl
|
if (document.getElementById(titlediv)) { |
if (document.getElementById(titlediv)) { |
document.getElementById(titlediv).style.display = 'none'; |
document.getElementById(titlediv).style.display = 'none'; |
} |
} |
|
if (document.getElementById(appenddiv)) { |
|
document.getElementById(appenddiv).style.display = 'none'; |
|
} |
|
if (document.getElementById(gradablediv)) { |
|
document.getElementById(gradablediv).style.display = 'none'; |
|
} |
|
if (document.getElementById(returnurldiv)) { |
|
document.getElementById(returnurldiv).style.display = 'none'; |
|
} |
} else { |
} else { |
if (ltitools.length > 0) { |
var tooltype = ''; |
for (var j=0; j<ltitools.length; j++) { |
var typeelem = form.elements[prefix+'exttooltype']; |
if (ltitools[j] == toolpick) { |
if (typeelem.length) { |
if (document.getElementById(dispdiv)) { |
for (var i=0; i<typeelem.length; i++) { |
if (ltitoolsDisplay[j]) { |
if (typeelem[i].checked) { |
document.getElementById(dispdiv).style.display = 'block'; |
tooltype = typeelem[i].value; |
if (form.exttooltarget.length) { |
} |
for (var k=0; k<form.exttooltarget.length; k++) { |
} |
if (form.exttooltarget[k].value == ltitoolsTarget[j]) { |
} |
form.exttooltarget[k].checked = true; |
if ((tooltype == 'crs') || (tooltype == 'dom')) { |
break; |
var i = 0; |
|
if (tooltype == 'dom') { |
|
i = 1; |
|
} |
|
if (ltitools[i].length > 0) { |
|
for (var j=0; j<ltitools[i].length; j++) { |
|
if (ltitools[i][j] == toolpick) { |
|
if (document.getElementById(dispdiv)) { |
|
if (ltitoolsDisplay[i][j]) { |
|
document.getElementById(dispdiv).style.display = 'block'; |
|
if (form.exttooltarget.length) { |
|
for (var k=0; k<form.exttooltarget.length; k++) { |
|
if (form.exttooltarget[k].value == ltitoolsTarget[i][j]) { |
|
form.exttooltarget[k].checked = true; |
|
break; |
|
} |
} |
} |
} |
} |
} |
} |
|
var dimen = 'none'; |
|
var dimenwidth = ''; |
|
var dimenheight = ''; |
|
if ((ltitoolsDisplay[i][j]) && (ltitoolsTarget[i][j] == 'window')) { |
|
dimen = 'block'; |
|
dimenwidth = ltitoolsWidth[i][j]; |
|
dimenheight = ltitoolsHeight[i][j]; |
|
} |
|
if (document.getElementById(dimendiv)) { |
|
document.getElementById(dimendiv).style.display = dimen; |
|
} |
|
if (document.getElementById(widthinput)) { |
|
document.getElementById(widthinput).value = dimenwidth; |
|
} |
|
if (document.getElementById(heightinput)) { |
|
document.getElementById(heightinput).value = dimenheight; |
|
} |
} |
} |
var dimen = 'none'; |
if (document.getElementById(windiv)) { |
var dimenwidth = ''; |
if ((ltitoolsTarget[i][j] == 'window') || (ltitoolsTarget[i][j] == 'tab')) { |
var dimenheight = ''; |
document.getElementById(windiv).style.display = 'block'; |
if ((ltitoolsDisplay[j]) && (ltitoolsTarget[j] == 'window')) { |
} else { |
dimen = 'block'; |
document.getElementById(windiv).style.display = 'none'; |
dimenwidth = ltitoolsWidth[j]; |
} |
dimenheight = ltitoolsHeight[j]; |
if (document.getElementById(linktextdiv)) { |
} |
if (ltitoolsLink[i][j]) { |
if (document.getElementById(dimendiv)) { |
document.getElementById(linktextdiv).style.display = 'inline'; |
document.getElementById(dimendiv).style.display = dimen; |
} else { |
} |
document.getElementById(linktextdiv).style.display = 'none'; |
if (document.getElementById(widthinput)) { |
} |
document.getElementById(widthinput).value = dimenwidth; |
} |
} |
if (document.getElementById(linktextinput)) { |
if (document.getElementById(heightinput)) { |
if (ltitoolsLink[i][j]) { |
document.getElementById(heightinput).value = dimenheight; |
document.getElementById(linktextinput).value = ltitoolsLinkDef[i][j]; |
} |
} else { |
} |
document.getElementById(linktextinput).value = ''; |
if (document.getElementById(windiv)) { |
} |
if (ltitoolsTarget[j] == 'window') { |
} |
document.getElementById(windiv).style.display = 'block'; |
if (document.getElementById(explanationdiv)) { |
} else { |
if (ltitoolsExplain[i][j]) { |
document.getElementById(windiv).style.display = 'none'; |
document.getElementById(explanationdiv).style.display = 'inline'; |
|
} else { |
|
document.getElementById(explanationdiv).style.display = 'none'; |
|
} |
|
} |
|
if (document.getElementById(explanationinput)) { |
|
if (ltitoolsExplain[i][j]) { |
|
document.getElementById(explanationinput).value = ltitoolsExplainDef[i][j]; |
|
} else { |
|
document.getElementById(explananationinput).value = ''; |
|
} |
|
} |
} |
} |
if (document.getElementById(linktextdiv)) { |
if (document.getElementById(labeldiv)) { |
if ((ltitoolsLink[j]) && (ltitoolsTarget[j] == 'window')) { |
if (ltitoolsLabel[i][j]) { |
document.getElementById(linktextdiv).style.display = 'inline'; |
document.getElementById(labeldiv).style.display = 'inline'; |
} else { |
} else { |
document.getElementById(linktextdiv).style.display = 'none'; |
document.getElementById(labeldiv).style.display = 'none'; |
} |
} |
} |
} |
if (document.getElementById(linktextinput)) { |
if (document.getElementById(titlediv)) { |
if ((ltitoolsLink[j]) && (ltitoolsTarget[j] == 'window')) { |
if (ltitoolsTitle[i][j]) { |
document.getElementById(linktextinput).value = ltitoolsLinkDef[j]; |
document.getElementById(titlediv).style.display = 'inline'; |
} else { |
} else { |
document.getElementById(linktextinput).value = ''; |
document.getElementById(titlediv).style.display = 'none'; |
} |
} |
} |
} |
if (document.getElementById(explanationdiv)) { |
if (document.getElementById(appenddiv)) { |
if ((ltitoolsExplain[j]) && (ltitoolsTarget[j] == 'window')) { |
if (ltitoolsAppend[i][j]) { |
document.getElementById(explanationdiv).style.display = 'inline'; |
document.getElementById(appenddiv).style.display = 'inline'; |
|
if (document.getElementById(providerurl)) { |
|
if ((ltitoolsUrl[i][j] != '') && (ltitoolsUrl[i][j] != null)) { |
|
document.getElementById(providerurl).innerHTML = ' ('+ltitoolsUrl[i][j]+')<br />'; |
|
} |
|
} |
} else { |
} else { |
document.getElementById(explanationdiv).style.display = 'none'; |
document.getElementById(appenddiv).style.display = 'none'; |
|
if (document.getElementById(providerurl)) { |
|
document.getElementById(providerurl).innerHTML = ''; |
|
} |
} |
} |
} |
} |
if (document.getElementById(explanationinput)) { |
if (document.getElementById(gradablediv)) { |
if ((ltitoolsExplain[j]) && (ltitoolsTarget[j] == 'window')) { |
if (supplementalflag != 1) { |
document.getElementById(explanationinput).value = ltitoolsExplainDef[j]; |
document.getElementById(gradablediv).style.display = 'inline'; |
|
} |
|
} |
|
if (document.getElementById(returnurldiv)) { |
|
if (ltitoolsReturnUrl[i][j]) { |
|
document.getElementById(returnurldiv).style.display = 'inline'; |
} else { |
} else { |
document.getElementById(explananationinput).value = ''; |
document.getElementById(returnurldiv).style.display = 'none'; |
} |
} |
} |
} |
|
break; |
} |
} |
if (document.getElementById(labeldiv)) { |
} |
if (ltitoolsLabel[j]) { |
} |
document.getElementById(labeldiv).style.display = 'inline'; |
} |
} else { |
} |
document.getElementById(labeldiv).style.display = 'none'; |
} |
} |
} |
} |
|
if (document.getElementById(titlediv)) { |
function updateReturnUrl(form,typeid,divid,radioname) { |
if (ltitoolsTitle[j]) { |
if ((document.getElementById(typeid)) && |
document.getElementById(titlediv).style.display = 'inline'; |
(document.getElementById(divid))) { |
} else { |
if (document.getElementById(divid).style.display == 'inline') { |
document.getElementById(titlediv).style.display = 'none'; |
var radelem = form.elements[radioname]; |
} |
var inputtype = 'hidden'; |
|
if (radelem.length) { |
|
for (var i=0; i<radelem.length; i++) { |
|
if (radelem[i].checked) { |
|
if (radelem[i].value == 'custom') { |
|
inputtype = 'text'; |
|
} else { |
|
inputtype = 'hidden'; |
} |
} |
break; |
break; |
} |
} |
} |
} |
} |
} |
|
document.getElementById(typeid).type = inputtype; |
} |
} |
} |
} |
|
return; |
} |
} |
|
|
function updateTooldim(form,dimendiv,windiv,widthinput,heightinput,linkinput,explaininput) { |
function updateTooldim(form,dimendiv,windiv,widthinput,heightinput,linkinput,explaininput) { |
Line 967 function updateTooldim(form,dimendiv,win
|
Line 1571 function updateTooldim(form,dimendiv,win
|
for (var i=0; i<form.exttooltarget.length; i++) { |
for (var i=0; i<form.exttooltarget.length; i++) { |
if (form.exttooltarget[i].checked) { |
if (form.exttooltarget[i].checked) { |
var dimen = 'none'; |
var dimen = 'none'; |
var linkconf = 'none'; |
var linkconf = 'none'; |
if (form.exttooltarget[i].value == 'window') { |
if (form.exttooltarget[i].value == 'window') { |
dimen = 'block'; |
dimen = 'block'; |
linkconf = 'block'; |
linkconf = 'block'; |
} else { |
} else { |
if (document.getElementById(widthinput)) { |
if (form.exttooltarget[i].value == 'tab') { |
document.getElementById(widthinput).value = ''; |
linkconf = 'block'; |
} |
} else { |
if (document.getElementById(heightinput)) { |
if (document.getElementById(widthinput)) { |
document.getElementById(heightinput).value = ''; |
document.getElementById(widthinput).value = ''; |
} |
} |
if (document.getElementById(linkinput)) { |
if (document.getElementById(heightinput)) { |
document.getElementById(linkinput).value = ''; |
document.getElementById(heightinput).value = ''; |
} |
} |
if (document.getElementById(explaininput)) { |
if (document.getElementById(linkinput)) { |
document.getElementById(explaininput).value = ''; |
document.getElementById(linkinput).value = ''; |
|
} |
|
if (document.getElementById(explaininput)) { |
|
document.getElementById(explaininput).value = ''; |
|
} |
} |
} |
} |
} |
if (document.getElementById(dimendiv)) { |
if (document.getElementById(dimendiv)) { |
Line 990 function updateTooldim(form,dimendiv,win
|
Line 1598 function updateTooldim(form,dimendiv,win
|
} |
} |
if (document.getElementById(windiv)) { |
if (document.getElementById(windiv)) { |
document.getElementById(windiv).style.display = linkconf; |
document.getElementById(windiv).style.display = linkconf; |
} |
} |
break; |
break; |
} |
} |
} |
} |