View | Details | Raw Unified | Return to bug 255641
Collapse All | Expand All

(-)src/org/eclipse/test/performance/ui/Main.java (-2 / +2 lines)
Lines 553-561 Link Here
553
	// Print reference to global results
553
	// Print reference to global results
554
	if (!isGlobal) {
554
	if (!isGlobal) {
555
		stream.print("<?php\n");
555
		stream.print("<?php\n");
556
		stream.print("	$type=$QUERY_STRING;\n");
556
		stream.print("	$type=$_SERVER['QUERY_STRING'];\n");
557
		stream.print("	if ($type==\"\") {\n");
557
		stream.print("	if ($type==\"\") {\n");
558
		stream.print("        $type=\"fp_type=0\";\n");
558
		stream.print("		$type=\"fp_type=0\";\n");
559
		stream.print("	}\n");
559
		stream.print("	}\n");
560
		stream.print("	$href=\"<a href=\\\"performance.php?\";\n");
560
		stream.print("	$href=\"<a href=\\\"performance.php?\";\n");
561
		stream.print("	$href=$href . $type . \"\\\">Back to global results</a><br><br>\";\n");
561
		stream.print("	$href=$href . $type . \"\\\">Back to global results</a><br><br>\";\n");
(-)src/org/eclipse/test/performance/ui/FingerPrint.java (-1 / +2 lines)
Lines 162-168 Link Here
162
			this.stream.print(boxName);
162
			this.stream.print(boxName);
163
			this.stream.print("</h4>\n");
163
			this.stream.print("</h4>\n");
164
			this.stream.print("<?php\n");
164
			this.stream.print("<?php\n");
165
			this.stream.print("	if ($QUERY_STRING==\"\" || $QUERY_STRING==\"fp_type=0\") {\n");
165
			this.stream.print("	$type=$_SERVER['QUERY_STRING'];\n");
166
			this.stream.print("	if ($type==\"\" || $type==\"fp_type=0\") {\n");
166
			this.stream.print("		echo '<img src=\"");
167
			this.stream.print("		echo '<img src=\"");
167
			this.stream.print(fileName);
168
			this.stream.print(fileName);
168
			this.stream.print(".gif\" usemap=\"#");
169
			this.stream.print(".gif\" usemap=\"#");
(-)src/org/eclipse/test/performance/ui/FingerPrintGraph.java (-1 / +1 lines)
Lines 635-641 Link Here
635
635
636
void print(int kind, PrintStream stream) {
636
void print(int kind, PrintStream stream) {
637
	String imgName = getImageName(kind);
637
	String imgName = getImageName(kind);
638
	stream.print("	if ($QUERY_STRING==\"fp_type="+kind+"\") {\n");
638
	stream.print("	if ($type==\"fp_type="+kind+"\") {\n");
639
	stream.print("		echo '<img src=\"");
639
	stream.print("		echo '<img src=\"");
640
	stream.print(imgName);
640
	stream.print(imgName);
641
	stream.print(".gif\" usemap=\"#");
641
	stream.print(".gif\" usemap=\"#");

Return to bug 255641