--- loncom/interface/lonsimplepage.pm 2008/03/20 12:06:51 1.56
+++ loncom/interface/lonsimplepage.pm 2008/12/22 00:00:51 1.63
@@ -1,7 +1,7 @@
# The LearningOnline Network
# Simple Page Editor
#
-# $Id: lonsimplepage.pm,v 1.56 2008/03/20 12:06:51 bisitz Exp $
+# $Id: lonsimplepage.pm,v 1.63 2008/12/22 00:00:51 riegler Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -31,6 +31,7 @@ package Apache::lonsimplepage;
use strict;
use Apache::Constants qw(:common);
use Apache::loncommon;
+use Apache::lontemplate;
use Apache::lonnet;
use Apache::lontexconvert;
use Apache::lonfeedback;
@@ -215,11 +216,11 @@ sub handler {
if ($forcestudent or $target eq 'tex') { $allowed=0; }
if ($allowed) {
- $r->print('
'.
- &Apache::loncommon::help_open_topic('Uploaded_Templates_TextBoxes',&mt('Help with filling in text boxes'))
- .'
'
+ $r->print(''.'
'
.''.&mt('Show Student View').''.
- &Apache::loncommon::help_open_topic('Uploaded_Templates_PublicView').'
');
+ &Apache::loncommon::help_open_topic('Uploaded_Templates_PublicView').
+ &Apache::loncommon::help_open_topic('Uploaded_Templates_TextBoxes',&mt('Help with filling in text boxes'))
+ .'
');
} elsif ($privileged and $target ne 'tex') {
my $edittext = &mt('Edit');
if ($group ne '') {
@@ -252,6 +253,13 @@ sub handler {
$syllabus{'uploaded.lastmodified'}=time;
&Apache::lonnet::put($db_name,\%syllabus,$dom,$crs);
}
+ if ($allowed && $env{'form.delupl'}) {
+ if ($syllabus{'uploaded.photourl'}) {
+ &Apache::lonnet::removeuploadedurl($syllabus{'uploaded.photourl'});
+ delete($syllabus{'uploaded.photourl'});
+ &Apache::lonnet::del('simplepage',['uploaded.photourl']);
+ }
+ }
if (($allowed) && ($env{'form.storesyl'})) {
foreach my $syl_field (keys(%syllabusfields)) {
my $field=$env{'form.'.$syl_field};
@@ -270,17 +278,17 @@ sub handler {
if ((($syllabus{'uploaded.lastmodified'}) &&
(($group ne '' && ($group_home_view || $group_edit_perm ||
$group_view_perm)) || ($group eq ''))) || ($allowed)) {
+ my $image;
if ($syllabus{'uploaded.photourl'}) {
&Apache::lonnet::allowuploaded('/adm/smppg',
$syllabus{'uploaded.photourl'});
- my $image='
';
if ($target eq 'tex') {
$image=&Apache::lonxml::xmlparse($r,'tex',$image);
- }
- $r->print($image);
- }
+ }
+ }
if ($allowed) {
$r->print(
'');
@@ -382,7 +402,7 @@ sub display_group_links {
my @available = ();
my %menu = ();
%{$menu{'email'}} = (
- text => 'Group e-mail',
+ text => 'Group Message',
href => '/adm/email?compose=group&group='.$group.
$refarg,
);
@@ -391,16 +411,16 @@ sub display_group_links {
href => '/adm/groupboards?group='.$group.$refarg,
);
%{$menu{'chat'}} = (
- text => 'Group chat',
+ text => 'Group Chat',
href => "javascript:group_chat('$group')",
);
%{$menu{'files'}} = (
- text => 'File repository',
+ text => 'File Repository',
href => '/adm/coursegrp_portfolio?group='.$group.
$refarg,
);
%{$menu{'roster'}} = (
- text => 'Membership roster',
+ text => 'Membership Roster',
href => '/adm/grouproster?group='.$group.$refarg,
);
foreach my $tool (sort(keys(%menu))) {
@@ -415,7 +435,7 @@ sub display_group_links {
$output .= ''.&mt($menu{$tool}{text}).' | ';
} else {
$output .= ''.
- $menu{$tool}{text}.' | ';
+ &mt($menu{$tool}{text}).'';
}
}
$output .= '';
@@ -429,7 +449,7 @@ sub display_group_links {
if ($context eq 'edit') {
$output = &mt('No group functionality.');
} else {
- $output = &mt('No group functionality (e.g., e-mail, discussion, chat or file upload) is currently available to you in this group: [_1].',&unescape($groupinfo{'description'}));
+ $output = &mt('No group functionality (e.g., e-mail, discussion, chat or file upload) is currently available to you in this group: [_1].',''.&unescape($groupinfo{'description'}).'');
}
if ($target eq 'tex') {
$r->print(&Apache::lonxml::xmlparse($r,'tex',$output));