Annotation of loncom/xml/lonplot.pm, revision 1.93

1.1       matthew     1: # The LearningOnline Network with CAPA
                      2: # Dynamic plot
                      3: #
1.93    ! albertel    4: # $Id: lonplot.pm,v 1.92 2003/10/24 17:35:32 matthew Exp $
1.1       matthew     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.3       matthew    28: # 12/15/01 Matthew
1.31      matthew    29: # 12/17 12/18 12/19 12/20 12/21 12/27 12/28 12/30 12/31 Matthew
                     30: # 01/01/02 Matthew
1.35      matthew    31: # 01/02 01/03 01/04 01/07 01/08 01/09 Matthew
1.52      matthew    32: # 01/21 02/05 02/06 2/28Matthew
1.35      matthew    33: 
1.1       matthew    34: package Apache::lonplot;
1.10      matthew    35: 
1.1       matthew    36: use strict;
1.89      matthew    37: use warnings FATAL=>'all';
                     38: no warnings 'uninitialized';
1.10      matthew    39: use Apache::File;
1.1       matthew    40: use Apache::response;
1.2       matthew    41: use Apache::lonxml;
1.20      matthew    42: use Apache::edit;
1.10      matthew    43: 
1.33      harris41   44: BEGIN {
1.47      matthew    45:   &Apache::lonxml::register('Apache::lonplot',('gnuplot'));
1.1       matthew    46: }
                     47: 
1.10      matthew    48: ## 
                     49: ## Description of data structures:
                     50: ##
                     51: ##  %plot       %key    %axis
                     52: ## --------------------------
                     53: ##  height      title   color
                     54: ##  width       box     xmin
                     55: ##  bgcolor     pos     xmax
                     56: ##  fgcolor             ymin
                     57: ##  transparent         ymax
                     58: ##  grid
                     59: ##  border
                     60: ##  font
1.19      matthew    61: ##  align
1.10      matthew    62: ##
                     63: ##  @labels: $labels[$i] = \%label
                     64: ##           %label: text, xpos, ypos, justify
1.14      matthew    65: ##
1.10      matthew    66: ##  @curves: $curves[$i] = \%curve
1.14      matthew    67: ##           %curve: name, linestyle, ( function | data )
1.10      matthew    68: ##
                     69: ##  $curves[$i]->{'data'} = [ [x1,x2,x3,x4],
                     70: ##                            [y1,y2,y3,y4] ]
                     71: ##
1.21      matthew    72: 
                     73: ###################################################################
                     74: ##                                                               ##
                     75: ##        Tests used in checking the validitity of input         ##
                     76: ##                                                               ##
                     77: ###################################################################
1.29      matthew    78: 
1.32      matthew    79: my $max_str_len = 50;    # if a label, title, xlabel, or ylabel text
                     80:                          # is longer than this, it will be truncated.
                     81: 
1.29      matthew    82: my %linestyles = 
                     83:     (
                     84:      lines          => 2,     # Maybe this will be used in the future
                     85:      linespoints    => 2,     # to check on whether or not they have 
                     86:      dots	    => 2,     # supplied enough <data></data> fields
                     87:      points         => 2,     # to use the given line style.  But for
                     88:      steps	    => 2,     # now there are more important things 
                     89:      fsteps	    => 2,     # for me to deal with.
                     90:      histeps        => 2,
1.34      matthew    91:      errorbars	    => 3,
                     92:      xerrorbars	    => [3,4],
                     93:      yerrorbars	    => [3,4],
1.35      matthew    94:      xyerrorbars    => [4,6],
1.34      matthew    95:      boxes          => 3,
1.35      matthew    96:      vector	    => 4
1.29      matthew    97:     );		    
                     98: 
