--- loncom/interface/lonextresedit.pm 2012/11/27 23:34:41 1.1
+++ loncom/interface/lonextresedit.pm 2013/02/13 04:41:35 1.5
@@ -1,7 +1,7 @@
# The LearningOnline Network
# Documents
#
-# $Id: lonextresedit.pm,v 1.1 2012/11/27 23:34:41 raeburn Exp $
+# $Id: lonextresedit.pm,v 1.5 2013/02/13 04:41:35 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -57,9 +57,10 @@ sub handler {
my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
my $chome = $env{'course.'.$env{'request.course.id'}.'.home'};
my ($supplementalflag,$updated,$output,$errormsg,$residx,$url,$title,$symb);
- if ((($env{'form.folderpath'} =~ /^supplemental/) && ($env{'form.suppurl'})) ||
- ($env{'form.symb'} =~ /^uploaded/)) {
- $supplementalflag = 1;
+ if (($env{'form.folderpath'} =~ /^supplemental/) && ($env{'form.suppurl'})) {
+ $supplementalflag = 1;
+ }
+ if (($supplementalflag) || ($env{'form.symb'} =~ /^uploaded/)) {
($updated,$output,$errormsg,$residx,$url,$title,$symb) =
&process_changes($supplementalflag,$cdom,$cnum,$chome);
if ($supplementalflag) {
@@ -69,6 +70,7 @@ sub handler {
if ($title ne $env{'form.title'}) {
$env{'form.title'} = $title;
}
+ $env{'form.idx'} = $residx;
} else {
if ($symb ne $env{'form.symb'}) {
$env{'form.symb'} = $symb;
@@ -99,20 +101,14 @@ sub handler {
sub process_changes {
my ($supplementalflag,$cdom,$cnum,$chome) = @_;
my ($folder,$container,$output,$errormsg,$updated,$symb,$oldidx,$oldurl,
- $oldtitle,$residx,$newurl,$newtitle);
+ $oldtitle,$newidx,$newurl,$newtitle,$residx,$url,$title);
if ($env{'form.symb'}) {
$symb = $env{'form.symb'};
- (my $map,$oldidx,my $url)=&Apache::lonnet::decode_symb($symb);
+ (my $map,$oldidx,$oldurl)=&Apache::lonnet::decode_symb($symb);
if ($map =~ m{^uploaded/$cdom/$cnum/(default(_\d+|))\.(sequence|page)$}) {
$folder = $1;
$container = $3;
}
- if ($url =~ m{^ext/(.+)$}) {
- $oldurl = $1;
- if ($oldurl !~ m{^https://}) {
- $oldurl = 'http://'.$oldurl;
- }
- }
$oldtitle = &Apache::lonnet::gettitle($env{'form.symb'});
} elsif ($env{'form.folderpath'}) {
$folder = &unescape( (split('&',$env{'form.folderpath'}))[-2] );
@@ -121,18 +117,33 @@ sub process_changes {
$container = 'sequence';
$supplementalflag = 1;
}
+ if ($oldurl =~ m{^ext/(.+)$}) {
+ my $external = $1;
+ if ($external =~ m{^https://}) {
+ $oldurl = $external;
+ } else {
+ $oldurl = 'http://'.$oldurl;
+ }
+ }
+ $url = $oldurl;
+ $title = $oldtitle;
+ if ($env{'form.importdetail'}) {
+ ($newtitle,$newurl,$newidx) =
+ map {&unescape($_)} split(/\=/,$env{'form.importdetail'});
+ }
+ if ($supplementalflag) {
+ $residx = $newidx;
+ } else {
+ $residx = $oldidx;
+ }
if ($folder && $container) {
if ($env{'form.importdetail'}) {
- my ($errtext,$fatal,$mismatchedid);
- ($newtitle,$newurl, $residx) =
- map {&unescape($_)} split(/\=/,$env{'form.importdetail'});
- if (!$supplementalflag && $oldidx) {
- if ($oldidx != $residx) {
- $mismatchedid = 1;
- $residx = $oldidx;
- }
+ my ($errtext,$fatal,$mismatchedid,@imports);
+ if (!$supplementalflag) {
+ if (($oldidx) && ($oldidx != $newidx)) {
+ $mismatchedid = 1;
+ }
}
- my @imports;
if ($mismatchedid) {
$errormsg = 'Wrong item identifier';
} elsif (($newtitle eq $oldtitle) && ($newurl eq $oldurl)) {
@@ -152,9 +163,15 @@ sub process_changes {
$errormsg = &mt('Update failed: [_1].',$errtext);
} else {
$updated = 1;
+ $title = $newtitle;
+ if ($newurl ne $oldurl) {
+ $url = $newurl;
+ $newurl =~ s{^http://}{};
+ $newurl = "ext/$newurl";
+ }
if (!$supplementalflag) {
if ($newurl ne $oldurl) {
- $symb = &Apache::lonnet::encode_symb($map,$residx,"ext/$newurl");
+ $symb = &Apache::lonnet::encode_symb($map,$residx,$newurl);
} else {
$symb = $env{'form.symb'};
if ($symb) {
@@ -162,12 +179,14 @@ sub process_changes {
}
}
}
- my ($furl,$ferr) = &Apache::lonuserstate::readmap("$cdom/$cnum");
+ 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);
+ unless ($supplementalflag) {
+ &Apache::loncommon::update_content_constraints($cdom,$cnum,$chome,$cdom.'_'.$cnum);
+ }
}
}
}
@@ -178,11 +197,7 @@ sub process_changes {
} else {
$errormsg = &mt('Information about current external resource is incomplete.');
}
- if ($updated) {
- return ($updated,$output,$errormsg,$residx,$newurl,$newtitle,$symb);
- } else {
- return ($updated,$output,$errormsg,$residx,$oldurl,$oldtitle,$symb);
- }
+ return ($updated,$output,$errormsg,$residx,$url,$title,$symb);
}
sub extedit_form {
@@ -211,7 +226,7 @@ sub extedit_form {
$urlid = 'suppexturl';
}
my ($link,$legend,$active,$srcclass,$extsrc,$preview,$title,$save,
- $fieldsetstyle,$action,$hiddenelem);
+ $fieldsetstyle,$action,$hiddenelem,$form);
$fieldsetstyle = 'display: none;';
$action = '/adm/coursedocs';
if ($residx) {
@@ -228,9 +243,9 @@ sub extedit_form {
&HTML::Entities::encode(&escape($orig_title),'<>&"').'" />';
}
} else {
- $link = ''.$lt{'ed'}.'';
+ $link = ''.$lt{'ed'}.' '."\n";
$size = 40;
- $active = '';
+ $active = '';
}
$formname = "editext_$residx";
$fieldsetid = "uploadext$residx";
@@ -252,10 +267,9 @@ sub extedit_form {
$save = $lt{'al'};
$pathitem .= '
';
}
- return <
-
+
ENDFORM
-
+ if (wantarray) {
+ return ($link,$form);
+ } else {
+ return $link.$form;
+ }
}
sub display_editor {
@@ -291,11 +309,7 @@ sub display_editor {
&Apache::lonnet::decode_symb($symb);
$title = &Apache::lonnet::gettitle($symb);
my $path = &Apache::lonnet::getdocspath($symb);
- if ($map =~ /\.page$/) {
- $pathitem = '';
- } else {
- $pathitem = '';
- }
+ $pathitem = '';
}
my $js = &Apache::lonhtmlcommon::scripttag(&extedit_javascript());
my $args = { 'force_register' => $env{'form.register'} };