Add Sessions overview charts to reports. Temporarily disabled local HTML template cache

This commit is contained in:
Mark Watkins 2011-10-31 01:37:11 +10:00
parent df7c1817a0
commit 293fe7a78c
3 changed files with 7 additions and 3 deletions

View File

@ -46,6 +46,7 @@
{{graph.Leaks}}
{{graph.Pressure}}
{{graph.Settings}}
{{graph.Sessions}}
{{graph.%PB}}
</body>
</html>

View File

@ -47,6 +47,9 @@ Report::Report(QWidget *parent, gGraphView * shared, Overview * overview) :
graphs["Settings"]=SET=new gGraph(GraphView,"Settings",graph_print_height,0);
SET->AddLayer(m_overview->set);
graphs["Sessions"]=SES=new gGraph(GraphView,"Sessions",graph_print_height,0);
SES->AddLayer(m_overview->ses);
for (QHash<QString,gGraph *>::iterator g=graphs.begin();g!=graphs.end();g++) {
gGraph *gr=g.value();
@ -196,7 +199,7 @@ QString Report::GenerateReport(QString templ,QDate start, QDate end)
file.setFileName(filename);
QByteArray input;
if (file.exists()) {
if (0) { //file.exists()) {
file.open(QIODevice::ReadOnly);
input=file.readAll();
file.close();

View File

@ -35,8 +35,8 @@ private:
Overview * m_overview;
gGraphView * shared;
gGraphView * GraphView;
gGraph *AHI,*UC,*PR,*LK,*NPB,*SET;
SummaryChart *bc,*uc,*pr,*lk,*npb,*set;
gGraph *AHI,*UC,*PR,*LK,*NPB,*SET,*SES;
SummaryChart *bc,*uc,*pr,*lk,*npb,*set,*ses;
QHash<QString,QVariant> locals;
QHash<QString,gGraph *> graphs;