Annotation of loncom/interface/loncommon.pm, revision 1.370
1.10 albertel 1: # The LearningOnline Network with CAPA
1.1 albertel 2: # a pile of common routines
1.10 albertel 3: #
1.370 ! www 4: # $Id: loncommon.pm,v 1.369 2006/05/11 19:04:31 www Exp $
1.10 albertel 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: #
1.1 albertel 28:
29: # Makes a table out of the previous attempts
1.2 albertel 30: # Inputs result_from_symbread, user, domain, course_id
1.16 harris41 31: # Reads in non-network-related .tab files
1.1 albertel 32:
1.35 matthew 33: # POD header:
34:
1.45 matthew 35: =pod
36:
1.35 matthew 37: =head1 NAME
38:
39: Apache::loncommon - pile of common routines
40:
41: =head1 SYNOPSIS
42:
1.112 bowersj2 43: Common routines for manipulating connections, student answers,
44: domains, common Javascript fragments, etc.
1.35 matthew 45:
1.112 bowersj2 46: =head1 OVERVIEW
1.35 matthew 47:
1.112 bowersj2 48: A collection of commonly used subroutines that don't have a natural
49: home anywhere else. This collection helps remove
1.35 matthew 50: redundancy from other modules and increase efficiency of memory usage.
51:
52: =cut
53:
54: # End of POD header
1.1 albertel 55: package Apache::loncommon;
56:
57: use strict;
1.258 albertel 58: use Apache::lonnet;
1.46 matthew 59: use GDBM_File;
1.51 www 60: use POSIX qw(strftime mktime);
1.82 www 61: use Apache::lonmenu();
1.117 www 62: use Apache::lonlocal;
1.139 matthew 63: use HTML::Entities;
1.334 albertel 64: use Apache::lonhtmlcommon();
65: use Apache::loncoursedata();
1.344 albertel 66: use Apache::lontexconvert();
1.369 www 67: use LONCAPA;
1.117 www 68:
1.22 www 69: my $readit;
70:
1.157 matthew 71: ##
72: ## Global Variables
73: ##
1.46 matthew 74:
1.20 www 75: # ----------------------------------------------- Filetypes/Languages/Copyright
1.12 harris41 76: my %language;
1.124 www 77: my %supported_language;
1.12 harris41 78: my %cprtag;
1.192 taceyjo1 79: my %scprtag;
1.351 www 80: my %fe; my %fd; my %fm;
1.41 ng 81: my %category_extensions;
1.12 harris41 82:
1.63 www 83: # ---------------------------------------------- Designs
84:
85: my %designhash;
86:
1.46 matthew 87: # ---------------------------------------------- Thesaurus variables
1.144 matthew 88: #
89: # %Keywords:
90: # A hash used by &keyword to determine if a word is considered a keyword.
91: # $thesaurus_db_file
92: # Scalar containing the full path to the thesaurus database.
1.46 matthew 93:
94: my %Keywords;
95: my $thesaurus_db_file;
96:
1.144 matthew 97: #
98: # Initialize values from language.tab, copyright.tab, filetypes.tab,
99: # thesaurus.tab, and filecategories.tab.
100: #
1.18 www 101: BEGIN {
1.46 matthew 102: # Variable initialization
103: $thesaurus_db_file = $Apache::lonnet::perlvar{'lonTabDir'}."/thesaurus.db";
104: #
1.22 www 105: unless ($readit) {
1.12 harris41 106: # ------------------------------------------------------------------- languages
107: {
1.158 raeburn 108: my $langtabfile = $Apache::lonnet::perlvar{'lonTabDir'}.
109: '/language.tab';
110: if ( open(my $fh,"<$langtabfile") ) {
1.356 albertel 111: while (my $line = <$fh>) {
112: next if ($line=~/^\#/);
113: chomp($line);
114: my ($key,$two,$country,$three,$enc,$val,$sup)=(split(/\t/,$line));
1.158 raeburn 115: $language{$key}=$val.' - '.$enc;
116: if ($sup) {
117: $supported_language{$key}=$sup;
118: }
119: }
120: close($fh);
121: }
1.12 harris41 122: }
123: # ------------------------------------------------------------------ copyrights
124: {
1.158 raeburn 125: my $copyrightfile = $Apache::lonnet::perlvar{'lonIncludes'}.
126: '/copyright.tab';
127: if ( open (my $fh,"<$copyrightfile") ) {
1.356 albertel 128: while (my $line = <$fh>) {
129: next if ($line=~/^\#/);
130: chomp($line);
131: my ($key,$val)=(split(/\s+/,$line,2));
1.158 raeburn 132: $cprtag{$key}=$val;
133: }
134: close($fh);
135: }
1.12 harris41 136: }
1.351 www 137: # ----------------------------------------------------------- source copyrights
1.192 taceyjo1 138: {
139: my $sourcecopyrightfile = $Apache::lonnet::perlvar{'lonIncludes'}.
140: '/source_copyright.tab';
141: if ( open (my $fh,"<$sourcecopyrightfile") ) {
1.356 albertel 142: while (my $line = <$fh>) {
143: next if ($line =~ /^\#/);
144: chomp($line);
145: my ($key,$val)=(split(/\s+/,$line,2));
1.192 taceyjo1 146: $scprtag{$key}=$val;
147: }
148: close($fh);
149: }
150: }
1.63 www 151:
152: # -------------------------------------------------------------- domain designs
153:
154: my $filename;
155: my $designdir=$Apache::lonnet::perlvar{'lonTabDir'}.'/lonDomColors';
156: opendir(DIR,$designdir);
157: while ($filename=readdir(DIR)) {
1.271 albertel 158: if ($filename!~/\.tab$/) { next; }
1.63 www 159: my ($domain)=($filename=~/^(\w+)\./);
1.271 albertel 160: {
161: my $designfile = $designdir.'/'.$filename;
162: if ( open (my $fh,"<$designfile") ) {
1.356 albertel 163: while (my $line = <$fh>) {
164: next if ($line =~ /^\#/);
165: chomp($line);
166: my ($key,$val)=(split(/\=/,$line));
1.271 albertel 167: if ($val) { $designhash{$domain.'.'.$key}=$val; }
168: }
169: close($fh);
170: }
171: }
1.63 www 172:
173: }
174: closedir(DIR);
175:
176:
1.15 harris41 177: # ------------------------------------------------------------- file categories
178: {
1.158 raeburn 179: my $categoryfile = $Apache::lonnet::perlvar{'lonTabDir'}.
180: '/filecategories.tab';
181: if ( open (my $fh,"<$categoryfile") ) {
1.356 albertel 182: while (my $line = <$fh>) {
183: next if ($line =~ /^\#/);
184: chomp($line);
185: my ($extension,$category)=(split(/\s+/,$line,2));
1.158 raeburn 186: push @{$category_extensions{lc($category)}},$extension;
187: }
188: close($fh);
189: }
190:
1.15 harris41 191: }
1.12 harris41 192: # ------------------------------------------------------------------ file types
193: {
1.158 raeburn 194: my $typesfile = $Apache::lonnet::perlvar{'lonTabDir'}.
195: '/filetypes.tab';
196: if ( open (my $fh,"<$typesfile") ) {
1.356 albertel 197: while (my $line = <$fh>) {
198: next if ($line =~ /^\#/);
199: chomp($line);
200: my ($ending,$emb,$mime,$descr)=split(/\s+/,$line,4);
1.158 raeburn 201: if ($descr ne '') {
202: $fe{$ending}=lc($emb);
203: $fd{$ending}=$descr;
1.351 www 204: if ($mime ne 'unk') { $fm{$ending}=$mime; }
1.158 raeburn 205: }
206: }
207: close($fh);
208: }
1.12 harris41 209: }
1.22 www 210: &Apache::lonnet::logthis(
1.46 matthew 211: "<font color=yellow>INFO: Read file types</font>");
1.22 www 212: $readit=1;
1.46 matthew 213: } # end of unless($readit)
1.32 matthew 214:
215: }
1.112 bowersj2 216:
1.42 matthew 217: ###############################################################
218: ## HTML and Javascript Helper Functions ##
219: ###############################################################
220:
221: =pod
222:
1.112 bowersj2 223: =head1 HTML and Javascript Functions
1.42 matthew 224:
1.112 bowersj2 225: =over 4
226:
227: =item * browser_and_searcher_javascript ()
228:
229: X<browsing, javascript>X<searching, javascript>Returns a string
230: containing javascript with two functions, C<openbrowser> and
231: C<opensearcher>. Returned string does not contain E<lt>scriptE<gt>
232: tags.
1.42 matthew 233:
1.112 bowersj2 234: =item * openbrowser(formname,elementname,only,omit) [javascript]
1.42 matthew 235:
236: inputs: formname, elementname, only, omit
237:
238: formname and elementname indicate the name of the html form and name of
239: the element that the results of the browsing selection are to be placed in.
240:
241: Specifying 'only' will restrict the browser to displaying only files
1.185 www 242: with the given extension. Can be a comma separated list.
1.42 matthew 243:
244: Specifying 'omit' will restrict the browser to NOT displaying files
1.185 www 245: with the given extension. Can be a comma separated list.
1.42 matthew 246:
1.112 bowersj2 247: =item * opensearcher(formname, elementname) [javascript]
1.42 matthew 248:
249: Inputs: formname, elementname
250:
251: formname and elementname specify the name of the html form and the name
252: of the element the selection from the search results will be placed in.
253:
254: =cut
255:
256: sub browser_and_searcher_javascript {
1.199 albertel 257: my ($mode)=@_;
258: if (!defined($mode)) { $mode='edit'; }
1.170 www 259: my $resurl=&lastresurl();
1.42 matthew 260: return <<END;
1.219 albertel 261: // <!-- BEGIN LON-CAPA Internal
1.50 matthew 262: var editbrowser = null;
1.135 albertel 263: function openbrowser(formname,elementname,only,omit,titleelement) {
1.170 www 264: var url = '$resurl/?';
1.42 matthew 265: if (editbrowser == null) {
266: url += 'launch=1&';
267: }
268: url += 'catalogmode=interactive&';
1.199 albertel 269: url += 'mode=$mode&';
1.42 matthew 270: url += 'form=' + formname + '&';
271: if (only != null) {
272: url += 'only=' + only + '&';
1.217 albertel 273: } else {
274: url += 'only=&';
275: }
1.42 matthew 276: if (omit != null) {
277: url += 'omit=' + omit + '&';
1.217 albertel 278: } else {
279: url += 'omit=&';
280: }
1.135 albertel 281: if (titleelement != null) {
282: url += 'titleelement=' + titleelement + '&';
1.217 albertel 283: } else {
284: url += 'titleelement=&';
285: }
1.42 matthew 286: url += 'element=' + elementname + '';
287: var title = 'Browser';
1.217 albertel 288: var options = 'scrollbars=1,resizable=1,menubar=1,location=1';
1.42 matthew 289: options += ',width=700,height=600';
290: editbrowser = open(url,title,options,'1');
291: editbrowser.focus();
292: }
293: var editsearcher;
1.135 albertel 294: function opensearcher(formname,elementname,titleelement) {
1.42 matthew 295: var url = '/adm/searchcat?';
296: if (editsearcher == null) {
297: url += 'launch=1&';
298: }
299: url += 'catalogmode=interactive&';
1.199 albertel 300: url += 'mode=$mode&';
1.42 matthew 301: url += 'form=' + formname + '&';
1.135 albertel 302: if (titleelement != null) {
303: url += 'titleelement=' + titleelement + '&';
1.217 albertel 304: } else {
305: url += 'titleelement=&';
306: }
1.42 matthew 307: url += 'element=' + elementname + '';
308: var title = 'Search';
309: var options = 'scrollbars=1,resizable=1,menubar=0';
310: options += ',width=700,height=600';
311: editsearcher = open(url,title,options,'1');
312: editsearcher.focus();
313: }
1.219 albertel 314: // END LON-CAPA Internal -->
1.42 matthew 315: END
1.170 www 316: }
317:
318: sub lastresurl {
1.258 albertel 319: if ($env{'environment.lastresurl'}) {
320: return $env{'environment.lastresurl'}
1.170 www 321: } else {
322: return '/res';
323: }
324: }
325:
326: sub storeresurl {
327: my $resurl=&Apache::lonnet::clutter(shift);
328: unless ($resurl=~/^\/res/) { return 0; }
329: $resurl=~s/\/$//;
330: &Apache::lonnet::put('environment',{'lastresurl' => $resurl});
331: &Apache::lonnet::appenv('environment.lastresurl' => $resurl);
332: return 1;
1.42 matthew 333: }
334:
1.74 www 335: sub studentbrowser_javascript {
1.111 www 336: unless (
1.258 albertel 337: (($env{'request.course.id'}) &&
1.302 albertel 338: (&Apache::lonnet::allowed('srm',$env{'request.course.id'})
339: || &Apache::lonnet::allowed('srm',$env{'request.course.id'}.
340: '/'.$env{'request.course.sec'})
341: ))
1.258 albertel 342: || ($env{'request.role'}=~/^(au|dc|su)/)
1.111 www 343: ) { return ''; }
1.74 www 344: return (<<'ENDSTDBRW');
345: <script type="text/javascript" language="Javascript" >
346: var stdeditbrowser;
1.111 www 347: function openstdbrowser(formname,uname,udom,roleflag) {
1.74 www 348: var url = '/adm/pickstudent?';
349: var filter;
350: eval('filter=document.'+formname+'.'+uname+'.value;');
351: if (filter != null) {
352: if (filter != '') {
353: url += 'filter='+filter+'&';
354: }
355: }
356: url += 'form=' + formname + '&unameelement='+uname+
357: '&udomelement='+udom;
1.111 www 358: if (roleflag) { url+="&roles=1"; }
1.102 www 359: var title = 'Student_Browser';
1.74 www 360: var options = 'scrollbars=1,resizable=1,menubar=0';
361: options += ',width=700,height=600';
362: stdeditbrowser = open(url,title,options,'1');
363: stdeditbrowser.focus();
364: }
365: </script>
366: ENDSTDBRW
367: }
1.42 matthew 368:
1.74 www 369: sub selectstudent_link {
1.111 www 370: my ($form,$unameele,$udomele)=@_;
1.258 albertel 371: if ($env{'request.course.id'}) {
1.302 albertel 372: if (!&Apache::lonnet::allowed('srm',$env{'request.course.id'})
373: && !&Apache::lonnet::allowed('srm',$env{'request.course.id'}.
374: '/'.$env{'request.course.sec'})) {
1.111 www 375: return '';
376: }
377: return "<a href='".'javascript:openstdbrowser("'.$form.'","'.$unameele.
1.119 www 378: '","'.$udomele.'");'."'>".&mt('Select User')."</a>";
1.74 www 379: }
1.258 albertel 380: if ($env{'request.role'}=~/^(au|dc|su)/) {
1.111 www 381: return "<a href='".'javascript:openstdbrowser("'.$form.'","'.$unameele.
1.119 www 382: '","'.$udomele.'",1);'."'>".&mt('Select User')."</a>";
1.111 www 383: }
384: return '';
1.91 www 385: }
386:
387: sub coursebrowser_javascript {
1.234 raeburn 388: my ($domainfilter)=@_;
1.128 albertel 389: return (<<ENDSTDBRW);
1.91 www 390: <script type="text/javascript" language="Javascript" >
391: var stdeditbrowser;
1.293 raeburn 392: function opencrsbrowser(formname,uname,udom,desc,extra_element,multflag) {
1.91 www 393: var url = '/adm/pickcourse?';
394: var filter;
395: if (filter != null) {
396: if (filter != '') {
397: url += 'filter='+filter+'&';
398: }
399: }
1.128 albertel 400: var domainfilter='$domainfilter';
401: if (domainfilter != null) {
402: if (domainfilter != '') {
403: url += 'domainfilter='+domainfilter+'&';
404: }
405: }
1.91 www 406: url += 'form=' + formname + '&cnumelement='+uname+
1.187 albertel 407: '&cdomelement='+udom+
408: '&cnameelement='+desc;
1.234 raeburn 409: if (extra_element !=null && extra_element != '' && formname == 'rolechoice') {
410: url += '&roleelement='+extra_element;
411: if (domainfilter == null || domainfilter == '') {
412: url += '&domainfilter='+extra_element;
413: }
1.230 raeburn 414: }
1.293 raeburn 415: if (multflag !=null && multflag != '') {
416: url += '&multiple='+multflag;
417: }
1.102 www 418: var title = 'Course_Browser';
1.91 www 419: var options = 'scrollbars=1,resizable=1,menubar=0';
420: options += ',width=700,height=600';
421: stdeditbrowser = open(url,title,options,'1');
422: stdeditbrowser.focus();
423: }
424: </script>
425: ENDSTDBRW
426: }
427:
428: sub selectcourse_link {
1.293 raeburn 429: my ($form,$unameele,$udomele,$desc,$extra_element,$multflag)=@_;
1.91 www 430: return "<a href='".'javascript:opencrsbrowser("'.$form.'","'.$unameele.
1.293 raeburn 431: '","'.$udomele.'","'.$desc.'","'.$extra_element.'","'.$multflag.'");'."'>".&mt('Select Course')."</a>";
1.74 www 432: }
1.42 matthew 433:
1.273 raeburn 434: sub check_uncheck_jscript {
435: my $jscript = <<"ENDSCRT";
436: function checkAll(field) {
437: if (field.length > 0) {
438: for (i = 0; i < field.length; i++) {
439: field[i].checked = true ;
440: }
441: } else {
442: field.checked = true
443: }
444: }
445:
446: function uncheckAll(field) {
447: if (field.length > 0) {
448: for (i = 0; i < field.length; i++) {
449: field[i].checked = false ;
450: } } else {
451: field.checked = false ;
452: }
453: }
454: ENDSCRT
455: return $jscript;
456: }
457:
458:
1.42 matthew 459: =pod
1.36 matthew 460:
1.112 bowersj2 461: =item * linked_select_forms(...)
1.36 matthew 462:
463: linked_select_forms returns a string containing a <script></script> block
464: and html for two <select> menus. The select menus will be linked in that
465: changing the value of the first menu will result in new values being placed
466: in the second menu. The values in the select menu will appear in alphabetical
467: order.
468:
469: linked_select_forms takes the following ordered inputs:
470:
471: =over 4
472:
1.112 bowersj2 473: =item * $formname, the name of the <form> tag
1.36 matthew 474:
1.112 bowersj2 475: =item * $middletext, the text which appears between the <select> tags
1.36 matthew 476:
1.112 bowersj2 477: =item * $firstdefault, the default value for the first menu
1.36 matthew 478:
1.112 bowersj2 479: =item * $firstselectname, the name of the first <select> tag
1.36 matthew 480:
1.112 bowersj2 481: =item * $secondselectname, the name of the second <select> tag
1.36 matthew 482:
1.112 bowersj2 483: =item * $hashref, a reference to a hash containing the data for the menus.
1.36 matthew 484:
1.41 ng 485: =back
486:
1.36 matthew 487: Below is an example of such a hash. Only the 'text', 'default', and
488: 'select2' keys must appear as stated. keys(%menu) are the possible
489: values for the first select menu. The text that coincides with the
1.41 ng 490: first menu value is given in $menu{$choice1}->{'text'}. The values
1.36 matthew 491: and text for the second menu are given in the hash pointed to by
492: $menu{$choice1}->{'select2'}.
493:
1.112 bowersj2 494: my %menu = ( A1 => { text =>"Choice A1" ,
495: default => "B3",
496: select2 => {
497: B1 => "Choice B1",
498: B2 => "Choice B2",
499: B3 => "Choice B3",
500: B4 => "Choice B4"
501: }
502: },
503: A2 => { text =>"Choice A2" ,
504: default => "C2",
505: select2 => {
506: C1 => "Choice C1",
507: C2 => "Choice C2",
508: C3 => "Choice C3"
509: }
510: },
511: A3 => { text =>"Choice A3" ,
512: default => "D6",
513: select2 => {
514: D1 => "Choice D1",
515: D2 => "Choice D2",
516: D3 => "Choice D3",
517: D4 => "Choice D4",
518: D5 => "Choice D5",
519: D6 => "Choice D6",
520: D7 => "Choice D7"
521: }
522: }
523: );
1.36 matthew 524:
525: =cut
526:
527: sub linked_select_forms {
528: my ($formname,
529: $middletext,
530: $firstdefault,
531: $firstselectname,
532: $secondselectname,
533: $hashref
534: ) = @_;
535: my $second = "document.$formname.$secondselectname";
536: my $first = "document.$formname.$firstselectname";
537: # output the javascript to do the changing
538: my $result = '';
1.219 albertel 539: $result.="<script type=\"text/javascript\">\n";
1.36 matthew 540: $result.="var select2data = new Object();\n";
541: $" = '","';
542: my $debug = '';
543: foreach my $s1 (sort(keys(%$hashref))) {
544: $result.="select2data.d_$s1 = new Object();\n";
545: $result.="select2data.d_$s1.def = new String('".
546: $hashref->{$s1}->{'default'}."');\n";
547: $result.="select2data.d_$s1.values = new Array(";
548: my @s2values = sort(keys( %{ $hashref->{$s1}->{'select2'} } ));
549: $result.="\"@s2values\");\n";
550: $result.="select2data.d_$s1.texts = new Array(";
551: my @s2texts;
552: foreach my $value (@s2values) {
553: push @s2texts, $hashref->{$s1}->{'select2'}->{$value};
554: }
555: $result.="\"@s2texts\");\n";
556: }
557: $"=' ';
558: $result.= <<"END";
559:
560: function select1_changed() {
561: // Determine new choice
562: var newvalue = "d_" + $first.value;
563: // update select2
564: var values = select2data[newvalue].values;
565: var texts = select2data[newvalue].texts;
566: var select2def = select2data[newvalue].def;
567: var i;
568: // out with the old
569: for (i = 0; i < $second.options.length; i++) {
570: $second.options[i] = null;
571: }
572: // in with the nuclear
573: for (i=0;i<values.length; i++) {
574: $second.options[i] = new Option(values[i]);
1.143 matthew 575: $second.options[i].value = values[i];
1.36 matthew 576: $second.options[i].text = texts[i];
577: if (values[i] == select2def) {
578: $second.options[i].selected = true;
579: }
580: }
581: }
582: </script>
583: END
584: # output the initial values for the selection lists
585: $result .= "<select size=\"1\" name=\"$firstselectname\" onchange=\"select1_changed()\">\n";
586: foreach my $value (sort(keys(%$hashref))) {
587: $result.=" <option value=\"$value\" ";
1.253 albertel 588: $result.=" selected=\"selected\" " if ($value eq $firstdefault);
1.119 www 589: $result.=">".&mt($hashref->{$value}->{'text'})."</option>\n";
1.36 matthew 590: }
591: $result .= "</select>\n";
592: my %select2 = %{$hashref->{$firstdefault}->{'select2'}};
593: $result .= $middletext;
594: $result .= "<select size=\"1\" name=\"$secondselectname\">\n";
595: my $seconddefault = $hashref->{$firstdefault}->{'default'};
596: foreach my $value (sort(keys(%select2))) {
597: $result.=" <option value=\"$value\" ";
1.253 albertel 598: $result.=" selected=\"selected\" " if ($value eq $seconddefault);
1.119 www 599: $result.=">".&mt($select2{$value})."</option>\n";
1.36 matthew 600: }
601: $result .= "</select>\n";
602: # return $debug;
603: return $result;
604: } # end of sub linked_select_forms {
605:
1.45 matthew 606: =pod
1.44 bowersj2 607:
1.112 bowersj2 608: =item * help_open_topic($topic, $text, $stayOnPage, $width, $height)
1.44 bowersj2 609:
1.112 bowersj2 610: Returns a string corresponding to an HTML link to the given help
611: $topic, where $topic corresponds to the name of a .tex file in
612: /home/httpd/html/adm/help/tex, with underscores replaced by
613: spaces.
614:
615: $text will optionally be linked to the same topic, allowing you to
616: link text in addition to the graphic. If you do not want to link
617: text, but wish to specify one of the later parameters, pass an
618: empty string.
619:
620: $stayOnPage is a value that will be interpreted as a boolean. If true,
621: the link will not open a new window. If false, the link will open
622: a new window using Javascript. (Default is false.)
623:
624: $width and $height are optional numerical parameters that will
625: override the width and height of the popped up window, which may
626: be useful for certain help topics with big pictures included.
1.44 bowersj2 627:
628: =cut
629:
630: sub help_open_topic {
1.48 bowersj2 631: my ($topic, $text, $stayOnPage, $width, $height) = @_;
632: $text = "" if (not defined $text);
1.44 bowersj2 633: $stayOnPage = 0 if (not defined $stayOnPage);
1.258 albertel 634: if ($env{'browser.interface'} eq 'textual' ||
635: $env{'environment.remote'} eq 'off' ) {
1.79 www 636: $stayOnPage=1;
637: }
1.44 bowersj2 638: $width = 350 if (not defined $width);
639: $height = 400 if (not defined $height);
640: my $filename = $topic;
641: $filename =~ s/ /_/g;
642:
1.48 bowersj2 643: my $template = "";
644: my $link;
1.159 www 645:
646: $topic=~s/\W/\_/g;
1.44 bowersj2 647:
648: if (!$stayOnPage)
649: {
1.72 bowersj2 650: $link = "javascript:void(open('/adm/help/${filename}.hlp', 'Help_for_$topic', 'menubar=0,toolbar=1,scrollbars=1,width=$width,height=$height,resizable=yes'))";
1.44 bowersj2 651: }
652: else
653: {
1.48 bowersj2 654: $link = "/adm/help/${filename}.hlp";
655: }
656:
657: # Add the text
658: if ($text ne "")
659: {
1.77 www 660: $template .=
661: "<table bgcolor='#3333AA' cellspacing='1' cellpadding='1' border='0'><tr>".
1.78 www 662: "<td bgcolor='#5555FF'><a href=\"$link\"><font color='#FFFFFF' size='2'>$text</font></a>";
1.48 bowersj2 663: }
664:
665: # Add the graphic
1.179 matthew 666: my $title = &mt('Online Help');
1.215 albertel 667: my $helpicon=&lonhttpdurl("/adm/help/gif/smallHelp.gif");
1.48 bowersj2 668: $template .= <<"ENDTEMPLATE";
1.218 albertel 669: <a href="$link" title="$title"><img src="$helpicon" border="0" alt="(Help: $topic)" /></a>
1.44 bowersj2 670: ENDTEMPLATE
1.78 www 671: if ($text ne '') { $template.='</td></tr></table>' };
1.44 bowersj2 672: return $template;
673:
1.106 bowersj2 674: }
675:
676: # This is a quicky function for Latex cheatsheet editing, since it
677: # appears in at least four places
678: sub helpLatexCheatsheet {
679: my $other = shift;
680: my $addOther = '';
681: if ($other) {
682: $addOther = Apache::loncommon::help_open_topic($other, shift,
683: undef, undef, 600) .
684: '</td><td>';
685: }
686: return '<table><tr><td>'.
687: $addOther .
688: &Apache::loncommon::help_open_topic("Greek_Symbols",'Greek Symbols',
689: undef,undef,600)
690: .'</td><td>'.
691: &Apache::loncommon::help_open_topic("Other_Symbols",'Other Symbols',
692: undef,undef,600)
693: .'</td></tr></table>';
1.172 www 694: }
695:
1.193 raeburn 696: sub help_open_menu {
697: my ($color,$topic,$component_help,$function,$faq,$bug,$stayOnPage,$width,$height,$text) = @_;
698: $text = "" if (not defined $text);
699: $stayOnPage = 0 if (not defined $stayOnPage);
1.258 albertel 700: if ($env{'browser.interface'} eq 'textual' ||
701: $env{'environment.remote'} eq 'off' ) {
1.193 raeburn 702: $stayOnPage=1;
703: }
704: $width = 620 if (not defined $width);
705: $height = 600 if (not defined $height);
706: my $link='';
1.201 raeburn 707: my $title = &mt('Get help');
1.193 raeburn 708: my $origurl = $ENV{'REQUEST_URI'};
1.227 albertel 709: $origurl=~s|^/~|/priv/|;
1.193 raeburn 710: my $timestamp = time;
1.356 albertel 711: foreach my $datum (\$color,\$function,\$topic,\$component_help,\$faq,
712: \$bug,\$origurl) {
1.369 www 713: $$datum = &escape($$datum);
1.193 raeburn 714: }
1.195 albertel 715: if (!$stayOnPage) {
1.193 raeburn 716: $link = "javascript:helpMenu('open')";
1.195 albertel 717: } else {
1.193 raeburn 718: $link = "javascript:helpMenu('display')";
719: }
1.198 raeburn 720: my $banner_link = "/adm/helpmenu?page=banner&color=$color&function=$function&topic=$topic&component_help=$component_help&faq=$faq&bug=$bug&origurl=$origurl&stamp=$timestamp&stayonpage=$stayOnPage";
1.193 raeburn 721: my $details_link = "/adm/helpmenu?page=body&color=$color&function=$function&topic=$topic&component_help=$component_help&faq=$faq&bug=$bug&origurl=$origurl&stamp=$timestamp";
1.196 albertel 722: my $template;
723: if ($text ne "") {
724: $template .=
1.265 albertel 725: "<table bgcolor='#CC3300' cellspacing='1' cellpadding='1' border='0'><tr>".
726: "<td bgcolor='#CC6600'><a href=\"$link\"><font color='#FFFFFF' size='2'>$text</font></a>";
1.196 albertel 727: }
1.261 albertel 728: my $nothing=&Apache::lonhtmlcommon::javascript_nothing();
1.215 albertel 729: my $helpicon=&lonhttpdurl("/adm/lonIcons/helpgateway.gif");
1.331 albertel 730: my $start_page =
731: &Apache::loncommon::start_page('Help Menu', undef,
732: {'frameset' => 1,
733: 'js_ready' => 1,
734: 'add_entries' => {
735: 'border' => '0',
736: 'rows' => "105,*",},});
737: my $end_page =
738: &Apache::loncommon::end_page({'frameset' => 1,
739: 'js_ready' => 1,});
740:
1.196 albertel 741: $template .= <<"ENDTEMPLATE";
1.219 albertel 742: <script type="text/javascript">
1.253 albertel 743: // <!-- BEGIN LON-CAPA Internal
744: // <![CDATA[
1.243 raeburn 745: function helpMenu(target) {
746: var caller = this;
747: if (target == 'open') {
748: var newWindow = null;
749: try {
1.262 albertel 750: newWindow = window.open($nothing,"helpmenu","HEIGHT=$height,WIDTH=$width,resizable=yes,scrollbars=yes" )
1.243 raeburn 751: }
752: catch(error) {
753: writeHelp(caller);
754: return;
755: }
756: if (newWindow) {
757: caller = newWindow;
758: }
1.193 raeburn 759: }
1.243 raeburn 760: writeHelp(caller);
761: return;
762: }
763: function writeHelp(caller) {
1.331 albertel 764: caller.document.writeln('$start_page<frame name="bannerframe" src="$banner_link" /><frame name="bodyframe" src="$details_link" /> $end_page')
1.243 raeburn 765: caller.document.close()
766: caller.focus()
1.193 raeburn 767: }
1.253 albertel 768: // ]]>
1.219 albertel 769: // END LON-CAPA Internal -->
1.193 raeburn 770: </script>
1.218 albertel 771: <a href="$link" title="$title"><img src="$helpicon" border="0" alt="(Help Menu)" /></a>
1.193 raeburn 772: ENDTEMPLATE
1.203 albertel 773: if ($component_help) {
774: if (!$text) {
775: $template=&help_open_topic($component_help,undef,$stayOnPage,
776: $width,$height).' '.$template;
777: } else {
778: my $help_text;
1.369 www 779: $help_text=&unescape($topic);
1.203 albertel 780: $template='<table><tr><td>'.
781: &help_open_topic($component_help,$help_text,$stayOnPage,
782: $width,$height).'</td><td>'.$template.
783: '</td></tr></table>';
784: }
785: }
1.196 albertel 786: if ($text ne '') { $template.='</td></tr></table>' };
1.193 raeburn 787: return $template;
788: }
789:
1.172 www 790: sub help_open_bug {
791: my ($topic, $text, $stayOnPage, $width, $height) = @_;
1.258 albertel 792: unless ($env{'user.adv'}) { return ''; }
1.172 www 793: unless ($Apache::lonnet::perlvar{'BugzillaHost'}) { return ''; }
794: $text = "" if (not defined $text);
795: $stayOnPage = 0 if (not defined $stayOnPage);
1.258 albertel 796: if ($env{'browser.interface'} eq 'textual' ||
797: $env{'environment.remote'} eq 'off' ) {
1.172 www 798: $stayOnPage=1;
799: }
1.184 albertel 800: $width = 600 if (not defined $width);
801: $height = 600 if (not defined $height);
1.172 www 802:
803: $topic=~s/\W+/\+/g;
804: my $link='';
805: my $template='';
806: my $url=$Apache::lonnet::perlvar{'BugzillaHost'}.'enter_bug.cgi?product=LON-CAPA&bug_file_loc='.
1.369 www 807: &escape($ENV{'REQUEST_URI'}).'&component='.$topic;
1.172 www 808: if (!$stayOnPage)
809: {
810: $link = "javascript:void(open('$url', 'Bugzilla', 'menubar=0,toolbar=1,scrollbars=1,width=$width,height=$height,resizable=yes'))";
811: }
812: else
813: {
814: $link = $url;
815: }
816: # Add the text
817: if ($text ne "")
818: {
819: $template .=
820: "<table bgcolor='#AA3333' cellspacing='1' cellpadding='1' border='0'><tr>".
821: "<td bgcolor='#FF5555'><a href=\"$link\"><font color='#FFFFFF' size='2'>$text</font></a>";
822: }
823:
824: # Add the graphic
1.179 matthew 825: my $title = &mt('Report a Bug');
1.215 albertel 826: my $bugicon=&lonhttpdurl("/adm/lonMisc/smallBug.gif");
1.172 www 827: $template .= <<"ENDTEMPLATE";
1.218 albertel 828: <a href="$link" title="$title"><img src="$bugicon" border="0" alt="(Bug: $topic)" /></a>
1.172 www 829: ENDTEMPLATE
830: if ($text ne '') { $template.='</td></tr></table>' };
831: return $template;
832:
833: }
834:
835: sub help_open_faq {
836: my ($topic, $text, $stayOnPage, $width, $height) = @_;
1.258 albertel 837: unless ($env{'user.adv'}) { return ''; }
1.172 www 838: unless ($Apache::lonnet::perlvar{'FAQHost'}) { return ''; }
839: $text = "" if (not defined $text);
840: $stayOnPage = 0 if (not defined $stayOnPage);
1.258 albertel 841: if ($env{'browser.interface'} eq 'textual' ||
842: $env{'environment.remote'} eq 'off' ) {
1.172 www 843: $stayOnPage=1;
844: }
845: $width = 350 if (not defined $width);
846: $height = 400 if (not defined $height);
847:
848: $topic=~s/\W+/\+/g;
849: my $link='';
850: my $template='';
851: my $url=$Apache::lonnet::perlvar{'FAQHost'}.'/fom/cache/'.$topic.'.html';
852: if (!$stayOnPage)
853: {
854: $link = "javascript:void(open('$url', 'FAQ-O-Matic', 'menubar=0,toolbar=1,scrollbars=1,width=$width,height=$height,resizable=yes'))";
855: }
856: else
857: {
858: $link = $url;
859: }
860:
861: # Add the text
862: if ($text ne "")
863: {
864: $template .=
1.173 www 865: "<table bgcolor='#337733' cellspacing='1' cellpadding='1' border='0'><tr>".
866: "<td bgcolor='#448844'><a href=\"$link\"><font color='#FFFFFF' size='2'>$text</font></a>";
1.172 www 867: }
868:
869: # Add the graphic
1.179 matthew 870: my $title = &mt('View the FAQ');
1.215 albertel 871: my $faqicon=&lonhttpdurl("/adm/lonMisc/smallFAQ.gif");
1.172 www 872: $template .= <<"ENDTEMPLATE";
1.218 albertel 873: <a href="$link" title="$title"><img src="$faqicon" border="0" alt="(FAQ: $topic)" /></a>
1.172 www 874: ENDTEMPLATE
875: if ($text ne '') { $template.='</td></tr></table>' };
876: return $template;
877:
1.44 bowersj2 878: }
1.37 matthew 879:
1.180 matthew 880: ###############################################################
881: ###############################################################
882:
1.45 matthew 883: =pod
884:
1.256 matthew 885: =item * change_content_javascript():
886:
887: This and the next function allow you to create small sections of an
888: otherwise static HTML page that you can update on the fly with
889: Javascript, even in Netscape 4.
890:
891: The Javascript fragment returned by this function (no E<lt>scriptE<gt> tag)
892: must be written to the HTML page once. It will prove the Javascript
893: function "change(name, content)". Calling the change function with the
894: name of the section
895: you want to update, matching the name passed to C<changable_area>, and
896: the new content you want to put in there, will put the content into
897: that area.
898:
899: B<Note>: Netscape 4 only reserves enough space for the changable area
900: to contain room for the original contents. You need to "make space"
901: for whatever changes you wish to make, and be B<sure> to check your
902: code in Netscape 4. This feature in Netscape 4 is B<not> powerful;
903: it's adequate for updating a one-line status display, but little more.
904: This script will set the space to 100% width, so you only need to
905: worry about height in Netscape 4.
906:
907: Modern browsers are much less limiting, and if you can commit to the
908: user not using Netscape 4, this feature may be used freely with
909: pretty much any HTML.
910:
911: =cut
912:
913: sub change_content_javascript {
914: # If we're on Netscape 4, we need to use Layer-based code
1.258 albertel 915: if ($env{'browser.type'} eq 'netscape' &&
916: $env{'browser.version'} =~ /^4\./) {
1.256 matthew 917: return (<<NETSCAPE4);
918: function change(name, content) {
919: doc = document.layers[name+"___escape"].layers[0].document;
920: doc.open();
921: doc.write(content);
922: doc.close();
923: }
924: NETSCAPE4
925: } else {
926: # Otherwise, we need to use semi-standards-compliant code
927: # (technically, "innerHTML" isn't standard but the equivalent
928: # is really scary, and every useful browser supports it
929: return (<<DOMBASED);
930: function change(name, content) {
931: element = document.getElementById(name);
932: element.innerHTML = content;
933: }
934: DOMBASED
935: }
936: }
937:
938: =pod
939:
940: =item * changable_area($name, $origContent):
941:
942: This provides a "changable area" that can be modified on the fly via
943: the Javascript code provided in C<change_content_javascript>. $name is
944: the name you will use to reference the area later; do not repeat the
945: same name on a given HTML page more then once. $origContent is what
946: the area will originally contain, which can be left blank.
947:
948: =cut
949:
950: sub changable_area {
951: my ($name, $origContent) = @_;
952:
1.258 albertel 953: if ($env{'browser.type'} eq 'netscape' &&
954: $env{'browser.version'} =~ /^4\./) {
1.256 matthew 955: # If this is netscape 4, we need to use the Layer tag
956: return "<ilayer width='100%' id='${name}___escape' overflow='none'><layer width='100%' id='$name' overflow='none'>$origContent</layer></ilayer>";
957: } else {
958: return "<span id='$name'>$origContent</span>";
959: }
960: }
961:
962: =pod
963:
964: =back
965:
966: =head1 Excel and CSV file utility routines
967:
968: =over 4
969:
970: =cut
971:
972: ###############################################################
973: ###############################################################
974:
975: =pod
976:
1.112 bowersj2 977: =item * csv_translate($text)
1.37 matthew 978:
1.185 www 979: Translate $text to allow it to be output as a 'comma separated values'
1.37 matthew 980: format.
981:
982: =cut
983:
1.180 matthew 984: ###############################################################
985: ###############################################################
1.37 matthew 986: sub csv_translate {
987: my $text = shift;
988: $text =~ s/\"/\"\"/g;
1.209 albertel 989: $text =~ s/\n/ /g;
1.37 matthew 990: return $text;
991: }
1.180 matthew 992:
993: ###############################################################
994: ###############################################################
995:
996: =pod
997:
998: =item * define_excel_formats
999:
1000: Define some commonly used Excel cell formats.
1001:
1002: Currently supported formats:
1003:
1004: =over 4
1005:
1006: =item header
1007:
1008: =item bold
1009:
1010: =item h1
1011:
1012: =item h2
1013:
1014: =item h3
1015:
1.256 matthew 1016: =item h4
1017:
1018: =item i
1019:
1.180 matthew 1020: =item date
1021:
1022: =back
1023:
1024: Inputs: $workbook
1025:
1026: Returns: $format, a hash reference.
1027:
1028: =cut
1029:
1030: ###############################################################
1031: ###############################################################
1032: sub define_excel_formats {
1033: my ($workbook) = @_;
1034: my $format;
1035: $format->{'header'} = $workbook->add_format(bold => 1,
1036: bottom => 1,
1037: align => 'center');
1038: $format->{'bold'} = $workbook->add_format(bold=>1);
1039: $format->{'h1'} = $workbook->add_format(bold=>1, size=>18);
1040: $format->{'h2'} = $workbook->add_format(bold=>1, size=>16);
1041: $format->{'h3'} = $workbook->add_format(bold=>1, size=>14);
1.255 matthew 1042: $format->{'h4'} = $workbook->add_format(bold=>1, size=>12);
1.246 matthew 1043: $format->{'i'} = $workbook->add_format(italic=>1);
1.180 matthew 1044: $format->{'date'} = $workbook->add_format(num_format=>
1.207 matthew 1045: 'mm/dd/yyyy hh:mm:ss');
1.180 matthew 1046: return $format;
1047: }
1048:
1049: ###############################################################
1050: ###############################################################
1.113 bowersj2 1051:
1052: =pod
1053:
1.256 matthew 1054: =item * create_workbook
1.255 matthew 1055:
1056: Create an Excel worksheet. If it fails, output message on the
1057: request object and return undefs.
1058:
1059: Inputs: Apache request object
1060:
1061: Returns (undef) on failure,
1062: Excel worksheet object, scalar with filename, and formats
1063: from &Apache::loncommon::define_excel_formats on success
1064:
1065: =cut
1066:
1067: ###############################################################
1068: ###############################################################
1069: sub create_workbook {
1070: my ($r) = @_;
1071: #
1072: # Create the excel spreadsheet
1073: my $filename = '/prtspool/'.
1.258 albertel 1074: $env{'user.name'}.'_'.$env{'user.domain'}.'_'.
1.255 matthew 1075: time.'_'.rand(1000000000).'.xls';
1076: my $workbook = Spreadsheet::WriteExcel->new('/home/httpd'.$filename);
1077: if (! defined($workbook)) {
1078: $r->log_error("Error creating excel spreadsheet $filename: $!");
1079: $r->print('<p>'.&mt("Unable to create new Excel file. ".
1080: "This error has been logged. ".
1081: "Please alert your LON-CAPA administrator").
1082: '</p>');
1083: return (undef);
1084: }
1085: #
1086: $workbook->set_tempdir('/home/httpd/perl/tmp');
1087: #
1088: my $format = &Apache::loncommon::define_excel_formats($workbook);
1089: return ($workbook,$filename,$format);
1090: }
1091:
1092: ###############################################################
1093: ###############################################################
1094:
1095: =pod
1096:
1.256 matthew 1097: =item * create_text_file
1.113 bowersj2 1098:
1.256 matthew 1099: Create a file to write to and eventually make available to the usre.
1100: If file creation fails, outputs an error message on the request object and
1101: return undefs.
1.113 bowersj2 1102:
1.256 matthew 1103: Inputs: Apache request object, and file suffix
1.113 bowersj2 1104:
1.256 matthew 1105: Returns (undef) on failure,
1106: Filehandle and filename on success.
1.113 bowersj2 1107:
1108: =cut
1109:
1.256 matthew 1110: ###############################################################
1111: ###############################################################
1112: sub create_text_file {
1113: my ($r,$suffix) = @_;
1114: if (! defined($suffix)) { $suffix = 'txt'; };
1115: my $fh;
1116: my $filename = '/prtspool/'.
1.258 albertel 1117: $env{'user.name'}.'_'.$env{'user.domain'}.'_'.
1.256 matthew 1118: time.'_'.rand(1000000000).'.'.$suffix;
1119: $fh = Apache::File->new('>/home/httpd'.$filename);
1120: if (! defined($fh)) {
1121: $r->log_error("Couldn't open $filename for output $!");
1122: $r->print("Problems occured in creating the output file. ".
1123: "This error has been logged. ".
1124: "Please alert your LON-CAPA administrator.");
1.113 bowersj2 1125: }
1.256 matthew 1126: return ($fh,$filename)
1.113 bowersj2 1127: }
1128:
1129:
1.256 matthew 1130: =pod
1.113 bowersj2 1131:
1132: =back
1133:
1134: =cut
1.37 matthew 1135:
1136: ###############################################################
1.33 matthew 1137: ## Home server <option> list generating code ##
1138: ###############################################################
1.35 matthew 1139:
1.45 matthew 1140: =pod
1141:
1.112 bowersj2 1142: =head1 Home Server option list generating code
1143:
1144: =over 4
1145:
1146: =item * get_domains()
1.35 matthew 1147:
1148: Returns an array containing each of the domains listed in the hosts.tab
1149: file.
1150:
1151: =cut
1152:
1153: #-------------------------------------------
1.34 matthew 1154: sub get_domains {
1155: # The code below was stolen from "The Perl Cookbook", p 102, 1st ed.
1156: my @domains;
1157: my %seen;
1.356 albertel 1158: foreach my $dom (sort(values(%Apache::lonnet::hostdom))) {
1159: push(@domains,$dom) unless $seen{$dom}++;
1.34 matthew 1160: }
1161: return @domains;
1162: }
1.88 www 1163:
1.169 www 1164: # ------------------------------------------
1165:
1166: sub domain_select {
1167: my ($name,$value,$multiple)=@_;
1168: my %domains=map {
1169: $_ => $_.' '.$Apache::lonnet::domaindescription{$_}
1170: } &get_domains;
1171: if ($multiple) {
1172: $domains{''}=&mt('Any domain');
1.287 albertel 1173: return &multiple_select_form($name,$value,4,\%domains);
1.169 www 1174: } else {
1175: return &select_form($name,$value,%domains);
1176: }
1177: }
1178:
1.282 albertel 1179: #-------------------------------------------
1180:
1181: =pod
1182:
1.287 albertel 1183: =item * multiple_select_form($name,$value,$size,$hash,$order)
1.282 albertel 1184:
1185: Returns a string containing a <select> element int multiple mode
1186:
1187:
1188: Args:
1189: $name - name of the <select> element
1190: $value - sclara or array ref of values that should already be selected
1191: $size - number of rows long the select element is
1.283 albertel 1192: $hash - the elements should be 'option' => 'shown text'
1.282 albertel 1193: (shown text should already have been &mt())
1.284 albertel 1194: $order - (optional) array ref of the order to show the elments in
1.283 albertel 1195:
1.282 albertel 1196: =cut
1197:
1198: #-------------------------------------------
1.169 www 1199: sub multiple_select_form {
1.284 albertel 1200: my ($name,$value,$size,$hash,$order)=@_;
1.169 www 1201: my %selected = map { $_ => 1 } ref($value)?@{$value}:($value);
1202: my $output='';
1.191 matthew 1203: if (! defined($size)) {
1204: $size = 4;
1.283 albertel 1205: if (scalar(keys(%$hash))<4) {
1206: $size = scalar(keys(%$hash));
1.191 matthew 1207: }
1208: }
1.169 www 1209: $output.="\n<select name='$name' size='$size' multiple='1'>";
1.286 banghart 1210: my @order = ref($order) ? @$order
1.284 albertel 1211: : sort(keys(%$hash));
1212: foreach my $key (@order) {
1.356 albertel 1213: $output.='<option value="'.&HTML::Entities::encode($key,'"<>&').'" ';
1.284 albertel 1214: $output.='selected="selected" ' if ($selected{$key});
1215: $output.='>'.$hash->{$key}."</option>\n";
1.169 www 1216: }
1217: $output.="</select>\n";
1218: return $output;
1219: }
1220:
1.88 www 1221: #-------------------------------------------
1222:
1223: =pod
1224:
1.112 bowersj2 1225: =item * select_form($defdom,$name,%hash)
1.88 www 1226:
1227: Returns a string containing a <select name='$name' size='1'> form to
1228: allow a user to select options from a hash option_name => displayed text.
1229: See lonrights.pm for an example invocation and use.
1230:
1231: =cut
1232:
1233: #-------------------------------------------
1234: sub select_form {
1235: my ($def,$name,%hash) = @_;
1236: my $selectform = "<select name=\"$name\" size=\"1\">\n";
1.128 albertel 1237: my @keys;
1238: if (exists($hash{'select_form_order'})) {
1239: @keys=@{$hash{'select_form_order'}};
1240: } else {
1241: @keys=sort(keys(%hash));
1242: }
1.356 albertel 1243: foreach my $key (@keys) {
1244: $selectform.=
1245: '<option value="'.&HTML::Entities::encode($key,'"<>&').'" '.
1246: ($key eq $def ? 'selected="selected" ' : '').
1247: ">".&mt($hash{$key})."</option>\n";
1.88 www 1248: }
1249: $selectform.="</select>";
1250: return $selectform;
1251: }
1252:
1.167 www 1253: sub gradeleveldescription {
1254: my $gradelevel=shift;
1255: my %gradelevels=(0 => 'Not specified',
1256: 1 => 'Grade 1',
1257: 2 => 'Grade 2',
1258: 3 => 'Grade 3',
1259: 4 => 'Grade 4',
1260: 5 => 'Grade 5',
1261: 6 => 'Grade 6',
1262: 7 => 'Grade 7',
1263: 8 => 'Grade 8',
1264: 9 => 'Grade 9',
1265: 10 => 'Grade 10',
1266: 11 => 'Grade 11',
1267: 12 => 'Grade 12',
1268: 13 => 'Grade 13',
1269: 14 => '100 Level',
1270: 15 => '200 Level',
1271: 16 => '300 Level',
1272: 17 => '400 Level',
1273: 18 => 'Graduate Level');
1274: return &mt($gradelevels{$gradelevel});
1275: }
1276:
1.163 www 1277: sub select_level_form {
1278: my ($deflevel,$name)=@_;
1279: unless ($deflevel) { $deflevel=0; }
1.167 www 1280: my $selectform = "<select name=\"$name\" size=\"1\">\n";
1281: for (my $i=0; $i<=18; $i++) {
1282: $selectform.="<option value=\"$i\" ".
1.253 albertel 1283: ($i==$deflevel ? 'selected="selected" ' : '').
1.167 www 1284: ">".&gradeleveldescription($i)."</option>\n";
1285: }
1286: $selectform.="</select>";
1287: return $selectform;
1.163 www 1288: }
1.167 www 1289:
1.35 matthew 1290: #-------------------------------------------
1291:
1.45 matthew 1292: =pod
1293:
1.112 bowersj2 1294: =item * select_dom_form($defdom,$name,$includeempty)
1.35 matthew 1295:
1296: Returns a string containing a <select name='$name' size='1'> form to
1297: allow a user to select the domain to preform an operation in.
1298: See loncreateuser.pm for an example invocation and use.
1299:
1.90 www 1300: If the $includeempty flag is set, it also includes an empty choice ("no domain
1301: selected");
1302:
1.35 matthew 1303: =cut
1304:
1305: #-------------------------------------------
1.34 matthew 1306: sub select_dom_form {
1.90 www 1307: my ($defdom,$name,$includeempty) = @_;
1.34 matthew 1308: my @domains = get_domains();
1.90 www 1309: if ($includeempty) { @domains=('',@domains); }
1.34 matthew 1310: my $selectdomain = "<select name=\"$name\" size=\"1\">\n";
1.356 albertel 1311: foreach my $dom (@domains) {
1312: $selectdomain.="<option value=\"$dom\" ".
1313: ($dom eq $defdom ? 'selected="selected" ' : '').
1314: ">$dom</option>\n";
1.34 matthew 1315: }
1316: $selectdomain.="</select>";
1317: return $selectdomain;
1318: }
1319:
1.35 matthew 1320: #-------------------------------------------
1321:
1.45 matthew 1322: =pod
1323:
1.112 bowersj2 1324: =item * get_library_servers($domain)
1.35 matthew 1325:
1326: Returns a hash which contains keys like '103l3' and values like
1327: 'kirk.lite.msu.edu'. All of the keys will be for machines in the
1328: given $domain.
1329:
1330: =cut
1331:
1332: #-------------------------------------------
1.52 matthew 1333: sub get_library_servers {
1.33 matthew 1334: my $domain = shift;
1.52 matthew 1335: my %library_servers;
1.356 albertel 1336: foreach my $hostid (keys(%Apache::lonnet::libserv)) {
1337: if ($Apache::lonnet::hostdom{$hostid} eq $domain) {
1338: $library_servers{$hostid} = $Apache::lonnet::hostname{$hostid};
1.33 matthew 1339: }
1340: }
1.52 matthew 1341: return %library_servers;
1.33 matthew 1342: }
1343:
1.35 matthew 1344: #-------------------------------------------
1345:
1.45 matthew 1346: =pod
1347:
1.112 bowersj2 1348: =item * home_server_option_list($domain)
1.35 matthew 1349:
1350: returns a string which contains an <option> list to be used in a
1351: <select> form input. See loncreateuser.pm for an example.
1352:
1353: =cut
1354:
1355: #-------------------------------------------
1.33 matthew 1356: sub home_server_option_list {
1357: my $domain = shift;
1.52 matthew 1358: my %servers = &get_library_servers($domain);
1.33 matthew 1359: my $result = '';
1.356 albertel 1360: foreach my $hostid (sort(keys(%servers))) {
1.33 matthew 1361: $result.=
1.356 albertel 1362: '<option value="'.$hostid.'">'.
1363: $hostid.' '.$servers{$hostid}."</option>\n";
1.33 matthew 1364: }
1365: return $result;
1366: }
1.112 bowersj2 1367:
1368: =pod
1369:
1370: =back
1371:
1372: =cut
1.87 matthew 1373:
1374: ###############################################################
1.112 bowersj2 1375: ## Decoding User Agent ##
1.87 matthew 1376: ###############################################################
1377:
1378: =pod
1379:
1.112 bowersj2 1380: =head1 Decoding the User Agent
1381:
1382: =over 4
1383:
1384: =item * &decode_user_agent()
1.87 matthew 1385:
1386: Inputs: $r
1387:
1388: Outputs:
1389:
1390: =over 4
1391:
1.112 bowersj2 1392: =item * $httpbrowser
1.87 matthew 1393:
1.112 bowersj2 1394: =item * $clientbrowser
1.87 matthew 1395:
1.112 bowersj2 1396: =item * $clientversion
1.87 matthew 1397:
1.112 bowersj2 1398: =item * $clientmathml
1.87 matthew 1399:
1.112 bowersj2 1400: =item * $clientunicode
1.87 matthew 1401:
1.112 bowersj2 1402: =item * $clientos
1.87 matthew 1403:
1404: =back
1405:
1.157 matthew 1406: =back
1407:
1.87 matthew 1408: =cut
1409:
1410: ###############################################################
1411: ###############################################################
1412: sub decode_user_agent {
1.247 albertel 1413: my ($r)=@_;
1.87 matthew 1414: my @browsertype=split(/\&/,$Apache::lonnet::perlvar{"lonBrowsDet"});
1415: my %mathcap=split(/\&/,$$Apache::lonnet::perlvar{"lonMathML"});
1416: my $httpbrowser=$ENV{"HTTP_USER_AGENT"};
1.247 albertel 1417: if (!$httpbrowser && $r) { $httpbrowser=$r->header_in('User-Agent'); }
1.87 matthew 1418: my $clientbrowser='unknown';
1419: my $clientversion='0';
1420: my $clientmathml='';
1421: my $clientunicode='0';
1422: for (my $i=0;$i<=$#browsertype;$i++) {
1423: my ($bname,$match,$notmatch,$vreg,$minv,$univ)=split(/\:/,$browsertype[$i]);
1424: if (($httpbrowser=~/$match/i) && ($httpbrowser!~/$notmatch/i)) {
1425: $clientbrowser=$bname;
1426: $httpbrowser=~/$vreg/i;
1427: $clientversion=$1;
1428: $clientmathml=($clientversion>=$minv);
1429: $clientunicode=($clientversion>=$univ);
1430: }
1431: }
1432: my $clientos='unknown';
1433: if (($httpbrowser=~/linux/i) ||
1434: ($httpbrowser=~/unix/i) ||
1435: ($httpbrowser=~/ux/i) ||
1436: ($httpbrowser=~/solaris/i)) { $clientos='unix'; }
1437: if (($httpbrowser=~/vax/i) ||
1438: ($httpbrowser=~/vms/i)) { $clientos='vms'; }
1439: if ($httpbrowser=~/next/i) { $clientos='next'; }
1440: if (($httpbrowser=~/mac/i) ||
1441: ($httpbrowser=~/powerpc/i)) { $clientos='mac'; }
1442: if ($httpbrowser=~/win/i) { $clientos='win'; }
1443: if ($httpbrowser=~/embed/i) { $clientos='pda'; }
1444: return ($httpbrowser,$clientbrowser,$clientversion,$clientmathml,
1445: $clientunicode,$clientos,);
1446: }
1447:
1.32 matthew 1448: ###############################################################
1449: ## Authentication changing form generation subroutines ##
1450: ###############################################################
1451: ##
1452: ## All of the authform_xxxxxxx subroutines take their inputs in a
1453: ## hash, and have reasonable default values.
1454: ##
1455: ## formname = the name given in the <form> tag.
1.35 matthew 1456: #-------------------------------------------
1457:
1.45 matthew 1458: =pod
1459:
1.112 bowersj2 1460: =head1 Authentication Routines
1461:
1462: =over 4
1463:
1464: =item * authform_xxxxxx
1.35 matthew 1465:
1466: The authform_xxxxxx subroutines provide javascript and html forms which
1467: handle some of the conveniences required for authentication forms.
1468: This is not an optimal method, but it works.
1469:
1470: See loncreateuser.pm for invocation and use examples.
1471:
1472: =over 4
1473:
1.112 bowersj2 1474: =item * authform_header
1.35 matthew 1475:
1.112 bowersj2 1476: =item * authform_authorwarning
1.35 matthew 1477:
1.112 bowersj2 1478: =item * authform_nochange
1.35 matthew 1479:
1.112 bowersj2 1480: =item * authform_kerberos
1.35 matthew 1481:
1.112 bowersj2 1482: =item * authform_internal
1.35 matthew 1483:
1.112 bowersj2 1484: =item * authform_filesystem
1.35 matthew 1485:
1486: =back
1487:
1.157 matthew 1488: =back
1489:
1.35 matthew 1490: =cut
1491:
1492: #-------------------------------------------
1.32 matthew 1493: sub authform_header{
1494: my %in = (
1495: formname => 'cu',
1.80 albertel 1496: kerb_def_dom => '',
1.32 matthew 1497: @_,
1498: );
1499: $in{'formname'} = 'document.' . $in{'formname'};
1500: my $result='';
1.80 albertel 1501:
1502: #---------------------------------------------- Code for upper case translation
1503: my $Javascript_toUpperCase;
1504: unless ($in{kerb_def_dom}) {
1505: $Javascript_toUpperCase =<<"END";
1506: switch (choice) {
1507: case 'krb': currentform.elements[choicearg].value =
1508: currentform.elements[choicearg].value.toUpperCase();
1509: break;
1510: default:
1511: }
1512: END
1513: } else {
1514: $Javascript_toUpperCase = "";
1515: }
1516:
1.165 raeburn 1517: my $radioval = "'nochange'";
1.174 matthew 1518: if (exists($in{'curr_authtype'}) &&
1519: defined($in{'curr_authtype'}) &&
1520: $in{'curr_authtype'} ne '') {
1521: $radioval = "'$in{'curr_authtype'}arg'";
1522: }
1.165 raeburn 1523: my $argfield = 'null';
1524: if ( grep/^mode$/,(keys %in) ) {
1525: if ($in{'mode'} eq 'modifycourse') {
1526: if ( grep/^curr_authtype$/,(keys %in) ) {
1527: $radioval = "'$in{'curr_authtype'}'";
1528: }
1529: if ( grep/^curr_autharg$/,(keys %in) ) {
1530: unless ($in{'curr_autharg'} eq '') {
1531: $argfield = "'$in{'curr_autharg'}'";
1532: }
1533: }
1534: }
1535: }
1536:
1.32 matthew 1537: $result.=<<"END";
1538: var current = new Object();
1.165 raeburn 1539: current.radiovalue = $radioval;
1540: current.argfield = $argfield;
1.32 matthew 1541:
1542: function changed_radio(choice,currentform) {
1543: var choicearg = choice + 'arg';
1544: // If a radio button in changed, we need to change the argfield
1545: if (current.radiovalue != choice) {
1546: current.radiovalue = choice;
1547: if (current.argfield != null) {
1548: currentform.elements[current.argfield].value = '';
1549: }
1550: if (choice == 'nochange') {
1551: current.argfield = null;
1552: } else {
1553: current.argfield = choicearg;
1554: switch(choice) {
1555: case 'krb':
1556: currentform.elements[current.argfield].value =
1557: "$in{'kerb_def_dom'}";
1558: break;
1559: default:
1560: break;
1561: }
1562: }
1563: }
1564: return;
1565: }
1.22 www 1566:
1.32 matthew 1567: function changed_text(choice,currentform) {
1568: var choicearg = choice + 'arg';
1569: if (currentform.elements[choicearg].value !='') {
1.80 albertel 1570: $Javascript_toUpperCase
1.32 matthew 1571: // clear old field
1572: if ((current.argfield != choicearg) && (current.argfield != null)) {
1573: currentform.elements[current.argfield].value = '';
1574: }
1575: current.argfield = choicearg;
1576: }
1577: set_auth_radio_buttons(choice,currentform);
1578: return;
1.20 www 1579: }
1.32 matthew 1580:
1581: function set_auth_radio_buttons(newvalue,currentform) {
1582: var i=0;
1583: while (i < currentform.login.length) {
1584: if (currentform.login[i].value == newvalue) { break; }
1585: i++;
1586: }
1587: if (i == currentform.login.length) {
1588: return;
1589: }
1590: current.radiovalue = newvalue;
1591: currentform.login[i].checked = true;
1592: return;
1593: }
1594: END
1595: return $result;
1596: }
1597:
1598: sub authform_authorwarning{
1599: my $result='';
1.144 matthew 1600: $result='<i>'.
1601: &mt('As a general rule, only authors or co-authors should be '.
1602: 'filesystem authenticated '.
1603: '(which allows access to the server filesystem).')."</i>\n";
1.32 matthew 1604: return $result;
1605: }
1606:
1607: sub authform_nochange{
1608: my %in = (
1609: formname => 'document.cu',
1610: kerb_def_dom => 'MSU.EDU',
1611: @_,
1612: );
1.281 albertel 1613: my $result = '<label>'.&mt('[_1] Do not change login data',
1.144 matthew 1614: '<input type="radio" name="login" value="nochange" '.
1615: 'checked="checked" onclick="'.
1.281 albertel 1616: "javascript:changed_radio('nochange',$in{'formname'});".'" />').
1617: '</label>';
1.32 matthew 1618: return $result;
1619: }
1620:
1621: sub authform_kerberos{
1622: my %in = (
1623: formname => 'document.cu',
1624: kerb_def_dom => 'MSU.EDU',
1.80 albertel 1625: kerb_def_auth => 'krb4',
1.32 matthew 1626: @_,
1627: );
1.165 raeburn 1628: my ($check4,$check5,$krbarg);
1.80 albertel 1629: if ($in{'kerb_def_auth'} eq 'krb5') {
1630: $check5 = " checked=\"on\"";
1631: } else {
1632: $check4 = " checked=\"on\"";
1633: }
1.165 raeburn 1634: $krbarg = $in{'kerb_def_dom'};
1635:
1636: my $krbcheck = "";
1637: if ( grep/^curr_authtype$/,(keys %in) ) {
1638: if ($in{'curr_authtype'} =~ m/^krb/) {
1639: $krbcheck = " checked=\"on\"";
1640: if ( grep/^curr_autharg$/,(keys %in) ) {
1641: $krbarg = $in{'curr_autharg'};
1642: }
1643: }
1644: }
1645:
1.144 matthew 1646: my $jscall = "javascript:changed_radio('krb',$in{'formname'});";
1647: my $result .= &mt
1648: ('[_1] Kerberos authenticated with domain [_2] '.
1.281 albertel 1649: '[_3] Version 4 [_4] Version 5 [_5]',
1650: '<label><input type="radio" name="login" value="krb" '.
1.165 raeburn 1651: 'onclick="'.$jscall.'" onchange="'.$jscall.'"'.$krbcheck.' />',
1.281 albertel 1652: '</label><input type="text" size="10" name="krbarg" '.
1.165 raeburn 1653: 'value="'.$krbarg.'" '.
1.144 matthew 1654: 'onchange="'.$jscall.'" />',
1.281 albertel 1655: '<label><input type="radio" name="krbver" value="4" '.$check4.' />',
1656: '</label><label><input type="radio" name="krbver" value="5" '.$check5.' />',
1657: '</label>');
1.32 matthew 1658: return $result;
1659: }
1660:
1661: sub authform_internal{
1662: my %args = (
1663: formname => 'document.cu',
1664: kerb_def_dom => 'MSU.EDU',
1665: @_,
1666: );
1.165 raeburn 1667:
1668: my $intcheck = "";
1669: my $intarg = 'value=""';
1670: if ( grep/^curr_authtype$/,(keys %args) ) {
1671: if ($args{'curr_authtype'} eq 'int') {
1672: $intcheck = " checked=\"on\"";
1673: if ( grep/^curr_autharg$/,(keys %args) ) {
1674: $intarg = "value=\"$args{'curr_autharg'}\"";
1675: }
1676: }
1677: }
1678:
1.144 matthew 1679: my $jscall = "javascript:changed_radio('int',$args{'formname'});";
1680: my $result.=&mt
1681: ('[_1] Internally authenticated (with initial password [_2])',
1.281 albertel 1682: '<label><input type="radio" name="login" value="int" '.$intcheck.
1.165 raeburn 1683: ' onchange="'.$jscall.'" onclick="'.$jscall.'" />',
1.281 albertel 1684: '</label><input type="text" size="10" name="intarg" '.$intarg.
1.165 raeburn 1685: ' onchange="'.$jscall.'" />');
1.32 matthew 1686: return $result;
1687: }
1688:
1689: sub authform_local{
1690: my %in = (
1691: formname => 'document.cu',
1692: kerb_def_dom => 'MSU.EDU',
1693: @_,
1694: );
1.165 raeburn 1695:
1696: my $loccheck = "";
1697: my $locarg = 'value=""';
1698: if ( grep/^curr_authtype$/,(keys %in) ) {
1699: if ($in{'curr_authtype'} eq 'loc') {
1700: $loccheck = " checked=\"on\"";
1701: if ( grep/^curr_autharg$/,(keys %in) ) {
1702: $locarg = "value=\"$in{'curr_autharg'}\"";
1703: }
1704: }
1705: }
1706:
1.144 matthew 1707: my $jscall = "javascript:changed_radio('loc',$in{'formname'});";
1.160 matthew 1708: my $result.=&mt('[_1] Local Authentication with argument [_2]',
1.281 albertel 1709: '<label><input type="radio" name="login" value="loc" '.$loccheck.
1.165 raeburn 1710: ' onchange="'.$jscall.'" onclick="'.$jscall.'" />',
1.281 albertel 1711: '</label><input type="text" size="10" name="locarg" '.$locarg.
1.165 raeburn 1712: ' onchange="'.$jscall.'" />');
1.32 matthew 1713: return $result;
1714: }
1715:
1716: sub authform_filesystem{
1717: my %in = (
1718: formname => 'document.cu',
1719: kerb_def_dom => 'MSU.EDU',
1720: @_,
1721: );
1.144 matthew 1722: my $jscall = "javascript:changed_radio('fsys',$in{'formname'});";
1723: my $result.= &mt
1724: ('[_1] Filesystem Authenticated (with initial password [_2])',
1.281 albertel 1725: '<label><input type="radio" name="login" value="fsys" '.
1.144 matthew 1726: 'onchange="'.$jscall.'" onclick="'.$jscall.'" />',
1.281 albertel 1727: '</label><input type="text" size="10" name="fsysarg" value="" '.
1.144 matthew 1728: 'onchange="'.$jscall.'" />');
1.32 matthew 1729: return $result;
1730: }
1731:
1.80 albertel 1732: ###############################################################
1733: ## Get Authentication Defaults for Domain ##
1734: ###############################################################
1735:
1736: =pod
1737:
1.112 bowersj2 1738: =head1 Domains and Authentication
1739:
1740: Returns default authentication type and an associated argument as
1741: listed in file 'domain.tab'.
1742:
1743: =over 4
1744:
1745: =item * get_auth_defaults
1.80 albertel 1746:
1747: get_auth_defaults($target_domain) returns the default authentication
1748: type and an associated argument (initial password or a kerberos domain).
1749: These values are stored in lonTabs/domain.tab
1750:
1751: ($def_auth, $def_arg) = &get_auth_defaults($target_domain);
1752:
1753: If target_domain is not found in domain.tab, returns nothing ('').
1754:
1755: =cut
1756:
1757: #-------------------------------------------
1758: sub get_auth_defaults {
1759: my $domain=shift;
1760: return ($Apache::lonnet::domain_auth_def{$domain},$Apache::lonnet::domain_auth_arg_def{$domain});
1761: }
1762: ###############################################################
1763: ## End Get Authentication Defaults for Domain ##
1764: ###############################################################
1765:
1766: ###############################################################
1767: ## Get Kerberos Defaults for Domain ##
1768: ###############################################################
1769: ##
1770: ## Returns default kerberos version and an associated argument
1771: ## as listed in file domain.tab. If not listed, provides
1772: ## appropriate default domain and kerberos version.
1773: ##
1774: #-------------------------------------------
1775:
1776: =pod
1777:
1.112 bowersj2 1778: =item * get_kerberos_defaults
1.80 albertel 1779:
1780: get_kerberos_defaults($target_domain) returns the default kerberos
1781: version and domain. If not found in domain.tabs, it defaults to
1782: version 4 and the domain of the server.
1783:
1784: ($def_version, $def_krb_domain) = &get_kerberos_defaults($target_domain);
1785:
1786: =cut
1787:
1788: #-------------------------------------------
1789: sub get_kerberos_defaults {
1790: my $domain=shift;
1791: my ($krbdef,$krbdefdom) =
1792: &Apache::loncommon::get_auth_defaults($domain);
1793: unless ($krbdef =~/^krb/ && $krbdefdom) {
1794: $ENV{'SERVER_NAME'}=~/(\w+\.\w+)$/;
1795: my $krbdefdom=$1;
1796: $krbdefdom=~tr/a-z/A-Z/;
1797: $krbdef = "krb4";
1798: }
1799: return ($krbdef,$krbdefdom);
1800: }
1.112 bowersj2 1801:
1802: =pod
1803:
1804: =back
1805:
1806: =cut
1.32 matthew 1807:
1.46 matthew 1808: ###############################################################
1809: ## Thesaurus Functions ##
1810: ###############################################################
1.20 www 1811:
1.46 matthew 1812: =pod
1.20 www 1813:
1.112 bowersj2 1814: =head1 Thesaurus Functions
1815:
1816: =over 4
1817:
1818: =item * initialize_keywords
1.46 matthew 1819:
1820: Initializes the package variable %Keywords if it is empty. Uses the
1821: package variable $thesaurus_db_file.
1822:
1823: =cut
1824:
1825: ###################################################
1826:
1827: sub initialize_keywords {
1828: return 1 if (scalar keys(%Keywords));
1829: # If we are here, %Keywords is empty, so fill it up
1830: # Make sure the file we need exists...
1831: if (! -e $thesaurus_db_file) {
1832: &Apache::lonnet::logthis("Attempt to access $thesaurus_db_file".
1833: " failed because it does not exist");
1834: return 0;
1835: }
1836: # Set up the hash as a database
1837: my %thesaurus_db;
1838: if (! tie(%thesaurus_db,'GDBM_File',
1.53 albertel 1839: $thesaurus_db_file,&GDBM_READER(),0640)){
1.46 matthew 1840: &Apache::lonnet::logthis("Could not tie \%thesaurus_db to ".
1841: $thesaurus_db_file);
1842: return 0;
1843: }
1844: # Get the average number of appearances of a word.
1845: my $avecount = $thesaurus_db{'average.count'};
1846: # Put keywords (those that appear > average) into %Keywords
1847: while (my ($word,$data)=each (%thesaurus_db)) {
1848: my ($count,undef) = split /:/,$data;
1849: $Keywords{$word}++ if ($count > $avecount);
1850: }
1851: untie %thesaurus_db;
1852: # Remove special values from %Keywords.
1.356 albertel 1853: foreach my $value ('total.count','average.count') {
1854: delete($Keywords{$value}) if (exists($Keywords{$value}));
1.46 matthew 1855: }
1856: return 1;
1857: }
1858:
1859: ###################################################
1860:
1861: =pod
1862:
1.112 bowersj2 1863: =item * keyword($word)
1.46 matthew 1864:
1865: Returns true if $word is a keyword. A keyword is a word that appears more
1866: than the average number of times in the thesaurus database. Calls
1867: &initialize_keywords
1868:
1869: =cut
1870:
1871: ###################################################
1.20 www 1872:
1873: sub keyword {
1.46 matthew 1874: return if (!&initialize_keywords());
1875: my $word=lc(shift());
1876: $word=~s/\W//g;
1877: return exists($Keywords{$word});
1.20 www 1878: }
1.46 matthew 1879:
1880: ###############################################################
1881:
1882: =pod
1.20 www 1883:
1.112 bowersj2 1884: =item * get_related_words
1.46 matthew 1885:
1.160 matthew 1886: Look up a word in the thesaurus. Takes a scalar argument and returns
1.46 matthew 1887: an array of words. If the keyword is not in the thesaurus, an empty array
1888: will be returned. The order of the words returned is determined by the
1889: database which holds them.
1890:
1891: Uses global $thesaurus_db_file.
1892:
1893: =cut
1894:
1895: ###############################################################
1896: sub get_related_words {
1897: my $keyword = shift;
1898: my %thesaurus_db;
1899: if (! -e $thesaurus_db_file) {
1900: &Apache::lonnet::logthis("Attempt to access $thesaurus_db_file ".
1901: "failed because the file does not exist");
1902: return ();
1903: }
1904: if (! tie(%thesaurus_db,'GDBM_File',
1.53 albertel 1905: $thesaurus_db_file,&GDBM_READER(),0640)){
1.46 matthew 1906: return ();
1907: }
1908: my @Words=();
1909: if (exists($thesaurus_db{$keyword})) {
1.356 albertel 1910: # The first element is the number of times
1911: # the word appears. We do not need it now.
1912: (undef,@Words) = (split(/:/,$thesaurus_db{$keyword}));
1.46 matthew 1913: for (my $i=0;$i<=$#Words;$i++) {
1.356 albertel 1914: ($Words[$i],undef)= split(/\,/,$Words[$i]);
1.20 www 1915: }
1916: }
1.46 matthew 1917: untie %thesaurus_db;
1918: return @Words;
1.14 harris41 1919: }
1.46 matthew 1920:
1.112 bowersj2 1921: =pod
1922:
1923: =back
1924:
1925: =cut
1.61 www 1926:
1927: # -------------------------------------------------------------- Plaintext name
1.81 albertel 1928: =pod
1929:
1.112 bowersj2 1930: =head1 User Name Functions
1931:
1932: =over 4
1933:
1.226 albertel 1934: =item * plainname($uname,$udom,$first)
1.81 albertel 1935:
1.112 bowersj2 1936: Takes a users logon name and returns it as a string in
1.226 albertel 1937: "first middle last generation" form
1938: if $first is set to 'lastname' then it returns it as
1939: 'lastname generation, firstname middlename' if their is a lastname
1.81 albertel 1940:
1941: =cut
1.61 www 1942:
1.295 www 1943:
1.81 albertel 1944: ###############################################################
1.61 www 1945: sub plainname {
1.226 albertel 1946: my ($uname,$udom,$first)=@_;
1.295 www 1947: my %names=&getnames($uname,$udom);
1.226 albertel 1948: my $name=&Apache::lonnet::format_name($names{'firstname'},
1949: $names{'middlename'},
1950: $names{'lastname'},
1951: $names{'generation'},$first);
1952: $name=~s/^\s+//;
1.62 www 1953: $name=~s/\s+$//;
1954: $name=~s/\s+/ /g;
1.353 albertel 1955: if ($name !~ /\S/) { $name=$uname.':'.$udom; }
1.62 www 1956: return $name;
1.61 www 1957: }
1.66 www 1958:
1959: # -------------------------------------------------------------------- Nickname
1.81 albertel 1960: =pod
1961:
1.112 bowersj2 1962: =item * nickname($uname,$udom)
1.81 albertel 1963:
1964: Gets a users name and returns it as a string as
1965:
1966: ""nickname""
1.66 www 1967:
1.81 albertel 1968: if the user has a nickname or
1969:
1970: "first middle last generation"
1971:
1972: if the user does not
1973:
1974: =cut
1.66 www 1975:
1976: sub nickname {
1977: my ($uname,$udom)=@_;
1.295 www 1978: my %names=&getnames($uname,$udom);
1.68 albertel 1979: my $name=$names{'nickname'};
1.66 www 1980: if ($name) {
1981: $name='"'.$name.'"';
1982: } else {
1983: $name=$names{'firstname'}.' '.$names{'middlename'}.' '.
1984: $names{'lastname'}.' '.$names{'generation'};
1985: $name=~s/\s+$//;
1986: $name=~s/\s+/ /g;
1987: }
1988: return $name;
1989: }
1990:
1.295 www 1991: sub getnames {
1992: my ($uname,$udom)=@_;
1993: my $id=$uname.':'.$udom;
1994: my ($names,$cached)=&Apache::lonnet::is_cached_new('namescache',$id);
1995: if ($cached) {
1996: return %{$names};
1997: } else {
1998: my %loadnames=&Apache::lonnet::get('environment',
1999: ['firstname','middlename','lastname','generation','nickname'],
2000: $udom,$uname);
2001: &Apache::lonnet::do_cache_new('namescache',$id,\%loadnames);
2002: return %loadnames;
2003: }
2004: }
1.61 www 2005:
2006: # ------------------------------------------------------------------ Screenname
1.81 albertel 2007:
2008: =pod
2009:
1.112 bowersj2 2010: =item * screenname($uname,$udom)
1.81 albertel 2011:
2012: Gets a users screenname and returns it as a string
2013:
2014: =cut
1.61 www 2015:
2016: sub screenname {
2017: my ($uname,$udom)=@_;
1.258 albertel 2018: if ($uname eq $env{'user.name'} &&
2019: $udom eq $env{'user.domain'}) {return $env{'environment.screenname'};}
1.212 albertel 2020: my %names=&Apache::lonnet::get('environment',['screenname'],$udom,$uname);
1.68 albertel 2021: return $names{'screenname'};
1.62 www 2022: }
2023:
1.212 albertel 2024:
1.62 www 2025: # ------------------------------------------------------------- Message Wrapper
2026:
2027: sub messagewrapper {
1.369 www 2028: my ($link,$username,$domain,$subject,$text)=@_;
1.62 www 2029: return
1.200 matthew 2030: '<a href="/adm/email?compose=individual&'.
1.369 www 2031: 'recname='.$username.'&recdom='.$domain.
2032: '&subject='.&escape($subject).'&text='.&escape($text).'" '.
1.200 matthew 2033: 'title="'.&mt('Send message').'">'.$link.'</a>';
1.74 www 2034: }
2035: # --------------------------------------------------------------- Notes Wrapper
2036:
2037: sub noteswrapper {
2038: my ($link,$un,$do)=@_;
2039: return
2040: "<a href='/adm/email?recordftf=retrieve&recname=$un&recdom=$do'>$link</a>";
1.62 www 2041: }
2042: # ------------------------------------------------------------- Aboutme Wrapper
2043:
2044: sub aboutmewrapper {
1.166 www 2045: my ($link,$username,$domain,$target)=@_;
1.205 www 2046: return '<a href="/adm/'.$domain.'/'.$username.'/aboutme"'.
1.200 matthew 2047: ($target?' target="$target"':'').' title="'.&mt('View this users personal page').'">'.$link.'</a>';
1.62 www 2048: }
2049:
2050: # ------------------------------------------------------------ Syllabus Wrapper
2051:
2052:
2053: sub syllabuswrapper {
1.109 matthew 2054: my ($linktext,$coursedir,$domain,$fontcolor)=@_;
2055: if ($fontcolor) {
2056: $linktext='<font color="'.$fontcolor.'">'.$linktext.'</font>';
2057: }
1.208 matthew 2058: return qq{<a href="/public/$domain/$coursedir/syllabus">$linktext</a>};
1.61 www 2059: }
1.14 harris41 2060:
1.208 matthew 2061: sub track_student_link {
1.268 albertel 2062: my ($linktext,$sname,$sdom,$target,$start) = @_;
2063: my $link ="/adm/trackstudent?";
1.208 matthew 2064: my $title = 'View recent activity';
2065: if (defined($sname) && $sname !~ /^\s*$/ &&
2066: defined($sdom) && $sdom !~ /^\s*$/) {
1.268 albertel 2067: $link .= "selected_student=$sname:$sdom";
1.208 matthew 2068: $title .= ' of this student';
1.268 albertel 2069: }
1.208 matthew 2070: if (defined($target) && $target !~ /^\s*$/) {
2071: $target = qq{target="$target"};
2072: } else {
2073: $target = '';
2074: }
1.268 albertel 2075: if ($start) { $link.='&start='.$start; }
1.208 matthew 2076: return qq{<a href="$link" title="$title" $target>$linktext</a>};
2077: }
2078:
1.112 bowersj2 2079: =pod
2080:
2081: =back
2082:
2083: =head1 Access .tab File Data
2084:
2085: =over 4
2086:
2087: =item * languageids()
2088:
2089: returns list of all language ids
2090:
2091: =cut
2092:
1.14 harris41 2093: sub languageids {
1.16 harris41 2094: return sort(keys(%language));
1.14 harris41 2095: }
2096:
1.112 bowersj2 2097: =pod
2098:
2099: =item * languagedescription()
2100:
2101: returns description of a specified language id
2102:
2103: =cut
2104:
1.14 harris41 2105: sub languagedescription {
1.125 www 2106: my $code=shift;
2107: return ($supported_language{$code}?'* ':'').
2108: $language{$code}.
1.126 www 2109: ($supported_language{$code}?' ('.&mt('interface available').')':'');
1.145 www 2110: }
2111:
2112: sub plainlanguagedescription {
2113: my $code=shift;
2114: return $language{$code};
2115: }
2116:
2117: sub supportedlanguagecode {
2118: my $code=shift;
2119: return $supported_language{$code};
1.97 www 2120: }
2121:
1.112 bowersj2 2122: =pod
2123:
2124: =item * copyrightids()
2125:
2126: returns list of all copyrights
2127:
2128: =cut
2129:
2130: sub copyrightids {
2131: return sort(keys(%cprtag));
2132: }
2133:
2134: =pod
2135:
2136: =item * copyrightdescription()
2137:
2138: returns description of a specified copyright id
2139:
2140: =cut
2141:
2142: sub copyrightdescription {
1.166 www 2143: return &mt($cprtag{shift(@_)});
1.112 bowersj2 2144: }
1.197 matthew 2145:
2146: =pod
2147:
1.192 taceyjo1 2148: =item * source_copyrightids()
2149:
2150: returns list of all source copyrights
2151:
2152: =cut
2153:
2154: sub source_copyrightids {
2155: return sort(keys(%scprtag));
2156: }
2157:
2158: =pod
2159:
2160: =item * source_copyrightdescription()
2161:
2162: returns description of a specified source copyright id
2163:
2164: =cut
2165:
2166: sub source_copyrightdescription {
2167: return &mt($scprtag{shift(@_)});
2168: }
1.112 bowersj2 2169:
2170: =pod
2171:
2172: =item * filecategories()
2173:
2174: returns list of all file categories
2175:
2176: =cut
2177:
2178: sub filecategories {
2179: return sort(keys(%category_extensions));
2180: }
2181:
2182: =pod
2183:
2184: =item * filecategorytypes()
2185:
2186: returns list of file types belonging to a given file
2187: category
2188:
2189: =cut
2190:
2191: sub filecategorytypes {
1.356 albertel 2192: my ($cat) = @_;
2193: return @{$category_extensions{lc($cat)}};
1.112 bowersj2 2194: }
2195:
2196: =pod
2197:
2198: =item * fileembstyle()
2199:
2200: returns embedding style for a specified file type
2201:
2202: =cut
2203:
2204: sub fileembstyle {
2205: return $fe{lc(shift(@_))};
1.169 www 2206: }
2207:
1.351 www 2208: sub filemimetype {
2209: return $fm{lc(shift(@_))};
2210: }
2211:
1.169 www 2212:
2213: sub filecategoryselect {
2214: my ($name,$value)=@_;
1.189 matthew 2215: return &select_form($value,$name,
1.169 www 2216: '' => &mt('Any category'),
2217: map { $_,$_ } sort(keys(%category_extensions)));
1.112 bowersj2 2218: }
2219:
2220: =pod
2221:
2222: =item * filedescription()
2223:
2224: returns description for a specified file type
2225:
2226: =cut
2227:
2228: sub filedescription {
1.188 matthew 2229: my $file_description = $fd{lc(shift())};
2230: $file_description =~ s:([\[\]]):~$1:g;
2231: return &mt($file_description);
1.112 bowersj2 2232: }
2233:
2234: =pod
2235:
2236: =item * filedescriptionex()
2237:
2238: returns description for a specified file type with
2239: extra formatting
2240:
2241: =cut
2242:
2243: sub filedescriptionex {
2244: my $ex=shift;
1.188 matthew 2245: my $file_description = $fd{lc($ex)};
2246: $file_description =~ s:([\[\]]):~$1:g;
2247: return '.'.$ex.' '.&mt($file_description);
1.112 bowersj2 2248: }
2249:
2250: # End of .tab access
2251: =pod
2252:
2253: =back
2254:
2255: =cut
2256:
2257: # ------------------------------------------------------------------ File Types
2258: sub fileextensions {
2259: return sort(keys(%fe));
2260: }
2261:
1.97 www 2262: # ----------------------------------------------------------- Display Languages
2263: # returns a hash with all desired display languages
2264: #
2265:
2266: sub display_languages {
2267: my %languages=();
1.356 albertel 2268: foreach my $lang (&preferred_languages()) {
2269: $languages{$lang}=1;
1.97 www 2270: }
2271: &get_unprocessed_cgi($ENV{'QUERY_STRING'},['displaylanguage']);
1.258 albertel 2272: if ($env{'form.displaylanguage'}) {
1.356 albertel 2273: foreach my $lang (split(/\s*(\,|\;|\:)\s*/,$env{'form.displaylanguage'})) {
2274: $languages{$lang}=1;
1.97 www 2275: }
2276: }
2277: return %languages;
1.14 harris41 2278: }
2279:
1.117 www 2280: sub preferred_languages {
2281: my @languages=();
1.258 albertel 2282: if ($env{'course.'.$env{'request.course.id'}.'.languages'}) {
1.117 www 2283: @languages=(@languages,split(/\s*(\,|\;|\:)\s*/,
1.258 albertel 2284: $env{'course.'.$env{'request.course.id'}.'.languages'}));
1.177 www 2285: }
1.258 albertel 2286: if ($env{'environment.languages'}) {
2287: @languages=split(/\s*(\,|\;|\:)\s*/,$env{'environment.languages'});
1.118 www 2288: }
1.162 www 2289: my $browser=(split(/\;/,$ENV{'HTTP_ACCEPT_LANGUAGE'}))[0];
2290: if ($browser) {
2291: @languages=(@languages,split(/\s*(\,|\;|\:)\s*/,$browser));
2292: }
1.258 albertel 2293: if ($Apache::lonnet::domain_lang_def{$env{'user.domain'}}) {
1.118 www 2294: @languages=(@languages,
1.258 albertel 2295: $Apache::lonnet::domain_lang_def{$env{'user.domain'}});
1.118 www 2296: }
1.258 albertel 2297: if ($Apache::lonnet::domain_lang_def{$env{'request.role.domain'}}) {
1.118 www 2298: @languages=(@languages,
1.258 albertel 2299: $Apache::lonnet::domain_lang_def{$env{'request.role.domain'}});
1.118 www 2300: }
2301: if ($Apache::lonnet::domain_lang_def{
2302: $Apache::lonnet::perlvar{'lonDefDomain'}}) {
2303: @languages=(@languages,
2304: $Apache::lonnet::domain_lang_def{
2305: $Apache::lonnet::perlvar{'lonDefDomain'}});
2306: }
2307: # turn "en-ca" into "en-ca,en"
2308: my @genlanguages;
1.356 albertel 2309: foreach my $lang (@languages) {
2310: unless ($lang=~/\w/) { next; }
2311: push (@genlanguages,$lang);
2312: if ($lang=~/(\-|\_)/) {
2313: push(@genlanguages,(split(/(\-|\_)/,$lang))[0]);
1.118 www 2314: }
2315: }
2316: return @genlanguages;
1.117 www 2317: }
2318:
1.112 bowersj2 2319: ###############################################################
2320: ## Student Answer Attempts ##
2321: ###############################################################
2322:
2323: =pod
2324:
2325: =head1 Alternate Problem Views
2326:
2327: =over 4
2328:
2329: =item * get_previous_attempt($symb, $username, $domain, $course,
2330: $getattempt, $regexp, $gradesub)
2331:
2332: Return string with previous attempt on problem. Arguments:
2333:
2334: =over 4
2335:
2336: =item * $symb: Problem, including path
2337:
2338: =item * $username: username of the desired student
2339:
2340: =item * $domain: domain of the desired student
1.14 harris41 2341:
1.112 bowersj2 2342: =item * $course: Course ID
1.14 harris41 2343:
1.112 bowersj2 2344: =item * $getattempt: Leave blank for all attempts, otherwise put
2345: something
1.14 harris41 2346:
1.112 bowersj2 2347: =item * $regexp: if string matches this regexp, the string will be
2348: sent to $gradesub
1.14 harris41 2349:
1.112 bowersj2 2350: =item * $gradesub: routine that processes the string if it matches $regexp
1.14 harris41 2351:
1.112 bowersj2 2352: =back
1.14 harris41 2353:
1.112 bowersj2 2354: The output string is a table containing all desired attempts, if any.
1.16 harris41 2355:
1.112 bowersj2 2356: =cut
1.1 albertel 2357:
2358: sub get_previous_attempt {
1.43 ng 2359: my ($symb,$username,$domain,$course,$getattempt,$regexp,$gradesub)=@_;
1.1 albertel 2360: my $prevattempts='';
1.43 ng 2361: no strict 'refs';
1.1 albertel 2362: if ($symb) {
1.3 albertel 2363: my (%returnhash)=
2364: &Apache::lonnet::restore($symb,$course,$domain,$username);
1.1 albertel 2365: if ($returnhash{'version'}) {
2366: my %lasthash=();
2367: my $version;
2368: for ($version=1;$version<=$returnhash{'version'};$version++) {
1.356 albertel 2369: foreach my $key (sort(split(/\:/,$returnhash{$version.':keys'}))) {
2370: $lasthash{$key}=$returnhash{$version.':'.$key};
1.19 harris41 2371: }
1.1 albertel 2372: }
1.43 ng 2373: $prevattempts='<table border="0" width="100%"><tr><td bgcolor="#777777">';
1.40 ng 2374: $prevattempts.='<table border="0" width="100%"><tr bgcolor="#e6ffff"><td>History</td>';
1.356 albertel 2375: foreach my $key (sort(keys(%lasthash))) {
2376: my ($ign,@parts) = split(/\./,$key);
1.41 ng 2377: if ($#parts > 0) {
1.31 albertel 2378: my $data=$parts[-1];
2379: pop(@parts);
1.40 ng 2380: $prevattempts.='<td>Part '.join('.',@parts).'<br />'.$data.' </td>';
1.31 albertel 2381: } else {
1.41 ng 2382: if ($#parts == 0) {
2383: $prevattempts.='<th>'.$parts[0].'</th>';
2384: } else {
2385: $prevattempts.='<th>'.$ign.'</th>';
2386: }
1.31 albertel 2387: }
1.16 harris41 2388: }
1.40 ng 2389: if ($getattempt eq '') {
2390: for ($version=1;$version<=$returnhash{'version'};$version++) {
2391: $prevattempts.='</tr><tr bgcolor="#ffffe6"><td>Transaction '.$version.'</td>';
1.356 albertel 2392: foreach my $key (sort(keys(%lasthash))) {
1.40 ng 2393: my $value;
1.356 albertel 2394: if ($key =~ /timestamp/) {
2395: $value=scalar(localtime($returnhash{$version.':'.$key}));
1.40 ng 2396: } else {
1.356 albertel 2397: $value=$returnhash{$version.':'.$key};
1.40 ng 2398: }
1.369 www 2399: $prevattempts.='<td>'.&unescape($value).' </td>';
1.40 ng 2400: }
2401: }
1.1 albertel 2402: }
1.40 ng 2403: $prevattempts.='</tr><tr bgcolor="#ffffe6"><td>Current</td>';
1.356 albertel 2404: foreach my $key (sort(keys(%lasthash))) {
1.5 albertel 2405: my $value;
1.356 albertel 2406: if ($key =~ /timestamp/) {
2407: $value=scalar(localtime($lasthash{$key}));
1.5 albertel 2408: } else {
1.356 albertel 2409: $value=$lasthash{$key};
1.5 albertel 2410: }
1.369 www 2411: $value=&unescape($value);
1.356 albertel 2412: if ($key =~/$regexp$/ && (defined &$gradesub)) {$value = &$gradesub($value)}
1.40 ng 2413: $prevattempts.='<td>'.$value.' </td>';
1.16 harris41 2414: }
1.40 ng 2415: $prevattempts.='</tr></table></td></tr></table>';
1.1 albertel 2416: } else {
2417: $prevattempts='Nothing submitted - no attempts.';
2418: }
2419: } else {
2420: $prevattempts='No data.';
2421: }
1.10 albertel 2422: }
2423:
1.107 albertel 2424: sub relative_to_absolute {
2425: my ($url,$output)=@_;
2426: my $parser=HTML::TokeParser->new(\$output);
2427: my $token;
2428: my $thisdir=$url;
2429: my @rlinks=();
2430: while ($token=$parser->get_token) {
2431: if ($token->[0] eq 'S') {
2432: if ($token->[1] eq 'a') {
2433: if ($token->[2]->{'href'}) {
2434: $rlinks[$#rlinks+1]=$token->[2]->{'href'};
2435: }
2436: } elsif ($token->[1] eq 'img' || $token->[1] eq 'embed' ) {
2437: $rlinks[$#rlinks+1]=$token->[2]->{'src'};
2438: } elsif ($token->[1] eq 'base') {
2439: $thisdir=$token->[2]->{'href'};
2440: }
2441: }
2442: }
2443: $thisdir=~s-/[^/]*$--;
1.356 albertel 2444: foreach my $link (@rlinks) {
2445: unless (($link=~/^http:\/\//i) ||
2446: ($link=~/^\//) ||
2447: ($link=~/^javascript:/i) ||
2448: ($link=~/^mailto:/i) ||
2449: ($link=~/^\#/)) {
2450: my $newlocation=&Apache::lonnet::hreflocation($thisdir,$link);
2451: $output=~s/(\"|\'|\=\s*)\Q$link\E(\"|\'|\s|\>)/$1$newlocation$2/;
1.107 albertel 2452: }
2453: }
2454: # -------------------------------------------------- Deal with Applet codebases
2455: $output=~s/(\<applet[^\>]+)(codebase\=[^\S\>]+)*([^\>]*)\>/$1.($2?$2:' codebase="'.$thisdir.'"').$3.'>'/gei;
2456: return $output;
2457: }
2458:
1.112 bowersj2 2459: =pod
2460:
2461: =item * get_student_view
2462:
2463: show a snapshot of what student was looking at
2464:
2465: =cut
2466:
1.10 albertel 2467: sub get_student_view {
1.186 albertel 2468: my ($symb,$username,$domain,$courseid,$target,$moreenv) = @_;
1.114 www 2469: my ($map,$id,$feedurl) = &Apache::lonnet::decode_symb($symb);
1.186 albertel 2470: my (%form);
1.10 albertel 2471: my @elements=('symb','courseid','domain','username');
2472: foreach my $element (@elements) {
1.186 albertel 2473: $form{'grade_'.$element}=eval '$'.$element #'
1.10 albertel 2474: }
1.186 albertel 2475: if (defined($moreenv)) {
2476: %form=(%form,%{$moreenv});
2477: }
1.236 albertel 2478: if (defined($target)) { $form{'grade_target'} = $target; }
1.107 albertel 2479: $feedurl=&Apache::lonnet::clutter($feedurl);
1.186 albertel 2480: my $userview=&Apache::lonnet::ssi_body($feedurl,%form);
1.11 albertel 2481: $userview=~s/\<body[^\>]*\>//gi;
2482: $userview=~s/\<\/body\>//gi;
2483: $userview=~s/\<html\>//gi;
2484: $userview=~s/\<\/html\>//gi;
2485: $userview=~s/\<head\>//gi;
2486: $userview=~s/\<\/head\>//gi;
2487: $userview=~s/action\s*\=/would_be_action\=/gi;
1.107 albertel 2488: $userview=&relative_to_absolute($feedurl,$userview);
1.11 albertel 2489: return $userview;
2490: }
2491:
1.112 bowersj2 2492: =pod
2493:
2494: =item * get_student_answers()
2495:
2496: show a snapshot of how student was answering problem
2497:
2498: =cut
2499:
1.11 albertel 2500: sub get_student_answers {
1.100 sakharuk 2501: my ($symb,$username,$domain,$courseid,%form) = @_;
1.114 www 2502: my ($map,$id,$feedurl) = &Apache::lonnet::decode_symb($symb);
1.186 albertel 2503: my (%moreenv);
1.11 albertel 2504: my @elements=('symb','courseid','domain','username');
2505: foreach my $element (@elements) {
1.186 albertel 2506: $moreenv{'grade_'.$element}=eval '$'.$element #'
1.10 albertel 2507: }
1.186 albertel 2508: $moreenv{'grade_target'}='answer';
2509: %moreenv=(%form,%moreenv);
2510: my $userview=&Apache::lonnet::ssi('/res/'.$feedurl,%moreenv);
1.10 albertel 2511: return $userview;
1.1 albertel 2512: }
1.116 albertel 2513:
2514: =pod
2515:
2516: =item * &submlink()
2517:
1.242 albertel 2518: Inputs: $text $uname $udom $symb $target
1.116 albertel 2519:
2520: Returns: A link to grades.pm such as to see the SUBM view of a student
2521:
2522: =cut
2523:
2524: ###############################################
2525: sub submlink {
1.242 albertel 2526: my ($text,$uname,$udom,$symb,$target)=@_;
1.116 albertel 2527: if (!($uname && $udom)) {
2528: (my $cursymb, my $courseid,$udom,$uname)=
2529: &Apache::lonxml::whichuser($symb);
2530: if (!$symb) { $symb=$cursymb; }
2531: }
1.254 matthew 2532: if (!$symb) { $symb=&Apache::lonnet::symbread(); }
1.369 www 2533: $symb=&escape($symb);
1.242 albertel 2534: if ($target) { $target="target=\"$target\""; }
2535: return '<a href="/adm/grades?&command=submission&'.
2536: 'symb='.$symb.'&student='.$uname.
2537: '&userdom='.$udom.'" '.$target.'>'.$text.'</a>';
2538: }
2539: ##############################################
2540:
2541: =pod
2542:
2543: =item * &pgrdlink()
2544:
2545: Inputs: $text $uname $udom $symb $target
2546:
2547: Returns: A link to grades.pm such as to see the PGRD view of a student
2548:
2549: =cut
2550:
2551: ###############################################
2552: sub pgrdlink {
2553: my $link=&submlink(@_);
2554: $link=~s/(&command=submission)/$1&showgrading=yes/;
2555: return $link;
2556: }
2557: ##############################################
2558:
2559: =pod
2560:
2561: =item * &pprmlink()
2562:
2563: Inputs: $text $uname $udom $symb $target
2564:
2565: Returns: A link to parmset.pm such as to see the PPRM view of a
1.283 albertel 2566: student and a specific resource
1.242 albertel 2567:
2568: =cut
2569:
2570: ###############################################
2571: sub pprmlink {
2572: my ($text,$uname,$udom,$symb,$target)=@_;
2573: if (!($uname && $udom)) {
2574: (my $cursymb, my $courseid,$udom,$uname)=
2575: &Apache::lonxml::whichuser($symb);
2576: if (!$symb) { $symb=$cursymb; }
2577: }
1.254 matthew 2578: if (!$symb) { $symb=&Apache::lonnet::symbread(); }
1.369 www 2579: $symb=&escape($symb);
1.242 albertel 2580: if ($target) { $target="target=\"$target\""; }
2581: return '<a href="/adm/parmset?&command=set&'.
2582: 'symb='.$symb.'&uname='.$uname.
2583: '&udom='.$udom.'" '.$target.'>'.$text.'</a>';
1.116 albertel 2584: }
2585: ##############################################
1.37 matthew 2586:
1.112 bowersj2 2587: =pod
2588:
2589: =back
2590:
2591: =cut
2592:
1.37 matthew 2593: ###############################################
1.51 www 2594:
2595:
2596: sub timehash {
2597: my @ltime=localtime(shift);
2598: return ( 'seconds' => $ltime[0],
2599: 'minutes' => $ltime[1],
2600: 'hours' => $ltime[2],
2601: 'day' => $ltime[3],
2602: 'month' => $ltime[4]+1,
2603: 'year' => $ltime[5]+1900,
2604: 'weekday' => $ltime[6],
2605: 'dayyear' => $ltime[7]+1,
2606: 'dlsav' => $ltime[8] );
2607: }
2608:
1.370 ! www 2609: sub utc_string {
! 2610: my ($date)=@_;
! 2611: my @utctime=gmtime($date);
! 2612: my $year=$utctime[5]+1900;
! 2613: my $month=$utctime[4]+1;
! 2614: return "$year$month$utctime[3]T$utctime[2]$utctime[1]$utctime[0]Z";
! 2615: }
! 2616:
1.51 www 2617: sub maketime {
2618: my %th=@_;
2619: return POSIX::mktime(
2620: ($th{'seconds'},$th{'minutes'},$th{'hours'},
1.210 www 2621: $th{'day'},$th{'month'}-1,$th{'year'}-1900,0,0,-1));
1.70 www 2622: }
2623:
2624: #########################################
1.51 www 2625:
2626: sub findallcourses {
1.355 albertel 2627: my ($roles) = @_;
2628: my %roles;
2629: if (ref($roles)) { %roles = map { $_ => 1 } @{$roles}; }
1.348 albertel 2630: my %courses;
1.51 www 2631: my $now=time;
1.348 albertel 2632: foreach my $key (keys(%env)) {
2633: if ( $key=~m{^user\.role\.(\w+)\./(\w+)/(\w+)} ) {
2634: my ($role,$domain,$id) = ($1,$2,$3);
2635: next if ($role eq 'ca' || $role eq 'aa');
1.355 albertel 2636: next if (%roles && !exists($roles{$role}));
1.354 albertel 2637: my ($starttime,$endtime)=split(/\./,$env{$key});
1.51 www 2638: my $active=1;
2639: if ($starttime) {
2640: if ($now<$starttime) { $active=0; }
2641: }
2642: if ($endtime) {
2643: if ($now>$endtime) { $active=0; }
2644: }
1.348 albertel 2645: if ($active) { $courses{$domain.'_'.$id}=1; }
1.51 www 2646: }
2647: }
1.348 albertel 2648: return keys(%courses);
1.51 www 2649: }
1.37 matthew 2650:
1.54 www 2651: ###############################################
1.60 matthew 2652: ###############################################
2653:
2654: =pod
2655:
1.112 bowersj2 2656: =head1 Domain Template Functions
2657:
2658: =over 4
2659:
2660: =item * &determinedomain()
1.60 matthew 2661:
2662: Inputs: $domain (usually will be undef)
2663:
1.63 www 2664: Returns: Determines which domain should be used for designs
1.60 matthew 2665:
2666: =cut
1.54 www 2667:
1.60 matthew 2668: ###############################################
1.63 www 2669: sub determinedomain {
2670: my $domain=shift;
2671: if (! $domain) {
1.60 matthew 2672: # Determine domain if we have not been given one
2673: $domain = $Apache::lonnet::perlvar{'lonDefDomain'};
1.258 albertel 2674: if ($env{'user.domain'}) { $domain=$env{'user.domain'}; }
2675: if ($env{'request.role.domain'}) {
2676: $domain=$env{'request.role.domain'};
1.60 matthew 2677: }
2678: }
1.63 www 2679: return $domain;
2680: }
2681: ###############################################
2682: =pod
2683:
1.112 bowersj2 2684: =item * &domainlogo()
1.63 www 2685:
2686: Inputs: $domain (usually will be undef)
2687:
2688: Returns: A link to a domain logo, if the domain logo exists.
2689: If the domain logo does not exist, a description of the domain.
2690:
2691: =cut
1.112 bowersj2 2692:
1.63 www 2693: ###############################################
2694: sub domainlogo {
2695: my $domain = &determinedomain(shift);
2696: # See if there is a logo
1.59 www 2697: if (-e '/home/httpd/html/adm/lonDomLogos/'.$domain.'.gif') {
1.215 albertel 2698: my $logo=&lonhttpdurl("/adm/lonDomLogos/$domain.gif");
2699: return '<img src="'.$logo.'" alt="'.$domain.'" />';
1.60 matthew 2700: } elsif(exists($Apache::lonnet::domaindescription{$domain})) {
2701: return $Apache::lonnet::domaindescription{$domain};
1.59 www 2702: } else {
1.60 matthew 2703: return '';
1.59 www 2704: }
2705: }
1.63 www 2706: ##############################################
2707:
2708: =pod
2709:
1.112 bowersj2 2710: =item * &designparm()
1.63 www 2711:
2712: Inputs: $which parameter; $domain (usually will be undef)
2713:
2714: Returns: value of designparamter $which
2715:
2716: =cut
1.112 bowersj2 2717:
1.63 www 2718: ##############################################
2719: sub designparm {
2720: my ($which,$domain)=@_;
1.258 albertel 2721: if ($env{'browser.blackwhite'} eq 'on') {
1.110 www 2722: if ($which=~/\.(font|alink|vlink|link)$/) {
2723: return '#000000';
2724: }
2725: if ($which=~/\.(pgbg|sidebg)$/) {
2726: return '#FFFFFF';
2727: }
2728: if ($which=~/\.tabbg$/) {
2729: return '#CCCCCC';
2730: }
2731: }
1.258 albertel 2732: if ($env{'environment.color.'.$which}) {
2733: return $env{'environment.color.'.$which};
1.96 www 2734: }
1.63 www 2735: $domain=&determinedomain($domain);
2736: if ($designhash{$domain.'.'.$which}) {
2737: return $designhash{$domain.'.'.$which};
2738: } else {
2739: return $designhash{'default.'.$which};
2740: }
2741: }
1.59 www 2742:
1.60 matthew 2743: ###############################################
2744: ###############################################
2745:
2746: =pod
2747:
1.112 bowersj2 2748: =back
2749:
2750: =head1 HTTP Helpers
2751:
2752: =over 4
2753:
2754: =item * &bodytag()
1.60 matthew 2755:
2756: Returns a uniform header for LON-CAPA web pages.
2757:
2758: Inputs:
2759:
1.112 bowersj2 2760: =over 4
2761:
2762: =item * $title, A title to be displayed on the page.
2763:
2764: =item * $function, the current role (can be undef).
2765:
2766: =item * $addentries, extra parameters for the <body> tag.
2767:
2768: =item * $bodyonly, if defined, only return the <body> tag.
2769:
2770: =item * $domain, if defined, force a given domain.
2771:
2772: =item * $forcereg, if page should register as content page (relevant for
1.86 www 2773: text interface only)
1.60 matthew 2774:
1.326 albertel 2775: =item * $customtitle, alternate text to use instead of $title
2776: in the title box that appears, this text
2777: is not auto translated like the $title is
1.309 albertel 2778:
2779: =item * $notopbar, if true, keep the 'what is this' info but remove the
2780: navigational links
1.317 albertel 2781:
1.338 albertel 2782: =item * $bgcolor, used to override the bgcolor on a webpage to a specific value
2783:
2784: =item * $notitle, if true keep the nav controls, but remove the title bar
2785:
1.361 albertel 2786: =item * $no_inline_link, if true and in remote mode, don't show the
2787: 'Switch To Inline Menu' link
2788:
1.317 albertel 2789:
1.112 bowersj2 2790: =back
2791:
1.60 matthew 2792: Returns: A uniform header for LON-CAPA web pages.
2793: If $bodyonly is nonzero, a string containing a <body> tag will be returned.
2794: If $bodyonly is undef or zero, an html string containing a <body> tag and
2795: other decorations will be returned.
2796:
2797: =cut
2798:
1.54 www 2799: sub bodytag {
1.309 albertel 2800: my ($title,$function,$addentries,$bodyonly,$domain,$forcereg,$customtitle,
1.361 albertel 2801: $notopbar,$bgcolor,$notitle,$no_inline_link)=@_;
1.339 albertel 2802:
1.117 www 2803: $title=&mt($title);
1.339 albertel 2804:
1.183 matthew 2805: $function = &get_users_function() if (!$function);
1.339 albertel 2806: my $img = &designparm($function.'.img',$domain);
2807: my $font = &designparm($function.'.font',$domain);
2808: my $pgbg = $bgcolor || &designparm($function.'.pgbg',$domain);
2809:
2810: my %design = ( 'style' => 'margin-top: 0px',
2811: 'bgcolor' => $pgbg,
2812: 'text' => $font,
2813: 'alink' => &designparm($function.'.alink',$domain),
2814: 'vlink' => &designparm($function.'.vlink',$domain),
2815: 'link' => &designparm($function.'.link',$domain),);
2816: @$addentries{keys(%design)} = @design{keys(%design)};
2817:
1.63 www 2818: # role and realm
1.359 albertel 2819: my ($role,$realm) =
2820: &Apache::lonnet::plaintext((split(/\./,$env{'request.role'}))[0]);
1.55 www 2821: # realm
1.258 albertel 2822: if ($env{'request.course.id'}) {
1.359 albertel 2823: $realm = $env{'course.'.$env{'request.course.id'}.'.description'};
1.54 www 2824: }
1.359 albertel 2825: if (!$realm) { $realm=' '; }
1.55 www 2826: # Set messages
1.60 matthew 2827: my $messages=&domainlogo($domain);
1.101 www 2828: # Port for miniserver
1.83 albertel 2829: my $lonhttpdPort=$Apache::lonnet::perlvar{'lonhttpdPort'};
2830: if (!defined($lonhttpdPort)) { $lonhttpdPort='8080'; }
1.330 albertel 2831:
2832: my $extra_body_attr = &make_attr_string($forcereg,$addentries);
1.329 albertel 2833:
1.101 www 2834: # construct main body tag
1.359 albertel 2835: my $bodytag = "<body $extra_body_attr>".
2836: &Apache::lontexconvert::init_math_support();
1.252 albertel 2837:
1.332 albertel 2838: if ($bodyonly
2839: || ($env{'request.state'} eq 'construct'
2840: && $env{'environment.remote'} ne 'off' )) {
1.60 matthew 2841: return $bodytag;
1.258 albertel 2842: } elsif ($env{'browser.interface'} eq 'textual') {
1.95 www 2843: # Accessibility
1.224 raeburn 2844:
1.337 albertel 2845: $bodytag.=&Apache::lonmenu::menubuttons($forcereg,$forcereg);
1.338 albertel 2846: if (!$notitle) {
1.337 albertel 2847: $bodytag.='<h1>LON-CAPA: '.$title.'</h1>';
2848: }
2849: return $bodytag;
1.359 albertel 2850: }
2851:
2852:
2853:
2854: my $roleinfo=(<<ENDROLE);
2855: <td class="LC_title_bar_who">
2856: <div class="LC_title_bar_name">
1.258 albertel 2857: $env{'environment.firstname'}
2858: $env{'environment.middlename'}
2859: $env{'environment.lastname'}
2860: $env{'environment.generation'}
1.361 albertel 2861:
1.359 albertel 2862: </div>
2863: <div class="LC_title_bar_role">
1.361 albertel 2864: $role
1.359 albertel 2865: </div>
2866: <div class="LC_title_bar_realm">
1.361 albertel 2867: $realm
1.359 albertel 2868: </div>
1.206 albertel 2869: </td>
2870: ENDROLE
1.235 raeburn 2871:
1.359 albertel 2872: my $titleinfo = '<span class="LC_title_bar_title">'.$title.'</span>';
2873: if ($customtitle) {
2874: $titleinfo = $customtitle;
2875: }
2876: #
2877: # Extra info if you are the DC
2878: my $dc_info = '';
2879: if ($env{'user.adv'} && exists($env{'user.role.dc./'.
2880: $env{'course.'.$env{'request.course.id'}.
2881: '.domain'}.'/'})) {
2882: my $cid = $env{'request.course.id'};
2883: $dc_info.= $cid.' '.$env{'course.'.$cid.'.internal.coursecode'};
2884: $dc_info = '('.$dc_info.')';
2885: }
2886:
2887: if ($env{'environment.remote'} eq 'off') {
2888: # No Remote
1.258 albertel 2889: if ($env{'request.state'} eq 'construct') {
1.359 albertel 2890: $forcereg=1;
2891: }
2892:
2893: if (!$customtitle && $env{'request.state'} eq 'construct') {
2894: # this is for resources; directories have customtitle, and crumbs
2895: # and select recent are created in lonpubdir.pm
1.229 albertel 2896: my ($uname,$thisdisfn)=
1.258 albertel 2897: ($env{'request.filename'} =~ m|^/home/([^/]+)/public_html/(.*)|);
1.229 albertel 2898: my $formaction='/priv/'.$uname.'/'.$thisdisfn;
2899: $formaction=~s/\/+/\//g;
2900:
1.359 albertel 2901: my $parentpath = '';
2902: my $lastitem = '';
2903: if ($thisdisfn =~ m-(.+/)([^/]*)$-) {
2904: $parentpath = $1;
2905: $lastitem = $2;
2906: } else {
2907: $lastitem = $thisdisfn;
2908: }
2909: $titleinfo =
2910: &Apache::loncommon::help_open_menu('','','','',3,'Authoring').
2911: '<b>Construction Space</b>: '.
2912: '<form name="dirs" method="post" action="'.$formaction
2913: .'" target="_top"><tt><b>'
2914: .&Apache::lonhtmlcommon::crumbs($uname.'/'.$parentpath,'_top','/priv','','+1',1)."<font size=\"+1\">$lastitem</font></b></tt><br />"
2915: .&Apache::lonhtmlcommon::select_recent('construct','recent','this.form.action=this.form.recent.value;this.form.submit()')
2916: .'</form>'
2917: .&Apache::lonmenu::constspaceform();
1.235 raeburn 2918: }
1.359 albertel 2919:
1.337 albertel 2920: my $titletable;
1.338 albertel 2921: if (!$notitle) {
1.337 albertel 2922: $titletable =
1.359 albertel 2923: '<table id="LC_title_bar">'.
2924: "<tr><td> $titleinfo $dc_info</td>".$roleinfo.
2925: '</tr></table>';
1.337 albertel 2926: }
1.359 albertel 2927: if ($notopbar) {
2928: $bodytag .= $titletable;
2929: } else {
2930: if ($env{'request.state'} eq 'construct') {
1.337 albertel 2931: $bodytag .= &Apache::lonmenu::menubuttons($forcereg,$forcereg,
2932: $titletable);
1.272 raeburn 2933: } else {
1.336 albertel 2934: $bodytag .= &Apache::lonmenu::menubuttons($forcereg,$forcereg).
1.359 albertel 2935: $titletable;
1.272 raeburn 2936: }
1.235 raeburn 2937: }
2938: return $bodytag;
1.94 www 2939: }
1.95 www 2940:
1.93 www 2941: #
1.95 www 2942: # Top frame rendering, Remote is up
1.93 www 2943: #
1.359 albertel 2944:
2945: my $upperleft='<img src="http://'.$ENV{'HTTP_HOST'}.':'.
2946: $lonhttpdPort.$img.'" alt="'.$function.'" />';
2947:
1.305 www 2948: # Explicit link to get inline menu
1.361 albertel 2949: my $menu= ($no_inline_link?''
2950: :'<br /><a href="/adm/remote?action=collapse">'.&mt('Switch to Inline Menu Mode').'</a>');
1.245 matthew 2951: #
1.338 albertel 2952: if ($notitle) {
1.337 albertel 2953: return $bodytag;
2954: }
1.94 www 2955: return(<<ENDBODY);
1.60 matthew 2956: $bodytag
1.359 albertel 2957: <table id="LC_title_bar" class="LC_with_remote">
1.368 albertel 2958: <tr><td class="LC_title_bar_role_logo">$upperleft</td>
1.359 albertel 2959: <td class="LC_title_bar_domain_logo">$messages </td>
1.54 www 2960: </tr>
1.359 albertel 2961: <tr><td>$titleinfo $dc_info $menu</td>
2962: $roleinfo
1.368 albertel 2963: </tr>
1.356 albertel 2964: </table>
1.54 www 2965: ENDBODY
1.182 matthew 2966: }
2967:
1.330 albertel 2968: sub make_attr_string {
2969: my ($register,$attr_ref) = @_;
2970:
2971: if ($attr_ref && !ref($attr_ref)) {
2972: die("addentries Must be a hash ref ".
2973: join(':',caller(1))." ".
2974: join(':',caller(0))." ");
2975: }
2976:
2977: if ($register) {
1.339 albertel 2978: my ($on_load,$on_unload);
2979: foreach my $key (keys(%{$attr_ref})) {
2980: if (lc($key) eq 'onload') {
2981: $on_load.=$attr_ref->{$key}.';';
2982: delete($attr_ref->{$key});
2983:
2984: } elsif (lc($key) eq 'onunload') {
2985: $on_unload.=$attr_ref->{$key}.';';
2986: delete($attr_ref->{$key});
2987: }
2988: }
2989: $attr_ref->{'onload'} =
2990: &Apache::lonmenu::loadevents(). $on_load;
2991: $attr_ref->{'onunload'}=
2992: &Apache::lonmenu::unloadevents().$on_unload;
2993: }
2994:
2995: # Accessibility font enhance
2996: if ($env{'browser.fontenhance'} eq 'on') {
2997: my $style;
2998: foreach my $key (keys(%{$attr_ref})) {
2999: if (lc($key) eq 'style') {
3000: $style.=$attr_ref->{$key}.';';
3001: delete($attr_ref->{$key});
3002: }
3003: }
3004: $attr_ref->{'style'}=$style.'; font-size: x-large;';
1.330 albertel 3005: }
1.339 albertel 3006:
3007: if ($env{'browser.blackwhite'} eq 'on') {
3008: delete($attr_ref->{'font'});
3009: delete($attr_ref->{'link'});
3010: delete($attr_ref->{'alink'});
3011: delete($attr_ref->{'vlink'});
3012: delete($attr_ref->{'bgcolor'});
3013: delete($attr_ref->{'background'});
3014: }
3015:
1.330 albertel 3016: my $attr_string;
3017: foreach my $attr (keys(%$attr_ref)) {
3018: $attr_string .= " $attr=\"".$attr_ref->{$attr}.'" ';
3019: }
3020: return $attr_string;
3021: }
3022:
3023:
1.182 matthew 3024: ###############################################
1.251 albertel 3025: ###############################################
3026:
3027: =pod
3028:
3029: =back
3030:
1.306 albertel 3031: =head1 HTML Helpers
1.251 albertel 3032:
3033: =over 4
3034:
3035: =item * &endbodytag()
3036:
3037: Returns a uniform footer for LON-CAPA web pages.
3038:
1.306 albertel 3039: Inputs: none
1.251 albertel 3040:
3041: =back
3042:
3043: =cut
3044:
3045: sub endbodytag {
3046: my $endbodytag='</body>';
1.269 albertel 3047: $endbodytag=&Apache::lontexconvert::jsMath_process()."\n".$endbodytag;
1.315 albertel 3048: if ( exists( $env{'internal.head.redirect'} ) ) {
3049: $endbodytag=
3050: "<br /><a href=\"$env{'internal.head.redirect'}\">".
3051: &mt('Continue').'</a>'.
3052: $endbodytag;
3053: }
1.251 albertel 3054: return $endbodytag;
3055: }
3056:
1.352 albertel 3057: =pod
3058:
3059: =over 4
3060:
3061: =item * &standard_css()
3062:
3063: Returns a style sheet
3064:
3065: Inputs: (all optional)
3066: domain -> force to color decorate a page for a specific
3067: domain
3068: function -> force usage of a specific rolish color scheme
3069: bgcolor -> override the default page bgcolor
3070:
3071: =back
3072:
3073: =cut
3074:
1.343 albertel 3075: sub standard_css {
1.345 albertel 3076: my ($function,$domain,$bgcolor) = @_;
1.352 albertel 3077: $function = &get_users_function() if (!$function);
3078: my $img = &designparm($function.'.img', $domain);
3079: my $tabbg = &designparm($function.'.tabbg', $domain);
3080: my $font = &designparm($function.'.font', $domain);
1.345 albertel 3081: my $sidebg = &designparm($function.'.sidebg',$domain);
1.352 albertel 3082: my $pgbg = $bgcolor ||
3083: &designparm($function.'.pgbg', $domain);
3084: my $alink = &designparm($function.'.alink', $domain);
3085: my $vlink = &designparm($function.'.vlink', $domain);
3086: my $link = &designparm($function.'.link', $domain);
3087:
3088: my $sans = 'Arial,Helvetica,sans-serif';
3089: my $data_table_head = $tabbg;
3090: my $data_table_light = '#EEEEEE';
3091: my $data_table_dark = '#DDD';
1.349 albertel 3092: my $data_table_highlight = '#FFFF00';
1.352 albertel 3093: my $mail_new = '#FFBB77';
3094: my $mail_new_hover = '#DD9955';
3095: my $mail_read = '#BBBB77';
3096: my $mail_read_hover = '#999944';
3097: my $mail_replied = '#AAAA88';
3098: my $mail_replied_hover = '#888855';
3099: my $mail_other = '#99BBBB';
3100: my $mail_other_hover = '#669999';
1.349 albertel 3101:
1.343 albertel 3102: return <<END;
1.345 albertel 3103: h1, h2, h3, th { font-family: $sans }
1.343 albertel 3104: a:focus { color: red; background: yellow }
3105: table.thinborder { border-collapse: collapse; }
3106: table.thinborder tr th, table.thinborder tr td { border-style: solid; border-width: 1px}
3107: form, .inline { display: inline; }
3108: .center { text-align: center; }
3109: .filename {font-family: monospace;}
1.350 albertel 3110: .LC_error {
3111: color: red;
3112: font-size: larger;
3113: }
3114: .LC_success {
3115: color: green;
3116: }
1.346 albertel 3117:
1.357 albertel 3118: table#LC_top_nav, table#LC_menubuttons, table#LC_nav_location, table#LC_breadcrumbs {
1.345 albertel 3119: width: 100%;
3120: background: $pgbg;
3121: border: 0px;
1.362 albertel 3122: border-spacing: 2px 1px;
1.345 albertel 3123: padding: 0px;
3124: margin: 0px;
3125: border-collapse: separate;
3126: }
1.359 albertel 3127: table#LC_title_bar {
3128: width: 100%;
3129: border: 0;
1.362 albertel 3130: border-spacing: 0px 1px;
1.368 albertel 3131: padding: 0px 2px 0px 2px;
1.359 albertel 3132: background: $pgbg;
3133: font-family: $sans;
1.362 albertel 3134: border-collapse: collapse;
1.359 albertel 3135: }
3136: table#LC_title_bar.LC_with_remote {
3137: width: 100%;
3138: border: 0;
3139: border-spacing: 0;
3140: background: $pgbg;
3141: font-family: $sans;
3142: border-collapse: collapse;
3143: }
3144: table#LC_title_bar td {
3145: padding: 3px;
3146: background: $tabbg;
3147: }
3148: table#LC_title_bar td.LC_title_bar_who {
3149: background: $tabbg;
3150: color: $font;
3151: font: medium $sans;
3152: text-align: right;
3153: }
3154: span.LC_title_bar_title {
3155: font: bold xx-large $sans;
3156: }
3157: table#LC_title_bar td.LC_title_bar_domain_logo {
3158: background: $sidebg;
3159: text-align: right;
1.368 albertel 3160: padding: 0px;
3161: }
3162: table#LC_title_bar td.LC_title_bar_role_logo {
3163: background: $sidebg;
3164: padding: 0px;
1.359 albertel 3165: }
3166:
1.346 albertel 3167: table#LC_menubuttons_mainmenu {
3168: background: $pgbg;
3169: border: 0px;
3170: border-spacing: 1px;
3171: padding: 0px;
3172: margin: 0px;
3173: border-collapse: separate;
3174: }
3175: table#LC_menubuttons img, table#LC_menubuttons_mainmenu img {
3176: border: 0px;
3177: }
1.345 albertel 3178: table#LC_top_nav td {
3179: background: $tabbg;
3180: }
3181: table#LC_top_nav td a, div#LC_top_nav a {
3182: color: $font;
3183: font-family: $sans;
3184: }
1.364 albertel 3185: table#LC_top_nav td.LC_top_nav_logo {
3186: background: $tabbg;
3187: text-align: right;
3188: }
1.357 albertel 3189: table#LC_breadcrumbs td {
3190: background: $tabbg;
3191: color: $font;
3192: font-family: $sans;
1.358 albertel 3193: font-size: smaller;
1.357 albertel 3194: }
3195: table#LC_breadcrumbs td.LC_breadcrumb_component {
3196: background: $tabbg;
3197: color: $font;
3198: font-family: $sans;
3199: font-size: larger;
3200: text-align: right;
3201: }
1.346 albertel 3202: .LC_menubuttons_inline_text {
3203: color: $font;
3204: font-family: $sans;
3205: font-size: smaller;
3206: }
3207:
3208: td.LC_menubuttons_text {
3209: color: $font;
3210: font-family: $sans;
3211: }
3212: td.LC_menubuttons_img {
3213: background: $tabbg;
3214: }
3215: .LC_current_location {
3216: font-family: $sans;
3217: background: $tabbg;
3218: }
3219: .LC_new_mail {
3220: font-family: $sans;
3221: font-weight: bold;
3222: }
1.347 albertel 3223:
1.349 albertel 3224: table.LC_data_table, table.LC_mail_list {
1.347 albertel 3225: border: 1px solid #000000;
3226: border-collapse: seperate;
3227: }
1.349 albertel 3228: table.LC_data_table tr th, table.LC_calendar tr th, table.LC_mail_list tr th {
3229: font-weight: bold;
3230: background-color: $data_table_head;
1.347 albertel 3231: }
3232: table.LC_data_table tr td {
1.349 albertel 3233: background-color: $data_table_light;
1.347 albertel 3234: }
3235: table.LC_data_table tr.LC_even_row td {
1.349 albertel 3236: background-color: $data_table_dark;
1.347 albertel 3237: }
3238: table.LC_data_table tr.LC_empty td {
3239: background-color: #FFFFFF;
3240: }
3241:
1.349 albertel 3242: table.LC_calendar {
3243: border: 1px solid #000000;
3244: border-collapse: collapse;
3245: }
3246: table.LC_calendar_pickdate {
3247: font-size: xx-small;
3248: }
3249: table.LC_calendar tr td {
3250: border: 1px solid #000000;
3251: vertical-align: top;
3252: }
3253: table.LC_calendar tr td.LC_calendar_day_empty {
3254: background-color: $data_table_dark;
3255: }
3256: table.LC_calendar tr td.LC_calendar_day_current {
3257: background-color: $data_table_highlight;
3258: }
3259:
3260: table.LC_mail_list tr.LC_mail_new {
3261: background-color: $mail_new;
3262: }
3263: table.LC_mail_list tr.LC_mail_new:hover {
3264: background-color: $mail_new_hover;
3265: }
3266: table.LC_mail_list tr.LC_mail_read {
3267: background-color: $mail_read;
3268: }
3269: table.LC_mail_list tr.LC_mail_read:hover {
3270: background-color: $mail_read_hover;
3271: }
3272: table.LC_mail_list tr.LC_mail_replied {
3273: background-color: $mail_replied;
3274: }
3275: table.LC_mail_list tr.LC_mail_replied:hover {
3276: background-color: $mail_replied_hover;
3277: }
3278: table.LC_mail_list tr.LC_mail_other {
3279: background-color: $mail_other;
3280: }
3281: table.LC_mail_list tr.LC_mail_other:hover {
3282: background-color: $mail_other_hover;
3283: }
1.343 albertel 3284: END
3285: }
3286:
1.306 albertel 3287: =pod
3288:
3289: =over 4
3290:
3291: =item * &headtag()
3292:
3293: Returns a uniform footer for LON-CAPA web pages.
3294:
1.307 albertel 3295: Inputs: $title - optional title for the head
3296: $head_extra - optional extra HTML to put inside the <head>
1.315 albertel 3297: $args - optional arguments
1.319 albertel 3298: force_register - if is true call registerurl so the remote is
3299: informed
1.352 albertel 3300: redirect -> array ref of seconds before redirect occurs
1.315 albertel 3301: url to redirect to
3302: (side effect of setting
3303: $env{'internal.head.redirect'} to the url
3304: redirected too)
1.352 albertel 3305: domain -> force to color decorate a page for a specific
3306: domain
3307: function -> force usage of a specific rolish color scheme
3308: bgcolor -> override the default page bgcolor
3309:
1.306 albertel 3310: =back
3311:
3312: =cut
3313:
3314: sub headtag {
1.313 albertel 3315: my ($title,$head_extra,$args) = @_;
1.306 albertel 3316:
1.363 albertel 3317: my $function = $args->{'function'} || &get_users_function();
3318: my $domain = $args->{'domain'} || &determinedomain();
3319: my $bgcolor = $args->{'bgcolor'} || &designparm($function.'.pgbg',$domain);
3320: my $url = join(':',$env{'user.name'},$env{'user.domain'},
3321: $env{'environment.color.timestamp'},
3322: $function,$domain,$bgcolor);
3323:
1.369 www 3324: $url = '/adm/css/'.&escape($url).'.css';
1.363 albertel 3325:
1.308 albertel 3326: my $result =
3327: '<head>'.
1.363 albertel 3328: '<link rel="stylesheet" type="text/css" href="'.$url.'" />'.
1.340 albertel 3329: &font_settings().
1.308 albertel 3330: &Apache::lonhtmlcommon::htmlareaheaders();
1.319 albertel 3331:
3332: if ($args->{'force_register'}) {
3333: $result .= &Apache::lonmenu::registerurl(1);
3334: }
3335:
1.314 albertel 3336: if (ref($args->{'redirect'})) {
3337: my ($time,$url) = @{$args->{'redirect'}};
1.315 albertel 3338: $url = &Apache::lonenc::check_encrypt($url);
3339: $env{'internal.head.redirect'} = $url;
1.313 albertel 3340: $result.=<<ADDMETA
3341: <meta http-equiv="pragma" content="no-cache" />
1.344 albertel 3342: <meta http-equiv="Refresh" content="$time; url=$url" />
1.313 albertel 3343: ADDMETA
3344: }
1.306 albertel 3345: if (!defined($title)) {
3346: $title = 'The LearningOnline Network with CAPA';
3347: }
3348:
1.315 albertel 3349: $result .= '<title> LON-CAPA '.&mt($title).'</title>'.$head_extra;
1.306 albertel 3350: return $result;
3351: }
3352:
3353: =pod
3354:
3355: =over 4
3356:
1.340 albertel 3357: =item * &font_settings()
3358:
3359: Returns neccessary <meta> to set the proper encoding
3360:
3361: Inputs: none
3362:
3363: =back
3364:
3365: =cut
3366:
3367: sub font_settings {
3368: my $headerstring='';
3369: if (($env{'browser.os'} eq 'mac') && (!$env{'browser.mathml'})) {
3370: $headerstring.=
3371: '<meta Content-Type="text/html; charset=x-mac-roman" />';
3372: } elsif (!$env{'browser.mathml'} && $env{'browser.unicode'}) {
3373: $headerstring.=
3374: '<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />';
3375: }
3376: return $headerstring;
3377: }
3378:
1.341 albertel 3379: =pod
3380:
3381: =over 4
3382:
3383: =item * &xml_begin()
3384:
3385: Returns the needed doctype and <html>
3386:
3387: Inputs: none
3388:
3389: =back
3390:
3391: =cut
3392:
3393: sub xml_begin {
3394: my $output='';
3395:
1.342 albertel 3396: &Apache::lonhtmlcommon::init_htmlareafields();
3397:
1.341 albertel 3398: if ($env{'browser.mathml'}) {
3399: $output='<?xml version="1.0"?>'
3400: #.'<?xml-stylesheet type="text/css" href="/adm/MathML/mathml.css"?>'."\n"
3401: # .'<!DOCTYPE html SYSTEM "/adm/MathML/mathml.dtd" '
3402:
3403: # .'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" [<!ENTITY mathns "http://www.w3.org/1998/Math/MathML">] >'
3404: .'<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN" "http://www.w3.org/2002/04/xhtml-math-svg/xhtml-math-svg.dtd">'
3405: .'<html xmlns:math="http://www.w3.org/1998/Math/MathML" '
3406: .'xmlns="http://www.w3.org/1999/xhtml">';
3407: } else {
3408: $output='<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html>';
3409: }
3410: return $output;
3411: }
1.340 albertel 3412:
3413: =pod
3414:
3415: =over 4
3416:
1.306 albertel 3417: =item * &endheadtag()
3418:
3419: Returns a uniform </head> for LON-CAPA web pages.
3420:
3421: Inputs: none
3422:
3423: =back
3424:
3425: =cut
3426:
3427: sub endheadtag {
3428: return '</head>';
3429: }
3430:
3431: =pod
3432:
3433: =over 4
3434:
3435: =item * &head()
3436:
3437: Returns a uniform complete <head>..</head> section for LON-CAPA web pages.
3438:
3439: Inputs: $title - optional title for the page
1.307 albertel 3440: $head_extra - optional extra HTML to put inside the <head>
1.306 albertel 3441: =back
3442:
3443: =cut
3444:
3445: sub head {
1.325 albertel 3446: my ($title,$head_extra,$args) = @_;
3447: return &headtag($title,$head_extra,$args).&endheadtag();
1.306 albertel 3448: }
3449:
3450: =pod
3451:
3452: =over 4
3453:
3454: =item * &start_page()
3455:
3456: Returns a complete <html> .. <body> section for LON-CAPA web pages.
3457:
3458: Inputs: $title - optional title for the page
3459: $head_extra - optional extra HTML to incude inside the <head>
1.315 albertel 3460: $args - additional optional args supported are:
1.317 albertel 3461: only_body -> is true will set &bodytag() onlybodytag
3462: arg on
3463: no_nav_bar -> is true will set &bodytag() notopbar arg on
3464: add_entries -> additional attributes to add to the <body>
3465: domain -> force to color decorate a page for a
3466: specific domain
3467: function -> force usage of a specific rolish color
3468: scheme
3469: redirect -> see &headtag()
3470: bgcolor -> override the default page bg color
3471: js_ready -> return a string ready for being used in
3472: a javascript writeln
1.320 albertel 3473: html_encode -> return a string ready for being used in
3474: a html attribute
1.317 albertel 3475: force_register -> if is true will turn on the &bodytag()
3476: $forcereg arg
1.326 albertel 3477: body_title -> alternate text to use instead of $title
3478: in the title box that appears, this text
3479: is not auto translated like the $title is
1.330 albertel 3480: frameset -> if true will start with a <frameset>
3481: rather than <body>
1.338 albertel 3482: no_title -> if true the title bar won't be shown
3483: skip_phases -> hash ref of
3484: head -> skip the <html><head> generation
3485: body -> skip all <body> generation
1.337 albertel 3486:
1.361 albertel 3487: no_inline_link -> if true and in remote mode, don't show the
3488: 'Switch To Inline Menu' link
3489:
1.306 albertel 3490: =back
3491:
3492: =cut
3493:
3494: sub start_page {
1.309 albertel 3495: my ($title,$head_extra,$args) = @_;
1.318 albertel 3496: #&Apache::lonnet::logthis("start_page ".join(':',caller(0)));
1.313 albertel 3497: my %head_args;
1.352 albertel 3498: foreach my $arg ('redirect','force_register','domain','function',
3499: 'bgcolor') {
1.319 albertel 3500: if (defined($args->{$arg})) {
1.324 raeburn 3501: $head_args{$arg} = $args->{$arg};
1.319 albertel 3502: }
1.313 albertel 3503: }
1.319 albertel 3504:
1.315 albertel 3505: $env{'internal.start_page'}++;
1.338 albertel 3506: my $result;
3507: if (! exists($args->{'skip_phases'}{'head'}) ) {
3508: $result.=
1.341 albertel 3509: &xml_begin().
1.338 albertel 3510: &headtag($title,$head_extra,\%head_args).&endheadtag();
3511: }
3512:
3513: if (! exists($args->{'skip_phases'}{'body'}) ) {
3514: if ($args->{'frameset'}) {
3515: my $attr_string = &make_attr_string($args->{'force_register'},
3516: $args->{'add_entries'});
3517: $result .= "\n<frameset $attr_string>\n";
3518: } else {
3519: $result .=
3520: &bodytag($title,
3521: $args->{'function'}, $args->{'add_entries'},
3522: $args->{'only_body'}, $args->{'domain'},
3523: $args->{'force_register'}, $args->{'body_title'},
3524: $args->{'no_nav_bar'}, $args->{'bgcolor'},
1.361 albertel 3525: $args->{'no_title'}, $args->{'no_inline_link'});
1.338 albertel 3526: }
1.330 albertel 3527: }
1.338 albertel 3528:
1.315 albertel 3529: if ($args->{'js_ready'}) {
1.317 albertel 3530: $result = &js_ready($result);
1.315 albertel 3531: }
1.320 albertel 3532: if ($args->{'html_encode'}) {
3533: $result = &html_encode($result);
3534: }
1.315 albertel 3535: return $result;
1.306 albertel 3536: }
3537:
1.330 albertel 3538:
1.306 albertel 3539: =pod
3540:
3541: =over 4
3542:
3543: =item * &head()
3544:
3545: Returns a complete </body></html> section for LON-CAPA web pages.
3546:
1.315 albertel 3547: Inputs: $args - additional optional args supported are:
3548: js_ready -> return a string ready for being used in
3549: a javascript writeln
1.320 albertel 3550: html_encode -> return a string ready for being used in
3551: a html attribute
1.330 albertel 3552: frameset -> if true will start with a <frameset>
3553: rather than <body>
1.306 albertel 3554: =back
3555:
3556: =cut
3557:
3558: sub end_page {
1.315 albertel 3559: my ($args) = @_;
1.318 albertel 3560: #&Apache::lonnet::logthis("end_page ".join(':',caller(0)));
1.315 albertel 3561: $env{'internal.end_page'}++;
1.330 albertel 3562: my $result;
1.335 albertel 3563: if ($args->{'discussion'}) {
3564: my ($target,$parser);
3565: if (ref($args->{'discussion'})) {
3566: ($target,$parser) =($args->{'discussion'}{'target'},
3567: $args->{'discussion'}{'parser'});
3568: }
3569: $result .= &Apache::lonxml::xmlend($target,$parser);
3570: }
3571:
1.330 albertel 3572: if ($args->{'frameset'}) {
3573: $result .= '</frameset>';
3574: } else {
3575: $result .= &endbodytag();
3576: }
3577: $result .= "\n</html>";
3578:
1.315 albertel 3579: if ($args->{'js_ready'}) {
1.317 albertel 3580: $result = &js_ready($result);
1.315 albertel 3581: }
1.335 albertel 3582:
1.320 albertel 3583: if ($args->{'html_encode'}) {
3584: $result = &html_encode($result);
3585: }
1.335 albertel 3586:
1.315 albertel 3587: return $result;
3588: }
3589:
1.320 albertel 3590: sub html_encode {
3591: my ($result) = @_;
3592:
1.322 albertel 3593: $result = &HTML::Entities::encode($result,'<>&"');
1.320 albertel 3594:
3595: return $result;
3596: }
1.317 albertel 3597: sub js_ready {
3598: my ($result) = @_;
3599:
1.323 albertel 3600: $result =~ s/[\n\r]/ /xmsg;
3601: $result =~ s/\\/\\\\/xmsg;
3602: $result =~ s/'/\\'/xmsg;
3603: $result =~ s{</script>}{</scrip'+'t>}xmsg;
1.317 albertel 3604:
3605: return $result;
3606: }
3607:
1.315 albertel 3608: sub validate_page {
3609: if ( exists($env{'internal.start_page'})
1.316 albertel 3610: && $env{'internal.start_page'} > 1) {
3611: &Apache::lonnet::logthis('start_page called multiple times '.
1.318 albertel 3612: $env{'internal.start_page'}.' '.
1.316 albertel 3613: $ENV{'request.filename'});
1.315 albertel 3614: }
3615: if ( exists($env{'internal.end_page'})
1.316 albertel 3616: && $env{'internal.end_page'} > 1) {
3617: &Apache::lonnet::logthis('end_page called multiple times '.
1.318 albertel 3618: $env{'internal.end_page'}.' '.
1.316 albertel 3619: $env{'request.filename'});
1.315 albertel 3620: }
3621: if ( exists($env{'internal.start_page'})
3622: && ! exists($env{'internal.end_page'})) {
1.316 albertel 3623: &Apache::lonnet::logthis('start_page called without end_page '.
3624: $env{'request.filename'});
1.315 albertel 3625: }
3626: if ( ! exists($env{'internal.start_page'})
3627: && exists($env{'internal.end_page'})) {
1.316 albertel 3628: &Apache::lonnet::logthis('end_page called without start_page'.
3629: $env{'request.filename'});
1.315 albertel 3630: }
1.306 albertel 3631: }
1.315 albertel 3632:
1.318 albertel 3633: sub simple_error_page {
3634: my ($r,$title,$msg) = @_;
3635: my $page =
3636: &Apache::loncommon::start_page($title).
3637: &mt($msg).
3638: &Apache::loncommon::end_page();
3639: if (ref($r)) {
3640: $r->print($page);
1.327 albertel 3641: return;
1.318 albertel 3642: }
3643: return $page;
3644: }
1.347 albertel 3645:
3646: {
3647: my $row_count;
3648: sub start_data_table {
3649: undef($row_count);
3650: return '<table class="LC_data_table">';
3651: }
3652:
3653: sub end_data_table {
3654: undef($row_count);
3655: return '</table>';
3656: }
3657:
3658: sub start_data_table_row {
3659: $row_count++;
3660: return '<tr '.(($row_count % 2)?'':'class="LC_even_row"').'>';
3661: }
3662:
3663: sub end_data_table_row {
3664: return '</tr>';
3665: }
1.367 www 3666:
3667: sub start_data_table_header_row {
3668: return '<tr class="LC_header_row">';
3669: }
3670:
3671: sub end_data_table_header_row {
3672: return '</tr>';
3673: }
1.347 albertel 3674: }
3675:
1.251 albertel 3676: ###############################################
1.182 matthew 3677:
3678: =pod
3679:
1.306 albertel 3680: =over 4
3681:
1.182 matthew 3682: =item get_users_function
3683:
3684: Used by &bodytag to determine the current users primary role.
3685: Returns either 'student','coordinator','admin', or 'author'.
3686:
3687: =cut
3688:
3689: ###############################################
3690: sub get_users_function {
3691: my $function = 'student';
1.258 albertel 3692: if ($env{'request.role'}=~/^(cc|in|ta|ep)/) {
1.182 matthew 3693: $function='coordinator';
3694: }
1.258 albertel 3695: if ($env{'request.role'}=~/^(su|dc|ad|li)/) {
1.182 matthew 3696: $function='admin';
3697: }
1.258 albertel 3698: if (($env{'request.role'}=~/^(au|ca)/) ||
1.182 matthew 3699: ($ENV{'REQUEST_URI'}=~/^(\/priv|\~)/)) {
3700: $function='author';
3701: }
3702: return $function;
1.54 www 3703: }
1.99 www 3704:
3705: ###############################################
3706:
1.233 raeburn 3707: =pod
3708:
1.274 raeburn 3709: =item check_user_status
3710:
3711: Determines current status of supplied role for a
3712: specific user. Roles can be active, previous or future.
3713:
3714: Inputs:
3715: user's domain, user's username, course's domain,
3716: course's number, optional section/group.
3717:
3718: Outputs:
3719: role status: active, previous or future.
3720:
3721: =cut
3722:
3723: sub check_user_status {
3724: my ($udom,$uname,$cdom,$crs,$role,$secgrp) = @_;
3725: my %userinfo = &Apache::lonnet::dump('roles',$udom,$uname);
3726: my @uroles = keys %userinfo;
3727: my $srchstr;
3728: my $active_chk = 'none';
3729: if (@uroles > 0) {
3730: if (($role eq 'cc') || ($secgrp eq '') || (!defined($secgrp))) {
3731: $srchstr = '/'.$cdom.'/'.$crs.'_'.$role;
3732: } else {
3733: $srchstr = '/'.$cdom.'/'.$crs.'/'.$secgrp.'_'.$role; }
3734: if (grep/^$srchstr$/,@uroles) {
3735: my $role_end = 0;
3736: my $role_start = 0;
3737: $active_chk = 'active';
3738: if ($userinfo{$srchstr} =~ m/^($role)_(\d+)/) {
3739: $role_end = $2;
3740: if ($userinfo{$srchstr} =~ m/^($role)_($role_end)_(\d+)$/) {
3741: $role_start = $3;
3742: }
3743: }
3744: if ($role_start > 0) {
3745: if (time < $role_start) {
3746: $active_chk = 'future';
3747: }
3748: }
3749: if ($role_end > 0) {
3750: if (time > $role_end) {
3751: $active_chk = 'previous';
3752: }
3753: }
3754: }
3755: }
3756: return $active_chk;
3757: }
3758:
3759: ###############################################
3760:
3761: =pod
3762:
1.233 raeburn 3763: =item get_sections
3764:
3765: Determines all the sections for a course including
3766: sections with students and sections containing other roles.
3767: Incoming parameters: domain, course number, reference to
3768: section hash (keys to be section/group IDs), reference to
3769: array containing roles for which sections should be gathered
3770: (optional). If the fourth argument is undefined, sections
3771: are gathered for any role.
3772:
3773: Returns number of sections.
3774:
3775: =cut
3776:
3777: ###############################################
3778: sub get_sections {
1.366 albertel 3779: my ($cdom,$cnum,$possible_roles) = @_;
3780: if (!defined($cdom) || !defined($cnum)) {
3781: my $cid = $env{'request.course.id'};
3782:
3783: return if (!defined($cid));
3784:
3785: $cdom = $env{'course.'.$cid.'.domain'};
3786: $cnum = $env{'course.'.$cid.'.num'};
3787: }
3788:
3789: my %sectioncount;
1.240 albertel 3790:
1.366 albertel 3791: if (!defined($possible_roles) || (grep(/^st$/,@$possible_roles))) {
1.276 albertel 3792: my ($classlist) = &Apache::loncoursedata::get_classlist($cdom,$cnum);
1.240 albertel 3793: my $sec_index = &Apache::loncoursedata::CL_SECTION();
3794: my $status_index = &Apache::loncoursedata::CL_STATUS();
1.366 albertel 3795: while (my ($student,$data) = each(%$classlist)) {
1.240 albertel 3796: my ($section,$status) = ($data->[$sec_index],
3797: $data->[$status_index]);
3798: unless ($section eq '-1' || $section =~ /^\s*$/) {
1.366 albertel 3799: $sectioncount{$section}++;
1.240 albertel 3800: }
3801: }
3802: }
3803: my %courseroles = &Apache::lonnet::dump('nohist_userroles',$cdom,$cnum);
3804: foreach my $user (sort(keys(%courseroles))) {
3805: if ($user !~ /^(\w{2})/) { next; }
3806: my ($role) = ($user =~ /^(\w{2})/);
3807: if ($possible_roles && !(grep(/^$role$/,@$possible_roles))) { next; }
3808: my $section;
3809: if ($role eq 'cr' &&
3810: $user =~ m-^$role/[^/]*/[^/]*/[^/]*:[^:]*:[^:]*:(\w+)-) {
3811: $section=$1;
3812: }
3813: if ($user =~ /^$role:[^:]*:[^:]*:(\w+)/) { $section=$1; }
3814: if (!defined($section) || $section eq '-1') { next; }
1.366 albertel 3815: $sectioncount{$section}++;
1.233 raeburn 3816: }
1.366 albertel 3817: return %sectioncount;
1.233 raeburn 3818: }
3819:
1.274 raeburn 3820: ###############################################
1.298 raeburn 3821:
3822: =pod
3823:
3824: =item coursegroups
3825:
3826: Retrieve information about groups in a course,
3827:
3828: Input:
3829: 1. Reference to hash to populate with group information.
3830: 2. Optional course domain
3831: 3. Optional course number
3832: 4. Optional group name
3833:
3834: Course domain and number will be taken from user's
3835: environment if not supplied. Optional group name will'
3836: be passed to lonnet::get_coursegroups() as a regexp to
3837: use in the call to the dump function.
3838:
3839: Output
3840: Returns number of groups in the course (subject to the
3841: optional group name filter).
3842:
3843: Side effects:
3844: Populates the referenced curr_groups hash, with key,
3845: value pairs. Keys are group names, corresponding values
3846: are scalars containing group information in XML. This
3847: can be sent to &get_group_settings() to be parsed.
3848:
3849: =cut
3850:
3851: ###############################################
3852:
3853: sub coursegroups {
1.365 albertel 3854: my ($cdom,$cnum,$group) = @_;
1.298 raeburn 3855: if (!defined($cdom) || !defined($cnum)) {
3856: my $cid = $env{'request.course.id'};
1.365 albertel 3857:
3858: return if (!defined($cid));
3859:
1.298 raeburn 3860: $cdom = $env{'course.'.$cid.'.domain'};
3861: $cnum = $env{'course.'.$cid.'.num'};
3862: }
1.365 albertel 3863: my %curr_groups = &Apache::lonnet::get_coursegroups($cdom,$cnum,$group);
3864: my ($tmp) = keys(%curr_groups);
3865: if ($tmp=~/^(con_lost|no_such_host|error: [^2] )/) {
3866: undef(%curr_groups);
3867: &logthis('Error retrieving groups: '.$tmp.' in '.$cnum.':'.$cdom);
3868: } elsif ($tmp=~/^error: 2 /) {
3869: undef(%curr_groups);
1.298 raeburn 3870: }
1.365 albertel 3871: return %curr_groups;
1.298 raeburn 3872: }
3873:
3874: ###############################################
1.274 raeburn 3875:
1.275 raeburn 3876: =pod
1.294 raeburn 3877:
3878: =item get_group_settings
3879:
3880: Uses TokeParser to extract group information from the
3881: XML used to describe course groups.
3882:
3883: Input:
1.298 raeburn 3884: Scalar containing XML - as retrieved from &coursegroups().
1.294 raeburn 3885:
3886: Output:
3887: Hash containing group information as key=values for (a), and
3888: hash of hashes for (b)
3889:
3890: Keys (in two categories):
3891: (a) groupname, creator, creation, modified, startdate,enddate.
3892: Corresponding values are name of the group, creator of the group
3893: (username:domain), UNIX time for date group was created, and
3894: settings were last modified, and default start and end access
3895: times for group members.
3896:
3897: (b) functions returned in hash of hashes.
3898: Outer hash key is functions.
3899: Inner hash keys are chat,discussion,email,files,homepage,roster.
3900: Corresponding values are either on or off, depending on
1.303 raeburn 3901: whether this type of functionality is available for the group.
1.294 raeburn 3902:
3903: =cut
3904:
3905: ###############################################
3906:
3907: sub get_group_settings {
3908: my ($groupinfo)=@_;
3909: my $parser=HTML::TokeParser->new(\$groupinfo);
3910: my $token;
3911: my $tool = '';
1.303 raeburn 3912: my $role = '';
1.294 raeburn 3913: my %content=();
3914: while ($token=$parser->get_token) {
3915: if ($token->[0] eq 'S') {
3916: my $entry=$token->[1];
1.303 raeburn 3917: if ($entry eq 'functions' || $entry eq 'autosec') {
1.294 raeburn 3918: %{$content{$entry}} = ();
3919: $tool = $entry;
1.303 raeburn 3920: } elsif ($entry eq 'role') {
3921: if ($tool eq 'autosec') {
3922: $role = $token->[2]{id};
3923: }
1.294 raeburn 3924: } else {
3925: my $value=$parser->get_text('/'.$entry);
3926: if ($entry eq 'name') {
3927: if ($tool eq 'functions') {
3928: my $function = $token->[2]{id};
3929: $content{$tool}{$function} = $value;
3930: }
3931: } elsif ($entry eq 'groupname') {
1.369 www 3932: $content{$entry}=&unescape($value);
1.303 raeburn 3933: } elsif (($entry eq 'roles') || ($entry eq 'types') ||
3934: ($entry eq 'sectionpick') || ($entry eq 'defpriv')) {
3935: push(@{$content{$entry}},$value);
3936: } elsif ($entry eq 'section') {
3937: if ($tool eq 'autosec' && $role ne '') {
3938: push(@{$content{$tool}{$role}},$value);
3939: }
1.294 raeburn 3940: } else {
3941: $content{$entry}=$value;
3942: }
3943: }
3944: } elsif ($token->[0] eq 'E') {
1.303 raeburn 3945: if ($token->[1] eq 'functions' || $token->[1] eq 'autosec') {
1.294 raeburn 3946: $tool = '';
1.303 raeburn 3947: } elsif ($token->[1] eq 'role') {
3948: $role = '';
1.294 raeburn 3949: }
1.303 raeburn 3950:
1.294 raeburn 3951: }
3952: }
3953: return %content;
3954: }
3955:
3956: sub check_group_access {
3957: my ($group) = @_;
3958: my $access = 1;
3959: my $now = time;
3960: my ($start,$end) = split(/\./,$env{'user.role.gr/'.$env{'request.course,id'}.'/'.$group});
3961: if (($end!=0) && ($end<$now)) { $access = 0; }
3962: if (($start!=0) && ($start>$now)) { $access=0; }
3963: return $access;
3964: }
3965:
3966: ###############################################
3967:
3968: =pod
1.275 raeburn 3969:
3970: =item get_course_users
3971:
3972: Retrieves usernames:domains for users in the specified course
3973: with specific role(s), and access status.
3974:
3975: Incoming parameters:
1.277 albertel 3976: 1. course domain
3977: 2. course number
3978: 3. access status: users must have - either active,
1.275 raeburn 3979: previous, future, or all.
1.277 albertel 3980: 4. reference to array of permissible roles
1.288 raeburn 3981: 5. reference to array of section restrictions (optional)
3982: 6. reference to results object (hash of hashes).
3983: 7. reference to optional userdata hash
1.275 raeburn 3984: Keys of top level hash are roles.
3985: Keys of inner hashes are username:domain, with
3986: values set to access type.
1.288 raeburn 3987: Optional userdata hash returns an array with arguments in the
3988: same order as loncoursedata::get_classlist() for student data.
3989:
3990: Entries for end, start, section and status are blank because
3991: of the possibility of multiple values for non-student roles.
3992:
1.275 raeburn 3993: =cut
3994:
3995: ###############################################
3996:
3997: sub get_course_users {
1.288 raeburn 3998: my ($cdom,$cnum,$types,$roles,$sections,$users,$userdata) = @_;
3999: my %idx = ();
4000:
4001: $idx{udom} = &Apache::loncoursedata::CL_SDOM();
4002: $idx{uname} = &Apache::loncoursedata::CL_SNAME();
4003: $idx{end} = &Apache::loncoursedata::CL_END();
4004: $idx{start} = &Apache::loncoursedata::CL_START();
4005: $idx{id} = &Apache::loncoursedata::CL_ID();
4006: $idx{section} = &Apache::loncoursedata::CL_SECTION();
4007: $idx{fullname} = &Apache::loncoursedata::CL_FULLNAME();
4008: $idx{status} = &Apache::loncoursedata::CL_STATUS();
4009:
1.290 albertel 4010: if (grep(/^st$/,@{$roles})) {
1.276 albertel 4011: my ($classlist,$keylist)=&Apache::loncoursedata::get_classlist($cdom,$cnum);
1.278 raeburn 4012: my $now = time;
1.277 albertel 4013: foreach my $student (keys(%{$classlist})) {
1.288 raeburn 4014: my $match = 0;
1.291 albertel 4015: if ((ref($sections) eq 'ARRAY') && (@{$sections} > 0)) {
1.290 albertel 4016: unless(grep(/^\Q$$classlist{$student}[$idx{section}]\E$/,
4017: @{$sections})) {
4018: next;
4019: }
1.288 raeburn 4020: }
1.275 raeburn 4021: if (defined($$types{'active'})) {
1.288 raeburn 4022: if ($$classlist{$student}[$idx{status}] eq 'Active') {
1.275 raeburn 4023: push(@{$$users{st}{$student}},'active');
1.288 raeburn 4024: $match = 1;
1.275 raeburn 4025: }
4026: }
4027: if (defined($$types{'previous'})) {
1.288 raeburn 4028: if ($$classlist{$student}[$idx{end}] <= $now) {
1.275 raeburn 4029: push(@{$$users{st}{$student}},'previous');
1.288 raeburn 4030: $match = 1;
1.275 raeburn 4031: }
4032: }
4033: if (defined($$types{'future'})) {
1.288 raeburn 4034: if (($$classlist{$student}[$idx{start}] > $now) && ($$classlist{$student}[$idx{end}] > $now) || ($$classlist{$student}[$idx{end}] == 0) || ($$classlist{$student}[$idx{end}] eq '')) {
1.275 raeburn 4035: push(@{$$users{st}{$student}},'future');
1.288 raeburn 4036: $match = 1;
1.275 raeburn 4037: }
4038: }
1.288 raeburn 4039: if ($match && defined($userdata)) {
4040: $$userdata{$student} = $$classlist{$student};
4041: }
1.275 raeburn 4042: }
4043: }
4044: if ((@{$roles} > 0) && (@{$roles} ne "st")) {
4045: my @coursepersonnel = &Apache::lonnet::getkeys('nohist_userroles',$cdom,$cnum);
4046: foreach my $person (@coursepersonnel) {
1.288 raeburn 4047: my $match = 0;
1.275 raeburn 4048: my ($role,$user) = ($person =~ /^([^:]*):([^:]+:[^:]+)/);
4049: $user =~ s/:$//;
1.290 albertel 4050: if (($role) && (grep(/^\Q$role\E$/,@{$roles}))) {
1.288 raeburn 4051: my ($uname,$udom,$usec) = split(/:/,$user);
1.290 albertel 4052: if ($usec ne '' && (ref($sections) eq 'ARRAY') &&
4053: @{$sections} > 0) {
4054: unless(grep(/^\Q$usec\E$/,@{$sections})) {
4055: next;
4056: }
1.288 raeburn 4057: }
1.275 raeburn 4058: if ($uname ne '' && $udom ne '') {
4059: my $status = &check_user_status($udom,$uname,$cdom,$cnum,$role);
1.277 albertel 4060: foreach my $type (keys(%{$types})) {
1.275 raeburn 4061: if ($status eq $type) {
1.288 raeburn 4062: @{$$users{$role}{$user}} = $type;
4063: $match = 1;
4064: }
4065: }
1.290 albertel 4066: if ($match && defined($userdata) &&
4067: !exists($$userdata{$uname.':'.$udom})) {
4068: &get_user_info($udom,$uname,\%idx,$userdata);
1.275 raeburn 4069: }
4070: }
4071: }
4072: }
1.290 albertel 4073: if (grep(/^ow$/,@{$roles})) {
1.279 raeburn 4074: if ((defined($cdom)) && (defined($cnum))) {
4075: my %csettings = &Apache::lonnet::get('environment',['internal.courseowner'],$cdom,$cnum);
4076: if ( defined($csettings{'internal.courseowner'}) ) {
4077: my $owner = $csettings{'internal.courseowner'};
1.288 raeburn 4078: @{$$users{'ow'}{$owner.':'.$cdom}} = 'any';
1.290 albertel 4079: if (defined($userdata) &&
4080: !exists($$userdata{$owner.':'.$cdom})) {
4081: &get_user_info($cdom,$owner,\%idx,$userdata);
4082: }
1.279 raeburn 4083: }
4084: }
4085: }
1.275 raeburn 4086: }
4087: return;
4088: }
4089:
1.288 raeburn 4090: sub get_user_info {
4091: my ($udom,$uname,$idx,$userdata) = @_;
1.289 albertel 4092: $$userdata{$uname.':'.$udom}[$$idx{fullname}] =
4093: &plainname($uname,$udom,'lastname');
1.291 albertel 4094: $$userdata{$uname.':'.$udom}[$$idx{uname}] = $uname;
1.297 raeburn 4095: $$userdata{$uname.':'.$udom}[$$idx{udom}] = $udom;
1.288 raeburn 4096: return;
4097: }
1.275 raeburn 4098:
1.112 bowersj2 4099: =pod
4100:
4101: =item * get_unprocessed_cgi($query,$possible_names)
4102:
1.258 albertel 4103: Modify the %env hash to contain unprocessed CGI form parameters held in
1.112 bowersj2 4104: $query. The parameters listed in $possible_names (an array reference),
1.258 albertel 4105: will be set in $env{'form.name'} if they do not already exist.
1.112 bowersj2 4106:
4107: Typically called with $ENV{'QUERY_STRING'} as the first parameter.
4108: $possible_names is an ref to an array of form element names. As an example:
4109: get_unprocessed_cgi($ENV{'QUERY_STRING'},['uname','udom']);
1.258 albertel 4110: will result in $env{'form.uname'} and $env{'form.udom'} being set.
1.112 bowersj2 4111:
4112: =cut
1.1 albertel 4113:
1.6 albertel 4114: sub get_unprocessed_cgi {
1.25 albertel 4115: my ($query,$possible_names)= @_;
1.26 matthew 4116: # $Apache::lonxml::debug=1;
1.356 albertel 4117: foreach my $pair (split(/&/,$query)) {
4118: my ($name, $value) = split(/=/,$pair);
1.369 www 4119: $name = &unescape($name);
1.25 albertel 4120: if (!defined($possible_names) || (grep {$_ eq $name} @$possible_names)) {
4121: $value =~ tr/+/ /;
4122: $value =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
1.258 albertel 4123: unless (defined($env{'form.'.$name})) { &add_to_env('form.'.$name,$value) };
1.25 albertel 4124: }
1.16 harris41 4125: }
1.6 albertel 4126: }
4127:
1.112 bowersj2 4128: =pod
4129:
4130: =item * cacheheader()
4131:
4132: returns cache-controlling header code
4133:
4134: =cut
4135:
1.7 albertel 4136: sub cacheheader {
1.258 albertel 4137: unless ($env{'request.method'} eq 'GET') { return ''; }
1.216 albertel 4138: my $date=strftime("%a, %d %b %Y %H:%M:%S GMT",gmtime);
4139: my $output .='<meta HTTP-EQUIV="Expires" CONTENT="'.$date.'" />
1.7 albertel 4140: <meta HTTP-EQUIV="Cache-control" CONTENT="no-cache" />
4141: <meta HTTP-EQUIV="Pragma" CONTENT="no-cache" />';
1.216 albertel 4142: return $output;
1.7 albertel 4143: }
4144:
1.112 bowersj2 4145: =pod
4146:
4147: =item * no_cache($r)
4148:
4149: specifies header code to not have cache
4150:
4151: =cut
4152:
1.9 albertel 4153: sub no_cache {
1.216 albertel 4154: my ($r) = @_;
4155: if ($ENV{'REQUEST_METHOD'} ne 'GET' &&
1.258 albertel 4156: $env{'request.method'} ne 'GET') { return ''; }
1.216 albertel 4157: my $date=strftime("%a, %d %b %Y %H:%M:%S GMT",gmtime(time));
4158: $r->no_cache(1);
4159: $r->header_out("Expires" => $date);
4160: $r->header_out("Pragma" => "no-cache");
1.123 www 4161: }
4162:
4163: sub content_type {
1.181 albertel 4164: my ($r,$type,$charset) = @_;
1.299 foxr 4165: if ($r) {
4166: # Note that printout.pl calls this with undef for $r.
4167: &no_cache($r);
4168: }
1.258 albertel 4169: if ($env{'browser.mathml'} && $type eq 'text/html') { $type='text/xml'; }
1.181 albertel 4170: unless ($charset) {
4171: $charset=&Apache::lonlocal::current_encoding;
4172: }
4173: if ($charset) { $type.='; charset='.$charset; }
4174: if ($r) {
4175: $r->content_type($type);
4176: } else {
4177: print("Content-type: $type\n\n");
4178: }
1.9 albertel 4179: }
1.25 albertel 4180:
1.112 bowersj2 4181: =pod
4182:
4183: =item * add_to_env($name,$value)
4184:
1.258 albertel 4185: adds $name to the %env hash with value
1.112 bowersj2 4186: $value, if $name already exists, the entry is converted to an array
4187: reference and $value is added to the array.
4188:
4189: =cut
4190:
1.25 albertel 4191: sub add_to_env {
4192: my ($name,$value)=@_;
1.258 albertel 4193: if (defined($env{$name})) {
4194: if (ref($env{$name})) {
1.25 albertel 4195: #already have multiple values
1.258 albertel 4196: push(@{ $env{$name} },$value);
1.25 albertel 4197: } else {
4198: #first time seeing multiple values, convert hash entry to an arrayref
1.258 albertel 4199: my $first=$env{$name};
4200: undef($env{$name});
4201: push(@{ $env{$name} },$first,$value);
1.25 albertel 4202: }
4203: } else {
1.258 albertel 4204: $env{$name}=$value;
1.25 albertel 4205: }
1.31 albertel 4206: }
1.149 albertel 4207:
4208: =pod
4209:
4210: =item * get_env_multiple($name)
4211:
1.258 albertel 4212: gets $name from the %env hash, it seemlessly handles the cases where multiple
1.149 albertel 4213: values may be defined and end up as an array ref.
4214:
4215: returns an array of values
4216:
4217: =cut
4218:
4219: sub get_env_multiple {
4220: my ($name) = @_;
4221: my @values;
1.258 albertel 4222: if (defined($env{$name})) {
1.149 albertel 4223: # exists is it an array
1.258 albertel 4224: if (ref($env{$name})) {
4225: @values=@{ $env{$name} };
1.149 albertel 4226: } else {
1.258 albertel 4227: $values[0]=$env{$name};
1.149 albertel 4228: }
4229: }
4230: return(@values);
4231: }
4232:
1.31 albertel 4233:
1.41 ng 4234: =pod
1.45 matthew 4235:
4236: =back
1.41 ng 4237:
1.112 bowersj2 4238: =head1 CSV Upload/Handling functions
1.38 albertel 4239:
1.41 ng 4240: =over 4
4241:
1.112 bowersj2 4242: =item * upfile_store($r)
1.41 ng 4243:
4244: Store uploaded file, $r should be the HTTP Request object,
1.258 albertel 4245: needs $env{'form.upfile'}
1.41 ng 4246: returns $datatoken to be put into hidden field
4247:
4248: =cut
1.31 albertel 4249:
4250: sub upfile_store {
4251: my $r=shift;
1.258 albertel 4252: $env{'form.upfile'}=~s/\r/\n/gs;
4253: $env{'form.upfile'}=~s/\f/\n/gs;
4254: $env{'form.upfile'}=~s/\n+/\n/gs;
4255: $env{'form.upfile'}=~s/\n+$//gs;
1.31 albertel 4256:
1.258 albertel 4257: my $datatoken=$env{'user.name'}.'_'.$env{'user.domain'}.
4258: '_enroll_'.$env{'request.course.id'}.'_'.time.'_'.$$;
1.31 albertel 4259: {
1.158 raeburn 4260: my $datafile = $r->dir_config('lonDaemons').
4261: '/tmp/'.$datatoken.'.tmp';
4262: if ( open(my $fh,">$datafile") ) {
1.258 albertel 4263: print $fh $env{'form.upfile'};
1.158 raeburn 4264: close($fh);
4265: }
1.31 albertel 4266: }
4267: return $datatoken;
4268: }
4269:
1.56 matthew 4270: =pod
4271:
1.112 bowersj2 4272: =item * load_tmp_file($r)
1.41 ng 4273:
4274: Load uploaded file from tmp, $r should be the HTTP Request object,
1.258 albertel 4275: needs $env{'form.datatoken'},
4276: sets $env{'form.upfile'} to the contents of the file
1.41 ng 4277:
4278: =cut
1.31 albertel 4279:
4280: sub load_tmp_file {
4281: my $r=shift;
4282: my @studentdata=();
4283: {
1.158 raeburn 4284: my $studentfile = $r->dir_config('lonDaemons').
1.258 albertel 4285: '/tmp/'.$env{'form.datatoken'}.'.tmp';
1.158 raeburn 4286: if ( open(my $fh,"<$studentfile") ) {
4287: @studentdata=<$fh>;
4288: close($fh);
4289: }
1.31 albertel 4290: }
1.258 albertel 4291: $env{'form.upfile'}=join('',@studentdata);
1.31 albertel 4292: }
4293:
1.56 matthew 4294: =pod
4295:
1.112 bowersj2 4296: =item * upfile_record_sep()
1.41 ng 4297:
4298: Separate uploaded file into records
4299: returns array of records,
1.258 albertel 4300: needs $env{'form.upfile'} and $env{'form.upfiletype'}
1.41 ng 4301:
4302: =cut
1.31 albertel 4303:
4304: sub upfile_record_sep {
1.258 albertel 4305: if ($env{'form.upfiletype'} eq 'xml') {
1.31 albertel 4306: } else {
1.248 albertel 4307: my @records;
1.258 albertel 4308: foreach my $line (split(/\n/,$env{'form.upfile'})) {
1.248 albertel 4309: if ($line=~/^\s*$/) { next; }
4310: push(@records,$line);
4311: }
4312: return @records;
1.31 albertel 4313: }
4314: }
4315:
1.56 matthew 4316: =pod
4317:
1.112 bowersj2 4318: =item * record_sep($record)
1.41 ng 4319:
1.258 albertel 4320: Separate a record into fields $record should be an item from the upfile_record_sep(), needs $env{'form.upfiletype'}
1.41 ng 4321:
4322: =cut
4323:
1.263 www 4324: sub takeleft {
4325: my $index=shift;
4326: return substr('0000'.$index,-4,4);
4327: }
4328:
1.31 albertel 4329: sub record_sep {
4330: my $record=shift;
4331: my %components=();
1.258 albertel 4332: if ($env{'form.upfiletype'} eq 'xml') {
4333: } elsif ($env{'form.upfiletype'} eq 'space') {
1.31 albertel 4334: my $i=0;
1.356 albertel 4335: foreach my $field (split(/\s+/,$record)) {
1.31 albertel 4336: $field=~s/^(\"|\')//;
4337: $field=~s/(\"|\')$//;
1.263 www 4338: $components{&takeleft($i)}=$field;
1.31 albertel 4339: $i++;
4340: }
1.258 albertel 4341: } elsif ($env{'form.upfiletype'} eq 'tab') {
1.31 albertel 4342: my $i=0;
1.356 albertel 4343: foreach my $field (split(/\t/,$record)) {
1.31 albertel 4344: $field=~s/^(\"|\')//;
4345: $field=~s/(\"|\')$//;
1.263 www 4346: $components{&takeleft($i)}=$field;
1.31 albertel 4347: $i++;
4348: }
4349: } else {
4350: my @allfields=split(/\,/,$record);
4351: my $i=0;
4352: my $j;
4353: for ($j=0;$j<=$#allfields;$j++) {
4354: my $field=$allfields[$j];
4355: if ($field=~/^\s*(\"|\')/) {
4356: my $delimiter=$1;
4357: while (($field!~/$delimiter$/) && ($j<$#allfields)) {
4358: $j++;
4359: $field.=','.$allfields[$j];
4360: }
4361: $field=~s/^\s*$delimiter//;
4362: $field=~s/$delimiter\s*$//;
4363: }
1.263 www 4364: $components{&takeleft($i)}=$field;
1.31 albertel 4365: $i++;
4366: }
4367: }
4368: return %components;
4369: }
4370:
1.144 matthew 4371: ######################################################
4372: ######################################################
4373:
1.56 matthew 4374: =pod
4375:
1.112 bowersj2 4376: =item * upfile_select_html()
1.41 ng 4377:
1.144 matthew 4378: Return HTML code to select a file from the users machine and specify
4379: the file type.
1.41 ng 4380:
4381: =cut
4382:
1.144 matthew 4383: ######################################################
4384: ######################################################
1.31 albertel 4385: sub upfile_select_html {
1.144 matthew 4386: my %Types = (
4387: csv => &mt('CSV (comma separated values, spreadsheet)'),
4388: space => &mt('Space separated'),
4389: tab => &mt('Tabulator separated'),
4390: # xml => &mt('HTML/XML'),
4391: );
4392: my $Str = '<input type="file" name="upfile" size="50" />'.
4393: '<br />Type: <select name="upfiletype">';
4394: foreach my $type (sort(keys(%Types))) {
4395: $Str .= '<option value="'.$type.'" >'.$Types{$type}."</option>\n";
4396: }
4397: $Str .= "</select>\n";
4398: return $Str;
1.31 albertel 4399: }
4400:
1.301 albertel 4401: sub get_samples {
4402: my ($records,$toget) = @_;
4403: my @samples=({});
4404: my $got=0;
4405: foreach my $rec (@$records) {
4406: my %temp = &record_sep($rec);
4407: if (! grep(/\S/, values(%temp))) { next; }
4408: if (%temp) {
4409: $samples[$got]=\%temp;
4410: $got++;
4411: if ($got == $toget) { last; }
4412: }
4413: }
4414: return \@samples;
4415: }
4416:
1.144 matthew 4417: ######################################################
4418: ######################################################
4419:
1.56 matthew 4420: =pod
4421:
1.112 bowersj2 4422: =item * csv_print_samples($r,$records)
1.41 ng 4423:
4424: Prints a table of sample values from each column uploaded $r is an
4425: Apache Request ref, $records is an arrayref from
4426: &Apache::loncommon::upfile_record_sep
4427:
4428: =cut
4429:
1.144 matthew 4430: ######################################################
4431: ######################################################
1.31 albertel 4432: sub csv_print_samples {
4433: my ($r,$records) = @_;
1.301 albertel 4434: my $samples = &get_samples($records,3);
4435:
1.144 matthew 4436: $r->print(&mt('Samples').'<br /><table border="2"><tr>');
1.356 albertel 4437: foreach my $sample (sort({$a <=> $b} keys(%{ $samples->[0] }))) {
4438: $r->print('<th>'.&mt('Column [_1]',($sample+1)).'</th>'); }
1.31 albertel 4439: $r->print('</tr>');
1.301 albertel 4440: foreach my $hash (@$samples) {
1.31 albertel 4441: $r->print('<tr>');
1.356 albertel 4442: foreach my $sample (sort({$a <=> $b} keys(%{ $samples->[0] }))) {
1.31 albertel 4443: $r->print('<td>');
1.356 albertel 4444: if (defined($$hash{$sample})) { $r->print($$hash{$sample}); }
1.31 albertel 4445: $r->print('</td>');
4446: }
4447: $r->print('</tr>');
4448: }
4449: $r->print('</tr></table><br />'."\n");
4450: }
4451:
1.144 matthew 4452: ######################################################
4453: ######################################################
4454:
1.56 matthew 4455: =pod
4456:
1.112 bowersj2 4457: =item * csv_print_select_table($r,$records,$d)
1.41 ng 4458:
4459: Prints a table to create associations between values and table columns.
1.144 matthew 4460:
1.41 ng 4461: $r is an Apache Request ref,
4462: $records is an arrayref from &Apache::loncommon::upfile_record_sep,
1.174 matthew 4463: $d is an array of 2 element arrays (internal name, displayed name,defaultcol)
1.41 ng 4464:
4465: =cut
4466:
1.144 matthew 4467: ######################################################
4468: ######################################################
1.31 albertel 4469: sub csv_print_select_table {
4470: my ($r,$records,$d) = @_;
1.301 albertel 4471: my $i=0;
4472: my $samples = &get_samples($records,1);
1.144 matthew 4473: $r->print(&mt('Associate columns with student attributes.')."\n".
4474: '<table border="2"><tr>'.
4475: '<th>'.&mt('Attribute').'</th>'.
4476: '<th>'.&mt('Column').'</th></tr>'."\n");
1.356 albertel 4477: foreach my $array_ref (@$d) {
4478: my ($value,$display,$defaultcol)=@{ $array_ref };
1.31 albertel 4479: $r->print('<tr><td>'.$display.'</td>');
4480:
4481: $r->print('<td><select name=f'.$i.
1.32 matthew 4482: ' onchange="javascript:flip(this.form,'.$i.');">');
1.31 albertel 4483: $r->print('<option value="none"></option>');
1.356 albertel 4484: foreach my $sample (sort({$a <=> $b} keys(%{ $samples->[0] }))) {
4485: $r->print('<option value="'.$sample.'"'.
4486: ($sample eq $defaultcol ? ' selected="selected" ' : '').
4487: '>Column '.($sample+1).'</option>');
1.31 albertel 4488: }
4489: $r->print('</select></td></tr>'."\n");
4490: $i++;
4491: }
4492: $i--;
4493: return $i;
4494: }
1.56 matthew 4495:
1.144 matthew 4496: ######################################################
4497: ######################################################
4498:
1.56 matthew 4499: =pod
1.31 albertel 4500:
1.112 bowersj2 4501: =item * csv_samples_select_table($r,$records,$d)
1.41 ng 4502:
4503: Prints a table of sample values from the upload and can make associate samples to internal names.
4504:
4505: $r is an Apache Request ref,
4506: $records is an arrayref from &Apache::loncommon::upfile_record_sep,
4507: $d is an array of 2 element arrays (internal name, displayed name)
4508:
4509: =cut
4510:
1.144 matthew 4511: ######################################################
4512: ######################################################
1.31 albertel 4513: sub csv_samples_select_table {
4514: my ($r,$records,$d) = @_;
4515: my $i=0;
1.144 matthew 4516: #
1.301 albertel 4517: my $samples = &get_samples($records,3);
1.144 matthew 4518: $r->print('<table border=2><tr><th>'.
4519: &mt('Field').'</th><th>'.&mt('Samples').'</th></tr>');
1.301 albertel 4520:
4521: foreach my $key (sort(keys(%{ $samples->[0] }))) {
1.144 matthew 4522: $r->print('<tr><td><select name="f'.$i.'"'.
1.32 matthew 4523: ' onchange="javascript:flip(this.form,'.$i.');">');
1.301 albertel 4524: foreach my $option (@$d) {
4525: my ($value,$display,$defaultcol)=@{ $option };
1.174 matthew 4526: $r->print('<option value="'.$value.'"'.
1.253 albertel 4527: ($i eq $defaultcol ? ' selected="selected" ':'').'>'.
1.174 matthew 4528: $display.'</option>');
1.31 albertel 4529: }
4530: $r->print('</select></td><td>');
1.301 albertel 4531: foreach my $line (0..2) {
4532: if (defined($samples->[$line]{$key})) {
4533: $r->print($samples->[$line]{$key}."<br />\n");
4534: }
4535: }
1.31 albertel 4536: $r->print('</td></tr>');
4537: $i++;
4538: }
4539: $i--;
4540: return($i);
1.115 matthew 4541: }
4542:
1.144 matthew 4543: ######################################################
4544: ######################################################
4545:
1.115 matthew 4546: =pod
4547:
4548: =item clean_excel_name($name)
4549:
4550: Returns a replacement for $name which does not contain any illegal characters.
4551:
4552: =cut
4553:
1.144 matthew 4554: ######################################################
4555: ######################################################
1.115 matthew 4556: sub clean_excel_name {
4557: my ($name) = @_;
4558: $name =~ s/[:\*\?\/\\]//g;
4559: if (length($name) > 31) {
4560: $name = substr($name,0,31);
4561: }
4562: return $name;
1.25 albertel 4563: }
1.84 albertel 4564:
1.85 albertel 4565: =pod
4566:
1.112 bowersj2 4567: =item * check_if_partid_hidden($id,$symb,$udom,$uname)
1.85 albertel 4568:
4569: Returns either 1 or undef
4570:
4571: 1 if the part is to be hidden, undef if it is to be shown
4572:
4573: Arguments are:
4574:
4575: $id the id of the part to be checked
4576: $symb, optional the symb of the resource to check
4577: $udom, optional the domain of the user to check for
4578: $uname, optional the username of the user to check for
4579:
4580: =cut
1.84 albertel 4581:
4582: sub check_if_partid_hidden {
4583: my ($id,$symb,$udom,$uname) = @_;
1.133 albertel 4584: my $hiddenparts=&Apache::lonnet::EXT('resource.0.hiddenparts',
1.84 albertel 4585: $symb,$udom,$uname);
1.141 albertel 4586: my $truth=1;
4587: #if the string starts with !, then the list is the list to show not hide
4588: if ($hiddenparts=~s/^\s*!//) { $truth=undef; }
1.84 albertel 4589: my @hiddenlist=split(/,/,$hiddenparts);
4590: foreach my $checkid (@hiddenlist) {
1.141 albertel 4591: if ($checkid =~ /^\s*\Q$id\E\s*$/) { return $truth; }
1.84 albertel 4592: }
1.141 albertel 4593: return !$truth;
1.84 albertel 4594: }
1.127 matthew 4595:
1.138 matthew 4596:
4597: ############################################################
4598: ############################################################
4599:
4600: =pod
4601:
1.157 matthew 4602: =back
4603:
1.138 matthew 4604: =head1 cgi-bin script and graphing routines
4605:
1.157 matthew 4606: =over 4
4607:
1.138 matthew 4608: =item get_cgi_id
4609:
4610: Inputs: none
4611:
4612: Returns an id which can be used to pass environment variables
4613: to various cgi-bin scripts. These environment variables will
4614: be removed from the users environment after a given time by
4615: the routine &Apache::lonnet::transfer_profile_to_env.
4616:
4617: =cut
4618:
4619: ############################################################
4620: ############################################################
1.152 albertel 4621: my $uniq=0;
1.136 matthew 4622: sub get_cgi_id {
1.154 albertel 4623: $uniq=($uniq+1)%100000;
1.280 albertel 4624: return (time.'_'.$$.'_'.$uniq);
1.136 matthew 4625: }
4626:
1.127 matthew 4627: ############################################################
4628: ############################################################
4629:
4630: =pod
4631:
1.134 matthew 4632: =item DrawBarGraph
1.127 matthew 4633:
1.138 matthew 4634: Facilitates the plotting of data in a (stacked) bar graph.
4635: Puts plot definition data into the users environment in order for
4636: graph.png to plot it. Returns an <img> tag for the plot.
4637: The bars on the plot are labeled '1','2',...,'n'.
4638:
4639: Inputs:
4640:
4641: =over 4
4642:
4643: =item $Title: string, the title of the plot
4644:
4645: =item $xlabel: string, text describing the X-axis of the plot
4646:
4647: =item $ylabel: string, text describing the Y-axis of the plot
4648:
4649: =item $Max: scalar, the maximum Y value to use in the plot
4650: If $Max is < any data point, the graph will not be rendered.
4651:
1.140 matthew 4652: =item $colors: array ref holding the colors to be used for the data sets when
1.138 matthew 4653: they are plotted. If undefined, default values will be used.
4654:
1.178 matthew 4655: =item $labels: array ref holding the labels to use on the x-axis for the bars.
4656:
1.138 matthew 4657: =item @Values: An array of array references. Each array reference holds data
4658: to be plotted in a stacked bar chart.
4659:
1.239 matthew 4660: =item If the final element of @Values is a hash reference the key/value
4661: pairs will be added to the graph definition.
4662:
1.138 matthew 4663: =back
4664:
4665: Returns:
4666:
4667: An <img> tag which references graph.png and the appropriate identifying
4668: information for the plot.
4669:
1.127 matthew 4670: =cut
4671:
4672: ############################################################
4673: ############################################################
1.134 matthew 4674: sub DrawBarGraph {
1.178 matthew 4675: my ($Title,$xlabel,$ylabel,$Max,$colors,$labels,@Values)=@_;
1.134 matthew 4676: #
4677: if (! defined($colors)) {
4678: $colors = ['#33ff00',
4679: '#0033cc', '#990000', '#aaaa66', '#663399', '#ff9933',
4680: '#66ccff', '#ff9999', '#cccc33', '#660000', '#33cc66',
4681: ];
4682: }
1.228 matthew 4683: my $extra_settings = {};
4684: if (ref($Values[-1]) eq 'HASH') {
4685: $extra_settings = pop(@Values);
4686: }
1.127 matthew 4687: #
1.136 matthew 4688: my $identifier = &get_cgi_id();
4689: my $id = 'cgi.'.$identifier;
1.129 matthew 4690: if (! @Values || ref($Values[0]) ne 'ARRAY') {
1.127 matthew 4691: return '';
4692: }
1.225 matthew 4693: #
4694: my @Labels;
4695: if (defined($labels)) {
4696: @Labels = @$labels;
4697: } else {
4698: for (my $i=0;$i<@{$Values[0]};$i++) {
4699: push (@Labels,$i+1);
4700: }
4701: }
4702: #
1.129 matthew 4703: my $NumBars = scalar(@{$Values[0]});
1.225 matthew 4704: if ($NumBars < scalar(@Labels)) { $NumBars = scalar(@Labels); }
1.129 matthew 4705: my %ValuesHash;
4706: my $NumSets=1;
4707: foreach my $array (@Values) {
4708: next if (! ref($array));
1.136 matthew 4709: $ValuesHash{$id.'.data.'.$NumSets++} =
1.132 matthew 4710: join(',',@$array);
1.129 matthew 4711: }
1.127 matthew 4712: #
1.136 matthew 4713: my ($height,$width,$xskip,$bar_width) = (200,120,1,15);
1.225 matthew 4714: if ($NumBars < 3) {
4715: $width = 120+$NumBars*32;
1.220 matthew 4716: $xskip = 1;
1.225 matthew 4717: $bar_width = 30;
4718: } elsif ($NumBars < 5) {
4719: $width = 120+$NumBars*20;
4720: $xskip = 1;
4721: $bar_width = 20;
1.220 matthew 4722: } elsif ($NumBars < 10) {
1.136 matthew 4723: $width = 120+$NumBars*15;
4724: $xskip = 1;
4725: $bar_width = 15;
4726: } elsif ($NumBars <= 25) {
4727: $width = 120+$NumBars*11;
4728: $xskip = 5;
4729: $bar_width = 8;
4730: } elsif ($NumBars <= 50) {
4731: $width = 120+$NumBars*8;
4732: $xskip = 5;
4733: $bar_width = 4;
4734: } else {
4735: $width = 120+$NumBars*8;
4736: $xskip = 5;
4737: $bar_width = 4;
4738: }
4739: #
1.137 matthew 4740: $Max = 1 if ($Max < 1);
4741: if ( int($Max) < $Max ) {
4742: $Max++;
4743: $Max = int($Max);
4744: }
1.127 matthew 4745: $Title = '' if (! defined($Title));
4746: $xlabel = '' if (! defined($xlabel));
4747: $ylabel = '' if (! defined($ylabel));
1.369 www 4748: $ValuesHash{$id.'.title'} = &escape($Title);
4749: $ValuesHash{$id.'.xlabel'} = &escape($xlabel);
4750: $ValuesHash{$id.'.ylabel'} = &escape($ylabel);
1.137 matthew 4751: $ValuesHash{$id.'.y_max_value'} = $Max;
1.136 matthew 4752: $ValuesHash{$id.'.NumBars'} = $NumBars;
4753: $ValuesHash{$id.'.NumSets'} = $NumSets;
4754: $ValuesHash{$id.'.PlotType'} = 'bar';
4755: $ValuesHash{$id.'.Colors'} = join(',',@{$colors});
4756: $ValuesHash{$id.'.height'} = $height;
4757: $ValuesHash{$id.'.width'} = $width;
4758: $ValuesHash{$id.'.xskip'} = $xskip;
4759: $ValuesHash{$id.'.bar_width'} = $bar_width;
4760: $ValuesHash{$id.'.labels'} = join(',',@Labels);
1.127 matthew 4761: #
1.228 matthew 4762: # Deal with other parameters
4763: while (my ($key,$value) = each(%$extra_settings)) {
4764: $ValuesHash{$id.'.'.$key} = $value;
4765: }
4766: #
1.137 matthew 4767: &Apache::lonnet::appenv(%ValuesHash);
4768: return '<img src="/cgi-bin/graph.png?'.$identifier.'" border="1" />';
4769: }
4770:
4771: ############################################################
4772: ############################################################
4773:
4774: =pod
4775:
4776: =item DrawXYGraph
4777:
1.138 matthew 4778: Facilitates the plotting of data in an XY graph.
4779: Puts plot definition data into the users environment in order for
4780: graph.png to plot it. Returns an <img> tag for the plot.
4781:
4782: Inputs:
4783:
4784: =over 4
4785:
4786: =item $Title: string, the title of the plot
4787:
4788: =item $xlabel: string, text describing the X-axis of the plot
4789:
4790: =item $ylabel: string, text describing the Y-axis of the plot
4791:
4792: =item $Max: scalar, the maximum Y value to use in the plot
4793: If $Max is < any data point, the graph will not be rendered.
4794:
4795: =item $colors: Array ref containing the hex color codes for the data to be
4796: plotted in. If undefined, default values will be used.
4797:
4798: =item $Xlabels: Array ref containing the labels to be used for the X-axis.
4799:
4800: =item $Ydata: Array ref containing Array refs.
1.185 www 4801: Each of the contained arrays will be plotted as a separate curve.
1.138 matthew 4802:
4803: =item %Values: hash indicating or overriding any default values which are
4804: passed to graph.png.
4805: Possible values are: width, xskip, x_ticks, x_tick_offset, among others.
4806:
4807: =back
4808:
4809: Returns:
4810:
4811: An <img> tag which references graph.png and the appropriate identifying
4812: information for the plot.
4813:
1.137 matthew 4814: =cut
4815:
4816: ############################################################
4817: ############################################################
4818: sub DrawXYGraph {
4819: my ($Title,$xlabel,$ylabel,$Max,$colors,$Xlabels,$Ydata,%Values)=@_;
4820: #
4821: # Create the identifier for the graph
4822: my $identifier = &get_cgi_id();
4823: my $id = 'cgi.'.$identifier;
4824: #
4825: $Title = '' if (! defined($Title));
4826: $xlabel = '' if (! defined($xlabel));
4827: $ylabel = '' if (! defined($ylabel));
4828: my %ValuesHash =
4829: (
1.369 www 4830: $id.'.title' => &escape($Title),
4831: $id.'.xlabel' => &escape($xlabel),
4832: $id.'.ylabel' => &escape($ylabel),
1.137 matthew 4833: $id.'.y_max_value'=> $Max,
4834: $id.'.labels' => join(',',@$Xlabels),
4835: $id.'.PlotType' => 'XY',
4836: );
4837: #
4838: if (defined($colors) && ref($colors) eq 'ARRAY') {
4839: $ValuesHash{$id.'.Colors'} = join(',',@{$colors});
4840: }
4841: #
4842: if (! ref($Ydata) || ref($Ydata) ne 'ARRAY') {
4843: return '';
4844: }
4845: my $NumSets=1;
1.138 matthew 4846: foreach my $array (@{$Ydata}){
1.137 matthew 4847: next if (! ref($array));
4848: $ValuesHash{$id.'.data.'.$NumSets++} = join(',',@$array);
4849: }
1.138 matthew 4850: $ValuesHash{$id.'.NumSets'} = $NumSets-1;
1.137 matthew 4851: #
4852: # Deal with other parameters
4853: while (my ($key,$value) = each(%Values)) {
4854: $ValuesHash{$id.'.'.$key} = $value;
1.127 matthew 4855: }
4856: #
1.136 matthew 4857: &Apache::lonnet::appenv(%ValuesHash);
4858: return '<img src="/cgi-bin/graph.png?'.$identifier.'" border="1" />';
4859: }
4860:
4861: ############################################################
4862: ############################################################
4863:
4864: =pod
4865:
1.138 matthew 4866: =item DrawXYYGraph
4867:
4868: Facilitates the plotting of data in an XY graph with two Y axes.
4869: Puts plot definition data into the users environment in order for
4870: graph.png to plot it. Returns an <img> tag for the plot.
4871:
4872: Inputs:
4873:
4874: =over 4
4875:
4876: =item $Title: string, the title of the plot
4877:
4878: =item $xlabel: string, text describing the X-axis of the plot
4879:
4880: =item $ylabel: string, text describing the Y-axis of the plot
4881:
4882: =item $colors: Array ref containing the hex color codes for the data to be
4883: plotted in. If undefined, default values will be used.
4884:
4885: =item $Xlabels: Array ref containing the labels to be used for the X-axis.
4886:
4887: =item $Ydata1: The first data set
4888:
4889: =item $Min1: The minimum value of the left Y-axis
4890:
4891: =item $Max1: The maximum value of the left Y-axis
4892:
4893: =item $Ydata2: The second data set
4894:
4895: =item $Min2: The minimum value of the right Y-axis
4896:
4897: =item $Max2: The maximum value of the left Y-axis
4898:
4899: =item %Values: hash indicating or overriding any default values which are
4900: passed to graph.png.
4901: Possible values are: width, xskip, x_ticks, x_tick_offset, among others.
4902:
4903: =back
4904:
4905: Returns:
4906:
4907: An <img> tag which references graph.png and the appropriate identifying
4908: information for the plot.
1.136 matthew 4909:
4910: =cut
4911:
4912: ############################################################
4913: ############################################################
1.137 matthew 4914: sub DrawXYYGraph {
4915: my ($Title,$xlabel,$ylabel,$colors,$Xlabels,$Ydata1,$Min1,$Max1,
4916: $Ydata2,$Min2,$Max2,%Values)=@_;
1.136 matthew 4917: #
4918: # Create the identifier for the graph
4919: my $identifier = &get_cgi_id();
4920: my $id = 'cgi.'.$identifier;
4921: #
4922: $Title = '' if (! defined($Title));
4923: $xlabel = '' if (! defined($xlabel));
4924: $ylabel = '' if (! defined($ylabel));
4925: my %ValuesHash =
4926: (
1.369 www 4927: $id.'.title' => &escape($Title),
4928: $id.'.xlabel' => &escape($xlabel),
4929: $id.'.ylabel' => &escape($ylabel),
1.136 matthew 4930: $id.'.labels' => join(',',@$Xlabels),
4931: $id.'.PlotType' => 'XY',
4932: $id.'.NumSets' => 2,
1.137 matthew 4933: $id.'.two_axes' => 1,
4934: $id.'.y1_max_value' => $Max1,
4935: $id.'.y1_min_value' => $Min1,
4936: $id.'.y2_max_value' => $Max2,
4937: $id.'.y2_min_value' => $Min2,
1.136 matthew 4938: );
4939: #
1.137 matthew 4940: if (defined($colors) && ref($colors) eq 'ARRAY') {
4941: $ValuesHash{$id.'.Colors'} = join(',',@{$colors});
4942: }
4943: #
4944: if (! ref($Ydata1) || ref($Ydata1) ne 'ARRAY' ||
4945: ! ref($Ydata2) || ref($Ydata2) ne 'ARRAY'){
1.136 matthew 4946: return '';
4947: }
4948: my $NumSets=1;
1.137 matthew 4949: foreach my $array ($Ydata1,$Ydata2){
1.136 matthew 4950: next if (! ref($array));
4951: $ValuesHash{$id.'.data.'.$NumSets++} = join(',',@$array);
1.137 matthew 4952: }
4953: #
4954: # Deal with other parameters
4955: while (my ($key,$value) = each(%Values)) {
4956: $ValuesHash{$id.'.'.$key} = $value;
1.136 matthew 4957: }
4958: #
4959: &Apache::lonnet::appenv(%ValuesHash);
1.130 albertel 4960: return '<img src="/cgi-bin/graph.png?'.$identifier.'" border="1" />';
1.139 matthew 4961: }
4962:
4963: ############################################################
4964: ############################################################
4965:
4966: =pod
4967:
1.157 matthew 4968: =back
4969:
1.139 matthew 4970: =head1 Statistics helper routines?
4971:
4972: Bad place for them but what the hell.
4973:
1.157 matthew 4974: =over 4
4975:
1.139 matthew 4976: =item &chartlink
4977:
4978: Returns a link to the chart for a specific student.
4979:
4980: Inputs:
4981:
4982: =over 4
4983:
4984: =item $linktext: The text of the link
4985:
4986: =item $sname: The students username
4987:
4988: =item $sdomain: The students domain
4989:
4990: =back
4991:
1.157 matthew 4992: =back
4993:
1.139 matthew 4994: =cut
4995:
4996: ############################################################
4997: ############################################################
4998: sub chartlink {
4999: my ($linktext, $sname, $sdomain) = @_;
5000: my $link = '<a href="/adm/statistics?reportSelected=student_assessment'.
1.369 www 5001: '&SelectedStudent='.&escape($sname.':'.$sdomain).
1.219 albertel 5002: '&chartoutputmode='.HTML::Entities::encode('html, with all links').
1.139 matthew 5003: '">'.$linktext.'</a>';
1.153 matthew 5004: }
5005:
5006: #######################################################
5007: #######################################################
5008:
5009: =pod
5010:
5011: =head1 Course Environment Routines
1.157 matthew 5012:
5013: =over 4
1.153 matthew 5014:
5015: =item &restore_course_settings
5016:
5017: =item &store_course_settings
5018:
5019: Restores/Store indicated form parameters from the course environment.
5020: Will not overwrite existing values of the form parameters.
5021:
5022: Inputs:
5023: a scalar describing the data (e.g. 'chart', 'problem_analysis')
5024:
5025: a hash ref describing the data to be stored. For example:
5026:
5027: %Save_Parameters = ('Status' => 'scalar',
5028: 'chartoutputmode' => 'scalar',
5029: 'chartoutputdata' => 'scalar',
5030: 'Section' => 'array',
5031: 'StudentData' => 'array',
5032: 'Maps' => 'array');
5033:
5034: Returns: both routines return nothing
5035:
5036: =cut
5037:
5038: #######################################################
5039: #######################################################
5040: sub store_course_settings {
5041: # save to the environment
5042: # appenv the same items, just to be safe
1.258 albertel 5043: my $courseid = $env{'request.course.id'};
1.300 albertel 5044: my $udom = $env{'user.domain'};
5045: my $uname = $env{'user.name'};
1.153 matthew 5046: my ($prefix,$Settings) = @_;
5047: my %SaveHash;
5048: my %AppHash;
5049: while (my ($setting,$type) = each(%$Settings)) {
1.300 albertel 5050: my $basename = join('.','internal',$courseid,$prefix,$setting);
5051: my $envname = 'environment.'.$basename;
1.258 albertel 5052: if (exists($env{'form.'.$setting})) {
1.153 matthew 5053: # Save this value away
5054: if ($type eq 'scalar' &&
1.258 albertel 5055: (! exists($env{$envname}) ||
5056: $env{$envname} ne $env{'form.'.$setting})) {
5057: $SaveHash{$basename} = $env{'form.'.$setting};
5058: $AppHash{$envname} = $env{'form.'.$setting};
1.153 matthew 5059: } elsif ($type eq 'array') {
5060: my $stored_form;
1.258 albertel 5061: if (ref($env{'form.'.$setting})) {
1.153 matthew 5062: $stored_form = join(',',
5063: map {
1.369 www 5064: &escape($_);
1.258 albertel 5065: } sort(@{$env{'form.'.$setting}}));
1.153 matthew 5066: } else {
5067: $stored_form =
1.369 www 5068: &escape($env{'form.'.$setting});
1.153 matthew 5069: }
5070: # Determine if the array contents are the same.
1.258 albertel 5071: if ($stored_form ne $env{$envname}) {
1.153 matthew 5072: $SaveHash{$basename} = $stored_form;
5073: $AppHash{$envname} = $stored_form;
5074: }
5075: }
5076: }
5077: }
5078: my $put_result = &Apache::lonnet::put('environment',\%SaveHash,
1.300 albertel 5079: $udom,$uname);
1.153 matthew 5080: if ($put_result !~ /^(ok|delayed)/) {
5081: &Apache::lonnet::logthis('unable to save form parameters, '.
5082: 'got error:'.$put_result);
5083: }
5084: # Make sure these settings stick around in this session, too
5085: &Apache::lonnet::appenv(%AppHash);
5086: return;
5087: }
5088:
5089: sub restore_course_settings {
1.258 albertel 5090: my $courseid = $env{'request.course.id'};
1.153 matthew 5091: my ($prefix,$Settings) = @_;
5092: while (my ($setting,$type) = each(%$Settings)) {
1.258 albertel 5093: next if (exists($env{'form.'.$setting}));
1.300 albertel 5094: my $envname = 'environment.internal.'.$courseid.'.'.$prefix.
1.153 matthew 5095: '.'.$setting;
1.258 albertel 5096: if (exists($env{$envname})) {
1.153 matthew 5097: if ($type eq 'scalar') {
1.258 albertel 5098: $env{'form.'.$setting} = $env{$envname};
1.153 matthew 5099: } elsif ($type eq 'array') {
1.258 albertel 5100: $env{'form.'.$setting} = [
1.153 matthew 5101: map {
1.369 www 5102: &unescape($_);
1.258 albertel 5103: } split(',',$env{$envname})
1.153 matthew 5104: ];
5105: }
5106: }
5107: }
1.127 matthew 5108: }
5109:
5110: ############################################################
5111: ############################################################
1.154 albertel 5112:
5113: sub propath {
5114: my ($udom,$uname)=@_;
5115: $udom=~s/\W//g;
5116: $uname=~s/\W//g;
5117: my $subdir=$uname.'__';
5118: $subdir =~ s/(.)(.)(.).*/$1\/$2\/$3/;
5119: my $proname="$Apache::lonnet::perlvar{'lonUsersDir'}/$udom/$subdir/$uname";
5120: return $proname;
1.156 albertel 5121: }
5122:
5123: sub icon {
5124: my ($file)=@_;
1.168 albertel 5125: my $curfext = (split(/\./,$file))[-1];
5126: my $iconname=$Apache::lonnet::perlvar{'lonIconsURL'}.'/unknown.gif';
1.156 albertel 5127: my $embstyle = &Apache::loncommon::fileembstyle($curfext);
1.168 albertel 5128: if (!(!defined($embstyle) || $embstyle eq 'unk' || $embstyle eq 'hdn')) {
5129: if (-e $Apache::lonnet::perlvar{'lonDocRoot'}.'/'.
5130: $Apache::lonnet::perlvar{'lonIconsURL'}.'/'.
5131: $curfext.".gif") {
5132: $iconname=$Apache::lonnet::perlvar{'lonIconsURL'}.'/'.
5133: $curfext.".gif";
5134: }
5135: }
1.249 albertel 5136: return &lonhttpdurl($iconname);
1.154 albertel 5137: }
1.84 albertel 5138:
1.215 albertel 5139: sub lonhttpdurl {
5140: my ($url)=@_;
5141: my $lonhttpd_port=$Apache::lonnet::perlvar{'lonhttpdPort'};
5142: if (!defined($lonhttpd_port)) { $lonhttpd_port='8080'; }
5143: return 'http://'.$ENV{'SERVER_NAME'}.':'.$lonhttpd_port.$url;
5144: }
5145:
1.213 albertel 5146: sub connection_aborted {
5147: my ($r)=@_;
5148: $r->print(" ");$r->rflush();
5149: my $c = $r->connection;
5150: return $c->aborted();
5151: }
5152:
1.221 foxr 5153: # Escapes strings that may have embedded 's that will be put into
1.222 foxr 5154: # strings as 'strings'.
5155: sub escape_single {
1.221 foxr 5156: my ($input) = @_;
1.223 albertel 5157: $input =~ s/\\/\\\\/g; # Escape the \'s..(must be first)>
1.221 foxr 5158: $input =~ s/\'/\\\'/g; # Esacpe the 's....
5159: return $input;
5160: }
1.223 albertel 5161:
1.222 foxr 5162: # Same as escape_single, but escape's "'s This
5163: # can be used for "strings"
5164: sub escape_double {
5165: my ($input) = @_;
5166: $input =~ s/\\/\\\\/g; # Escape the /'s..(must be first)>
5167: $input =~ s/\"/\\\"/g; # Esacpe the "s....
5168: return $input;
5169: }
1.223 albertel 5170:
1.222 foxr 5171: # Escapes the last element of a full URL.
5172: sub escape_url {
5173: my ($url) = @_;
1.238 raeburn 5174: my @urlslices = split(/\//, $url,-1);
1.369 www 5175: my $lastitem = &escape(pop(@urlslices));
1.223 albertel 5176: return join('/',@urlslices).'/'.$lastitem;
1.222 foxr 5177: }
1.41 ng 5178: =pod
5179:
5180: =back
5181:
1.112 bowersj2 5182: =cut
1.41 ng 5183:
1.112 bowersj2 5184: 1;
5185: __END__;
1.41 ng 5186:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>