Annotation of loncom/interface/lontemplate.pm, revision 1.49
1.2 neumanie 1: # The LearningOnline Network
2: # "Template" Functions to generate html output
3: #
1.49 ! raeburn 4: # $Id: lontemplate.pm,v 1.48 2013/05/09 05:47:57 raeburn Exp $
1.2 neumanie 5: #
6: # Copyright Michigan State University Board of Trustees
7: #
8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
9: #
10: # LON-CAPA is free software; you can redistribute it and/or modify
11: # it under the terms of the GNU General Public License as published by
12: # the Free Software Foundation; either version 2 of the License, or
13: # (at your option) any later version.
14: #
15: # LON-CAPA is distributed in the hope that it will be useful,
16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18: # GNU General Public License for more details.
19: #
20: # You should have received a copy of the GNU General Public License
21: # along with LON-CAPA; if not, write to the Free Software
22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23: #
24: # /home/httpd/html/adm/gpl.txt
25: #
26: # http://www.lon-capa.org/
27: #
28:
1.1 amueller 29: package Apache::lontemplate;
30:
31:
32: use strict;
1.44 faziophi 33: use utf8;
1.1 amueller 34: use Apache::Constants qw(:common);
35: use Apache::loncommon;
36: use Apache::lonnet;
1.5 ehlerst 37: use Apache::lonxml;
38: use Apache::lonspeller;
1.1 amueller 39: use Apache::lontexconvert;
40: use Apache::lonfeedback;
41: use Apache::lonrss();
42: use Apache::lonlocal;
1.44 faziophi 43: use Apache::lonhtmlgateway;
1.1 amueller 44: use Apache::lonmsgdisplay();
45: use HTML::Entities();
46:
1.42 faziophi 47: use constant {
48: RICH_TEXT_ALWAYS_ON => 'LC_richAlwaysOn',
49: RICH_TEXT_ALWAYS_OFF => 'LC_richAlwaysOff',
50: RICH_TEXT_DEFAULT_ON => 'LC_richDefaultOn',
51: RICH_TEXT_DETECT_HTML => 'LC_richDetectHtml',
52: RICH_TEXT_DEFAULT_OFF => 'LC_richDefaultOff'
53: };
1.7 ehlerst 54:
1.33 bisitz 55: sub start_columnSection {
1.7 ehlerst 56: my ($r) = @_;
1.13 harmsja 57: $r->print('<div class="LC_columnSection">');
1.7 ehlerst 58: }
59:
1.33 bisitz 60: sub end_columnSection {
1.7 ehlerst 61: my ($r) = @_;
62: $r->print('</div>');
63: }
64:
1.33 bisitz 65: sub print_aboutme_content_template {
1.5 ehlerst 66: my ($r,$allowed,$target,$syllabusfields_ref,$syllabus_ref) = @_;
67: my %syllabusfields = %{$syllabusfields_ref};
68: my %syllabus = %{$syllabus_ref};
1.28 bisitz 69:
1.5 ehlerst 70: foreach my $field (sort(keys(%syllabusfields))) {
71: if (($syllabus{$field}) || ($allowed)) {
72: my $message=$syllabus{$field};
1.40 faziophi 73: if (!&Apache::lonfeedback::contains_block_html($message)) {
74: &Apache::lonfeedback::newline_to_br(\$message);
75: }
1.41 www 76: $message=&Apache::lonhtmlcommon::raw_href_to_link($message);
1.5 ehlerst 77: if ($allowed) {
78: $message=&Apache::lonspeller::markeduptext($message);
79: }
80: $message=&Apache::lontexconvert::msgtexconverted($message);
81: if ($target ne 'tex') {
1.15 neumanie 82: if($field eq 'aaa_contactinfo') {
1.16 neumanie 83: $r->print('<div class="LC_Clear_AboutMe_Image" > </div>');
1.36 bisitz 84: &print_template($r,$syllabusfields{$field},$message,$allowed,'LC_Box');
1.33 bisitz 85: } else {
1.36 bisitz 86: &print_template($r,$syllabusfields{$field},$message,$allowed,'LC_Box');
1.15 neumanie 87: }
1.38 amueller 88: if($allowed) {
89: &print_editbox_template($r,$syllabus{$field},$field);
90: }
1.31 bisitz 91:
1.5 ehlerst 92: } else {
93: $r->print('\\\\\textbf{'.$syllabusfields{$field}.'}\\\\'.
94: &Apache::lonxml::xmlparse($r,'tex',$message).'\\\\');
95: }
96: }
97: }
1.28 bisitz 98:
1.5 ehlerst 99: }
1.1 amueller 100:
1.33 bisitz 101: sub send_message {
1.8 ehlerst 102: my ($r,$cnum,$cdom) = @_;
1.39 raeburn 103: my $linktext = &mt('Send message to [_1]',
104: &Apache::loncommon::plainname($cnum,$cdom));
1.38 amueller 105: my $image = qq{<img name="Send_message" alt="Send message symbol" src="/res/adm/pages/mail-message-new.png" border="none" align="middle" />};
1.39 raeburn 106: return &Apache::loncommon::messagewrapper($image,$cnum,$cdom).' '.&Apache::loncommon::messagewrapper($linktext,$cnum,$cdom);
1.8 ehlerst 107: }
1.7 ehlerst 108:
1.35 bisitz 109: sub print_template {
1.28 bisitz 110: my ($r,$topic,$content, $allowed,$boxclass) = @_;
111: $r->print('<div class="'.$boxclass.'">');
1.13 harmsja 112: $r->print('<h4 class="LC_hcell">'.$topic.'</h4>');
1.35 bisitz 113: $r->print($content);
1.1 amueller 114: $r->print('</div>');
115: }
1.33 bisitz 116:
1.35 bisitz 117: sub print_start_template {
1.47 raeburn 118: my ($r,$topic,$boxclass,$id,$display) = @_;
119: my $idattrib;
120: if ($id ne '') {
121: $idattrib = ' id="'.$id.'"';
122: }
123: $r->print('<div class="'.$boxclass.'"'.$idattrib.$display.'>');
1.20 neumanie 124: $r->print('<h4 class="LC_hcell">'.$topic.'</h4>');
125: }
1.33 bisitz 126:
1.35 bisitz 127: sub print_end_template {
1.20 neumanie 128: my ($r) = @_;
129: $r->print('</div>');
130: }
1.33 bisitz 131:
1.35 bisitz 132: sub print_editbox_template {
1.1 amueller 133: my ($r,$content,$field) = @_;
1.10 ehlerst 134: $r->print('<textarea cols="81" rows="6" name="'.$field.'">'.
1.46 raeburn 135: &HTML::Entities::encode($content,'"&<>').
136: '</textarea><br />'."\n");
137: &print_saveall_template($r);
1.1 amueller 138: }
1.27 bisitz 139:
1.42 faziophi 140: sub print_textarea_template {
141: my ($r, $content, $field, $wysiwyg) = @_;
142: $r->print('<textarea cols="81" rows="6" class="'.$wysiwyg.'" id="'.$field.'" name="'.$field.'">'.
143: &HTML::Entities::encode($content, '"&<>').
144: '</textarea><br />');
145: }
146:
147: sub print_saveall_template {
148: my ($r) = @_;
149: $r->print('<input type="submit" name="storesyl" value="'.&mt('Save All').'" />');
150: }
151:
1.43 faziophi 152: sub print_template_fields {
1.47 raeburn 153: my ($r, $data_ref, $fields_ref, $target, $allowed, $default_rich_text, $custom_handlers_ref, $group,
1.48 raeburn 154: $displayref,$noshowref) = @_;
1.43 faziophi 155: my @html_ids = ();
156: my %data = %{$data_ref};
157: my %fields = %{$fields_ref};
158: my %custom_handlers = %{$custom_handlers_ref};
1.48 raeburn 159: my (%displays,%noshow);
1.47 raeburn 160: if (ref($displayref) eq 'HASH') {
161: %displays = %{$displayref};
162: }
1.48 raeburn 163: if (ref($noshowref) eq 'HASH') {
164: %noshow = %{$noshowref};
165: }
1.43 faziophi 166: foreach my $field (sort(keys(%fields))) {
167: my $message = $data{$field} if (($data{$field}=~/\w/) || ($allowed));
1.44 faziophi 168: my $legacy = 1;
1.47 raeburn 169: my $display = $displays{$field};
1.48 raeburn 170: unless ($allowed) {
171: next if ($noshow{$field});
172: }
1.44 faziophi 173: my $gateway = Apache::lonhtmlgateway->new($target);
174: $message = &Encode::decode('utf8', $message);
175: $message = $gateway->process_outgoing_html($message, $legacy);
176: if ((%custom_handlers) && ($custom_handlers{$field})) {
1.47 raeburn 177: $custom_handlers{$field}->($r, $field, $message, $group, $data_ref, $fields_ref, $target, $allowed, $display);
1.43 faziophi 178: } else {
179: if (($data{$field}=~/\w/) || ($allowed)) {
180: if ($target ne 'tex') {
181: #output of syllabusfields will be generated here.
1.47 raeburn 182: &Apache::lontemplate::print_start_template($r,$fields{$field},'LC_Box','box_'.$field,$display);
1.43 faziophi 183: $r->print($message);
184: if ($allowed) {
185: $r->print("<br /><div>");
186: &Apache::lontemplate::print_textarea_template($r, $data{$field},
187: $field, $default_rich_text);
1.46 raeburn 188: &print_saveall_template($r);
1.43 faziophi 189: $r->print("</div>");
190: }
191: &Apache::lontemplate::print_end_template($r);
192: } else {
193: my $safeinit;
1.45 www 194: if ($fields{$field}=~/\w/) {
195: $r->print(&Apache::lonxml::xmlparse($r,'tex','<h3>'.$fields{$field}.'</h3>'));
196: } else {
197: $r->print(&Apache::lonxml::xmlparse($r,'tex','<br />'));
198: }
199: $r->print(&Apache::lonxml::xmlparse($r,'tex',$message));
1.43 faziophi 200: }
201: push(@html_ids,$field);
202: }
203: }
1.44 faziophi 204: undef $gateway;
1.43 faziophi 205: }
206:
207: return @html_ids;
208: }
209:
1.1 amueller 210: 1;
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>