[LON-CAPA-cvs] cvs: loncom /interface lonmeta.pm
albertel
lon-capa-cvs@mail.lon-capa.org
Thu, 06 Oct 2005 22:20:32 -0000
albertel Thu Oct 6 18:20:32 2005 EDT
Modified files:
/loncom/interface lonmeta.pm
Log:
- don't show the internal file names
- remove the /editupload from the displayed uri
Index: loncom/interface/lonmeta.pm
diff -u loncom/interface/lonmeta.pm:1.109 loncom/interface/lonmeta.pm:1.110
--- loncom/interface/lonmeta.pm:1.109 Thu Oct 6 18:16:32 2005
+++ loncom/interface/lonmeta.pm Thu Oct 6 18:20:30 2005
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Metadata display handler
#
-# $Id: lonmeta.pm,v 1.109 2005/10/06 22:16:32 albertel Exp $
+# $Id: lonmeta.pm,v 1.110 2005/10/06 22:20:30 albertel Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -932,6 +932,7 @@
my $fn=&Apache::lonnet::filelocation('',$uri);
$disuri=~s/^\/\~/\/priv\//;
$disuri=~s/\.meta$//;
+ $disuri=~s|^/editupload||;
my $target=$uri;
$target=~s/^\/\~/\/res\/$env{'request.role.domain'}\//;
$target=~s/\.meta$//;
@@ -985,7 +986,7 @@
%Apache::lonpublisher::metadatakeys=();
my $result=&Apache::lonnet::getfile($fn);
if ($result == -1){
- $r->print('Creating new '.$fn);
+ $r->print('Creating new '.$disuri);
} else {
&Apache::lonpublisher::metaeval($result);
}