1.11      matthew    99: my $int_test       = sub {$_[0]=~s/\s+//g;$_[0]=~/^\d+$/};
1.19      matthew   100: my $real_test      = 
                    101:     sub {$_[0]=~s/\s+//g;$_[0]=~/^[+-]?\d*\.?\d*([eE][+-]\d+)?$/};
1.62      matthew   102: my $pos_real_test  =
                    103:     sub {$_[0]=~s/\s+//g;$_[0]=~/^[+]?\d*\.?\d*([eE][+-]\d+)?$/};
1.79      matthew   104: my $color_test     = sub {$_[0]=~s/\s+//g;$_[0]=~/^x[\da-fA-F]{6}$/};
1.1       matthew   105: my $onoff_test     = sub {$_[0]=~/^(on|off)$/};
1.15      matthew   106: my $key_pos_test   = sub {$_[0]=~/^(top|bottom|right|left|outside|below| )+$/};
1.1       matthew   107: my $sml_test       = sub {$_[0]=~/^(small|medium|large)$/};
1.29      matthew   108: my $linestyle_test = sub {exists($linestyles{$_[0]})};
1.67      matthew   109: my $words_test     = sub {$_[0]=~s/\s+/ /g;$_[0]=~/^([\w~!\@\#\$\%^&\*\(\)-=_\+\[\]\{\}:\;\'<>,\.\/\?\\]+ ?)+$/};
1.21      matthew   110: 
                    111: ###################################################################
                    112: ##                                                               ##
                    113: ##                      Attribute metadata                       ##
                    114: ##                                                               ##
                    115: ###################################################################
1.47      matthew   116: my @gnuplot_edit_order = 
1.82      matthew   117:     qw/alttag bgcolor fgcolor height width font transparent grid samples 
1.92      matthew   118:     border align texwidth texfont plottype/;
1.48      matthew   119: 
                    120: my $gnuplot_help_text = <<"ENDPLOTHELP";
                    121: <p>
                    122: The <b>gnuplot</b> tag allows an author to design a plot which can
                    123: be created on the fly.  This is intended for use in homework problems
                    124: where each student needs to see a distinct plot.  It can be used in
                    125: conjunction with a <b>script</b> tag to generate random plots.
                    126: </p><p>
                    127: A <b>gnuplot</b> tag can contain the following sub-tags:
                    128: </p>
                    129: <dl>
                    130: <dt> Plot Label
                    131:     <dd> Allows you to place text at a given (x,y) coordinate on the plot.
                    132: <dt> Plot Title
                    133:     <dd> The title of the plot
                    134: <dt> Plot Xlabel
                    135:     <dd> The label on the horizontal axis of the plot
                    136: <dt> Plot Ylabel
                    137:     <dd> The label on the vertical axis of the plot
                    138: <dt> Plot Axes
                    139:     <dd> allows specification of the x and y ranges displayed in the plot
                    140: <dt> Plot Key
                    141:     <dd> Lists the functions displayed in the plot.
                    142: <dt> Plot Curve
                    143:     <dd> Sets the data used in the plot.
                    144: <dt> Plot Tics
                    145:     <dd> Allows specification of the x and y coordinate 'tics' on the axes.
                    146: This is mostly used to adjust the grid lines when a grid is displayed.
                    147: </dl>
1.55      matthew   148: If you are having trouble with your plot, please read the help
                    149: available on Plot Curve.
1.48      matthew   150: ENDPLOTHELP
                    151: 
1.47      matthew   152: my %gnuplot_defaults = 
1.1       matthew   153:     (
1.64      matthew   154:      alttag       => {
                    155: 	 default     => 'dynamically generated plot',
                    156: 	 test        => $words_test,
                    157: 	 description => 'brief description of the plot',
                    158:       	 edit_type   => 'entry',
                    159: 	 size        => '40'
                    160: 	 },
1.20      matthew   161:      height       => {
1.65      matthew   162: 	 default     => 300,
1.20      matthew   163: 	 test        => $int_test,
1.29      matthew   164: 	 description => 'height of image (pixels)',
1.38      matthew   165:       	 edit_type   => 'entry',
                    166: 	 size        => '10'
1.20      matthew   167: 	 },
                    168:      width        => {
1.65      matthew   169: 	 default     => 400,
1.20      matthew   170: 	 test        => $int_test,
1.29      matthew   171: 	 description => 'width of image (pixels)',
1.38      matthew   172: 	 edit_type   => 'entry',
                    173: 	 size        => '10'
1.20      matthew   174: 	 },
                    175:      bgcolor      => {
                    176: 	 default     => 'xffffff',
                    177: 	 test        => $color_test, 
                    178: 	 description => 'background color of image (xffffff)',
1.38      matthew   179: 	 edit_type   => 'entry',
                    180: 	 size        => '10'
1.20      matthew   181: 	 },
                    182:      fgcolor      => {
                    183: 	 default     => 'x000000',
                    184: 	 test        => $color_test,
                    185: 	 description => 'foreground color of image (x000000)',
1.38      matthew   186: 	 edit_type   => 'entry',
                    187: 	 size        => '10'
1.20      matthew   188: 	 },
                    189:      transparent  => {
                    190: 	 default     => 'off',
                    191: 	 test        => $onoff_test, 
1.34      matthew   192: 	 description => 'Transparent image',
1.45      matthew   193: 	 edit_type   => 'onoff'
1.20      matthew   194: 	 },
                    195:      grid         => {
1.65      matthew   196: 	 default     => 'on',
1.20      matthew   197: 	 test        => $onoff_test, 
1.34      matthew   198: 	 description => 'Display grid',
1.45      matthew   199: 	 edit_type   => 'onoff'
1.20      matthew   200: 	 },
                    201:      border       => {
                    202: 	 default     => 'on',
                    203: 	 test        => $onoff_test, 
1.34      matthew   204: 	 description => 'Draw border around plot',
1.45      matthew   205: 	 edit_type   => 'onoff'
1.20      matthew   206: 	 },
                    207:      font         => {
                    208: 	 default     => 'medium',
                    209: 	 test        => $sml_test,
                    210: 	 description => 'Size of font to use',
                    211: 	 edit_type   => 'choice',
                    212: 	 choices     => ['small','medium','large']
                    213: 	 },
1.77      matthew   214:      samples         => {
                    215: 	 default     => '100',
                    216: 	 test        => $int_test,
                    217: 	 description => 'Number of samples for non-data plots',
                    218: 	 edit_type   => 'choice',
                    219: 	 choices     => ['100','200','500','1000','2000','5000']
                    220: 	 },
1.20      matthew   221:      align        => {
1.65      matthew   222: 	 default     => 'center',
1.20      matthew   223: 	 test        => sub {$_[0]=~/^(left|right|center)$/},
                    224: 	 description => 'alignment for image in html',
                    225: 	 edit_type   => 'choice',
                    226: 	 choices     => ['left','right','center']
1.82      matthew   227: 	 },
                    228:      texwidth     => {
                    229:          default     => '93',
                    230:          test        => $int_test,
                    231:          description => 'Width of plot when printed (mm)',
                    232:          edit_type   => 'entry',
                    233:          size        => '5'
                    234:          },
1.92      matthew   235:      texfont     => {
                    236:          default     => '22',
                    237:          test        => $int_test,
                    238:          description => 'Font size to use in TeX output (pts):',
                    239:          edit_type   => 'choice',
                    240:          choices     => [qw/10 12 14 16 18 20 22 24 26 28 30 32 34 36/],
                    241:          },
1.87      matthew   242:      plottype  => {
                    243: 	 default     => 'Cartesian',
                    244: 	 test        => sub {$_[0]=~/^(Polar|Cartesian)$/},
                    245: 	 description => 'Plot type:',
                    246: 	 edit_type   => 'choice',
                    247:          choices     => ['Polar','Cartesian']
                    248:          },
1.1       matthew   249:      );
                    250: 
                    251: my %key_defaults = 
                    252:     (
1.20      matthew   253:      title => { 
                    254: 	 default => '',
                    255: 	 test => $words_test,
                    256: 	 description => 'Title of key',
1.38      matthew   257: 	 edit_type   => 'entry',
                    258: 	 size        => '40'
1.20      matthew   259: 	 },
                    260:      box   => { 
                    261: 	 default => 'off',
                    262: 	 test => $onoff_test,
                    263: 	 description => 'Draw a box around the key?',
1.45      matthew   264: 	 edit_type   => 'onoff'
1.20      matthew   265: 	 },
                    266:      pos   => { 
                    267: 	 default => 'top right', 
                    268: 	 test => $key_pos_test, 
                    269: 	 description => 'position of the key on the plot',
                    270: 	 edit_type   => 'choice',
                    271: 	 choices     => ['top left','top right','bottom left','bottom right',
                    272: 			 'outside','below']
                    273: 	 }
1.1       matthew   274:      );
                    275: 
                    276: my %label_defaults = 
                    277:     (
1.20      matthew   278:      xpos    => {
                    279: 	 default => 0,
                    280: 	 test => $real_test,
                    281: 	 description => 'x position of label (graph coordinates)',
1.38      matthew   282: 	 edit_type   => 'entry',
                    283: 	 size        => '10'
1.20      matthew   284: 	 },
                    285:      ypos    => {
                    286: 	 default => 0, 
                    287: 	 test => $real_test,
                    288: 	 description => 'y position of label (graph coordinates)',
1.38      matthew   289: 	 edit_type   => 'entry',
                    290: 	 size        => '10'
1.20      matthew   291: 	 },
                    292:      justify => {
                    293: 	 default => 'left',    
                    294: 	 test => sub {$_[0]=~/^(left|right|center)$/},
                    295: 	 description => 'justification of the label text on the plot',
                    296: 	 edit_type   => 'choice',
                    297: 	 choices     => ['left','right','center']
                    298:      }
1.1       matthew   299:      );
                    300: 
1.89      matthew   301: my @tic_edit_order = ('location','mirror','start','increment','end',
                    302:                       'minorfreq');
1.45      matthew   303: my %tic_defaults =
                    304:     (
                    305:      location => {
                    306: 	 default => 'border', 
                    307: 	 test => sub {$_[0]=~/^(border|axis)$/},
1.90      matthew   308: 	 description => 'Location of major tic marks',
1.45      matthew   309: 	 edit_type   => 'choice',
                    310: 	 choices     => ['border','axis']
                    311: 	 },
                    312:      mirror => {
                    313: 	 default => 'on', 
                    314: 	 test => $onoff_test,
1.90      matthew   315: 	 description => 'mirror tics on opposite axis?',
1.45      matthew   316: 	 edit_type   => 'onoff'
                    317: 	 },
                    318:      start => {
                    319: 	 default => '-10.0',
                    320: 	 test => $real_test,
1.90      matthew   321: 	 description => 'Start major tics at',
1.45      matthew   322: 	 edit_type   => 'entry',
                    323: 	 size        => '10'
                    324: 	 },
                    325:      increment => {
                    326: 	 default => '1.0',
                    327: 	 test => $real_test,
1.90      matthew   328: 	 description => 'Place a major tic every',
1.45      matthew   329: 	 edit_type   => 'entry',
                    330: 	 size        => '10'
                    331: 	 },
                    332:      end => {
                    333: 	 default => ' 10.0',
                    334: 	 test => $real_test,
1.90      matthew   335: 	 description => 'Stop major tics at ',
1.45      matthew   336: 	 edit_type   => 'entry',
                    337: 	 size        => '10'
                    338: 	 },
1.89      matthew   339:      minorfreq => {
                    340: 	 default => '0',
                    341: 	 test => $int_test,
1.90      matthew   342: 	 description => 'Number of minor tics between major tic marks',
1.89      matthew   343: 	 edit_type   => 'entry',
                    344: 	 size        => '10'
                    345: 	 },         
1.45      matthew   346:      );
                    347: 
1.65      matthew   348: my @axis_edit_order = ('color','xmin','xmax','ymin','ymax');
1.1       matthew   349: my %axis_defaults = 
                    350:     (
1.28      matthew   351:      color   => {
1.20      matthew   352: 	 default => 'x000000', 
                    353: 	 test => $color_test,
1.78      matthew   354: 	 description => 'color of grid lines (x000000)',
1.38      matthew   355: 	 edit_type   => 'entry',
                    356: 	 size        => '10'
1.20      matthew   357: 	 },
                    358:      xmin      => {
                    359: 	 default => '-10.0',
                    360: 	 test => $real_test,
                    361: 	 description => 'minimum x-value shown in plot',
1.38      matthew   362: 	 edit_type   => 'entry',
                    363: 	 size        => '10'
1.20      matthew   364: 	 },
                    365:      xmax      => {
                    366: 	 default => ' 10.0',
                    367: 	 test => $real_test,
                    368: 	 description => 'maximum x-value shown in plot',	 
1.38      matthew   369: 	 edit_type   => 'entry',
                    370: 	 size        => '10'
1.20      matthew   371: 	 },
                    372:      ymin      => {
                    373: 	 default => '-10.0',
                    374: 	 test => $real_test,
                    375: 	 description => 'minimum y-value shown in plot',	 
1.38      matthew   376: 	 edit_type   => 'entry',
                    377: 	 size        => '10'
1.20      matthew   378: 	 },
                    379:      ymax      => {
                    380: 	 default => ' 10.0',
                    381: 	 test => $real_test,
                    382: 	 description => 'maximum y-value shown in plot',	 
1.38      matthew   383: 	 edit_type   => 'entry',
                    384: 	 size        => '10'
1.20      matthew   385: 	 }
1.1       matthew   386:      );
                    387: 
1.48      matthew   388: my $curve_help_text = <<"ENDCURVEHELP";
                    389: The <b>curve</b> tag is where you set the data to be plotted by gnuplot.
                    390: There are two ways of entering the information:
                    391: <dl>
                    392:     <dt> Curve Data
                    393:     <dd> Using a <b>data</b> tag you can specify the numbers used to produce 
                    394: the plot.  
                    395: <p>
                    396: By default, two <b>data</b> tags will be available in a plot.  The
                    397: first will specify X coordinates of the data and the second will
                    398: give the Y coordinates of the data.  When working with a linestyle that 
                    399: requires more than two data sets, inserting another <b>data</b> tag is
                    400: required.  Unfortunately, you must make sure the <b>data</b> tags appear
                    401: in the order gnuplot expects the data.
                    402: </p><p>
                    403: Specifying the data should usually be done with a perl variable or array, 
                    404: such as \@Xdata and \@Ydata.  You may also specify numerical data seperated 
                    405: by commas.  Again, the order of the <b>data</b> tags is important.  The
                    406: first tag will be the X data and the second will be the Y data.
                    407: </p>
                    408:     <dt> Curve Function
                    409:     <dd> The <b>function</b> tag allows you to specify the curve to be 
1.57      matthew   410: plotted as a formula that gnuplot can understand.  <b>Be careful using this
                    411: tag.</b>  It is surprisingly easy to give gnuplot a function it cannot deal
1.48      matthew   412: with properly.  Be explicit: 2*sin(2*3.141592*x/4) will work but
                    413: 2sin(2*3.141592x/4) will not.  If you do not receive any errors in the
                    414: gnuplot data but still do not have an image produced, it is likely there
                    415: is an error in your <b>function</b> tag.
                    416: </dl>
                    417: ENDCURVEHELP
                    418: 
1.62      matthew   419: my @curve_edit_order = ('color','name','linestyle','pointtype','pointsize');
1.60      matthew   420: 
1.1       matthew   421: my %curve_defaults = 
                    422:     (
1.20      matthew   423:      color     => {
                    424: 	 default => 'x000000',
                    425: 	 test => $color_test,
                    426: 	 description => 'color of curve (x000000)',
1.38      matthew   427: 	 edit_type   => 'entry',
                    428: 	 size        => '10'
1.20      matthew   429: 	 },
                    430:      name      => {
                    431: 	 default => '',
                    432: 	 test => $words_test,
                    433: 	 description => 'name of curve to appear in key',
1.38      matthew   434: 	 edit_type   => 'entry',
                    435: 	 size        => '20'
1.20      matthew   436: 	 },
                    437:      linestyle => {
                    438: 	 default => 'lines',
                    439: 	 test => $linestyle_test,
1.35      matthew   440: 	 description => 'Line style',
1.20      matthew   441: 	 edit_type   => 'choice',
1.38      matthew   442: 	 choices     => [keys(%linestyles)]
1.60      matthew   443: 	 },
                    444: # gnuplots term=gif driver does not handle linewidth :(
                    445: #     linewidth => {
                    446: #         default     => 1,
                    447: #         test        => $int_test,
                    448: #         description => 'Line width (may not apply to all line styles)',
                    449: #         edit_type   => 'choice',
                    450: #         choices     => [1,2,3,4,5,6,7,8,9,10]
                    451: #         },
                    452:      pointsize => {
                    453:          default     => 1,
1.62      matthew   454:          test        => $pos_real_test,
                    455:          description => 'point size (may not apply to all line styles)',
                    456:          edit_type   => 'entry',
                    457:          size        => '5'
                    458:          },
                    459:      pointtype => {
                    460:          default     => 1,
1.60      matthew   461:          test        => $int_test,
1.62      matthew   462:          description => 'point type (may not apply to all line styles)',
1.60      matthew   463:          edit_type   => 'choice',
1.62      matthew   464:          choices     => [0,1,2,3,4,5,6]
1.60      matthew   465:          }
1.1       matthew   466:      );
                    467: 
1.21      matthew   468: ###################################################################
                    469: ##                                                               ##
                    470: ##                    parsing and edit rendering                 ##
                    471: ##                                                               ##
                    472: ###################################################################
1.45      matthew   473: my (%plot,%key,%axis,$title,$xlabel,$ylabel,@labels,@curves,%xtics,%ytics);
1.1       matthew   474: 
1.47      matthew   475: sub start_gnuplot {
1.89      matthew   476:     undef(%plot);   undef(%key);    undef(%axis);
                    477:     undef($title);  undef($xlabel); undef($ylabel);
                    478:     undef(@labels); undef(@curves);
                    479:     undef(%xtics);  undef(%ytics);
1.6       matthew   480:     #
1.1       matthew   481:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    482:     my $result='';
1.25      matthew   483:     &Apache::lonxml::register('Apache::lonplot',
1.45      matthew   484: 	     ('title','xlabel','ylabel','key','axis','label','curve',
                    485: 	      'xtics','ytics'));
1.29      matthew   486:     push (@Apache::lonxml::namespace,'lonplot');
1.51      matthew   487:     if ($target eq 'web' || $target eq 'tex') {
1.47      matthew   488: 	&get_attributes(\%plot,\%gnuplot_defaults,$parstack,$safeeval,
1.17      matthew   489: 			$tagstack->[-1]);
1.20      matthew   490:     } elsif ($target eq 'edit') {
1.47      matthew   491: 	$result .= &Apache::edit::tag_start($target,$token,'GnuPlot');
1.48      matthew   492: 	$result .= &make_javascript();
                    493: 	$result .= &help_win($gnuplot_help_text);
1.47      matthew   494: 	$result .= &edit_attributes($target,$token,\%gnuplot_defaults,
                    495: 				    \@gnuplot_edit_order);
1.20      matthew   496:     } elsif ($target eq 'modified') {
                    497: 	my $constructtag=&Apache::edit::get_new_args
1.47      matthew   498: 	    ($token,$parstack,$safeeval,keys(%gnuplot_defaults));
1.20      matthew   499: 	if ($constructtag) {
                    500: 	    $result = &Apache::edit::rebuild_tag($token);
                    501: 	}
1.4       matthew   502:     }
1.21      matthew   503:     return $result;
1.1       matthew   504: }
                    505: 
1.47      matthew   506: sub end_gnuplot {
1.1       matthew   507:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    508:     pop @Apache::lonxml::namespace;
1.4       matthew   509:     &Apache::lonxml::deregister('Apache::lonplot',
                    510: 	('title','xlabel','ylabel','key','axis','label','curve'));
                    511:     my $result = '';
1.56      albertel  512:     my $randnumber;
                    513:     # need to call rand everytime start_script would evaluate, as the
                    514:     # safe space rand number generator and the global rand generator 
                    515:     # are not seperate
                    516:     if ($target eq 'web' || $target eq 'tex' || $target eq 'grade' ||
                    517: 	$target eq 'answer') {
                    518:       $randnumber=int(rand(1000));
                    519:     }
1.51      matthew   520:     if ($target eq 'web' || $target eq 'tex') {
1.21      matthew   521: 	&check_inputs(); # Make sure we have all the data we need
1.13      matthew   522: 	##
                    523: 	## Determine filename
1.4       matthew   524: 	my $tmpdir = '/home/httpd/perl/tmp/';
1.12      matthew   525: 	my $filename = $ENV{'user.name'}.'_'.$ENV{'user.domain'}.
1.69      matthew   526: 	    '_'.time.'_'.$$.$randnumber.'_plot';
1.4       matthew   527: 	## Write the plot description to the file
1.51      matthew   528: 	&write_gnuplot_file($tmpdir,$filename,$target);
1.54      matthew   529: 	$filename = &Apache::lonnet::escape($filename);
1.4       matthew   530: 	## return image tag for the plot
1.51      matthew   531: 	if ($target eq 'web') {
                    532: 	    $result .= <<"ENDIMAGE";
1.69      matthew   533: <img src    = "/cgi-bin/plot.gif?file=$filename.data&output=gif" 
1.64      matthew   534:      width  = "$plot{'width'}"
1.16      matthew   535:      height = "$plot{'height'}"
                    536:      align  = "$plot{'align'}"
1.64      matthew   537:      alt    = "$plot{'alttag'}" />
1.12      matthew   538: ENDIMAGE
1.51      matthew   539:         } elsif ($target eq 'tex') {
1.91      albertel  540: 	    #might be inside the safe space, register the URL for later
                    541: 	    &Apache::lonxml::register_ssi("/cgi-bin/plot.gif?file=$filename.data&output=eps");
1.84      sakharuk  542: 	    $result = '\graphicspath{{/home/httpd/perl/tmp/}}\includegraphics[width='.$plot{'texwidth'}.' mm]{'.&Apache::lonnet::unescape($filename).'.eps}';
1.51      matthew   543: 	}
1.20      matthew   544:     } elsif ($target eq 'edit') {
1.21      matthew   545: 	$result.=&Apache::edit::tag_end($target,$token);
1.4       matthew   546:     }
1.1       matthew   547:     return $result;
                    548: }
1.2       matthew   549: 
1.45      matthew   550: 
                    551: ##--------------------------------------------------------------- xtics
                    552: sub start_xtics {
                    553:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    554:     my $result='';
1.51      matthew   555:     if ($target eq 'web' || $target eq 'tex') {
1.45      matthew   556: 	&get_attributes(\%xtics,\%tic_defaults,$parstack,$safeeval,
                    557: 		    $tagstack->[-1]);
                    558:     } elsif ($target eq 'edit') {
                    559: 	$result .= &Apache::edit::tag_start($target,$token,'xtics');
                    560: 	$result .= &edit_attributes($target,$token,\%tic_defaults,
                    561: 				    \@tic_edit_order);
                    562:     } elsif ($target eq 'modified') {
                    563: 	my $constructtag=&Apache::edit::get_new_args
                    564: 	    ($token,$parstack,$safeeval,keys(%tic_defaults));
                    565: 	if ($constructtag) {
                    566: 	    $result = &Apache::edit::rebuild_tag($token);
                    567: 	}
                    568:     }
                    569:     return $result;
                    570: }
                    571: 
                    572: sub end_xtics {
                    573:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    574:     my $result = '';
1.51      matthew   575:     if ($target eq 'web' || $target eq 'tex') {
1.45      matthew   576:     } elsif ($target eq 'edit') {
                    577: 	$result.=&Apache::edit::tag_end($target,$token);
                    578:     }
                    579:     return $result;
                    580: }
                    581: 
                    582: ##--------------------------------------------------------------- ytics
                    583: sub start_ytics {
                    584:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    585:     my $result='';
1.51      matthew   586:     if ($target eq 'web' || $target eq 'tex') {
1.45      matthew   587: 	&get_attributes(\%ytics,\%tic_defaults,$parstack,$safeeval,
                    588: 		    $tagstack->[-1]);
                    589:     } elsif ($target eq 'edit') {
                    590: 	$result .= &Apache::edit::tag_start($target,$token,'ytics');
                    591: 	$result .= &edit_attributes($target,$token,\%tic_defaults,
                    592: 				    \@tic_edit_order);
                    593:     } elsif ($target eq 'modified') {
                    594: 	my $constructtag=&Apache::edit::get_new_args
                    595: 	    ($token,$parstack,$safeeval,keys(%tic_defaults));
                    596: 	if ($constructtag) {
                    597: 	    $result = &Apache::edit::rebuild_tag($token);
                    598: 	}
                    599:     }
                    600:     return $result;
                    601: }
                    602: 
                    603: sub end_ytics {
                    604:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    605:     my $result = '';
1.51      matthew   606:     if ($target eq 'web' || $target eq 'tex') {
1.45      matthew   607:     } elsif ($target eq 'edit') {
                    608: 	$result.=&Apache::edit::tag_end($target,$token);
                    609:     }
                    610:     return $result;
                    611: }
                    612: 
                    613: 
1.1       matthew   614: ##----------------------------------------------------------------- key
                    615: sub start_key {
                    616:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    617:     my $result='';
1.51      matthew   618:     if ($target eq 'web' || $target eq 'tex') {
1.17      matthew   619: 	&get_attributes(\%key,\%key_defaults,$parstack,$safeeval,
1.11      matthew   620: 		    $tagstack->[-1]);
1.20      matthew   621:     } elsif ($target eq 'edit') {
1.25      matthew   622: 	$result .= &Apache::edit::tag_start($target,$token,'Plot Key');
1.21      matthew   623: 	$result .= &edit_attributes($target,$token,\%key_defaults);
1.20      matthew   624:     } elsif ($target eq 'modified') {
                    625: 	my $constructtag=&Apache::edit::get_new_args
1.24      matthew   626: 	    ($token,$parstack,$safeeval,keys(%key_defaults));
1.20      matthew   627: 	if ($constructtag) {
                    628: 	    $result = &Apache::edit::rebuild_tag($token);
                    629: 	}
1.4       matthew   630:     }
1.1       matthew   631:     return $result;
                    632: }
                    633: 
                    634: sub end_key {
                    635:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    636:     my $result = '';
1.51      matthew   637:     if ($target eq 'web' || $target eq 'tex') {
1.20      matthew   638:     } elsif ($target eq 'edit') {
1.21      matthew   639: 	$result.=&Apache::edit::tag_end($target,$token);
1.4       matthew   640:     }
1.1       matthew   641:     return $result;
                    642: }
1.21      matthew   643: 
1.1       matthew   644: ##------------------------------------------------------------------- title
                    645: sub start_title {
                    646:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    647:     my $result='';
1.51      matthew   648:     if ($target eq 'web' || $target eq 'tex') {
1.81      albertel  649: 	$title = &Apache::lonxml::get_all_text("/title",$parser);
1.58      matthew   650: 	$title=&Apache::run::evaluate($title,$safeeval,$$parstack[-1]);
1.49      matthew   651: 	$title =~ s/\n/ /g;
1.32      matthew   652: 	if (length($title) > $max_str_len) {
                    653: 	    $title = substr($title,0,$max_str_len);
                    654: 	}
1.20      matthew   655:     } elsif ($target eq 'edit') {
1.25      matthew   656: 	$result.=&Apache::edit::tag_start($target,$token,'Plot Title');
1.81      albertel  657: 	my $text=&Apache::lonxml::get_all_text("/title",$parser);
1.39      matthew   658: 	$result.=&Apache::edit::end_row().
                    659: 	    &Apache::edit::start_spanning_row().
1.63      albertel  660: 	    &Apache::edit::editline('',$text,'',60);
1.20      matthew   661:     } elsif ($target eq 'modified') {
1.42      matthew   662: 	$result.=&Apache::edit::rebuild_tag($token);
1.93    ! albertel  663: 	$result.=&Apache::edit::modifiedfield("/title",$parser);
1.4       matthew   664:     }
1.1       matthew   665:     return $result;
                    666: }
                    667: 
                    668: sub end_title {
                    669:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    670:     my $result = '';
1.51      matthew   671:     if ($target eq 'web' || $target eq 'tex') {
1.20      matthew   672:     } elsif ($target eq 'edit') {
1.27      matthew   673: 	$result.=&Apache::edit::tag_end($target,$token);
1.4       matthew   674:     }
1.1       matthew   675:     return $result;
                    676: }
                    677: ##------------------------------------------------------------------- xlabel
                    678: sub start_xlabel {
                    679:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    680:     my $result='';
1.51      matthew   681:     if ($target eq 'web' || $target eq 'tex') {
1.81      albertel  682: 	$xlabel = &Apache::lonxml::get_all_text("/xlabel",$parser);
1.58      matthew   683: 	$xlabel=&Apache::run::evaluate($xlabel,$safeeval,$$parstack[-1]);
1.49      matthew   684: 	$xlabel =~ s/\n/ /g;
1.32      matthew   685: 	if (length($xlabel) > $max_str_len) {
                    686: 	    $xlabel = substr($xlabel,0,$max_str_len);
                    687: 	}
1.20      matthew   688:     } elsif ($target eq 'edit') {
1.25      matthew   689: 	$result.=&Apache::edit::tag_start($target,$token,'Plot Xlabel');
1.81      albertel  690: 	my $text=&Apache::lonxml::get_all_text("/xlabel",$parser);
1.39      matthew   691: 	$result.=&Apache::edit::end_row().
                    692: 	    &Apache::edit::start_spanning_row().
1.63      albertel  693: 	    &Apache::edit::editline('',$text,'',60);
1.20      matthew   694:     } elsif ($target eq 'modified') {
1.42      matthew   695: 	$result.=&Apache::edit::rebuild_tag($token);	
1.93    ! albertel  696: 	$result.=&Apache::edit::modifiedfield("/xlabel",$parser);
1.4       matthew   697:     }
1.1       matthew   698:     return $result;
                    699: }
                    700: 
                    701: sub end_xlabel {
                    702:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    703:     my $result = '';
1.51      matthew   704:     if ($target eq 'web' || $target eq 'tex') {
1.20      matthew   705:     } elsif ($target eq 'edit') {
1.27      matthew   706: 	$result.=&Apache::edit::tag_end($target,$token);
1.4       matthew   707:     }
1.1       matthew   708:     return $result;
                    709: }
1.21      matthew   710: 
1.1       matthew   711: ##------------------------------------------------------------------- ylabel
                    712: sub start_ylabel {
                    713:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    714:     my $result='';
1.51      matthew   715:     if ($target eq 'web' || $target eq 'tex') {
1.81      albertel  716: 	$ylabel = &Apache::lonxml::get_all_text("/ylabel",$parser);
1.58      matthew   717: 	$ylabel = &Apache::run::evaluate($ylabel,$safeeval,$$parstack[-1]);
1.49      matthew   718: 	$ylabel =~ s/\n/ /g;
1.32      matthew   719: 	if (length($ylabel) > $max_str_len) {
                    720: 	    $ylabel = substr($ylabel,0,$max_str_len);
                    721: 	}
1.20      matthew   722:     } elsif ($target eq 'edit') {
1.25      matthew   723: 	$result .= &Apache::edit::tag_start($target,$token,'Plot Ylabel');
1.81      albertel  724: 	my $text = &Apache::lonxml::get_all_text("/ylabel",$parser);
1.39      matthew   725: 	$result .= &Apache::edit::end_row().
                    726: 	    &Apache::edit::start_spanning_row().
1.63      albertel  727: 	    &Apache::edit::editline('',$text,'',60);
1.20      matthew   728:     } elsif ($target eq 'modified') {
1.42      matthew   729: 	$result.=&Apache::edit::rebuild_tag($token);
1.93    ! albertel  730: 	$result.=&Apache::edit::modifiedfield("/ylabel",$parser);
1.4       matthew   731:     }
1.1       matthew   732:     return $result;
                    733: }
                    734: 
                    735: sub end_ylabel {
                    736:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    737:     my $result = '';
1.51      matthew   738:     if ($target eq 'web' || $target eq 'tex') {
1.20      matthew   739:     } elsif ($target eq 'edit') {
1.27      matthew   740: 	$result.=&Apache::edit::tag_end($target,$token);
1.4       matthew   741:     }
1.1       matthew   742:     return $result;
                    743: }
1.21      matthew   744: 
1.1       matthew   745: ##------------------------------------------------------------------- label
                    746: sub start_label {
                    747:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    748:     my $result='';
1.51      matthew   749:     if ($target eq 'web' || $target eq 'tex') {
1.17      matthew   750: 	my %label;
                    751: 	&get_attributes(\%label,\%label_defaults,$parstack,$safeeval,
1.11      matthew   752: 		    $tagstack->[-1]);
1.81      albertel  753: 	my $text = &Apache::lonxml::get_all_text("/label",$parser);
1.58      matthew   754: 	$text = &Apache::run::evaluate($text,$safeeval,$$parstack[-1]);
1.49      matthew   755: 	$text =~ s/\n/ /g;
1.32      matthew   756: 	$text = substr($text,0,$max_str_len) if (length($text) > $max_str_len);
                    757: 	$label{'text'} = $text;
1.17      matthew   758: 	push(@labels,\%label);
1.20      matthew   759:     } elsif ($target eq 'edit') {
1.25      matthew   760: 	$result .= &Apache::edit::tag_start($target,$token,'Plot Label');
1.21      matthew   761: 	$result .= &edit_attributes($target,$token,\%label_defaults);
1.81      albertel  762: 	my $text = &Apache::lonxml::get_all_text("/label",$parser);
1.39      matthew   763: 	$result .= &Apache::edit::end_row().
                    764: 	    &Apache::edit::start_spanning_row().
1.63      albertel  765: 	    &Apache::edit::editline('',$text,'',60);
1.20      matthew   766:     } elsif ($target eq 'modified') {
1.42      matthew   767: 	&Apache::edit::get_new_args
1.24      matthew   768: 	    ($token,$parstack,$safeeval,keys(%label_defaults));
1.42      matthew   769: 	$result.=&Apache::edit::rebuild_tag($token);
1.93    ! albertel  770: 	$result.=&Apache::edit::modifiedfield("/label",$parser);
1.4       matthew   771:     }
1.1       matthew   772:     return $result;
                    773: }
                    774: 
                    775: sub end_label {
                    776:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    777:     my $result = '';
1.51      matthew   778:     if ($target eq 'web' || $target eq 'tex') {
1.20      matthew   779:     } elsif ($target eq 'edit') {
1.21      matthew   780: 	$result.=&Apache::edit::tag_end($target,$token);
1.4       matthew   781:     }
1.1       matthew   782:     return $result;
                    783: }
                    784: 
                    785: ##------------------------------------------------------------------- curve
                    786: sub start_curve {
                    787:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    788:     my $result='';
1.25      matthew   789:     &Apache::lonxml::register('Apache::lonplot',('function','data'));
                    790:     push (@Apache::lonxml::namespace,'curve');
1.51      matthew   791:     if ($target eq 'web' || $target eq 'tex') {
1.17      matthew   792: 	my %curve;
                    793: 	&get_attributes(\%curve,\%curve_defaults,$parstack,$safeeval,
1.11      matthew   794: 		    $tagstack->[-1]);
1.17      matthew   795: 	push (@curves,\%curve);
1.20      matthew   796:     } elsif ($target eq 'edit') {
1.26      matthew   797: 	$result .= &Apache::edit::tag_start($target,$token,'Curve');
1.48      matthew   798: 	$result .= &help_win($curve_help_text);
1.60      matthew   799: 	$result .= &edit_attributes($target,$token,\%curve_defaults,
                    800:                                     \@curve_edit_order);
1.20      matthew   801:     } elsif ($target eq 'modified') {
                    802: 	my $constructtag=&Apache::edit::get_new_args
1.35      matthew   803: 	    ($token,$parstack,$safeeval,keys(%curve_defaults));
1.20      matthew   804: 	if ($constructtag) {
                    805: 	    $result = &Apache::edit::rebuild_tag($token);
                    806: 	    $result.= &Apache::edit::handle_insert();
                    807: 	}
1.4       matthew   808:     }
1.1       matthew   809:     return $result;
                    810: }
                    811: 
                    812: sub end_curve {
                    813:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    814:     my $result = '';
1.25      matthew   815:     pop @Apache::lonxml::namespace;
                    816:     &Apache::lonxml::deregister('Apache::lonplot',('function','data'));
1.51      matthew   817:     if ($target eq 'web' || $target eq 'tex') {
1.20      matthew   818:     } elsif ($target eq 'edit') {
1.21      matthew   819: 	$result.=&Apache::edit::tag_end($target,$token);
1.4       matthew   820:     }
1.1       matthew   821:     return $result;
                    822: }
1.21      matthew   823: 
1.1       matthew   824: ##------------------------------------------------------------ curve function
                    825: sub start_function {
                    826:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    827:     my $result='';
1.51      matthew   828:     if ($target eq 'web' || $target eq 'tex') {
1.17      matthew   829: 	if (exists($curves[-1]->{'data'})) {
1.85      matthew   830: 	    &Apache::lonxml::warning
                    831:                 ('Use of the <b>curve function</b> tag precludes use of '.
                    832:                  ' the <b>curve data</b> tag.  '.
                    833:                  'The curve data tag will be omitted in favor of the '.
                    834:                  'curve function declaration.');
1.17      matthew   835: 	    delete $curves[-1]->{'data'} ;
                    836: 	}
1.81      albertel  837:         my $function = &Apache::lonxml::get_all_text("/function",$parser);
1.58      matthew   838: 	$function = &Apache::run::evaluate($function,$safeeval,$$parstack[-1]);
                    839: 	$curves[-1]->{'function'} = $function; 
1.20      matthew   840:     } elsif ($target eq 'edit') {
1.37      matthew   841: 	$result .= &Apache::edit::tag_start($target,$token,'Gnuplot compatible curve function');
1.81      albertel  842: 	my $text = &Apache::lonxml::get_all_text("/function",$parser);
1.39      matthew   843: 	$result .= &Apache::edit::end_row().
                    844: 	    &Apache::edit::start_spanning_row().
1.63      albertel  845: 	    &Apache::edit::editline('',$text,'',60);
1.20      matthew   846:     } elsif ($target eq 'modified') {
1.42      matthew   847: 	$result.=&Apache::edit::rebuild_tag($token);
1.93    ! albertel  848: 	$result.=&Apache::edit::modifiedfield("/function",$parser);
1.4       matthew   849:     }
1.1       matthew   850:     return $result;
                    851: }
                    852: 
                    853: sub end_function {
                    854:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    855:     my $result = '';
1.51      matthew   856:     if ($target eq 'web' || $target eq 'tex') {
1.20      matthew   857:     } elsif ($target eq 'edit') {
1.26      matthew   858: 	$result .= &Apache::edit::end_table();
1.4       matthew   859:     }
1.1       matthew   860:     return $result;
                    861: }
1.21      matthew   862: 
1.1       matthew   863: ##------------------------------------------------------------ curve  data
                    864: sub start_data {
                    865:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    866:     my $result='';
1.51      matthew   867:     if ($target eq 'web' || $target eq 'tex') {
1.17      matthew   868: 	if (exists($curves[-1]->{'function'})) {
1.85      matthew   869: 	    &Apache::lonxml::warning
                    870:                 ('Use of the <b>curve function</b> tag precludes use of '.
                    871:                  ' the <b>curve data</b> tag.  '.
                    872:                  'The curve function tag will be omitted in favor of the '.
                    873:                  'curve data declaration.');
1.17      matthew   874: 	    delete($curves[-1]->{'function'});
                    875: 	}
1.81      albertel  876: 	my $datatext = &Apache::lonxml::get_all_text("/data",$parser);
1.58      matthew   877: 	$datatext=&Apache::run::evaluate($datatext,$safeeval,$$parstack[-1]);
1.40      matthew   878: 	# Deal with cases where we're given an array...
                    879: 	if ($datatext =~ /^\@/) {
                    880: 	    $datatext = &Apache::run::run('return "'.$datatext.'"',
                    881: 					  $safeeval,1);
                    882: 	}
1.49      matthew   883: 	$datatext =~ s/\s+/ /g;
1.17      matthew   884: 	# Need to do some error checking on the @data array - 
                    885: 	# make sure it's all numbers and make sure each array 
                    886: 	# is of the same length.
                    887: 	my @data;
1.35      matthew   888: 	if ($datatext =~ /,/) { # comma deliminated
1.17      matthew   889: 	    @data = split /,/,$datatext;
                    890: 	} else { # Assume it's space seperated.
                    891: 	    @data = split / /,$datatext;
                    892: 	}
                    893: 	for (my $i=0;$i<=$#data;$i++) {
                    894: 	    # Check that it's non-empty
1.19      matthew   895: 	    if (! defined($data[$i])) {
                    896: 		&Apache::lonxml::warning(
1.85      matthew   897: 		    'undefined curve data value.  Replacing with '.
1.19      matthew   898: 		    ' pi/e = 1.15572734979092');
                    899: 		$data[$i] = 1.15572734979092;
                    900: 	    }
1.17      matthew   901: 	    # Check that it's a number
1.19      matthew   902: 	    if (! &$real_test($data[$i]) & ! &$int_test($data[$i])) {
                    903: 		&Apache::lonxml::warning(
1.85      matthew   904: 		    'Bad curve data value of '.$data[$i].'  Replacing with '.
1.19      matthew   905: 		    ' pi/e = 1.15572734979092');
                    906: 		$data[$i] = 1.15572734979092;
                    907: 	    }
1.17      matthew   908: 	}
1.35      matthew   909: 	# complain if the number of data points is not the same as
                    910: 	# in previous sets of data.
1.36      matthew   911: 	if (($curves[-1]->{'data'}) && ($#data != $#{@{$curves[-1]->{'data'}->[0]}})){
1.35      matthew   912: 	    &Apache::lonxml::warning
                    913: 		('Number of data points is not consistent with previous '.
                    914: 		 'number of data points');
                    915: 	}
1.17      matthew   916: 	push  @{$curves[-1]->{'data'}},\@data;
1.20      matthew   917:     } elsif ($target eq 'edit') {
1.37      matthew   918: 	$result .= &Apache::edit::tag_start($target,$token,'Comma or space deliminated curve data');
1.81      albertel  919: 	my $text = &Apache::lonxml::get_all_text("/data",$parser);
1.39      matthew   920: 	$result .= &Apache::edit::end_row().
                    921: 	    &Apache::edit::start_spanning_row().
1.63      albertel  922: 	    &Apache::edit::editline('',$text,'',60);
1.20      matthew   923:     } elsif ($target eq 'modified') {
1.42      matthew   924: 	$result.=&Apache::edit::rebuild_tag($token);
1.93    ! albertel  925: 	$result.=&Apache::edit::modifiedfield("/data",$parser);
1.4       matthew   926:     }
1.1       matthew   927:     return $result;
                    928: }
                    929: 
                    930: sub end_data {
                    931:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    932:     my $result = '';
1.51      matthew   933:     if ($target eq 'web' || $target eq 'tex') {
1.20      matthew   934:     } elsif ($target eq 'edit') {
1.26      matthew   935: 	$result .= &Apache::edit::end_table();
1.4       matthew   936:     }
1.1       matthew   937:     return $result;
                    938: }
                    939: 
                    940: ##------------------------------------------------------------------- axis
                    941: sub start_axis {
                    942:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    943:     my $result='';
1.51      matthew   944:     if ($target eq 'web' || $target eq 'tex') {
1.17      matthew   945: 	&get_attributes(\%axis,\%axis_defaults,$parstack,$safeeval,
                    946: 			$tagstack->[-1]);
1.20      matthew   947:     } elsif ($target eq 'edit') {
1.25      matthew   948: 	$result .= &Apache::edit::tag_start($target,$token,'Plot Axes');
1.65      matthew   949: 	$result .= &edit_attributes($target,$token,\%axis_defaults,
                    950: 				    \@axis_edit_order);
1.20      matthew   951:     } elsif ($target eq 'modified') {
1.29      matthew   952: 	my $constructtag=&Apache::edit::get_new_args
                    953: 	    ($token,$parstack,$safeeval,keys(%axis_defaults));
                    954: 	if ($constructtag) {
                    955: 	    $result = &Apache::edit::rebuild_tag($token);
                    956: 	}
1.4       matthew   957:     }
1.1       matthew   958:     return $result;
                    959: }
                    960: 
                    961: sub end_axis {
                    962:     my ($target,$token,$tagstack,$parstack,$parser,$safeeval,$style)=@_;
                    963:     my $result = '';
1.51      matthew   964:     if ($target eq 'web' || $target eq 'tex') {
1.20      matthew   965:     } elsif ($target eq 'edit') {
1.21      matthew   966: 	$result.=&Apache::edit::tag_end($target,$token);
1.20      matthew   967:     } elsif ($target eq 'modified') {
1.4       matthew   968:     }
1.1       matthew   969:     return $result;
                    970: }
                    971: 
1.21      matthew   972: ###################################################################
                    973: ##                                                               ##
                    974: ##        Utility Functions                                      ##
                    975: ##                                                               ##
                    976: ###################################################################
                    977: 
1.13      matthew   978: ##----------------------------------------------------------- set_defaults
                    979: sub set_defaults {
1.21      matthew   980:     my ($var,$defaults) = @_;
1.13      matthew   981:     my $key;
1.24      matthew   982:     foreach $key (keys(%$defaults)) {
1.13      matthew   983: 	$var->{$key} = $defaults->{$key}->{'default'};
                    984:     }
                    985: }
                    986: 
1.1       matthew   987: ##------------------------------------------------------------------- misc
1.2       matthew   988: sub get_attributes{
1.21      matthew   989:     my ($values,$defaults,$parstack,$safeeval,$tag) = @_;
1.24      matthew   990:     foreach my $attr (keys(%{$defaults})) {
1.92      matthew   991: 	if ($attr eq 'texwidth' || $attr eq 'texfont') {
1.86      albertel  992: 	    $values->{$attr} = 
                    993: 		&Apache::lonxml::get_param($attr,$parstack,$safeeval,undef,1);
                    994: 	} else {
                    995: 	    $values->{$attr} = 
                    996: 		&Apache::lonxml::get_param($attr,$parstack,$safeeval);
                    997: 	}
1.10      matthew   998: 	if ($values->{$attr} eq '' | !defined($values->{$attr})) {
1.11      matthew   999: 	    $values->{$attr} = $defaults->{$attr}->{'default'};
1.6       matthew  1000: 	    next;
                   1001: 	}
1.10      matthew  1002: 	my $test = $defaults->{$attr}->{'test'};
                   1003: 	if (! &$test($values->{$attr})) {
1.6       matthew  1004: 	    &Apache::lonxml::warning
                   1005: 		($tag.':'.$attr.': Bad value.'.'Replacing your value with : '
1.11      matthew  1006: 		 .$defaults->{$attr}->{'default'} );
                   1007: 	    $values->{$attr} = $defaults->{$attr}->{'default'};
1.10      matthew  1008: 	}
1.2       matthew  1009:     }
1.11      matthew  1010:     return ;
1.6       matthew  1011: }
1.40      matthew  1012: 
1.15      matthew  1013: ##------------------------------------------------------- write_gnuplot_file
1.6       matthew  1014: sub write_gnuplot_file {
1.51      matthew  1015:     my ($tmpdir,$filename,$target)= @_;
1.6       matthew  1016:     my $gnuplot_input = '';
1.10      matthew  1017:     my $curve;
1.92      matthew  1018:     my $pt = $plot{'texfont'};
1.6       matthew  1019:     # Collect all the colors
                   1020:     my @Colors;
                   1021:     push @Colors, $plot{'bgcolor'};
                   1022:     push @Colors, $plot{'fgcolor'}; 
1.13      matthew  1023:     push @Colors, (defined($axis{'color'})?$axis{'color'}:$plot{'fgcolor'});
1.9       matthew  1024:     foreach $curve (@curves) {
                   1025: 	push @Colors, ($curve->{'color'} ne '' ? 
                   1026: 		       $curve->{'color'}       : 
1.13      matthew  1027: 		       $plot{'fgcolor'}        );
1.6       matthew  1028:     }
                   1029:     # set term
1.51      matthew  1030:     if ($target eq 'web') {
                   1031: 	$gnuplot_input .= 'set term gif ';
                   1032: 	$gnuplot_input .= 'transparent ' if ($plot{'transparent'} eq 'on');
                   1033: 	$gnuplot_input .= $plot{'font'} . ' ';
                   1034: 	$gnuplot_input .= 'size '.$plot{'width'}.','.$plot{'height'}.' ';
                   1035: 	$gnuplot_input .= "@Colors\n";
                   1036: 	# set output
                   1037: 	$gnuplot_input .= "set output\n";
                   1038:     } elsif ($target eq 'tex') {
1.92      matthew  1039: 	$gnuplot_input .= "set term postscript eps monochrome solid \"Helvetica\" $pt \n";
1.68      sakharuk 1040: 	$gnuplot_input .= "set output \"/home/httpd/perl/tmp/".
                   1041: 	    &Apache::lonnet::unescape($filename).".eps\"\n";
1.87      matthew  1042:     }
                   1043:     # cartesian or polar?
                   1044:     if (lc($plot{'plottype'}) eq 'polar') {
                   1045:         $gnuplot_input .= 'set polar'.$/;
                   1046:     } else {
                   1047:         # Assume Cartesian
1.51      matthew  1048:     }
1.7       matthew  1049:     # grid
1.10      matthew  1050:     $gnuplot_input .= 'set grid'.$/ if ($plot{'grid'} eq 'on');
1.7       matthew  1051:     # border
1.9       matthew  1052:     $gnuplot_input .= ($plot{'border'} eq 'on'?
                   1053: 		       'set border'.$/           :
1.67      matthew  1054: 		       'set noborder'.$/         );
1.77      matthew  1055:     # sampling rate for non-data curves
                   1056:     $gnuplot_input .= "set samples $plot{'samples'}\n";
1.67      matthew  1057:     # title, xlabel, ylabel
1.45      matthew  1058:     # titles
1.89      matthew  1059:     if ($target eq 'tex') {
1.92      matthew  1060:         $gnuplot_input .= "set title  \"$title\" font \"Helvetica,".$pt."pt\"\n"  if (defined($title)) ;
                   1061:         $gnuplot_input .= "set xlabel \"$xlabel\" font \"Helvetica,".$pt."pt\" \n" if (defined($xlabel));
                   1062:         $gnuplot_input .= "set ylabel \"$ylabel\" font \"Helvetica,".$pt."pt\"\n" if (defined($ylabel));
1.89      matthew  1063:     } else {
                   1064:         $gnuplot_input .= "set title  \"$title\"  \n"  if (defined($title)) ;
                   1065:         $gnuplot_input .= "set xlabel \"$xlabel\" \n" if (defined($xlabel));
                   1066:         $gnuplot_input .= "set ylabel \"$ylabel\" \n" if (defined($ylabel));
                   1067:     }
1.45      matthew  1068:     # tics
                   1069:     if (%xtics) {    
                   1070: 	$gnuplot_input .= "set xtics $xtics{'location'} ";
1.46      matthew  1071: 	$gnuplot_input .= ( $xtics{'mirror'} eq 'on'?"mirror ":"nomirror ");
1.45      matthew  1072: 	$gnuplot_input .= "$xtics{'start'}, ";
                   1073: 	$gnuplot_input .= "$xtics{'increment'}, ";
                   1074: 	$gnuplot_input .= "$xtics{'end'}\n";
1.89      matthew  1075:         if ($xtics{'minorfreq'} != 0) {
                   1076:             $gnuplot_input .= "set mxtics ".$xtics{'minorfreq'}."\n";
                   1077:         } 
1.45      matthew  1078:     }
                   1079:     if (%ytics) {    
                   1080: 	$gnuplot_input .= "set ytics $ytics{'location'} ";
1.46      matthew  1081: 	$gnuplot_input .= ( $ytics{'mirror'} eq 'on'?"mirror ":"nomirror ");
1.45      matthew  1082: 	$gnuplot_input .= "$ytics{'start'}, ";
                   1083: 	$gnuplot_input .= "$ytics{'increment'}, ";
                   1084:         $gnuplot_input .= "$ytics{'end'}\n";
1.89      matthew  1085:         if ($ytics{'minorfreq'} != 0) {
                   1086:             $gnuplot_input .= "set mytics ".$ytics{'minorfreq'}."\n";
                   1087:         } 
1.45      matthew  1088:     }
                   1089:     # axis
1.23      matthew  1090:     if (%axis) {
1.13      matthew  1091: 	$gnuplot_input .= "set xrange \[$axis{'xmin'}:$axis{'xmax'}\]\n";
                   1092: 	$gnuplot_input .= "set yrange \[$axis{'ymin'}:$axis{'ymax'}\]\n";
1.6       matthew  1093:     }
                   1094:     # Key
1.23      matthew  1095:     if (%key) {
1.9       matthew  1096: 	$gnuplot_input .= 'set key '.$key{'pos'}.' ';
                   1097: 	if ($key{'title'} ne '') {
1.67      matthew  1098: 	    $gnuplot_input .= 'title "'.$key{'title'}.'" ';
1.11      matthew  1099: 	} 
                   1100: 	$gnuplot_input .= ($key{'box'} eq 'on' ? 'box ' : 'nobox ').$/;
1.6       matthew  1101:     } else {
1.9       matthew  1102: 	$gnuplot_input .= 'set nokey'.$/;
1.13      matthew  1103:     }
1.6       matthew  1104:     # labels
1.10      matthew  1105:     my $label;
1.6       matthew  1106:     foreach $label (@labels) {
                   1107: 	$gnuplot_input .= 'set label "'.$label->{'text'}.'" at '.
1.92      matthew  1108: 	    $label->{'xpos'}.','.$label->{'ypos'}.' '.$label->{'justify'}.' font "Helvetica,'.$pt.'pt"'.$/ ;
1.6       matthew  1109:     }
1.74      matthew  1110:     if ($target eq 'tex') {
1.76      matthew  1111:         $gnuplot_input .="set size 1,".$plot{'height'}/$plot{'width'}*1.38;
1.74      matthew  1112:         $gnuplot_input .="\n";
                   1113:         }
1.6       matthew  1114:     # curves
                   1115:     $gnuplot_input .= 'plot ';
1.9       matthew  1116:     for (my $i = 0;$i<=$#curves;$i++) {
                   1117: 	$curve = $curves[$i];
                   1118: 	$gnuplot_input.= ', ' if ($i > 0);
1.6       matthew  1119: 	if (exists($curve->{'function'})) {
1.9       matthew  1120: 	    $gnuplot_input.= 
                   1121: 		$curve->{'function'}.' title "'.
                   1122: 		$curve->{'name'}.'" with '.
1.72      matthew  1123:                 $curve->{'linestyle'};
1.73      sakharuk 1124:             $gnuplot_input.= ' linewidth 4 ' if ($target eq 'tex');
1.60      matthew  1125:             if (($curve->{'linestyle'} eq 'points')      ||
                   1126:                 ($curve->{'linestyle'} eq 'linespoints') ||
                   1127:                 ($curve->{'linestyle'} eq 'errorbars')   ||
                   1128:                 ($curve->{'linestyle'} eq 'xerrorbars')  ||
                   1129:                 ($curve->{'linestyle'} eq 'yerrorbars')  ||
                   1130:                 ($curve->{'linestyle'} eq 'xyerrorbars')) {
1.62      matthew  1131:                 $gnuplot_input.=' pointtype '.$curve->{'pointtype'};
1.60      matthew  1132:                 $gnuplot_input.=' pointsize '.$curve->{'pointsize'};
                   1133:             }
1.6       matthew  1134: 	} elsif (exists($curve->{'data'})) {
1.40      matthew  1135: 	    # Store data values in $datatext
                   1136: 	    my $datatext = '';
                   1137: 	    #   get new filename
1.70      matthew  1138: 	    my $datafilename = "$tmpdir/$filename.data.$i";
1.40      matthew  1139: 	    my $fh=Apache::File->new(">$datafilename");
                   1140: 	    # Compile data
1.6       matthew  1141: 	    my @Data = @{$curve->{'data'}};
1.9       matthew  1142: 	    my @Data0 = @{$Data[0]};
                   1143: 	    for (my $i =0; $i<=$#Data0; $i++) {
1.10      matthew  1144: 		my $dataset;
1.6       matthew  1145: 		foreach $dataset (@Data) {
1.9       matthew  1146: 		    $datatext .= $dataset->[$i] . ' ';
1.6       matthew  1147: 		}
1.9       matthew  1148: 		$datatext .= $/;
1.6       matthew  1149: 	    }
1.40      matthew  1150: 	    #   write file
                   1151: 	    print $fh $datatext;
                   1152: 	    close ($fh);
                   1153: 	    #   generate gnuplot text
                   1154: 	    $gnuplot_input.= '"'.$datafilename.'" title "'.
                   1155: 		$curve->{'name'}.'" with '.
                   1156: 		$curve->{'linestyle'};
1.73      sakharuk 1157:             $gnuplot_input.= ' linewidth 4 ' if ($target eq 'tex');
1.62      matthew  1158:             if (($curve->{'linestyle'} eq 'points')      ||
                   1159:                 ($curve->{'linestyle'} eq 'linespoints') ||
                   1160:                 ($curve->{'linestyle'} eq 'errorbars')   ||
                   1161:                 ($curve->{'linestyle'} eq 'xerrorbars')  ||
                   1162:                 ($curve->{'linestyle'} eq 'yerrorbars')  ||
                   1163:                 ($curve->{'linestyle'} eq 'xyerrorbars')) {
                   1164:                 $gnuplot_input.=' pointtype '.$curve->{'pointtype'};
                   1165:                 $gnuplot_input.=' pointsize '.$curve->{'pointsize'};
                   1166:             }
1.6       matthew  1167: 	}
                   1168:     }
1.40      matthew  1169:     # Write the output to a file.
1.70      matthew  1170:     my $fh=Apache::File->new(">$tmpdir$filename.data");
1.40      matthew  1171:     print $fh $gnuplot_input;
                   1172:     close($fh);
                   1173:     # That's all folks.
                   1174:     return ;
1.2       matthew  1175: }
1.21      matthew  1176: 
                   1177: #---------------------------------------------- check_inputs
                   1178: sub check_inputs {
                   1179:     ## Note: no inputs, no outputs - this acts only on global variables.
                   1180:     ## Make sure we have all the input we need:
1.47      matthew  1181:     if (! %plot) { &set_defaults(\%plot,\%gnuplot_defaults); }
1.23      matthew  1182:     if (! %key ) {} # No key for this plot, thats okay
1.34      matthew  1183: #    if (! %axis) { &set_defaults(\%axis,\%axis_defaults); }
1.21      matthew  1184:     if (! defined($title )) {} # No title for this plot, thats okay
                   1185:     if (! defined($xlabel)) {} # No xlabel for this plot, thats okay
                   1186:     if (! defined($ylabel)) {} # No ylabel for this plot, thats okay
                   1187:     if ($#labels < 0) { }      # No labels for this plot, thats okay
                   1188:     if ($#curves < 0) { 
                   1189: 	&Apache::lonxml::warning("No curves specified for plot!!!!");
                   1190: 	return '';
                   1191:     }
                   1192:     my $curve;
                   1193:     foreach $curve (@curves) {
                   1194: 	if (!defined($curve->{'function'})&&!defined($curve->{'data'})){
1.85      matthew  1195: 	    &Apache::lonxml::warning("One of the curves specified did not contain any curve data or curve function declarations\n");
1.21      matthew  1196: 	    return '';
                   1197: 	}
                   1198:     }
                   1199: }
                   1200: 
1.20      matthew  1201: #------------------------------------------------ make_edit
                   1202: sub edit_attributes {
1.34      matthew  1203:     my ($target,$token,$defaults,$keys) = @_;
                   1204:     my ($result,@keys);
                   1205:     if ($keys && ref($keys) eq 'ARRAY') {
                   1206:         @keys = @$keys;
                   1207:     } else {
                   1208: 	@keys = sort(keys(%$defaults));
                   1209:     }
                   1210:     foreach my $attr (@keys) {
1.35      matthew  1211: 	# append a ' ' to the description if it doesn't have one already.
                   1212: 	my $description = $defaults->{$attr}->{'description'};
                   1213: 	$description .= ' ' if ($description !~ / $/);
1.20      matthew  1214: 	if ($defaults->{$attr}->{'edit_type'} eq 'entry') {
1.35      matthew  1215: 	    $result .= &Apache::edit::text_arg
1.38      matthew  1216: 		($description,$attr,$token,
                   1217: 		 $defaults->{$attr}->{'size'});
1.20      matthew  1218: 	} elsif ($defaults->{$attr}->{'edit_type'} eq 'choice') {
1.35      matthew  1219: 	    $result .= &Apache::edit::select_arg
                   1220: 		($description,$attr,$defaults->{$attr}->{'choices'},$token);
1.45      matthew  1221: 	} elsif ($defaults->{$attr}->{'edit_type'} eq 'onoff') {
1.35      matthew  1222: 	    $result .= &Apache::edit::select_arg
                   1223: 		($description,$attr,['on','off'],$token);
1.20      matthew  1224: 	}
1.25      matthew  1225: 	$result .= '<br />';
1.20      matthew  1226:     }
                   1227:     return $result;
                   1228: }
1.1       matthew  1229: 
1.21      matthew  1230: 
                   1231: ###################################################################
                   1232: ##                                                               ##
                   1233: ##           Insertion functions for editing plots               ##
                   1234: ##                                                               ##
                   1235: ###################################################################
                   1236: 
1.47      matthew  1237: sub insert_gnuplot {
1.29      matthew  1238:     my $result = '';
1.20      matthew  1239:     #  plot attributes
1.61      matthew  1240:     $result .= "\n<gnuplot ";
1.47      matthew  1241:     foreach my $attr (keys(%gnuplot_defaults)) {
1.61      matthew  1242: 	$result .= "\n     $attr=\"$gnuplot_defaults{$attr}->{'default'}\"";
1.20      matthew  1243:     }
1.61      matthew  1244:     $result .= ">";
1.47      matthew  1245:     # Add the components (most are commented out for simplicity)
1.44      matthew  1246:     # $result .= &insert_key();
                   1247:     # $result .= &insert_axis();
                   1248:     # $result .= &insert_title();    
                   1249:     # $result .= &insert_xlabel();    
                   1250:     # $result .= &insert_ylabel();    
1.20      matthew  1251:     $result .= &insert_curve();
1.50      matthew  1252:     # close up the <gnuplot>
1.61      matthew  1253:     $result .= "\n</gnuplot>";
1.45      matthew  1254:     return $result;
                   1255: }
                   1256: 
1.46      matthew  1257: sub insert_tics {
                   1258:     my $result;
                   1259:     $result .= &insert_xtics() . &insert_ytics;
                   1260:     return $result;
                   1261: }
                   1262: 
1.45      matthew  1263: sub insert_xtics {
                   1264:     my $result;
1.46      matthew  1265:     $result .= "\n    <xtics ";
1.45      matthew  1266:     foreach my $attr (keys(%tic_defaults)) {
1.61      matthew  1267: 	$result .= "\n        $attr=\"$tic_defaults{$attr}->{'default'}\" ";
1.45      matthew  1268:     }
1.61      matthew  1269:     $result .= "/>";
1.45      matthew  1270:     return $result;
                   1271: }
                   1272: 
                   1273: sub insert_ytics {
                   1274:     my $result;
1.46      matthew  1275:     $result .= "\n    <ytics ";
1.45      matthew  1276:     foreach my $attr (keys(%tic_defaults)) {
1.61      matthew  1277: 	$result .= "\n        $attr=\"$tic_defaults{$attr}->{'default'}\" ";
1.45      matthew  1278:     }
1.61      matthew  1279:     $result .= "/>";
1.20      matthew  1280:     return $result;
                   1281: }
                   1282: 
                   1283: sub insert_key {
                   1284:     my $result;
1.61      matthew  1285:     $result .= "\n    <key ";
1.30      matthew  1286:     foreach my $attr (keys(%key_defaults)) {
1.61      matthew  1287: 	$result .= "\n         $attr=\"$key_defaults{$attr}->{'default'}\"";
1.20      matthew  1288:     }
1.61      matthew  1289:     $result .= " />";
1.20      matthew  1290:     return $result;
                   1291: }
                   1292: 
                   1293: sub insert_axis{
                   1294:     my $result;
1.46      matthew  1295:     $result .= "\n    <axis ";
1.30      matthew  1296:    foreach my $attr (keys(%axis_defaults)) {
1.61      matthew  1297: 	$result .= "\n         $attr=\"$axis_defaults{$attr}->{'default'}\"";
1.20      matthew  1298:     }
1.61      matthew  1299:     $result .= " />";
1.20      matthew  1300:     return $result;
                   1301: }
1.28      matthew  1302: 
1.61      matthew  1303: sub insert_title  { return "\n    <title></title>"; }
                   1304: sub insert_xlabel { return "\n    <xlabel></xlabel>"; }
                   1305: sub insert_ylabel { return "\n    <ylabel></ylabel>"; }
1.20      matthew  1306: 
                   1307: sub insert_label {
                   1308:     my $result;
1.46      matthew  1309:     $result .= "\n    <label ";
1.30      matthew  1310:     foreach my $attr (keys(%label_defaults)) {
1.61      matthew  1311: 	$result .= "\n         $attr=\"".
                   1312:             $label_defaults{$attr}->{'default'}."\"";
1.20      matthew  1313:     }
1.61      matthew  1314:     $result .= "></label>";
1.20      matthew  1315:     return $result;
                   1316: }
                   1317: 
                   1318: sub insert_curve {
                   1319:     my $result;
1.41      matthew  1320:     $result .= "\n    <curve ";
1.30      matthew  1321:     foreach my $attr (keys(%curve_defaults)) {
1.61      matthew  1322: 	$result .= "\n         $attr=\"".
                   1323: 	    $curve_defaults{$attr}->{'default'}."\"";
1.20      matthew  1324:     }
1.61      matthew  1325:     $result .= " >";
                   1326:     $result .= &insert_data().&insert_data()."\n    </curve>";
1.20      matthew  1327: }
1.4       matthew  1328: 
1.20      matthew  1329: sub insert_function {
                   1330:     my $result;
1.61      matthew  1331:     $result .= "\n        <function></function>";
1.20      matthew  1332:     return $result;
                   1333: }
1.4       matthew  1334: 
1.20      matthew  1335: sub insert_data {
                   1336:     my $result;
1.61      matthew  1337:     $result .= "\n        <data></data>";
1.20      matthew  1338:     return $result;
                   1339: }
1.4       matthew  1340: 
1.48      matthew  1341: ##----------------------------------------------------------------------
                   1342: # Javascript functions to display help for tags
                   1343: 
                   1344: sub make_javascript {
                   1345:     my $helpwindowwidth  = 400;
                   1346:     my $helpwindowheight = 400;
                   1347:     my $result = '';
                   1348:     $result.=<<"ENDFUNCTION";
                   1349: <script language="JavaScript">
                   1350: function openWin(text)
                   1351: {
                   1352:   newWin = open("", "new_W", "width=$helpwindowwidth,height=$helpwindowheight,resizable=1,scrollbars=1");
                   1353:   newWin.document.open("text/html", "replace");
                   1354:   newWin.document.writeln(text);
                   1355:   newWin.document.writeln('<center><a href=\"javascript:window.close()\">close this window</a></center>');
                   1356:   newWin.document.close();
                   1357: }
                   1358: </script>
                   1359: ENDFUNCTION
                   1360:     return $result;
                   1361: }
                   1362: 
                   1363: sub help_win {
                   1364:     my ($helptext)=@_;
                   1365:     $helptext =~ s/\n/ /g;
                   1366:     $helptext =~ s/\'/\\\'/g;
                   1367:     my $result = '';
                   1368:     $result.=<<"ENDWIN";
                   1369: <table width="100%"><tr><td align="right">
                   1370: <a href="javascript:openWin('$helptext')">help</a>
                   1371: </td></tr></table><hr />
                   1372: ENDWIN
                   1373:     return $result;
                   1374: }
1.21      matthew  1375: ##----------------------------------------------------------------------
1.20      matthew  1376: 1;
                   1377: __END__
1.4       matthew  1378: 
                   1379: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>