Update of /cvsroot/freenet/freenet/src/freenet/client/http
In directory sc8-pr-cvs1:/tmp/cvs-serv4379/src/freenet/client/http
Modified Files:
NodeStatusServlet.java
Log Message:
Moved some HTML generation support code from StandardNodeEsitmator into an inner class
in TimeEstimator/StandardNodeEstimator.
Moved the report history in StandardNodeEstimator into an static inner class
Index: NodeStatusServlet.java
===================================================================
RCS file: /cvsroot/freenet/freenet/src/freenet/client/http/NodeStatusServlet.java,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -w -r1.74 -r1.75
--- NodeStatusServlet.java 28 Oct 2003 05:09:55 -0000 1.74
+++ NodeStatusServlet.java 29 Oct 2003 21:53:23 -0000 1.75
@@ -1126,7 +1126,7 @@
(clip.equalsIgnoreCase("true") || clip.equalsIgnoreCase("yes")))
clippoints = true;
resp.setContentType("image/bmp");
- e.drawGraphBMP(width, height, !clippoints, resp.getOutputStream());
+ e.getHTMLReportingTool().drawGraphBMP(width, height, !clippoints,
resp.getOutputStream());
} else {
resp.sendError(404, "Not an NGRoutingTable");
}
@@ -1162,7 +1162,7 @@
(clip.equalsIgnoreCase("true") || clip.equalsIgnoreCase("yes")))
clippoints = true;
resp.setContentType("image/bmp");
- e.drawGraphBMP(width, height, !clippoints, resp.getOutputStream());
+ e.getHTMLReportingTool().drawGraphBMP(width, height, !clippoints,
resp.getOutputStream());
} else {
resp.sendError(404, "Not an NGRoutingTable");
}
_______________________________________________
cvs mailing list
[EMAIL PROTECTED]
http://dodo.freenetproject.org/cgi-bin/mailman/listinfo/cvs