--- loncom/xml/lonplot.pm 2002/03/22 15:43:42 1.60 +++ loncom/xml/lonplot.pm 2002/03/22 16:04:09 1.61 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Dynamic plot # -# $Id: lonplot.pm,v 1.60 2002/03/22 15:43:42 matthew Exp $ +# $Id: lonplot.pm,v 1.61 2002/03/22 16:04:09 matthew Exp $ # # Copyright Michigan State University Board of Trustees # @@ -1140,11 +1140,11 @@ sub edit_attributes { sub insert_gnuplot { my $result = ''; # plot attributes - $result .= "<gnuplot \n"; + $result .= "\n<gnuplot "; foreach my $attr (keys(%gnuplot_defaults)) { - $result .= " $attr=\"$gnuplot_defaults{$attr}->{'default'}\"\n"; + $result .= "\n $attr=\"$gnuplot_defaults{$attr}->{'default'}\""; } - $result .= ">\n"; + $result .= ">"; # Add the components (most are commented out for simplicity) # $result .= &insert_key(); # $result .= &insert_axis(); @@ -1153,7 +1153,7 @@ sub insert_gnuplot { # $result .= &insert_ylabel(); $result .= &insert_curve(); # close up the <gnuplot> - $result .= "</gnuplot>\n"; + $result .= "\n</gnuplot>"; return $result; } @@ -1167,9 +1167,9 @@ sub insert_xtics { my $result; $result .= "\n <xtics "; foreach my $attr (keys(%tic_defaults)) { - $result .= "$attr=\"$tic_defaults{$attr}->{'default'}\" "; + $result .= "\n $attr=\"$tic_defaults{$attr}->{'default'}\" "; } - $result .= "/>\n"; + $result .= "/>"; return $result; } @@ -1177,19 +1177,19 @@ sub insert_ytics { my $result; $result .= "\n <ytics "; foreach my $attr (keys(%tic_defaults)) { - $result .= "$attr=\"$tic_defaults{$attr}->{'default'}\" "; + $result .= "\n $attr=\"$tic_defaults{$attr}->{'default'}\" "; } - $result .= "/>\n"; + $result .= "/>"; return $result; } sub insert_key { my $result; - $result .= "\n <key \n"; + $result .= "\n <key "; foreach my $attr (keys(%key_defaults)) { - $result .= " $attr=\"$key_defaults{$attr}->{'default'}\"\n"; + $result .= "\n $attr=\"$key_defaults{$attr}->{'default'}\""; } - $result .= " />\n"; + $result .= " />"; return $result; } @@ -1197,24 +1197,24 @@ sub insert_axis{ my $result; $result .= "\n <axis "; foreach my $attr (keys(%axis_defaults)) { - $result .= " $attr=\"$axis_defaults{$attr}->{'default'}\"\n"; + $result .= "\n $attr=\"$axis_defaults{$attr}->{'default'}\""; } - $result .= " />\n"; + $result .= " />"; return $result; } -sub insert_title { return "\n <title></title>\n"; } -sub insert_xlabel { return "\n <xlabel></xlabel>\n"; } -sub insert_ylabel { return "\n <ylabel></ylabel>\n"; } +sub insert_title { return "\n <title></title>"; } +sub insert_xlabel { return "\n <xlabel></xlabel>"; } +sub insert_ylabel { return "\n <ylabel></ylabel>"; } sub insert_label { my $result; $result .= "\n <label "; foreach my $attr (keys(%label_defaults)) { - $result .= ' '.$attr.'="'. - $label_defaults{$attr}->{'default'}."\"\n"; + $result .= "\n $attr=\"". + $label_defaults{$attr}->{'default'}."\""; } - $result .= " ></label>\n"; + $result .= "></label>"; return $result; } @@ -1222,22 +1222,22 @@ sub insert_curve { my $result; $result .= "\n <curve "; foreach my $attr (keys(%curve_defaults)) { - $result .= ' '.$attr.'="'. - $curve_defaults{$attr}->{'default'}."\"\n"; + $result .= "\n $attr=\"". + $curve_defaults{$attr}->{'default'}."\""; } - $result .= " >\n"; - $result .= &insert_data().&insert_data()."</curve>\n"; + $result .= " >"; + $result .= &insert_data().&insert_data()."\n </curve>"; } sub insert_function { my $result; - $result .= "<function></function>\n"; + $result .= "\n <function></function>"; return $result; } sub insert_data { my $result; - $result .= " <data></data>\n"; + $result .= "\n <data></data>"; return $result; }