--- rat/lonratsrv.pm 2004/04/23 19:59:01 1.28
+++ rat/lonratsrv.pm 2005/06/08 15:18:28 1.31
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# Server for RAT Maps
#
-# $Id: lonratsrv.pm,v 1.28 2004/04/23 19:59:01 www Exp $
+# $Id: lonratsrv.pm,v 1.31 2005/06/08 15:18:28 www Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -25,13 +25,6 @@
#
# http://www.lon-capa.org/
#
-# (Edit Handler for RAT Maps
-# (TeX Content Handler
-#
-# 05/29/00,05/30 Gerd Kortemeyer)
-# 7/1 Gerd Kortemeyer)
-# 7/1,7/3,7/4,7/7,7/8,7/10,7/26,10/2 Gerd Kortemeyer
-# 5/3,06/25,07/03,07/04,07/05 Gerd Kortemeyer
package Apache::lonratsrv;
@@ -39,7 +32,7 @@ use strict;
use Apache::Constants qw(:common);
use Apache::File;
use HTML::TokeParser;
-
+use Apache::lonnet;
# ------------------------------------------------------------- From RAT to XML
@@ -125,7 +118,11 @@ sub loadmap {
} else {
$outstr.='normal:';
}
- $outstr.='res';
+ if ($token->[2]->{'type'} ne 'zombie') {
+ $outstr.='res';
+ } else {
+ $outstr.='zombie';
+ }
} elsif ($token->[1] eq 'condition') {
# ------------------------------------------------------------------- Condition
$outstr.='<&>objcont';
@@ -212,7 +209,7 @@ sub savemap {
($fn=~/\.page(\.tmp)*$/)) {
# ------------------------------------------------------------- Deal with input
- my @tags=split(/<&>/,$ENV{'form.output'});
+ my @tags=split(/<&>/,$env{'form.output'});
my $outstr='';
my $graphdef=0;
if ($tags[0] eq 'graphdef<:>yes') {
@@ -226,7 +223,7 @@ sub savemap {
if ($parts[0] eq 'objcont') {
my @comp=split(/:/,$parts[$#parts]);
# --------------------------------------------------------------- Logical input
- if ($comp[$#comp] eq 'res') {
+ if (($comp[$#comp] eq 'res') || ($comp[$#comp] eq 'zombie')) {
$comp[0]=qtescape($comp[0]);
$comp[1]=qtescape($comp[1]);
if ($comp[2] eq 'true') {
@@ -248,14 +245,14 @@ sub savemap {
if ($comp[0] ne '') {
$outstr.=' title="'.$comp[0].'"';
}
- $outstr.=">\n";
+ $outstr.=" />\n";
} elsif ($comp[$#comp] eq 'cond') {
$outstr.='\n";
+ $outstr.=" />\n";
}
} elsif ($parts[0] eq 'objlinks') {
my @comp=split(/:/,$parts[$#parts]);
@@ -266,7 +263,7 @@ sub savemap {
$outstr.=' condition="'.$comp[2].'"';
}
$outstr.=' index="'.$parts[1].'"';
- $outstr.=">\n";
+ $outstr.=" />\n";
} elsif ($parts[0] eq 'objparms') {
undef %alltypes;
undef %allvalues;
@@ -279,8 +276,8 @@ sub savemap {
if ($allvalues{$_} ne '') {
$outstr.=''
- ."\n";
+ .'" value="'.$allvalues{$_}.'" />'
+ ."\n";
}
}
} elsif (($parts[0] ne '') && ($graphdef)) {
@@ -289,13 +286,12 @@ sub savemap {
if ($#parts==2) {
$outstr.=' index="'.$parts[1].'"';
}
- $outstr.=' value="'.qtescape($parts[$#parts]).'">'.
- $parts[0].">\n";
+ $outstr.=' value="'.qtescape($parts[$#parts]).'" />'."\n";
}
}
$outstr.="\n";
if ($fn=~/^\/*uploaded\/(\w+)\/(\w+)\/(.*)$/) {
- $ENV{'form.output'}=$outstr;
+ $env{'form.output'}=$outstr;
my $home=&Apache::lonnet::homeserver($2,$1);
my $result=&Apache::lonnet::finishuserfileupload($2,$1,$home,
'output',$3);
@@ -322,7 +318,7 @@ sub savemap {
sub handler {
my $r=shift;
- $r->content_type('text/html');
+ &Apache::loncommon::content_type($r,'text/html');
$r->send_http_header;
return OK if $r->header_only;