diff options
Diffstat (limited to 'lib/Confirm.cc')
| -rw-r--r-- | lib/Confirm.cc | 23 | 
1 files changed, 14 insertions, 9 deletions
| diff --git a/lib/Confirm.cc b/lib/Confirm.cc index 0fbb902..7d72ee0 100644 --- a/lib/Confirm.cc +++ b/lib/Confirm.cc @@ -1,26 +1,31 @@  #include "HttpServ.h"  #include "Confirm.h" +#include "Buffer.h" +#include "CopyJob.h"  #include "config.h"  Confirm::Confirm(const String & t, const String & m, const String & U, Action * y, Action * n) :      Action(U), tit(t), msg(m), NYes(y), NNo(n) { } -void Confirm::Do(Variables * v, Handle * h) { -    SendHead(h); -    (*h) << msg << "<CENTER><TABLE BORDER=0><tr><td>" << endnl << +Task * Confirm::Do(Variables * v, Handle * h) { +    Handle * b = new Buffer; +    Task * t = new CopyJob(b, h, -1, true); +    SendHead(b); +    (*b) << msg << "<CENTER><TABLE BORDER=0><tr><td>" << endnl <<      "<FORM METHOD=\"POST\" ACTION=\"/bin/" << (NYes ? NYes->GetURL() : "start") << "\">" << endnl <<      "<INPUT TYPE=\"HIDDEN\" VALUE=\"yes\" NAME=\"confirm\">" << endnl <<      "<INPUT TYPE=\"SUBMIT\" VALUE=\"     Oui     \">" << endnl; -    v->Dump(h); -    (*h) << "</FORM></td><td>" << endnl << +    v->Dump(b); +    (*b) << "</FORM></td><td>" << endnl <<      "<FORM METHOD=\"POST\" ACTION=\"/bin/" << (NNo ? NNo->GetURL() : "start") << "\">" << endnl <<      "<INPUT TYPE=\"HIDDEN\" VALUE=\"no\" NAME=\"confirm\">" << endnl <<      "<INPUT TYPE=\"SUBMIT\" VALUE=\"     Non     \">" << endnl; -    v->Dump(h); -    (*h) << "</FORM></td></tr></TABLE></CENTER>" << endnl; -    SendFoot(h); -     +    v->Dump(b); +    (*b) << "</FORM></td></tr></TABLE></CENTER>" << endnl; +    SendFoot(b);          Accessed(); +     +    return t;  }  String Confirm::GetTitle(void) { | 
