/adei/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/adei/trunk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php

ADEI::RequireClass("draw");

header("Content-type: image/png");
header("Cache-Control: no-cache, must-revalidate");
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");

if (isset($_GET["id"])) {
    $id = $_GET["id"];
} else {
    try {
	$req = new DATARequest();
	$draw = $req->CreatePlotter();
	$draw->Create();
	$id = $draw->Save();
    } catch(ADEIException $e) {
	$error = $e->getInfo();
	
        try {
	    if (!$draw) {
		if (!$req) $req = new REQUEST();
		$draw = $req->CreateTextPlotter();
	    }
//	    $draw->CreateMessage("Error", "No Data");
	    $draw->CreateMessage("Error", $error);
	    $id = $draw->Save();
	    $error = false;
	} catch (ADEIException $ex) {
		$ex->logInfo(NULL, $draw);
	}
    }
}

if (!$error) {
    $res = DRAW::Display($id);
    if (!$res) {
    }
}


?>